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, #status, #to_s
Methods included from Playable
#<=>, #score, #strong?
Constructor Details
#initialize(name, health = 100) ⇒ BerserkPlayer
Returns a new instance of BerserkPlayer.
5
6
7
8
|
# File 'lib/studio_game/berserk_player.rb', line 5
def initialize(name, health = 100)
super(name, health)
@w00t_count = 0
end
|
Instance Method Details
#berserk? ⇒ Boolean
16
17
18
|
# File 'lib/studio_game/berserk_player.rb', line 16
def berserk?
@w00t_count > 5
end
|
#blam ⇒ Object
20
21
22
23
24
25
26
|
# File 'lib/studio_game/berserk_player.rb', line 20
def blam
if berserk?
w00t
else
super
end
end
|
#w00t ⇒ Object
10
11
12
13
14
|
# File 'lib/studio_game/berserk_player.rb', line 10
def w00t
super
@w00t_count += 1
puts "#{@name} is berserk!" if berserk?
end
|