Class: RPG::BaseItem
- Inherits:
-
Object
- Object
- RPG::BaseItem
- Defined in:
- lib/eidolon/rgss2/rpg/base_item.rb,
lib/eidolon/rgss3/rpg/base_item.rb,
lib/eidolon/rgss3/rpg/base_item/feature.rb
Overview
RGSS3
This data structure is specific to RGSS3 (VX Ace).
BaseItem
Superclass of actor, class, skill, item, weapon, armor, enemy, and state.
Some items are unnecessary depending on the type of data, but they are included for the sake of convenience.
Defined Under Namespace
Classes: Feature
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#features ⇒ Object
Returns the value of attribute features.
-
#icon_index ⇒ Object
Returns the value of attribute icon_index.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#note ⇒ Object
Returns the value of attribute note.
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
11 12 13 |
# File 'lib/eidolon/rgss2/rpg/base_item.rb', line 11 def description @description end |
#features ⇒ Object
Returns the value of attribute features.
15 16 17 |
# File 'lib/eidolon/rgss3/rpg/base_item.rb', line 15 def features @features end |
#icon_index ⇒ Object
Returns the value of attribute icon_index.
10 11 12 |
# File 'lib/eidolon/rgss2/rpg/base_item.rb', line 10 def icon_index @icon_index end |
#id ⇒ Object
Returns the value of attribute id.
8 9 10 |
# File 'lib/eidolon/rgss2/rpg/base_item.rb', line 8 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
9 10 11 |
# File 'lib/eidolon/rgss2/rpg/base_item.rb', line 9 def name @name end |
#note ⇒ Object
Returns the value of attribute note.
12 13 14 |
# File 'lib/eidolon/rgss2/rpg/base_item.rb', line 12 def note @note end |