Hi! I need some help with a Pokemon form! It's for Illumifly, which is like Meowstic's form. But everytime I evolve a female Buzlite, it evolves into a male form Illumifly instead!
Here's the code:
What am I doing wrong?!
Here's the code:
Code:
MultipleForms.register(:BUZLITE,{
"getFormOnCreation"=>proc{|pokemon|
next 1 if pokemon.isFemale? #Female
next 0 #Male
}
})
MultipleForms.copy(:BUZLITE,:ILLUMIFLY)
What am I doing wrong?!