Class: Gemwarrior::Opalaser
- Defined in:
- lib/gemwarrior/entities/weapons/opalaser.rb
Instance Attribute Summary
Attributes inherited from Weapon
#atk_hi, #atk_lo, #dex_mod, #is_weapon
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 ⇒ Opalaser
constructor
A new instance of Opalaser.
- #use(world) ⇒ Object
Methods inherited from Weapon
Methods inherited from Item
Methods inherited from Entity
Constructor Details
#initialize ⇒ Opalaser
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/gemwarrior/entities/weapons/opalaser.rb', line 8 def initialize super self.name = 'opalaser' self.name_display = 'Opalaser' self.description = 'Gleaming with supernatural light, this object feels alien, yet familiar.' self.atk_lo = 9 self.atk_hi = 11 self.dex_mod = 2 end |
Instance Method Details
#use(world) ⇒ Object
19 20 21 22 |
# File 'lib/gemwarrior/entities/weapons/opalaser.rb', line 19 def use(world) puts 'You pull the "trigger" on the opalaser, but nothing happens.' { type: nil, data: nil } end |