feat(docs): add poke slash command

This commit is contained in:
Anthony 2022-07-26 00:13:16 +01:00
parent 19c288ed9e
commit 06b4b35b43

67
src/commands/fun/poke.ts Normal file
View File

@ -0,0 +1,67 @@
// SPDX-License-Identifier: GPL-3.0-or-later
/*
Animal Rights Advocates Discord Bot
Copyright (C) 2022 Anthony Berg
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { Command, RegisterBehavior } from '@sapphire/framework';
import { MessageEmbed } from 'discord.js';
import { Poke } from '../../utils/gifs';
export class PokeCommand extends Command {
public constructor(context: Command.Context, options: Command.Options) {
super(context, {
...options,
name: 'poke',
description: 'Poke a user',
preconditions: ['PatreonOnly'],
});
}
// Registers that this is a slash command
public override registerApplicationCommands(registry: Command.Registry) {
registry.registerChatInputCommand(
(builder) => builder
.setName(this.name)
.setDescription(this.description)
.addUserOption((option) => option.setName('user')
.setDescription('User you want to poke')
.setRequired(true)),
{
behaviorWhenNotIdentical: RegisterBehavior.Overwrite,
},
);
}
// Command run
public async chatInputRun(interaction: Command.ChatInputInteraction) {
// Get the users
// TODO exception handling
const user = interaction.options.getUser('user')!;
const poker = interaction.member!.user;
const pokerGuildMember = interaction.guild!.members.cache.get(poker.id)!;
// Creates the embed for the poke
const randomPoke = Poke[Math.floor(Math.random() * Poke.length)];
const pokeEmbed = new MessageEmbed()
.setColor('#0099ff')
.setTitle(`Kill from ${pokerGuildMember.displayName}`)
.setImage(randomPoke);
// Send the poke
await interaction.reply({ content: `<@${user.id}>`, embeds: [pokeEmbed], fetchReply: true });
}
}