Auteur: Yukihiro matsumoto
#============================================
# ¡ö Window_BattleStatus
#----------------------------------------------
# ¡¡¥Ð¥È¥ë»Ãæ¤Ç¥Ñ©`¥Æ¥£¥á¥ó¥Ð©`¤Î¥¹¥Æ©`¥¿¥¹¤ò±íʾ¤¹¤ë¥¦¥£¥ó¥É¥¦¤Ç¤¹¡£
#============================================
class Window_BattleStatus < Window_Base
#------------------------------------------
# ¡ñ ¥ª¥Ö¥¸¥§¥¯¥È³õÆÚ»¯
#------------------------------------------
def initialize
super(0, 320, 640, 160)
self.contents = Bitmap.new(width - 32, height - 32)
self.contents.font.name = "Arial"
self.contents.font.size = 26
@level_up_flags = [false, false, false, false]
refresh
end
#------------------------------------------
# ¡ñ ½â·Å
#------------------------------------------
def dispose
super
end
#------------------------------------------
# ¡ñ ¥ì¥Ù¥ë¥¢¥Ã¥×¥Õ¥é¥°¤ÎÔO¶¨
# actor_index : ¥¢¥¯¥¿©`¥¤¥ó¥Ç¥Ã¥¯¥¹
#------------------------------------------
def level_up(actor_index)
@level_up_flags[actor_index] = true
end
#------------------------------------------
# ¡ñ ¥ê¥Õ¥ì¥Ã¥·¥å
#------------------------------------------
def refresh
self.contents.clear
@item_max = $game_party.actors.size
for i in 0...$game_party.actors.size
actor = $game_party.actors[i]
actor_x = i * 160 + 4
draw_actor_name(actor, actor_x, 0)
draw_actor_hp(actor, actor_x, 32, 120)
draw_actor_sp(actor, actor_x, 64, 120)
if @level_up_flags[i]
self.contents.font.color = normal_color
self.contents.draw_text(actor_x, 96, 120, 32, "Niveau sup¨¦rieur!")
else
draw_actor_state(actor, actor_x, 96)
end
end
end
#------------------------------------------
# ¡ñ ¥Õ¥ì©`¥à¸üÐÂ
#------------------------------------------
def update
super
# ¥á¥¤¥ó¥Õ¥§©`¥º¤Î¤È¤¤Ï²»Í¸Ã÷¶È¤ò¤ä¤äϤ²¤ë
if $game_temp.battle_main_phase
self.contents_opacity -= 4 if self.contents_opacity > 191
else
self.contents_opacity += 4 if self.contents_opacity < 255
end
end
end |
|