赞 | 123 |
VIP | 13 |
好人卡 | 16 |
积分 | 194 |
经验 | 38692 |
最后登录 | 2024-11-16 |
在线时间 | 3102 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 19428
- 在线时间
- 3102 小时
- 注册时间
- 2013-1-11
- 帖子
- 1291
|
Game_BattlerBase
#--------------------------------------------------------------------------
# ● 判定技能/使用物品是否可用
#--------------------------------------------------------------------------
def usable?(item)
return false if item.is_a?(RPG::Skill) && item.id == 80 && !$game_switches[1]
return skill_conditions_met?(item) if item.is_a?(RPG::Skill)
return item_conditions_met?(item) if item.is_a?(RPG::Item)
return false
end
只有开关1打开后才可以使用80号技能,没毛病啊 |
评分
-
查看全部评分
|