Class: Gemwarrior::Dehumidifier
- Defined in:
- lib/gemwarrior/entities/items/dehumidifier.rb
Instance Attribute Summary
Attributes inherited from Item
#atk_hi, #atk_lo, #equippable, #equipped, #reuse, #takeable, #use, #useable
Attributes inherited from Entity
Instance Method Summary collapse
-
#initialize ⇒ Dehumidifier
constructor
A new instance of Dehumidifier.
Methods inherited from Item
Methods inherited from Entity
Constructor Details
#initialize ⇒ Dehumidifier
Returns a new instance of Dehumidifier.
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/gemwarrior/entities/items/dehumidifier.rb', line 8 def initialize self.name = 'dehumidifier' self.description = 'Petals the color of clear sky and a stem of bright white. A most curious plant.' self.atk_lo = 2 self.atk_hi = 4 self.takeable = true self.useable = false self.equippable = true self.equipped = false end |