赞 | 0 |
VIP | 0 |
好人卡 | 4 |
积分 | 1 |
经验 | 33610 |
最后登录 | 2017-9-3 |
在线时间 | 710 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 710 小时
- 注册时间
- 2013-7-26
- 帖子
- 52
|
- #--------------------------------------------------------------------------
- # ● 应用物品效果
- # item : 物品
- #--------------------------------------------------------------------------
- def item_effect(item)
-
-
- self.critical = 0
- if ((item.scope == 3 or item.scope == 4) and self.hp == 0) or
- ((item.scope == 5 or item.scope == 6) and self.hp >= 1)
- # 过程结束(effective = false)
- return false
- end
-
-
- #判断特殊物品能否使用
- case item.id
- when 1..15 #境界丹
- a = [0,10,20,30,50,80,130,210,340,550,890,1440,2330,3770,6100,9870,9999]
- if $game_variables[self.id+200] != a[item.id] #境界等阶
- return false
- end
- if $game_actors[self.id].level < a[item.id] #练气等级
- return false
- end
- if $game_variables[self.id+300] < a[item.id] * 8064 #炼体等级
- return false
- end
- when 301..400 #绝技经
- if self.equip_fix?(6) and !$game_switches[self.id+100]
- return false
- end
- end
复制代码 可以参考我这个 |
|