mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-12 23:44:58 +00:00
update 6.7
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user