~Site
¤Accueil
¤Forum
¤Admin

~Base de scripts
¤Scripts de base
¤Scripts Menu
¤Scripts Combat
¤Scripts Système
¤Scripts Modifiés

Scripts de Base
Game_Temp
Game_System
Game_Switches
Game_Variables
Game_SelfSwitches
Game_Screen
Game_Picture
Game_Battler 1
Game_Battler 2
Game_Battler 3
Game_BattleAction
Game_Actor
Game_Enemy
Game_Actors
Game_Party
Game_Troop
Game_Map
Game_CommonEvent
Game_Character 1
Game_Character 2
Game_Character 3
Game_Event
Game_Player
Sprite_Character
Sprite_Battler
Sprite_Picture
Sprite_Timer
Spriteset_Map
Spriteset_Battle
Window_Base
Window_Selectable
Window_Command
Window_Help
Window_Gold
Window_PlayTime
Window_Steps
Window_MenuStatus
Window_Item
Window_Skill
Window_SkillStatus
Window_Target
Window_EquipLeft
Window_EquipRight
Window_EquipItem
Window_Status
Window_SaveFile
Window_ShopCommand
Window_ShopBuy
Window_ShopSell
Window_ShopNumber
Window_ShopStatus
Window_NameEdit
Window_NameInput
Window_InputNumber
Window_Message
Window_PartyCommand
Window_BattleStatus
Window_BattleResult
Window_DebugLeft
Window_DebugRight
Window_Dataset
Arrow_Base
Arrow_Enemy
Arrow_Actor
Interpreter 1
Interpreter 2
Interpreter 3
Interpreter 4
Interpreter 5
Interpreter 6
Interpreter 7
Scene_Title
Scene_Map
Scene_Menu
Scene_Item
Scene_Skill
Scene_Equip
Scene_Status
Scene_File
Scene_Save
Scene_Load
Scene_End
Scene_Battle 1
Scene_Battle 2
Scene_Battle 3
Scene_Battle 4
Scene_Shop
Scene_Name
Scene_Gameover
Scene_Debug
Main


Window_BattleStatus ::: posté le 2006-02-16 @ 10:00:00
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
Design By RaZ © Watery Build 2005