Class: Gemwarrior::LeatherJerkin

Inherits:
Armor show all
Defined in:
lib/gemwarrior/entities/armor/leather_jerkin.rb

Instance Attribute Summary

Attributes inherited from Armor

#defense

Attributes inherited from Item

#is_armor, #is_weapon, #use

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

Methods inherited from Armor

#describe_detailed, #use

Methods inherited from Item

#describe_detailed

Methods inherited from Entity

#puts, #use

Constructor Details

#initializeLeatherJerkin

Returns a new instance of LeatherJerkin.



8
9
10
11
12
13
14
15
# File 'lib/gemwarrior/entities/armor/leather_jerkin.rb', line 8

def initialize
  super

  self.name         = 'leather_jerkin'
  self.name_display = 'Leather Jerkin'
  self.description  = 'Brownish-black in color and fairly form-fitting, this jerkin will soften any blow a bit, at least.'
  self.defense      = 2
end