funny-irc-bot/commands/twojastara.js

14 lines
409 B
JavaScript
Raw Normal View History

2025-08-12 18:39:05 +02:00
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])
}
}