class StudioGame::BerserkPlayer

Public Class Methods

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

Public Instance Methods

berserk?() click to toggle source
# File lib/studio_game/berserk_player.rb, line 12
def berserk?
  @w00ts > 5
end
blam() click to toggle source
Calls superclass method
# File lib/studio_game/berserk_player.rb, line 22
def blam
  berserk? ? w00t : super()
end
w00t() click to toggle source
Calls superclass method
# File lib/studio_game/berserk_player.rb, line 16
def w00t
  super()
  @w00ts += 1
  puts "Berserker is berserk" if berserk?
end