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.
849 850 851 852 853 854 |
# File 'lib/R3EXS/RGSS3.rb', line 849 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.
857 858 859 |
# File 'lib/R3EXS/RGSS3.rb', line 857 def etype_id @etype_id end |
#params ⇒ Object
Returns the value of attribute params.
858 859 860 |
# File 'lib/R3EXS/RGSS3.rb', line 858 def params @params end |
#price ⇒ Object
Returns the value of attribute price.
856 857 858 |
# File 'lib/R3EXS/RGSS3.rb', line 856 def price @price end |