Class: Studio::Dex
Overview
Data class describing a dex
Defined Under Namespace
Classes: CreatureInfo
Instance Attribute Summary collapse
-
#creatures ⇒ Array<CreatureInfo>
readonly
Get the list of creature in the dex.
-
#csv ⇒ CSVAccess
readonly
Get the dex name.
-
#db_symbol ⇒ Symbol
readonly
Get the db_symbol of the dex.
-
#id ⇒ Integer
readonly
Get the ID of the dex.
-
#start_id ⇒ Integer
readonly
Get the start id of each creature in the dex.
Instance Method Summary collapse
-
#name ⇒ String
Get the name of the dex.
Instance Attribute Details
#creatures ⇒ Array<CreatureInfo> (readonly)
Get the list of creature in the dex
870 871 872 |
# File 'docs/3_Studio.rb', line 870 def creatures @creatures end |
#csv ⇒ CSVAccess (readonly)
Get the dex name
873 874 875 |
# File 'docs/3_Studio.rb', line 873 def csv @csv end |
#db_symbol ⇒ Symbol (readonly)
Get the db_symbol of the dex
861 862 863 |
# File 'docs/3_Studio.rb', line 861 def db_symbol @db_symbol end |
#id ⇒ Integer (readonly)
Get the ID of the dex
864 865 866 |
# File 'docs/3_Studio.rb', line 864 def id @id end |
#start_id ⇒ Integer (readonly)
Get the start id of each creature in the dex
867 868 869 |
# File 'docs/3_Studio.rb', line 867 def start_id @start_id end |