Skip to content

Instantly share code, notes, and snippets.

@rholdy
Last active August 29, 2015 14:09
Show Gist options
  • Save rholdy/213e84cef4552c6ba09c to your computer and use it in GitHub Desktop.
Save rholdy/213e84cef4552c6ba09c to your computer and use it in GitHub Desktop.
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