Added some Gen 8 item effects, added super shininess

This commit is contained in:
Maruno17
2021-06-23 23:15:15 +01:00
parent 0ad86e6b03
commit feb9e3b2de
20 changed files with 586 additions and 171 deletions

View File

@@ -184,6 +184,10 @@ class PokeBattle_Battler
return @pokemon && @pokemon.shiny?
end
def super_shiny?
return @pokemon && @pokemon.super_shiny?
end
def owned?
return false if !@battle.wildBattle?
return $Trainer.owned?(displaySpecies)