Class: Studio::Dex
- Defined in:
- scripts/00800 Studio/00001 Data/00043 Dex.rb
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.
-
#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
18 19 20 |
# File 'scripts/00800 Studio/00001 Data/00043 Dex.rb', line 18 def creatures @creatures end |
#db_symbol ⇒ Symbol (readonly)
Get the db_symbol of the dex
6 7 8 |
# File 'scripts/00800 Studio/00001 Data/00043 Dex.rb', line 6 def db_symbol @db_symbol end |
#id ⇒ Integer (readonly)
Get the ID of the dex
10 11 12 |
# File 'scripts/00800 Studio/00001 Data/00043 Dex.rb', line 10 def id @id end |
#start_id ⇒ Integer (readonly)
Get the start id of each creature in the dex
14 15 16 |
# File 'scripts/00800 Studio/00001 Data/00043 Dex.rb', line 14 def start_id @start_id end |