Last active
August 29, 2015 14:09
-
-
Save rholdy/213e84cef4552c6ba09c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rrobots' | |
class DeathBot | |
include Robot | |
def tick events | |
turn 2 | |
if got_hit.size > 0 | |
accelerate 1 | |
say 'Murica!' | |
else | |
say 'You ded sucka!!' | |
end | |
fire 0.2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment