Class: StudioGame::BerserkPlayer
- Inherits:
-
Player
- Object
- Player
- StudioGame::BerserkPlayer
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_found_treasure, #found_treasure, from_csv, #points, #print_name_and_health, #score, #to_s
Methods included from Playable
#strong?
Constructor Details
#initialize(name, health = 42) ⇒ BerserkPlayer
Returns a new instance of BerserkPlayer.
6
7
8
9
|
# File 'lib/studio_game/berserk_player.rb', line 6
def initialize(name, health=42)
@wOOt_count = 0
super(name, health)
end
|
Instance Method Details
#berserk? ⇒ Boolean
21
22
23
|
# File 'lib/studio_game/berserk_player.rb', line 21
def berserk?
@wOOt_count > 5
end
|
#blam ⇒ Object
17
18
19
|
# File 'lib/studio_game/berserk_player.rb', line 17
def blam
berserk? ? wOOt : super
end
|
#wOOt ⇒ Object
11
12
13
14
15
|
# File 'lib/studio_game/berserk_player.rb', line 11
def wOOt
super
@wOOt_count += 1
puts "#{@name} is berserk!" if berserk?
end
|