Module: Playable
- Included in:
- StudioGame::Player
- Defined in:
- lib/studio_game/playable.rb
Instance Method Summary collapse
Instance Method Details
#blam ⇒ Object
9 10 11 12 |
# File 'lib/studio_game/playable.rb', line 9 def blam self.health -= 10 puts "#{self.name} got blammed!" end |
#strong? ⇒ Boolean
13 14 15 16 |
# File 'lib/studio_game/playable.rb', line 13 def strong? self.health > 100 end |
#wOOt ⇒ Object
5 6 7 8 |
# File 'lib/studio_game/playable.rb', line 5 def wOOt() self.health += 15 puts "#{self.name} got wOOted!" end |