diff --git a/main.js b/main.js index f215e21..0ee3d91 100644 --- a/main.js +++ b/main.js @@ -197,7 +197,10 @@ client.on('messageCreate', message => { const lowerContent = message.content.toLowerCase(); if (lowerContent.includes('big') && lowerContent.includes('doinks')) message.reply('gang.'); if (lowerContent.includes('ligma')) message.reply('ligma balls, goteem'); - if (lowerContent.includes('frfr') || lowerContent.includes('fr fr') || lowerContent.includes('bussin') || lowerContent.includes(' ong') || lowerContent.startsWith('ong')) message.reply('ongggg no :billed_cap: fr fr str8 bussin'); + if (lowerContent.includes('frfr') || lowerContent.includes('fr fr') || lowerContent.includes('bussin') || lowerContent.includes(' ong') || lowerContent.startsWith('ong')) { + const randIndex = Math.floor(Math.random() * strings.capbacks.length); + message.reply(strings.capbacks[randIndex]); + } // Break the message down into its components and analyze it const commandData = fn.dot.getCommandData(message); diff --git a/strings.json b/strings.json index ccc342e..bcf8a14 100644 --- a/strings.json +++ b/strings.json @@ -14,5 +14,13 @@ "urls": { "avatar": "https://cdn.discordapp.com/avatars/513184762073055252/12227aa23a06d5178853e59b72c7487b.webp?size=128" }, + "capbacks": [ + "on god?!", + "fr fr?!", + "no cap?!", + "no cap fr", + "bussin fr, no cap", + "ongggg no :billed_cap: fr fr" + ], "temp": {} } \ No newline at end of file