Class: PAUL::Berserk

Inherits:
Player show all
Defined in:
lib/PAUL/exercise20ber.rb

Instance Attribute Summary

Attributes inherited from Player

#health, #name

Instance Method Summary collapse

Methods inherited from Player

#each_found_treasure, #found_treasure, #points, #to_s

Methods included from Paul

#name, #score, #strong?

Constructor Details

#initialize(name, health = 100) ⇒ Berserk

Returns a new instance of Berserk.



7
8
9
10
# File 'lib/PAUL/exercise20ber.rb', line 7

def initialize(name, health=100)
    super(name, health)
    @w00t_count = 0
end

Instance Method Details

#berserk?Boolean

Returns:

  • (Boolean)


12
13
14
# File 'lib/PAUL/exercise20ber.rb', line 12

def berserk?
    @w00t_count > 5
end

#blamObject



22
23
24
25
26
27
28
# File 'lib/PAUL/exercise20ber.rb', line 22

def blam
    if berserk?
        w00t
    else
        super
    end
end

#w00tObject



16
17
18
19
20
# File 'lib/PAUL/exercise20ber.rb', line 16

def w00t
    super
    @w00t_count += 1
    puts "#{@name} is berserk!" if berserk?
end