- 8
- Posts
- 11
- Years
- Seen May 1, 2016
Hello, I'm trying to create a multiple form for Blastoise, the sprites change fine... But anything else doesn't, the Ability doesn't even show up on the summary screen and after studying the Essentials wiki page and scouring this forum I decided to ask for help. I am by no means a scripter and ANY help will be greatly appreciated.
Here is my code:
Here is my code:
Code:
MultipleForms.register(:BLASTOISE,{
"type2"=>proc{|pokemon|
next if pokemon.form==0
next getID(PBTypes,:Poison)
},
"ability"=>proc{|pokemon|
next if pokemon.form==0
next getID(PBAbilities,:DRIZZLE)
},
"onSetForm"=>proc{|pokemon,form|
pbSeenForm(pokemon)
}
})