forked from devschile/huemul
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathql.js
More file actions
36 lines (34 loc) · 835 Bytes
/
ql.js
File metadata and controls
36 lines (34 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Description:
// Huemul se suicida si lo ofenden
//
// Dependencies:
// None
//
// Configuration:
// None
//
// Commands:
// hubot ql|rql|ctm|m[áa]tate|culiao|reculiao|remilculiao - Muestra la muerte de :huemul:
//
// Author:
// @jorgeepunan
const ascii = [
'\n' +
'(҂._.)\n' +
'<,╤╦╤─ ҉ - - - - :huemul:\n' +
'/--\' \n\'',
'\n' +
'━━━━━┓\n' +
'┓┓┓┓┓┃ \\\n' +
'┓┓┓┓┓┃ :huemul: ~ chaoooooo\n' +
'┓┓┓┓┓┃\n' +
'┓┓┓┓┓┃ \n' +
'┓┓┓┓┓┃\n' +
'┓┓┓┓┓┃\n',
':bomb: :bomb: :bomb:\n' +
':bomb: :huemul: :bomb: :fire: ~ adiós mundo cruel\n' +
':bomb: :bomb: :bomb:\n'
]
module.exports = function (robot) {
return robot.respond(/ql|rql|ctm|m[áa]tate|culiao|reculiao|remilculiao/gi, msg => msg.send(msg.random(ascii)))
}