Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  2. #
  3. #HP and MP recovered when leveling up
  4. #
  5. #★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  6.  
  7.  
  8. #==============================================================================
  9. # ■ Game_Actor
  10. #------------------------------------------------------------------------------
  11. # This class handles actors. ($game_actors)
  12. # Referenced by Game_Party class ($game_party).
  13. #==============================================================================
  14.  
  15. class Game_Actor < Game_Battler
  16.   #--------------------------------------------------------------------------
  17.   # ● Level up
  18.   #--------------------------------------------------------------------------
  19.   alias maru0088_level_up level_up
  20.   def level_up
  21.     maru0088_level_up
  22.     @hp = mhp
  23.     @mp = mmp
  24.   end
  25. end