- 3
- Posts
- 5
- Years
- Seen Aug 24, 2021
Hi there,
I hope I'm not asking a too stupid question :), as I'm not having much PE scripting experience yet.
I would like to define shiny Pokémon as forms for giving them new stat, other types and a different moveset, but I can't seem to figure out, where and how to put the form change.
I first tried:
in Pokemon_Forms but that doesn't seem to work.
Do you have any tips or suggestions, I don't mind if it is a lot of writing work, to put them all there manually^^.
Thanks in advance,
Kadisra
I hope I'm not asking a too stupid question :), as I'm not having much PE scripting experience yet.
I would like to define shiny Pokémon as forms for giving them new stat, other types and a different moveset, but I can't seem to figure out, where and how to put the form change.
I first tried:
Code:
MultipleForms.register(:BULBASAUR,{
"getFormOnCreation" => proc { |pkmn|
if pkmn.shiny?
next 1
else
next 0
end
}
})
in Pokemon_Forms but that doesn't seem to work.
Do you have any tips or suggestions, I don't mind if it is a lot of writing work, to put them all there manually^^.
Thanks in advance,
Kadisra