Auteur: Yukihiro matsumoto
#============================================
# ¡ö Window_BattleResult
#----------------------------------------------
# ¡¡¥Ð¥È¥ë½KÁË•r¤Ë¡¢«@µÃ¤·¤¿ EXP ¤ä¥´©`¥ë¥É¤Ê¤É¤ò±íʾ¤¹¤ë¥¦¥£¥ó¥É¥¦¤Ç¤¹¡£
#============================================
class Window_BattleResult < Window_Base
#------------------------------------------
# ¡ñ ¥ª¥Ö¥¸¥§¥¯¥È³õÆÚ»¯
# exp : EXP
# gold : ¥´©`¥ë¥É
# treasures : ¥È¥ì¥¸¥ã©`
#------------------------------------------
def initialize(exp, gold, treasures)
@exp = exp
@gold = gold
@treasures = treasures
super(160, 0, 320, @treasures.size * 32 + 64)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = $fontface
self.contents.font.size = $fontsize
self.y = 160 - height / 2
self.back_opacity = 160
self.visible = false
refresh
end
#------------------------------------------
# ¡ñ ¥ê¥Õ¥ì¥Ã¥·¥å
#------------------------------------------
def refresh
self.contents.clear
x = 4
self.contents.font.color = normal_color
cx = contents.text_size(@exp.to_s).width
self.contents.draw_text(x, 0, cx, 32, @exp.to_s)
x += cx + 4
self.contents.font.color = system_color
cx = contents.text_size("Exp¨¦rience").width
self.contents.draw_text(x, 0, 164, 32, "Exp¨¦rience")
x += cx + 16
self.contents.font.color = normal_color
cx = contents.text_size(@gold.to_s).width
self.contents.draw_text(x, 0, cx, 32, @gold.to_s)
x += cx + 4
self.contents.font.color = system_color
self.contents.draw_text(x, 0, 128, 32, $data_system.words.gold)
y = 32
for item in @treasures
draw_item_name(item, 4, y)
y += 32
end
end
end |
|