Sha256: c4d1f6d171ec496330eefe2388186be7e55e3fa8a6c4dc2627f7fe5623e251c1
Contents?: true
Size: 554 Bytes
Versions: 9
Compression:
Stored size: 554 Bytes
Contents
# lib/gemwarrior/entities/items/stalactite.rb # Item::Stalactite require_relative '../item' module Gemwarrior class Stalactite < Item def initialize self.name = 'stalactite' self.description = 'Long protrusion of cave adornment, broken off and fallen to the ground, where the stalagmites sneer at it from.' self.atk_lo = 2 self.atk_hi = 3 self.takeable = true self.useable = true self.equippable = true self.equipped = false end end end
Version data entries
9 entries across 9 versions & 1 rubygems