rebf-gaiden/Scripts/_ver1.3.rb
2025-04-27 12:52:39 -05:00

25 lines
763 B
Ruby
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

=begin
トリス 経験値倍率リザルト ver1
=end
#==============================================================================
# ■ BattleManager
#==============================================================================
module BattleManager
#--------------------------------------------------------------------------
# ● 獲得した経験値の表示
#--------------------------------------------------------------------------
def self.display_exp
rate = $game_party.battle_members[0].exr
if $game_troop.exp_total > 0
text = sprintf(Vocab::ObtainExp, ($game_troop.exp_total * rate).to_i)
$game_message.add('\.' + text)
$game_message.add("Intimacy Increased!")
end
end
end