This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathyoda-quotes.coffee
45 lines (42 loc) · 1.68 KB
/
yoda-quotes.coffee
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
37
38
39
40
41
42
43
44
# Description:
# None
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
# yoda quote - Returns a random yoda quote
#
# Author:
# vquaiato
quotes = [
"Agree with you, the council does. Your apprentice, Skywalker will be.",
"Always two there are, no more, no less: a master and an apprentice.",
"Fear is the path to the Dark Side. Fear leads to anger, anger leads to hate; hate leads to suffering. I sense much fear in you.",
"Qui-Gon's defiance I sense in you.",
"Truly wonderful the mind of a child is.",
"Around the survivors a perimeter create.",
"Lost a planet Master Obi-Wan has. How embarrassing. how embarrassing.",
"Victory, you say? Master Obi-Wan, not victory. The shroud of the Dark Side has fallen. Begun the Clone War has.",
"Much to learn you still have...my old padawan... This is just the beginning!",
"Twisted by the Dark Side young Skywalker has become.",
"The boy you trained, gone he is, consumed by Darth Vader.",
"The fear of loss is a path to the Dark Side.",
"If into the security recordings you go, only pain will you find.",
"Not if anything to say about it I have.",
"Great warrior, hmm? Wars not make one great.",
"Do or do not; there is no try.",
"Size matters not. Look at me. Judge me by my size, do you?",
"That is why you fail.",
"No! No different. Only different in your mind. You must unlearn what you have learned.",
"Always in motion the future is.",
"Reckless he is. Matters are worse.",
"When nine hundred years old you reach, look as good, you will not.",
"No. There is... another... Sky... walker..."
]
module.exports = (robot) ->
robot.hear /.*(yoda quote).*/i, (msg) ->
msg.send msg.random quotes