Class: RubyGame::BerserkPlayer

Inherits:
Players
  • Object
show all
Defined in:
lib/ruby_game/berserk_player.rb

Instance Attribute Summary

Attributes inherited from Players

#health, #name

Instance Method Summary collapse

Methods inherited from Players

#each_treasure, #found_treasure, #points, #score, #to_s

Methods included from Playable

#strong?

Constructor Details

#initialize(name, health) ⇒ BerserkPlayer

Returns a new instance of BerserkPlayer.



4
5
6
7
# File 'lib/ruby_game/berserk_player.rb', line 4

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

Instance Method Details

#berserk?Boolean

Returns:

  • (Boolean)


9
10
11
# File 'lib/ruby_game/berserk_player.rb', line 9

def berserk?
    @woot_count>5
end

#blammedObject



21
22
23
24
25
26
27
# File 'lib/ruby_game/berserk_player.rb', line 21

def blammed
    if berserk?
        wooted
    else
        super
    end
end

#wootedObject



13
14
15
16
17
18
19
# File 'lib/ruby_game/berserk_player.rb', line 13

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