Break out of loop when reply is found, removed a ton of the things teto can say

This commit is contained in:
bingus_violet 2024-11-23 01:33:38 -06:00
parent b884e89852
commit 41051441f6

31
bot.js
View file

@ -2,7 +2,7 @@ var responses = [
{
"type": "random",
"keywords": [
["love", "cool"],
["love"],
["teto"]
],
"replies": [
@ -14,7 +14,7 @@ var responses = [
"type": "random",
"keywords": [
["teto"],
["hate", "fuck", "despise", "kill", "die"]
["hate", "despise", "die"]
],
"replies": [
"D:",
@ -34,8 +34,7 @@ var responses = [
["sorry", "my bad", "apologies", "forgive"]
],
"replies": [
"None is forgiven. You will all pay for your sins one day.",
"I'll think about it."
"None is forgiven. You will all pay for your sins one day."
]
},
{
@ -81,29 +80,6 @@ var responses = [
"Die in a fire."
]
},
{
"type": "random",
"keywords": [
["teto"],
["why"]
],
"replies": [
"Because!",
"Because I'm the adult here AND THAT'S FINAL!!! >:(",
"You'll understand when your older!!"
]
},
{
"type": "random",
"keywords": [
["teto"],
["feel", "thoughts", "how", "opinion"],
["miku", "hatsune"]
],
"replies": [
"Hatsune who? I don't know who your talking about, I guess you could say she wasn't TOO MESMERIZABLE!!!"
]
},
{
"type": "random",
"keywords": [
@ -145,6 +121,7 @@ module.exports = {
reply = reply(message)
}
message.reply(reply)
break
}
}
}