mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-04-04 20:31:42 +03:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
const { MessageEmbed } = require('discord.js');
|
|
const { OptionTypes } = require('../modules/commands/helpers');
|
|
const Command = require('../modules/commands/command');
|
|
|
|
module.exports = class NewCommand extends Command {
|
|
constructor(client) {
|
|
const i18n = client.i18n.get();
|
|
super(client, {
|
|
internal: true,
|
|
name: i18n('commands.new.name'),
|
|
description: i18n('commands.new.description'),
|
|
options: [
|
|
// {
|
|
// name: i18n('commands.new.options.category.name'),
|
|
// type: OptionTypes.STRING,
|
|
// description: i18n('commands.new.options.topic.description'),
|
|
// required: true,
|
|
// },
|
|
{
|
|
name: i18n('commands.new.options.topic.name'),
|
|
type: OptionTypes.STRING,
|
|
description: i18n('commands.new.options.topic.description'),
|
|
required: false,
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async execute({ guild, member, channel, args }, interaction) {
|
|
|
|
let settings = await guild.settings;
|
|
const i18n = this.client.i18n.get(settings.locale);
|
|
|
|
await channel.send(
|
|
new MessageEmbed()
|
|
.setColor(settings.colour)
|
|
.setTitle(i18n('bot.version', require('../../package.json').version))
|
|
.setDescription(args.topic)
|
|
);
|
|
}
|
|
}; |