Class: BerserkPlayer

Inherits:
StudioGame::Player show all
Defined in:
lib/studio_game/bersek_player.rb

Instance Attribute Summary

Attributes inherited from StudioGame::Player

#health, #name

Instance Method Summary collapse

Methods inherited from StudioGame::Player

#<=>, #each_found_treasure, #found_treasures, from_csv, #points, #score, #to_s

Methods included from Playable

#strong?

Constructor Details

#initialize(name, health = 100) ⇒ BerserkPlayer

Returns a new instance of BerserkPlayer.



4
5
6
7
# File 'lib/studio_game/bersek_player.rb', line 4

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

Instance Method Details

#berserk?Boolean

Returns:

  • (Boolean)


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

def berserk?
  @w00t_count > 5
end

#blamObject



19
20
21
22
23
24
25
26
27
28
# File 'lib/studio_game/bersek_player.rb', line 19

def blam
  if berserk?
    w00t
  else
    super
  end
  
  # or use the ternary operator:
  # berserk? ? w00t : super
end

#w00tObject



13
14
15
16
17
# File 'lib/studio_game/bersek_player.rb', line 13

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