~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_Skill ::: post้ le 2006-02-16 @ 09:50:00
Auteur: Yukihiro matsumoto

#============================================
# ก Window_Skill
#----------------------------------------------
# @ƒXƒLƒ‹‰ๆ–สAƒoƒgƒ‹‰ๆ–ส‚ลAŽg—p‚ล‚ซ‚้ƒXƒLƒ‹‚ฬˆ๊——‚๐•Žฆ‚ท‚้ƒEƒBƒ“ƒhƒE‚ล‚ทB
#============================================

class Window_Skill < Window_Selectable
#------------------------------------------
# œ ƒIƒuƒWƒFƒNƒg‰Š๚‰ป
# actor : ƒAƒNƒ^[
#------------------------------------------
def initialize(actor)
super(0, 128, 640, 352)
@actor = actor
@column_max = 2
refresh
self.index = 0
# ํ“ฌ’†‚ฬ๊‡‚อƒEƒBƒ“ƒhƒE‚๐‰ๆ–ส’†‰›‚ึˆฺ“ฎ‚ตA”ผ“ง–พ‚ษ‚ท‚้
if $game_temp.in_battle
self.y = 64
self.height = 256
self.back_opacity = 160
end
end
#------------------------------------------
# œ ƒXƒLƒ‹‚ฬŽๆ“พ
#------------------------------------------
def skill
return @data[self.index]
end
#------------------------------------------
# œ ƒŠƒtƒŒƒbƒVƒ…
#------------------------------------------
def refresh
if self.contents != nil
self.contents.dispose
self.contents = nil
end
@data = []
for i in 0...@actor.skills.size
skill = $data_skills[@actor.skills[i]]
if skill != nil
@data.push(skill)
end
end
# €–ฺ”‚ช 0 ‚ล‚ศ‚ฏ‚๊‚ฮƒrƒbƒgƒ}ƒbƒv‚๐์ฌ‚ตA‘S€–ฺ‚๐•`‰ๆ
@item_max = @data.size
if @item_max > 0
self.contents = Bitmap.new(width - 32, row_max * 32)
self.contents.font.name = $fontface
self.contents.font.size = $fontsize
for i in 0...@item_max
draw_item(i)
end
end
end
#------------------------------------------
# œ €–ฺ‚ฬ•`‰ๆ
# index : €–ฺ”ิ†
#------------------------------------------
def draw_item(index)
skill = @data[index]
if @actor.skill_can_use?(skill.id)
self.contents.font.color = normal_color
else
self.contents.font.color = disabled_color
end
x = 4 + index % 2 * (288 + 32)
y = index / 2 * 32
rect = Rect.new(x, y, self.width / @column_max - 32, 32)
self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
bitmap = RPG::Cache.icon(skill.icon_name)
opacity = self.contents.font.color == normal_color ? 255 : 128
self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
self.contents.draw_text(x + 28, y, 204, 32, skill.name, 0)
self.contents.draw_text(x + 232, y, 48, 32, skill.sp_cost.to_s, 2)
end
#------------------------------------------
# œ ƒwƒ‹ƒvƒeƒLƒXƒgXV
#------------------------------------------
def update_help
@help_window.set_text(self.skill == nil ? "" : self.skill.description)
end
end
Design By RaZ ฉ Watery Build 2005