Class: StudioGame::BerserkPlayer

Inherits:
Player
  • Object
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

#<=>, #find_treasure, from_csv, #points, #score, #to_s

Methods included from Printable

#print_health_status, #print_player_information, #print_score, #print_treasure_trove, #print_treasures

Methods included from GameStats

#print_high_scores, #print_stats, #print_strength_stats, #print_treasure_stats, #total_points

Methods included from Formatting

#format_dot_spacing, #format_section_title

Methods included from Playable

#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

Returns:

  • (Boolean)


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

def berserk?
  @w00t_count > 5
end

#blamObject



20
21
22
# File 'lib/studio_game/berserk_player.rb', line 20

def blam
  berserk? ? w00t : super
end

#w00tObject



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

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