pokeradar

This commit is contained in:
infinitefusion
2022-04-18 15:26:38 -04:00
parent 540adf4760
commit f473ab3cc2
29 changed files with 171 additions and 29 deletions

View File

@@ -125,6 +125,10 @@ module GameData
return self.icon_filename(pkmn.species, pkmn.form, pkmn.gender, pkmn.shiny?, pkmn.shadowPokemon?, pkmn.egg?)
end
def self.icon_filename_from_species(species)
return self.icon_filename(species, 0, 0, false, false, false)
end
def self.egg_icon_bitmap(species, form)
filename = self.egg_icon_filename(species, form)
return (filename) ? AnimatedBitmap.new(filename).deanimate : nil