赞 | 5 |
VIP | 1 |
好人卡 | 2 |
积分 | 4 |
经验 | 20430 |
最后登录 | 2018-5-11 |
在线时间 | 238 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 381
- 在线时间
- 238 小时
- 注册时间
- 2013-8-20
- 帖子
- 496
|
在Scene_Battle有这个定义- #--------------------------------------------------------------------------
- # * 執行戰鬥行為:攻擊
- #--------------------------------------------------------------------------
- def execute_action_attack
- self.mp += 25
- text = sprintf(Vocab::DoAttack, @active_battler.name)
- @message_window.add_instant_text(text)
- targets = @active_battler.action.make_targets
- display_attack_animation(targets)
- wait(20)
- for target in targets
- target.attack_effect(@active_battler)
- display_action_effects(target)
- end
- end
- #-----------------
复制代码 加入一句self.mp += 25 |
|