Skip to content

Instantly share code, notes, and snippets.

@jacoyutorius
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save jacoyutorius/84eacb6ba639b1a09486 to your computer and use it in GitHub Desktop.

Select an option

Save jacoyutorius/84eacb6ba639b1a09486 to your computer and use it in GitHub Desktop.
twintail.coffee
# Description:
# When anyone says 'twintail' then, bot puts jpg file.
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
# None
#
# Author:
# jacoyutorius
#
images = [
"http://37.media.tumblr.com/tumblr_m12ts2YRRv1qicm1qo1_500.png",
"http://31.media.tumblr.com/37adc9d2e304f85395afe14e2a5a2a57/tumblr_mqq60jCFm21qz6ekko1_500.jpg",
"http://media-cache-ak0.pinimg.com/736x/33/93/7a/33937a8415634ce48f4be41d52484886.jpg",
"http://pds.exblog.jp/pds/1/201304/11/52/e0157252_225747.jpg"
]
module.exports = (robot) ->
robot.hear /twintail|twinte|ツインテール|ツインテ/i, (msg) ->
msg.send msg.random images
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment