class StudioGame::BerserkPlayer

Public Class Methods

new(name, health = 0) click to toggle source
Calls superclass method
# File lib/studio_game/berserk_player.rb, line 4
  def initialize(name, health = 0)
super
@w00t_count = 0
  end

Public Instance Methods

berserk?() click to toggle source
# File lib/studio_game/berserk_player.rb, line 9
  def berserk?
@w00t_count > 5
  end
blam() click to toggle source
Calls superclass method
# File lib/studio_game/berserk_player.rb, line 19
  def blam
berserk? ? w00t : super
  end
w00t() click to toggle source
Calls superclass method
# File lib/studio_game/berserk_player.rb, line 13
  def w00t 
super
@w00t_count += 1
puts "#{@name} is berserk!" if berserk?
  end