Just add this bad boy in your Hubot's scripts
directory, then call hubot failboat
.
Created
September 10, 2014 16:04
-
-
Save johnthepink/5eee36d524644e73bf13 to your computer and use it in GitHub Desktop.
Hubot Failboat Support
This file contains hidden or 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
# Description: | |
# Fail boat | |
# | |
# Dependencies: | |
# None | |
# | |
# Configuration: | |
# None | |
# | |
# Commands: | |
# hubot failboat | |
# | |
# Author: | |
# johnthepink | |
module.exports = (robot) -> | |
failboat = """ | |
.-- .-\"\"-. | |
. ) ( ) | |
. ( ) ( | |
. / ) | |
. (_ _) 0_,-.__ | |
. (_ )_ |_.-._/ | |
. ( ) |lulz..\ | |
. (__) |__--_/ | |
. |'' ``\ | | |
. | [Lulz] \ | /b/ | |
. | \ ,,,---===?A`\ | ,==y' | |
. ___,,,,,---==\"\"\ |M] \ | ;|\ |> | |
. _ _ \ ___,|H,,---==\"\"\"\"bno, | |
. o O (_) (_) \ / _ AWAW/ | |
. / _(+)_ dMM/ | |
. \@_,,,,,,---==\" \ \\|// MW/ | |
.--''''\" === d/ | |
. // SET SAIL FOR FAIL! | |
. ,'_________________________ | |
. \ \ \ \ ,/~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
. _____ ,' ~~~ .-\"\"-.~~~~~~ .-\"\"-. | |
. .-\"\"-. ///==--- /`-._ ..-' -.__..-' | |
. `-.__..-' =====\\\\\\ V/ .---\. | |
. ~~~~~~~~~~~~, _',--/_.\ .-\"\"-. | |
. .-\"\"-.___` -- \| -.__..- | |
""" | |
robot.respond /failboat me/i, (msg) -> | |
msg.send failboat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment