double shinies and fake shinies

This commit is contained in:
infinitefusion
2022-10-16 11:56:35 -04:00
parent 749cdff356
commit 53082e910f
18 changed files with 98 additions and 57 deletions

View File

@@ -33,6 +33,7 @@ class Pokemon
attr_writer :shiny
attr_accessor :head_shiny
attr_accessor :body_shiny
attr_accessor :debug_shiny
# The index of this Pokémon's ability (0, 1 are natural abilities, 2+ are
# hidden abilities)as defined for its species/form. An ability may not be
# defined at this index. Is recalculated (as 0 or 1) if made nil.
@@ -164,6 +165,10 @@ class Pokemon
return headSpecies == checkSpeciesId
end
def debugShiny?
return @debug_shiny
end
def bodyShiny?
return @body_shiny
end