#--------------------------------------------------------------------------
# ● フレーム更新 (メインフェーズ ステップ 3 : 行動側アニメーション)
#--------------------------------------------------------------------------
def update_phase4_step3(battler)
# ヘルプウィンドウの更新。アクションの種別で分岐
case battler.current_action.kind
when 0 # 基本
if battler.current_action.basic == 1
@help_window.set_text($data_system.words.guard, 1)
@help_wait = @help_time
end
#========RTAB 1.16==================================
if battler.current_action.basic == 2
# 逃げる
@help_window.set_text("逃げる", 1)
@help_wait = @help_time
battler.escape
battler.phase = 4
return
end
#===================================================
when 1 # スキル
skill = $data_skills[battler.current_action.skill_id]
@help_window.set_text(skill.name, 1)
@help_wait = @help_time
####################################
#特写的实现
#这个方法有助于新人理解case when 的用法,
#还有个好处就是同一招式,不同人可以用不同特写。
case battler.name
when "帕鲁玛"
case skill.id
when 90..92
battler.animation.push([109, true])#动画版
end
when "费特"
case skill.id
when 93#公共事件版
$game_system.battle_interpreter.setup($data_common_events[1].list, 0)
when 94
$game_system.battle_interpreter.setup($data_common_events[2].list, 0)
end
when "帕吉尔"
#......
else
#......
end
####################################
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |