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
#found_treasures, #health, #name
Instance Method Summary
collapse
Methods inherited from Player
#found_treasure, from_csv, #points, #score, #to_s
Constructor Details
#initialize(name, health = 150) ⇒ BerserkPlayer
5
6
7
8
|
# File 'lib/studio_game/berserk_player.rb', line 5
def initialize(name, health = 150)
@boost_count = 0
super(name, health)
end
|
Instance Method Details
#berserk? ⇒ Boolean
10
11
12
|
# File 'lib/studio_game/berserk_player.rb', line 10
def berserk?
@boost_count > 5
end
|
#boost ⇒ Object
14
15
16
17
18
|
# File 'lib/studio_game/berserk_player.rb', line 14
def boost
super
@boost_count += 1
puts "#{name} is berserk!" if berserk?
end
|
#drain ⇒ Object
20
21
22
23
|
# File 'lib/studio_game/berserk_player.rb', line 20
def drain
berserk? ? boost : super
super
end
|