Class: StudioGame::BeserkPlayer

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

Instance Attribute Summary

Attributes inherited from Player

#health, #name

Instance Method Summary collapse

Methods inherited from Player

#<=>, #each_found_treasure, #found_treasure, #points, #score, #to_s

Methods included from Playable

#strong?

Constructor Details

#initialize(name, health = 100) ⇒ BeserkPlayer

Returns a new instance of BeserkPlayer.



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

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

Instance Method Details

#beserk?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/studio_game/beserk_player.rb', line 11

def beserk?
  @times_w00ted > 5
end

#blamObject



21
22
23
# File 'lib/studio_game/beserk_player.rb', line 21

def blam
  beserk? ? w00t : super
end

#w00tObject



15
16
17
18
19
# File 'lib/studio_game/beserk_player.rb', line 15

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