Sha256: 97ce0b3595216681dbd22d15a3d2174ffe40baa9a6c0d4951236d2ee966c7061
Contents?: true
Size: 524 Bytes
Versions: 9
Compression:
Stored size: 524 Bytes
Contents
# lib/gemwarrior/entities/items/dagger.rb # Item::Dagger require_relative '../item' module Gemwarrior class Dagger < Item def initialize super 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 = 1 self.atk_hi = 3 self.takeable = true self.useable = false self.equippable = true end end end
Version data entries
9 entries across 9 versions & 1 rubygems