- 89
- Posts
- 16
- Years
- Seen Apr 5, 2016
i was looking through some older tutorials and though of a way to have a location based evolution in poccil's starter kit with minimal effort.
Just copy that into one of the custom evolution types. Then if you want to make a location based evolution for a pokemon then you can make it like so:
nextstage,custom#,map_id#
heres and example for making nosepass evolve into probopass at map with an ID# of 30
If a Nosepass with high happiness battled on that map and won it would evolve into probopass.
no credit required for this code.
Code:
return poke if $game_map.map_id==level && pokemon.happiness>=220
nextstage,custom#,map_id#
heres and example for making nosepass evolve into probopass at map with an ID# of 30
Code:
PROBOPASS,Custom1,30
If a Nosepass with high happiness battled on that map and won it would evolve into probopass.
no credit required for this code.