You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/utility/donate.js

23 lines
757 B
JavaScript

import { SlashCommandBuilder } from '@discordjs/builders';
import { MessageEmbed } from 'discord.js';
import donations from '../../json/donations.json' assert {type: 'json'};
export default {
data: new SlashCommandBuilder()
.setName('donate')
.setDescription('Show donation link for the bot.'),
async execute(interaction) {
let desc = 'If you decide to donate, please do /feedback to let the owner know about it so he can put you in the about and donator command.';
donations.forEach(m => {
desc += `\n${m}`;
});
const Embed = new MessageEmbed()
.setColor(interaction.member ? interaction.member.displayHexColor : 'NAVY')
.setTitle('Donation link')
.setDescription(desc);
return interaction.reply({ embeds: [Embed] });
},
};