Class: StudioGame::BerserkPlayer

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

Instance Attribute Summary

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, #total_treasures

Methods included from Playable

#strong?

Constructor Details

#initialize(player_name, player_health = 100) ⇒ BerserkPlayer

Returns a new instance of BerserkPlayer.



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

def initialize(player_name, player_health=100)
   @wooted_times = 0
   super(player_name, player_health)
end

Instance Method Details

#berserk?Boolean

Returns:

  • (Boolean)


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

def berserk?
   @wooted_times > 5

end

#blamObject



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

def blam
   self.berserk? ? self.w00t : super 
end

#w00tObject



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

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