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)
        @heal_count = 0
end

Public Instance Methods

berserk?() click to toggle source
# File lib/studio_game/berserk_player.rb, line 12
def berserk?
        @heal_count >5
end
heal() click to toggle source
Calls superclass method
# File lib/studio_game/berserk_player.rb, line 16
def heal
        super
        @heal_count += 1
        puts "#{@name} is berserk!" if berserk?
end
slash() click to toggle source
Calls superclass method
# File lib/studio_game/berserk_player.rb, line 22
def slash
        if berserk?
                heal
        else
                super
        end
end