diff --git a/responses/crescent.js b/responses/crescent.js index a0f772f..636aa26 100644 --- a/responses/crescent.js +++ b/responses/crescent.js @@ -25,7 +25,7 @@ module.exports = { const r = ["I was only trying to help Crescent..", "Someone's in a bad mood..", "I will peg you.", "I just wanted to make you happy Cres :("]; return message.channel.send(r[Math.floor(Math.random() * r.length)]); } - + if (incl(["luno i'm horny", "fuck me luno" ,"peg me luno"])) { const r = ["Sorry..not in the mood..", "Maybe we should hop in dms for a bit..;)", "isn't this server SFW?", "Why can't we just cuddle? Why do you always just want to fuck me?"]; return message.channel.send(r[Math.floor(Math.random() * r.length)]); @@ -50,6 +50,10 @@ module.exports = { const r2 = ["That's good to hear qt ^^", "Me too!", ":) Glad to know my favorite femboy is doing well!"]; return message.channel.send(r2[Math.floor(Math.random() * r2.length)]); } + if (content.toLowerCase().includes("horny")) { + const r2 = ["Sorry..not in the mood..", "Maybe we should hop in dms for a bit..;)", "Isn't this server SFW?", "Is there ever a time when you're not horny?"]; + return message.channel.send(r2[Math.floor(Math.random() * r2.length)]); + } } catch {} }