- 7
- Posts
- 16
- Years
- Seen Aug 30, 2016
PokeBattle_Battler
Pokemon_MultipleForms
Additionally not only does this new form not appear in the pokedex when given to the player, the pokedex also shows Male and Female for Vulpix despite there being no differences between the male and female Vulpix.
Code:
# Vulpix
if isConst?(self.species,PBSpecies,:VULPIX)
if self.level>= 5
self.form=0
else
self.form=1
end
end
Code:
MultipleForms.register(:VULPIX,{
"onSetForm"=>proc{|pokemon,form|
pbSeenForm(pokemon)
},
"getFormOnCreation"=>proc{|pokemon|
if pokemon.level>=5
next 0
else
next 1
end
}
})