Class: StudioGame::BerserkPlayer

Inherits:
Player
  • Object
show all
Defined in:
lib/studio_game/berserk_player.rb

Instance Attribute Summary

Attributes inherited from Player

#health, #name

Instance Method Summary collapse

Methods inherited from Player

#<=>, #each_treasure, #found_treasure, #points, #score, #to_s

Methods included from Playable

#strong?

Constructor Details

#initialize(name, health) ⇒ BerserkPlayer



5
6
7
8
# File 'lib/studio_game/berserk_player.rb', line 5

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

Instance Method Details

#berserk?Boolean



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

def berserk?
    if @woot_count > 5
        return true
    else
        return false
    end
end

#blamObject



18
19
20
# File 'lib/studio_game/berserk_player.rb', line 18

def blam
    berserk? ? woot : super
end

#wootObject



10
11
12
13
14
15
16
# File 'lib/studio_game/berserk_player.rb', line 10

def woot
    super()
    @woot_count += 1
    
    puts "#{@name} is in berserker mode!" if berserk?
    
end