Class: StudioGame::ClumsyPlayer

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

Instance Attribute Summary

Attributes inherited from Player

#health, #name, #score, #show

Instance Method Summary collapse

Methods inherited from Player

#<=>, #each_found_treasure, #points, #random_stuff, #to_s, #treasure_bag

Methods included from Playable

#blam, #strong?

Constructor Details

#initialize(name, health, boost_factor) ⇒ ClumsyPlayer

Returns a new instance of ClumsyPlayer.



8
9
10
11
# File 'lib/studio_game/clumsy_player.rb', line 8

def initialize(name, health, boost_factor)
  super(name, health)
  @boost_factor = boost_factor
end

Instance Method Details

#found_treasure(treasure = TreasureTrove::TREASURES.sample) ⇒ Object



13
14
15
16
# File 'lib/studio_game/clumsy_player.rb', line 13

def found_treasure(treasure = TreasureTrove::TREASURES.sample)
  damaged_treasure = Treasure.new(treasure.name, treasure.points/2)
  super(damaged_treasure)
end

#w00tObject



18
19
20
21
# File 'lib/studio_game/clumsy_player.rb', line 18

def w00t
  @boost_factor.times {super}
  puts "#{self.name}'s health is #{@health}"
end