Class: Gemwarrior::Stonemite
- Defined in:
- lib/gemwarrior/entities/items/stonemite.rb
Instance Attribute Summary
Attributes inherited from Item
#atk_hi, #atk_lo, #consumable, #equippable, #equipped, #takeable, #use, #useable, #used
Attributes inherited from Entity
Instance Method Summary collapse
-
#initialize ⇒ Stonemite
constructor
A new instance of Stonemite.
Methods inherited from Item
Methods inherited from Entity
Constructor Details
#initialize ⇒ Stonemite
Returns a new instance of Stonemite.
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/gemwarrior/entities/items/stonemite.rb', line 8 def initialize self.name = 'stonemite' self.description = 'Stubby cave debris that is neat to look at, as it is off-grey and sparkly, but the size makes it unusable as anything but skipping on a lake.' self.atk_lo = nil self.atk_hi = nil self.takeable = true self.useable = false self.equippable = false self.equipped = false end |