update 6.7

This commit is contained in:
chardub
2025-09-28 15:53:01 -04:00
parent ef5e023ae0
commit 318ff90d8d
696 changed files with 111759 additions and 198230 deletions

View File

@@ -129,28 +129,28 @@
# # Draw all images
# pbDrawImagePositions(overlay, imagepos)
# # Write various bits of text
# pagename = [_INTL("INFO"),
# _INTL("TRAINER MEMO"),
# _INTL("SKILLS"),
# _INTL("MOVES"),
# _INTL("MOVES")][page - 1]
# pagename = ["INFO",
# "TRAINER MEMO",
# "SKILLS",
# "MOVES",
# "MOVES"][page - 1]
# textpos = [
# [pagename, 26, 10, 0, base, shadow],
# [@pokemon.name, 46, 56, 0, base, shadow],
# [@pokemon.level.to_s, 46, 86, 0, Color.new(64, 64, 64), Color.new(176, 176, 176)],
# [_INTL("Item"), 66, 312, 0, base, shadow]
# ["Item", 66, 312, 0, base, shadow]
# ]
# # Write the held item's name
# if @pokemon.hasItem?
# textpos.push([@pokemon.item.name, 16, 346, 0, Color.new(64, 64, 64), Color.new(176, 176, 176)])
# else
# textpos.push([_INTL("None"), 16, 346, 0, Color.new(192, 200, 208), Color.new(208, 216, 224)])
# textpos.push(["None", 16, 346, 0, Color.new(192, 200, 208), Color.new(208, 216, 224)])
# end
# # Write the gender symbol
# if @pokemon.male?
# textpos.push([_INTL("♂"), 178, 56, 0, Color.new(24, 112, 216), Color.new(136, 168, 208)])
# textpos.push(["♂", 178, 56, 0, Color.new(24, 112, 216), Color.new(136, 168, 208)])
# elsif @pokemon.female?
# textpos.push([_INTL("♀"), 178, 56, 0, Color.new(248, 56, 32), Color.new(224, 152, 144)])
# textpos.push(["♀", 178, 56, 0, Color.new(248, 56, 32), Color.new(224, 152, 144)])
# end
# # Draw all text
# pbDrawTextPositions(overlay, textpos)

View File

@@ -46,9 +46,9 @@ class PokemonBoxIcon
else
self.setBitmapDirectly(createFusionIcon(@pokemon.species, @pokemon.spriteform_head, @pokemon.spriteform_body, @pokemon.bodyShiny?, @pokemon.headShiny?))
if fusion_enabled
self.visible = true
self.opacity = 255
else
self.visible = false
self.opacity = 80
end
end
self.src_rect = Rect.new(0, 0, self.bitmap.height, self.bitmap.height)