赞 | 0 |
VIP | 230 |
好人卡 | 0 |
积分 | 1 |
经验 | 7916 |
最后登录 | 2019-1-21 |
在线时间 | 352 小时 |
Lv1.梦旅人 万物创造者
- 梦石
- 0
- 星屑
- 54
- 在线时间
- 352 小时
- 注册时间
- 2008-2-15
- 帖子
- 2432
|
Game_Party里- #--------------------------------------------------------------------------
- # ● 主角在地图上走一步的效果
- #--------------------------------------------------------------------------
- def on_player_walk
- for actor in members
- if actor.slip_damage?
- actor.hp -= 1 if actor.hp > 1 # 持续伤害
- $game_map.screen.start_flash(Color.new(255,0,0,64), 4)
- end
- if actor.auto_hp_recover and actor.hp > 0
- actor.hp += 1 # 体力自动回复
- end
- end
- end
复制代码 改成- #--------------------------------------------------------------------------
- # ● 主角在地图上走一步的效果
- #--------------------------------------------------------------------------
- def on_player_walk
- for actor in members
- if actor.slip_damage?
- actor.hp -= 1 #if actor.hp > 1 # 持续伤害
- if $game_party.all_dead?
- $game_temp.next_scene = "gameover"
- end
- $game_map.screen.start_flash(Color.new(255,0,0,64), 4)
- end
- if actor.auto_hp_recover and actor.hp > 0
- actor.hp += 1 # 体力自动回复
- end
- end
- end
复制代码 |
|