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, #score

Instance Method Summary collapse

Methods inherited from Player

#<=>, #each_found_treasure, #found_treasure, from_csv, #points, #to_s

Methods included from Playable

#strong?

Constructor Details

#initialize(name, health = 100) ⇒ BerserkPlayer

Returns a new instance of BerserkPlayer.



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

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

Instance Method Details

#berserk?Boolean

Returns:

  • (Boolean)


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

def berserk?
	@woot_count > 5
end

#blamObject



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

def blam
	if berserk?
		w00t
	else
		super
	end
end

#w00tObject



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

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