赞 | 2 |
VIP | 15 |
好人卡 | 41 |
积分 | 33 |
经验 | 128560 |
最后登录 | 2024-4-2 |
在线时间 | 1120 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3298
- 在线时间
- 1120 小时
- 注册时间
- 2009-4-15
- 帖子
- 815
|
本帖最后由 tan12345 于 2013-11-3 21:26 编辑
1.中文帮助文档那个,你下载下来后双击打开会有个提示,你把那个勾选去掉,就可以看到内容而不是显示该页无法显示了。
2.你想实现这个需要脚本支持,起码数据库设定方面我暂时没想到怎么解决。至于脚本,如下(使用方法:插入到脚本(F11)main前面即可):- class Game_Battler < Game_BattlerBase
-
- STATE_ID = 15 #你说的那个特殊状态的id号
-
- #--------------------------------------------------------------------------
- # ● 计算伤害
- #--------------------------------------------------------------------------
- def make_damage_value(user, item)
- value = item.damage.eval(user, self, $game_variables)
- value *= item_element_rate(user, item)
- value *= pdr if item.physical?
- value *= mdr if item.magical?
- value *= rec if item.damage.recover?
- value = apply_critical(value) if @result.critical
- value = apply_variance(value, item.damage.variance)
- value = apply_guard(value)
- if item.damage.to_hp? and user.state?(STATE_ID) and value > 0
- value = 0 - value
- end
- @result.make_damage(value.to_i, item)
- end
- end
复制代码 补充说明:修改了class Game_Battler类的make_damage_value(user, item)方法。 |
评分
-
查看全部评分
|