RPG::System::Terms

Data class for terminology.

Superclass

Referrer

Attributes

level

The term "Level".

level_a

The term "Level" (abbreviation).

hp

The term "HP".

hp_a

The term "HP" (abbreviation).

mp

The term "MP".

mp_a

The term "MP" (abbreviation).

atk

The term "Attack".

def

The term "Defense".

spi

The term "Spirit".

agi

The term "Agility".

weapon

The term "Weapon".

armor1

The term "Shield".

armor2

The term "Helmet".

armor3

The term "Body Armor".

armor4

The term "Accessory".

weapon1

The term "Weapon1"。

weapon2

The term "Weapon2"。

attack

The term "Attack".

skill

The term "Skill".

guard

The term "Guard".

item

The term "Item".

equip

The term "Equip".

status

The term "Status".

save

The term "Save".

game_end

The term "Game End".

fight

The term "Fight".

escape

The term "Escape".

new_game

The term "New Game".

continue

The term "Continue".

shutdown

The term "Shutdown".

to_title

The term "To Title".

cancel

The term "Cancel".

gold

The term "G" (the unit of currency).

Definition

module RPG
  class System
    class Terms
      def initialize
        @level = ""
        @level_a = ""
        @hp = ""
        @hp_a = ""
        @mp = ""
        @mp_a = ""
        @atk = ""
        @def = ""
        @spi = ""
        @agi = ""
        @weapon = ""
        @armor1 = ""
        @armor2 = ""
        @armor3 = ""
        @armor4 = ""
        @weapon1 = ""
        @weapon2 = ""
        @attack = ""
        @skill = ""
        @guard = ""
        @item = ""
        @equip = ""
        @status = ""
        @save = ""
        @game_end = ""
        @fight = ""
        @escape = ""
        @new_game = ""
        @continue = ""
        @shutdown = ""
        @to_title = ""
        @cancel = ""
        @gold = ""
      end
      attr_accessor :level
      attr_accessor :level_a
      attr_accessor :hp
      attr_accessor :hp_a
      attr_accessor :mp
      attr_accessor :mp_a
      attr_accessor :atk
      attr_accessor :def
      attr_accessor :spi
      attr_accessor :agi
      attr_accessor :weapon
      attr_accessor :armor1
      attr_accessor :armor2
      attr_accessor :armor3
      attr_accessor :armor4
      attr_accessor :weapon1
      attr_accessor :weapon2
      attr_accessor :attack
      attr_accessor :skill
      attr_accessor :guard
      attr_accessor :item
      attr_accessor :equip
      attr_accessor :status
      attr_accessor :save
      attr_accessor :game_end
      attr_accessor :fight
      attr_accessor :escape
      attr_accessor :new_game
      attr_accessor :continue
      attr_accessor :shutdown
      attr_accessor :to_title
      attr_accessor :cancel
      attr_accessor :gold
    end
  end
end
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)