Sha256: 6f748f0c2036170aabfd0ea5fa09b2ab1464fbf49ab35c61706a2ac54052740d

Contents?: true

Size: 980 Bytes

Versions: 9

Compression:

Stored size: 980 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
      
      # stats
      player.movements_made += 1

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
gemwarrior-0.9.37 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.36 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.35 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.34 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.33 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.32 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.31 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.30 lib/gemwarrior/entities/items/rope.rb
gemwarrior-0.9.28 lib/gemwarrior/entities/items/rope.rb