Last active
August 5, 2016 06:49
-
-
Save Drunkar/2a6e5b9fd7b71b5a67d0218279df20fc to your computer and use it in GitHub Desktop.
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
| module.exports = (robot) -> | |
| ORACLE = "疲れからか、不幸にも黒塗りの高級車に追突してしまう。 | |
| 後輩をかばいすべての責任を負った三浦に対し、車の主、暴力団員谷岡に言い渡された示談の条件とは…。" | |
| robot.hear /.+(。|!|!)$/i, (msg) -> | |
| msg.send "しかし" + ORACLE | |
| robot.hear /(けど(、)?|のに|、|すぎて)$/i, (msg) -> | |
| msg.send ORACLE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment