Event Pokemon in another form

Delinquent123

Rookie
Member
Joined
Aug 2, 2018
Posts
1
Are you able to have an event pokemon be in a certain form? I wanted to do something like Armored Mewtwo, but I haven't found a way to have him spawn.
 
Yeah, totally!
When you're setting up the event for Mewtwo, just include something like this:


Events.onWildPokemonCreate+=proc {|
sender,e|
pokemon=e[0]
if $game_switches[32]
pokemon.pbLearnMove(:CONFUSION)
pokemon.formNoCall=1
pokemon.makeNotShiny
end}

That bold part makes the pokemon appear in for #1 (zero would be the default form) but you can set it to whichever number you've made the armour.
 
Top