Class: Gemwarrior::Feather
- Defined in:
- lib/gemwarrior/entities/items/feather.rb
Instance Attribute Summary
Attributes inherited from Item
Attributes inherited from Entity
#consumable, #describe, #describe_detailed, #description, #display_shopping_cart, #equippable, #equipped, #name, #name_display, #number_of_uses, #takeable, #talkable, #useable, #useable_battle, #used, #used_again
Instance Method Summary collapse
-
#initialize ⇒ Feather
constructor
A new instance of Feather.
Methods inherited from Item
Methods inherited from Entity
Constructor Details
#initialize ⇒ Feather
Returns a new instance of Feather.
8 9 10 11 12 13 14 15 |
# File 'lib/gemwarrior/entities/items/feather.rb', line 8 def initialize super self.name = 'feather' self.name_display = 'Feather' self.description = 'A blue and green feather. It is soft and tender, unlike the craven bird that probably shed it.' self.takeable = true end |