Class: Studio::Dex::CreatureInfo
Overview
Data class describing a creature info in the dex
Instance Attribute Summary collapse
-
#db_symbol ⇒ Symbol
readonly
Get the db_symbol of the creature.
-
#form ⇒ Integer
readonly
Get the form of the creature.
Instance Method Summary collapse
-
#initialize(db_symbol, form) ⇒ CreatureInfo
constructor
Create a new CreatureInfo.
Constructor Details
#initialize(db_symbol, form) ⇒ CreatureInfo
Create a new CreatureInfo
889 890 |
# File 'docs/3_Studio.rb', line 889 def initialize(db_symbol, form) end |
Instance Attribute Details
#db_symbol ⇒ Symbol (readonly)
Get the db_symbol of the creature
882 883 884 |
# File 'docs/3_Studio.rb', line 882 def db_symbol @db_symbol end |
#form ⇒ Integer (readonly)
Get the form of the creature
885 886 887 |
# File 'docs/3_Studio.rb', line 885 def form @form end |