Sha256: 9348318685eb462fde2968b29f27ded220a44771f0d68cd9f539ae52ea4d55b2
Contents?: true
Size: 542 Bytes
Versions: 32
Compression:
Stored size: 542 Bytes
Contents
# lib/gemwarrior/entities/items/dagger.rb # Item::Dagger require_relative '../item' module Gemwarrior class Dagger < Item def initialize self.name = 'dagger' self.description = 'Flint that has been sharpened to a point, attached to a block of smooth granite by thin rope. Truly a work of art.' self.atk_lo = 2 self.atk_hi = 4 self.takeable = true self.useable = false self.equippable = true self.equipped = false end end end
Version data entries
32 entries across 32 versions & 1 rubygems