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, #follow_up, #found_treasure, from_csv, #points, #score, #to_s

Methods included from Playable

#strong?

Constructor Details

#initialize(name, health = 100) ⇒ BerserkPlayer

Returns a new instance of BerserkPlayer.



7
8
9
10
# File 'lib/studio_game/berserk_player.rb', line 7

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

Instance Method Details

#berserk?Boolean

Returns:

  • (Boolean)


12
13
14
# File 'lib/studio_game/berserk_player.rb', line 12

def berserk?
		@high_fived > 5
end

#high_fiveObject



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

def high_five
		super
		@high_fived += 1
		puts "Holy shit! #{@name} is in berserker mode!" if berserk?
end

#shartObject



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

def shart
		if berserk?
 high_five
		else 
 super
		end
end