Class: MasmaGame::RedPlayer
- Inherits:
-
Player
- Object
- Player
- MasmaGame::RedPlayer
show all
- Defined in:
- lib/masma_game/red_player.rb
Instance Attribute Summary
Attributes inherited from Player
#health, #name
Instance Method Summary
collapse
Methods inherited from Player
#<=>, #each_found_hoard, #found_hoard, from_csv, #points, #score, #to_s
Methods included from Playable
#strong?
Constructor Details
#initialize(name, health = 100) ⇒ RedPlayer
Returns a new instance of RedPlayer.
5
6
7
8
|
# File 'lib/masma_game/red_player.rb', line 5
def initialize(name, health=100)
super(name, health)
@w00t_count = 0
end
|
Instance Method Details
#blam ⇒ Object
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/masma_game/red_player.rb', line 20
def blam
if red?
w00t
else
super
end
end
|
#red? ⇒ Boolean
10
11
12
|
# File 'lib/masma_game/red_player.rb', line 10
def red?
@w00t_count > 5
end
|
#w00t ⇒ Object
14
15
16
17
18
|
# File 'lib/masma_game/red_player.rb', line 14
def w00t
super
@w00t_count +=1
puts "#{@name} is Red Army!" if red?
end
|