- 27
- Posts
- 6
- Years
- Seen Oct 7, 2024
Hey so I have this Island in my fangame which allows Pikachu, Exeggcute, and Cubone to evolve into their Alolan Forms, however whenever I evolve Pikachu into an Alolan Raichu the game crashes and gives an error
Here's what I currently have:
case evonib
when PBEvolution::Item
case pokemon.species
when 25 # Pikachu -> Alolan Raichu
if $game_map.map_id=[139]
pokemon.form=1
else
pokemon.form=0
end
when 102 # Exeggcute -> Alolan Exeggutor
if $game_map.map_id=[139]
pokemon.form=1
else
pokemon.form=0
end
end
return poke if level==item
Here's what I currently have:
case evonib
when PBEvolution::Item
case pokemon.species
when 25 # Pikachu -> Alolan Raichu
if $game_map.map_id=[139]
pokemon.form=1
else
pokemon.form=0
end
when 102 # Exeggcute -> Alolan Exeggutor
if $game_map.map_id=[139]
pokemon.form=1
else
pokemon.form=0
end
end
return poke if level==item