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