Class: RPG::UsableItem::Effect

Inherits:
Object
  • Object
show all
Extended by:
RgssDb::JsonableConstructor
Includes:
RgssDb::Jsonable
Defined in:
lib/rgss_db/model/rpg_maker_data/vx_ace/rpg/usable_item_effect.rb

Overview

The data inner class for use effects.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from RgssDb::JsonableConstructor

json_create, json_new

Methods included from RgssDb::Jsonable

#as_json, #to_json

Constructor Details

#initialize(code = 0, data_id = 0, value1 = 0, value2 = 0) ⇒ Effect

Returns a new instance of Effect.



15
16
17
18
19
20
# File 'lib/rgss_db/model/rpg_maker_data/vx_ace/rpg/usable_item_effect.rb', line 15

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

#codeObject

Returns the value of attribute code.



22
23
24
# File 'lib/rgss_db/model/rpg_maker_data/vx_ace/rpg/usable_item_effect.rb', line 22

def code
  @code
end

#data_idObject

Returns the value of attribute data_id.



22
23
24
# File 'lib/rgss_db/model/rpg_maker_data/vx_ace/rpg/usable_item_effect.rb', line 22

def data_id
  @data_id
end

#value1Object

Returns the value of attribute value1.



22
23
24
# File 'lib/rgss_db/model/rpg_maker_data/vx_ace/rpg/usable_item_effect.rb', line 22

def value1
  @value1
end

#value2Object

Returns the value of attribute value2.



22
23
24
# File 'lib/rgss_db/model/rpg_maker_data/vx_ace/rpg/usable_item_effect.rb', line 22

def value2
  @value2
end