Sha256: 05d082164544d5c4b7c34ab4a1d64adf6a5d556988707698e7df52a80ba82c08

Contents?: true

Size: 930 Bytes

Versions: 2

Compression:

Stored size: 930 Bytes

Contents

# lib/gemwarrior/entities/items/rope.rb
# Item::Rope

require_relative '../item'

module Gemwarrior
  class Rope < Item
    def initialize
      self.name         = 'rope'
      self.description  = 'For some reason, a sturdy rope hangs down from a small opening in the metal tunnel\'s ceiling. It appears to hold your weight when taut.'
      self.atk_lo       = nil
      self.atk_hi       = nil
      self.takeable     = false
      self.useable      = true
      self.equippable   = false
      self.equipped     = false
    end

    def use(player = nil)
      puts 'You hold on to the rope with both hands and begin to climb upwards towards the small opening in the ceiling.'
      puts

      puts 'After a few minutes you pull yourself up onto a field of pure driven snow. Without warning, the rope and opening in the floor vanish.'
      puts

      {:type => 'move', :data => 'Snow Fields (Southeast)'}
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gemwarrior-0.8.8 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.8.7 lib/gemwarrior/entities/items/rope.rb