wrzucamy śmietnik :DDDD
This commit is contained in:
parent
6d3524eed5
commit
cded4e036a
10 changed files with 2296 additions and 0 deletions
14
commands/twojastara.js
Normal file
14
commands/twojastara.js
Normal 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])
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue