mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
30 lines
622 B
JavaScript
30 lines
622 B
JavaScript
const Command = require('../../structures/Command');
|
|
const { stripIndents } = require('common-tags');
|
|
|
|
module.exports = class DonateCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'donate',
|
|
aliases: ['paypal'],
|
|
group: 'util',
|
|
memberName: 'donate',
|
|
description: 'Responds with the bot\'s donation links.',
|
|
guarded: true,
|
|
credit: [
|
|
{
|
|
name: 'PayPal',
|
|
url: 'https://www.paypal.com/us/home',
|
|
reason: 'Donation Gathering'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say(stripIndents`
|
|
Contribute to development!
|
|
https://paypal.me/dragonfire535
|
|
`);
|
|
}
|
|
};
|