14 lines
409 B
JavaScript
14 lines
409 B
JavaScript
|
|
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])
|
||
|
|
}
|
||
|
|
}
|