class Game_Enemy def pay_skill_cost(skill) super cost = skill_mp_cost(skill) $game_party.members.each { |a| a.mp += cost if a.armors.include? $data_armors[装备ID] } endend
class Game_Enemy def pay_skill_cost(skill) super cost = skill_mp_cost(skill) $game_party.members.each { |a| a.mp += cost if a.armors.include? $data_armors[装备ID] } end end
taroxd 发表于 2015-6-22 19:18 只给思路,未测试