Class: StudioGame::BerserkPlayer
- Defined in:
- lib/studio_game/berserk_player.rb
Instance Attribute Summary
Attributes inherited from Player
#found_treasures, #health, #name
Instance Method Summary collapse
- #berserk? ⇒ Boolean
- #blam ⇒ Object
-
#initialize(name, health = 100) ⇒ BerserkPlayer
constructor
A new instance of BerserkPlayer.
- #w00t ⇒ Object
Methods inherited from Player
#<=>, #each_found_treasure, #format_score, #found_treasure, parse, #points, #score, #to_s
Methods included from Playable
Constructor Details
#initialize(name, health = 100) ⇒ BerserkPlayer
Returns a new instance of BerserkPlayer.
5 6 7 8 |
# File 'lib/studio_game/berserk_player.rb', line 5 def initialize(name, health=100) super(name, health) @w00ts = 0 end |
Instance Method Details
#berserk? ⇒ Boolean
10 11 12 |
# File 'lib/studio_game/berserk_player.rb', line 10 def berserk? @w00ts > 5 end |
#blam ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/studio_game/berserk_player.rb', line 22 def blam if berserk? w00t else super end end |
#w00t ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/studio_game/berserk_player.rb', line 14 def w00t super @w00ts += 1 if berserk? puts "#{@name} is berserk!" end end |