• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • It's time to vote for your favorite Pokémon Battle Revolution protagonist in our new weekly protagonist poll! Click here to cast your vote and let us know which PBR protagonist you like most.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Error] Alolan Evolutions

  • 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
     
    You may make alternate forms that do not have any difference on a Pokémon but does on another (i.e. Make a pikachu alt Form without changing it. Just set any maps in where form 1 will be set. Then, make form for the evolution of Pikachu, which will be Alolan Raichu. Then evolve Pikachu and you're done.)

    This is what I can suggest. In my game, I have done similar method for the case you mentioned. But it happens differently. You need to catch Pikachu on the map where you will find the Alola Forms of some Kanto Pokémon in order to make it Alola Raichu. Moreover, if you use Essentials 16.2 or below, you must be good in Ruby in order to make Alola Pokémon Forms evolve differently (Such as using an Ice Stone to evolve Alolan Sandshrew rather than being in the specific level or higher than it). I have done a workaround for that. If you're using Essentials 17 or above, you can the different evolution method im pokemonforms.txt PBS file assuming it won't evolve into different species.

    That's all I can suggest to you for now
     
    Last edited:
    Back
    Top