Class: Gemwarrior::Stonemite

Inherits:
Item show all
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

#description, #name

Instance Method Summary collapse

Methods inherited from Item

#describe

Methods inherited from Entity

#status

Constructor Details

#initializeStonemite

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