Created
June 4, 2014 02:11
-
-
Save vexus2/94f1d666485931a8c9c6 to your computer and use it in GitHub Desktop.
"ぬるぽ"に反応してガッしてくれるHubotスクリプト
Slack内での表示に最適化済
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: | |
# Joke commands. | |
# | |
# Commands: | |
# ぬるぽ - You reply with, "ガッ" When you post a "ぬるぽ" word. | |
# | |
# Notes: | |
# ネタ/ジョーク系のbot全般 | |
module.exports = (robot) -> | |
robot.hear /ぬるぽ/, (msg) -> | |
msg.send """ | |
``` | |
Λ_Λ \\ | |
( ・∀・) | | ガッ | |
と ) | | | |
Y /ノ 人 | |
/ ) < > _Λ ∩ | |
_/し' // V`Д´)/ | |
(_フ彡 / ←>> @#{msg.message.user.name} | |
``` | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment