wrzucamy śmietnik :DDDD

This commit is contained in:
Szprink 2025-08-12 18:39:05 +02:00
parent 6d3524eed5
commit cded4e036a
10 changed files with 2296 additions and 0 deletions

14
commands/twojastara.js Normal file
View file

@ -0,0 +1,14 @@
const fs = require('node:fs')
const twojaStara = fs.readFileSync('./twojastara.txt').toString().split('\n')
module.exports = {
data: {
"name": 'twojastara',
"usage": '',
"description": 'Sends a random "Twoja Stara" (Yo Mamma) joke.'
},
async execute(event, bot) {
let num = Math.floor(Math.random() * twojaStara.length)
event.reply(twojaStara[num])
}
}