class Game_Battler def charge_tp_by_damage(_) end def recover_all super @tp = max_tp end end
怎样才能让职业添加有特技的才会显示特技值?
class Window_BattleStatus def draw_gauge_area(rect, actor) # 只有1,3,4号职业显示TP if $data_system.opt_display_tp && [1,3,4].include?(actor.class_id) draw_gauge_area_with_tp(rect, actor) else draw_gauge_area_without_tp(rect, actor) end end end
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |