Last active
December 17, 2015 20:39
-
-
Save rowanmanning/5669555 to your computer and use it in GitHub Desktop.
Hubot Animated Facepalm
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: | |
# None | |
# | |
# Dependencies: | |
# None | |
# | |
# Configuration: | |
# None | |
# | |
# Commands: | |
# facepalm - Illustrate a facepalm | |
# | |
# Author: | |
# rowanmanning | |
facepalms = [ | |
"http://replygif.net/i/639.gif", | |
"http://replygif.net/i/968.gif", | |
"http://replygif.net/i/133.gif", | |
"http://replygif.net/i/153.gif", | |
"http://replygif.net/i/148.gif", | |
"http://replygif.net/i/1012.gif", | |
"http://replygif.net/i/197.gif", | |
"http://replygif.net/i/792.gif", | |
"http://replygif.net/i/661.gif", | |
"http://replygif.net/i/586.gif" | |
] | |
module.exports = (robot) -> | |
robot.hear /face[ \-]?palm/i, (msg) -> | |
msg.send msg.random facepalms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment