Sha256: edbd2a361f6b55e705cf074faee83e13a635cfb66a53614698aa703fa6a24e1a
Contents?: true
Size: 485 Bytes
Versions: 15
Compression:
Stored size: 485 Bytes
Contents
# lib/gemwarrior/entities/weapons/dagger.rb # Entity::Item::Weapon::Dagger require_relative '../weapon' module Gemwarrior class Dagger < Weapon def initialize super self.name = 'dagger' self.name_display = '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 end end end
Version data entries
15 entries across 15 versions & 1 rubygems