Sha256: 4b67b594d4b5446cfd7273620f151d5e988e284d97483e781c598a908ac8c203

Contents?: true

Size: 610 Bytes

Versions: 3

Compression:

Stored size: 610 Bytes

Contents

# lib/gemwarrior/entities/items/throne.rb
# Entity::Item::Throne

require_relative '../item'

module Gemwarrior
  class Throne < Item
    def initialize
      super

      self.name         = 'throne'
      self.name_display = 'Throne'
      self.description  = 'Made of what appears to be unfulfilled desires and latent, flawed happiness, the well-crafted seat still looks kinda comfy. The wizard Emerald sits in it, glaring at you.'
    end
    
    def use
      puts 'Your words fall on deaf chairs. Emerald continues to stare at you.'
      { type: nil, data: nil }
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gemwarrior-0.11.2 lib/gemwarrior/entities/items/throne.rb
gemwarrior-0.11.1 lib/gemwarrior/entities/items/throne.rb
gemwarrior-0.11.0 lib/gemwarrior/entities/items/throne.rb