赞 | 1 |
VIP | 22 |
好人卡 | 4 |
积分 | 1 |
经验 | 14594 |
最后登录 | 2015-10-25 |
在线时间 | 796 小时 |
Lv1.梦旅人 綾川司の姫様<
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 796 小时
- 注册时间
- 2007-12-20
- 帖子
- 4520
|
找到Game_Party于最后一个end前放上这段:
#--------------------------------------------------------------------------
# 地图损血
#--------------------------------------------------------------------------
def drophp
for actor in @actors
if actor.hp > 1 #开始掉血的最小数值,可改为别的数
actor.hp -= [actor.hp / 100, 1].max #损血当前HP的1%,可自行修改。损血不足1时按1掉
end
end
end
然后Game_Player里找到
def increase_steps
super
# 不是强制移动路线的场合
unless @move_route_forcing
# 增加步数
$game_party.increase_steps
# 步数是偶数的情况下
if $game_party.steps % 2 == 0
# 检查连续伤害
$game_party.check_map_slip_damage
$game_party.drophp
end
end
end 系统信息:本贴获得楼主认可,66RPG感谢您的热情解答~ |
|