Class: RPG::UsableItem::Effect
- Inherits:
-
Object
- Object
- RPG::UsableItem::Effect
- Defined in:
- lib/rgss3/rpg.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
Returns the value of attribute code.
-
#data_id ⇒ Object
Returns the value of attribute data_id.
-
#value1 ⇒ Object
Returns the value of attribute value1.
-
#value2 ⇒ Object
Returns the value of attribute value2.
Instance Method Summary collapse
-
#initialize(code = 0, data_id = 0, value1 = 0, value2 = 0) ⇒ Effect
constructor
A new instance of Effect.
Constructor Details
#initialize(code = 0, data_id = 0, value1 = 0, value2 = 0) ⇒ Effect
Returns a new instance of Effect.
564 565 566 567 568 569 |
# File 'lib/rgss3/rpg.rb', line 564 def initialize(code = 0, data_id = 0, value1 = 0, value2 = 0) @code = code @data_id = data_id @value1 = value1 @value2 = value2 end |
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
570 571 572 |
# File 'lib/rgss3/rpg.rb', line 570 def code @code end |
#data_id ⇒ Object
Returns the value of attribute data_id.
571 572 573 |
# File 'lib/rgss3/rpg.rb', line 571 def data_id @data_id end |
#value1 ⇒ Object
Returns the value of attribute value1.
572 573 574 |
# File 'lib/rgss3/rpg.rb', line 572 def value1 @value1 end |
#value2 ⇒ Object
Returns the value of attribute value2.
573 574 575 |
# File 'lib/rgss3/rpg.rb', line 573 def value2 @value2 end |