Class: RubyWarrior::Abilities::Walk

Inherits:
Base
  • Object
show all
Defined in:
lib/ruby_warrior/abilities/walk.rb

Instance Method Summary collapse

Methods inherited from Base

#damage, #initialize, #offset, #pass_turn, #space, #unit, #verify_direction

Constructor Details

This class inherits a constructor from RubyWarrior::Abilities::Base

Instance Method Details

#descriptionObject



4
5
6
# File 'lib/ruby_warrior/abilities/walk.rb', line 4

def description
  "Move in the given direction (forward by default)."
end

#perform(direction = :forward) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/ruby_warrior/abilities/walk.rb', line 8

def perform(direction = :forward)
  verify_direction(direction)
  if @unit.position
    @unit.say "walks #{direction}"
    if space(direction).empty?
      @unit.position.move(*offset(direction))
    else
      @unit.say "bumps into #{space(direction)}"
    end
  end
end