mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
fixes icon names
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -112,7 +112,7 @@ class PokeRadar_UI
|
|||||||
bitmap1 = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke))
|
bitmap1 = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke))
|
||||||
bitmap2 = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke))
|
bitmap2 = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke))
|
||||||
ensureFusionIconExists()
|
ensureFusionIconExists()
|
||||||
bitmapFileName = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", pokemonId)
|
bitmapFileName = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", headPoke_number)
|
||||||
headPokeFileName = GameData::Species.icon_filename(headPoke)
|
headPokeFileName = GameData::Species.icon_filename(headPoke)
|
||||||
bitmapPath = sprintf("%s.png", bitmapFileName)
|
bitmapPath = sprintf("%s.png", bitmapFileName)
|
||||||
IO.copy_stream(headPokeFileName, bitmapPath)
|
IO.copy_stream(headPokeFileName, bitmapPath)
|
||||||
|
|||||||
@@ -187,9 +187,8 @@ class PokemonIconSprite < SpriteWrapper
|
|||||||
icon1 = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke))
|
icon1 = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke))
|
||||||
icon2 = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke))
|
icon2 = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke))
|
||||||
|
|
||||||
dexNum = getDexNumberForSpecies(@pokemon.species)
|
|
||||||
ensureFusionIconExists
|
ensureFusionIconExists
|
||||||
bitmapFileName = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", dexNum)
|
bitmapFileName = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", headPoke_number)
|
||||||
headPokeFileName = GameData::Species.icon_filename(headPoke)
|
headPokeFileName = GameData::Species.icon_filename(headPoke)
|
||||||
bitmapPath = sprintf("%s.png", bitmapFileName)
|
bitmapPath = sprintf("%s.png", bitmapFileName)
|
||||||
IO.copy_stream(headPokeFileName, bitmapPath)
|
IO.copy_stream(headPokeFileName, bitmapPath)
|
||||||
|
|||||||
@@ -33,10 +33,8 @@ class PokemonBoxIcon < IconSprite
|
|||||||
|
|
||||||
icon1 = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke))
|
icon1 = AnimatedBitmap.new(GameData::Species.icon_filename(headPoke))
|
||||||
icon2 = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke))
|
icon2 = AnimatedBitmap.new(GameData::Species.icon_filename(bodyPoke))
|
||||||
|
|
||||||
dexNum = getDexNumberForSpecies(species)
|
|
||||||
ensureFusionIconExists
|
ensureFusionIconExists
|
||||||
bitmapFileName = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", dexNum)
|
bitmapFileName = sprintf("Graphics/Pokemon/FusionIcons/icon%03d", headPoke_number)
|
||||||
headPokeFileName = GameData::Species.icon_filename(headPoke)
|
headPokeFileName = GameData::Species.icon_filename(headPoke)
|
||||||
bitmapPath = sprintf("%s.png", bitmapFileName)
|
bitmapPath = sprintf("%s.png", bitmapFileName)
|
||||||
IO.copy_stream(headPokeFileName, bitmapPath)
|
IO.copy_stream(headPokeFileName, bitmapPath)
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user