ID:271536
 
Im working on a Pokemon Building game. You can also train and evolve and stuff I just dont know how to make an evolution verb. Help?
mob/verb/Evolution()


Help us by being more specific.
In response to LucifersHellion
ok.

Squirtle icon is in poke.dmi. icon_state is squirt

When Squirtle gets to level 16, I think he should eveolve into wartortle

Wartortle:
icon=pokemon.dmi
icon_state=wart
In response to XI-Demyx
mob/proc/level()
if(src.level==16)
if(src.pokemon=="squirtle")
src.icon = 'blah.dmi'
src.icon_state = "wartortle"


im sure there are easier ways to do this. im busy right now though.
In response to LucifersHellion
uh no help but..thanks