2021-09-24 00:08:29 +00:00
|
|
|
const fn = require('../functions.js');
|
2021-09-22 17:15:31 +00:00
|
|
|
const config = require('../config.json');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'spongebob',
|
2022-06-11 14:55:25 +00:00
|
|
|
alias: 'sb',
|
2021-09-22 17:15:31 +00:00
|
|
|
description: 'SpOnGeBoB-iFy AnYtHiNg AuToMaTiCaLly',
|
|
|
|
usage: '<text to convert>.spongebob',
|
|
|
|
execute(message, commandData) {
|
2022-06-11 14:55:25 +00:00
|
|
|
message.reply(fn.spongebob(commandData));
|
2021-09-22 17:15:31 +00:00
|
|
|
}
|
|
|
|
}
|