mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-10 22:54:59 +00:00
Coded some Gen 9 ability/item/move effects
This commit is contained in:
@@ -270,8 +270,21 @@ MultipleForms.register(:ROTOM, {
|
||||
}
|
||||
})
|
||||
|
||||
MultipleForms.register(:DIALGA, {
|
||||
"getForm" => proc { |pkmn|
|
||||
next pkmn.hasItem?(:ADAMANTCRYSTAL) ? 1 : 0
|
||||
}
|
||||
})
|
||||
|
||||
MultipleForms.register(:PALKIA, {
|
||||
"getForm" => proc { |pkmn|
|
||||
next pkmn.hasItem?(:LUSTROUSGLOBE) ? 1 : 0
|
||||
}
|
||||
})
|
||||
|
||||
MultipleForms.register(:GIRATINA, {
|
||||
"getForm" => proc { |pkmn|
|
||||
next 1 if pkmn.hasItem?(:GRISEOUSCORE)
|
||||
next 1 if pkmn.hasItem?(:GRISEOUSORB) && Settings::MECHANICS_GENERATION <= 8
|
||||
next 1 if $game_map&.metadata&.has_flag?("DistortionWorld")
|
||||
next 0
|
||||
|
||||
Reference in New Issue
Block a user