24 lines
632 B
JavaScript
24 lines
632 B
JavaScript
const ascii = `
|
|
\`\`\`
|
|
_______ _________ _________ , ,
|
|
/ | / | |
|
|
| | | | |
|
|
| | | | |
|
|
\\_____, | | _______, |________|
|
|
\\ | | | | |
|
|
| | | | | |
|
|
| | | | | |
|
|
______/ ____|____ \\________| | |
|
|
\u200b
|
|
\`\`\`
|
|
`;
|
|
|
|
exports.run = function (bot, msg) {
|
|
msg.edit(ascii);
|
|
};
|
|
|
|
exports.info = {
|
|
name: 'sigh',
|
|
usage: 'sigh',
|
|
description: 'Dramatic sigh text'
|
|
};
|