Class: RPG::UsableItem::Effect
- Inherits:
-
Object
- Object
- RPG::UsableItem::Effect
- Defined in:
- lib/R3EXS/RGSS3.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.
989 990 991 992 993 994 |
# File 'lib/R3EXS/RGSS3.rb', line 989 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.
996 997 998 |
# File 'lib/R3EXS/RGSS3.rb', line 996 def code @code end |
#data_id ⇒ Object
Returns the value of attribute data_id.
997 998 999 |
# File 'lib/R3EXS/RGSS3.rb', line 997 def data_id @data_id end |
#value1 ⇒ Object
Returns the value of attribute value1.
998 999 1000 |
# File 'lib/R3EXS/RGSS3.rb', line 998 def value1 @value1 end |
#value2 ⇒ Object
Returns the value of attribute value2.
999 1000 1001 |
# File 'lib/R3EXS/RGSS3.rb', line 999 def value2 @value2 end |