Class: RPG::EquipItem
Instance Attribute Summary collapse
-
#etype_id ⇒ Object
Returns the value of attribute etype_id.
-
#params ⇒ Object
Returns the value of attribute params.
-
#price ⇒ Object
Returns the value of attribute price.
Attributes inherited from BaseItem
#description, #features, #icon_index, #id, #name, #note
Instance Method Summary collapse
-
#initialize ⇒ EquipItem
constructor
A new instance of EquipItem.
Constructor Details
#initialize ⇒ EquipItem
Returns a new instance of EquipItem.
827 828 829 830 831 832 |
# File 'lib/R3EXS/RGSS3.rb', line 827 def initialize super @price = 0 @etype_id = 0 @params = [0] * 8 end |
Instance Attribute Details
#etype_id ⇒ Object
Returns the value of attribute etype_id.
835 836 837 |
# File 'lib/R3EXS/RGSS3.rb', line 835 def etype_id @etype_id end |
#params ⇒ Object
Returns the value of attribute params.
836 837 838 |
# File 'lib/R3EXS/RGSS3.rb', line 836 def params @params end |
#price ⇒ Object
Returns the value of attribute price.
834 835 836 |
# File 'lib/R3EXS/RGSS3.rb', line 834 def price @price end |