Class: StudioGame::BerserkPlayer

Inherits:
Player
  • Object
show all
Defined in:
lib/studio_game/berserk_player.rb

Instance Attribute Summary collapse

Attributes inherited from Player

#health, #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) ⇒ BerserkPlayer

Returns a new instance of BerserkPlayer.



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

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

Instance Attribute Details

#w00t_timesObject (readonly)

Returns the value of attribute w00t_times.



7
8
9
# File 'lib/studio_game/berserk_player.rb', line 7

def w00t_times
  @w00t_times
end

Instance Method Details

#blamObject



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

def blam
  if @w00t_times >= 6
    puts "Going loco!"
    w00t
  else
    super
  end
end

#w00tObject



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

def w00t
  @w00t_times += 1
  super
end