Files
xiao/commands/single/tableflip.js
T
2024-05-21 21:02:12 -04:00

30 lines
721 B
JavaScript

const Command = require('../../framework/Command');
const { delay } = require('../../util/Util');
const frames = [
'(-°□°)- ┬─┬',
'(╯°□°)╯ ]',
'(╯°□°)╯ ︵ ┻━┻',
'(╯°□°)╯ [',
'(╯°□°)╯ ┬─┬'
];
module.exports = class TableflipCommand extends Command {
constructor(client) {
super(client, {
name: 'tableflip',
aliases: ['a-tableflip', 'animated-tableflip'],
group: 'single',
description: 'Flips a table... With animation!'
});
}
async run(msg) {
const message = await msg.say('(\\\\°□°)\\\\ ┬─┬');
for (const frame of frames) {
await delay(100);
await message.edit(frame);
}
return message;
}
};