mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 06:24:15 +02:00
Merge pull request #25 from smyalygames/main
feat(arabot): add shrug command
This commit is contained in:
commit
9de7569137
@ -27,7 +27,7 @@ export class HappyCommand extends Command {
|
|||||||
...options,
|
...options,
|
||||||
name: 'happy',
|
name: 'happy',
|
||||||
description: 'Express your happiness',
|
description: 'Express your happiness',
|
||||||
preconditions: ['PatreonOnly'],
|
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ export class HugCommand extends Command {
|
|||||||
...options,
|
...options,
|
||||||
name: 'hug',
|
name: 'hug',
|
||||||
description: 'Hug a user',
|
description: 'Hug a user',
|
||||||
preconditions: ['PatreonOnly'],
|
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ export class KillCommand extends Command {
|
|||||||
...options,
|
...options,
|
||||||
name: 'kill',
|
name: 'kill',
|
||||||
description: 'Kill a user',
|
description: 'Kill a user',
|
||||||
preconditions: ['PatreonOnly'],
|
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ export class PokeCommand extends Command {
|
|||||||
...options,
|
...options,
|
||||||
name: 'poke',
|
name: 'poke',
|
||||||
description: 'Poke a user',
|
description: 'Poke a user',
|
||||||
preconditions: ['PatreonOnly'],
|
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ export class SadCommand extends Command {
|
|||||||
...options,
|
...options,
|
||||||
name: 'sad',
|
name: 'sad',
|
||||||
description: 'Express your sadness',
|
description: 'Express your sadness',
|
||||||
preconditions: ['PatreonOnly'],
|
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
63
src/commands/fun/shrug.ts
Normal file
63
src/commands/fun/shrug.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
// 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 { Shrug } from '../../utils/gifs';
|
||||||
|
|
||||||
|
export class ShrugCommand extends Command {
|
||||||
|
public constructor(context: Command.Context, options: Command.Options) {
|
||||||
|
super(context, {
|
||||||
|
...options,
|
||||||
|
name: 'shrug',
|
||||||
|
description: 'Ugh... whatever...',
|
||||||
|
preconditions: ['CoordinatorOnly'],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Registers that this is a slash command
|
||||||
|
public override registerApplicationCommands(registry: Command.Registry) {
|
||||||
|
registry.registerChatInputCommand(
|
||||||
|
(builder) => builder
|
||||||
|
.setName(this.name)
|
||||||
|
.setDescription(this.description),
|
||||||
|
{
|
||||||
|
behaviorWhenNotIdentical: RegisterBehavior.Overwrite,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Command run
|
||||||
|
public async chatInputRun(interaction: Command.ChatInputInteraction) {
|
||||||
|
// Get the user
|
||||||
|
// TODO exception handling
|
||||||
|
const member = interaction.member!.user;
|
||||||
|
const memberGuildMember = interaction.guild!.members.cache.get(member.id)!;
|
||||||
|
|
||||||
|
// Creates the embed for the shrug reaction
|
||||||
|
const randomShrug = Shrug[Math.floor(Math.random() * Shrug.length)];
|
||||||
|
const shrugEmbed = new MessageEmbed()
|
||||||
|
.setColor('#001980')
|
||||||
|
.setTitle(`${memberGuildMember.displayName} is whatever...`)
|
||||||
|
.setImage(randomShrug);
|
||||||
|
|
||||||
|
// Send the embed
|
||||||
|
await interaction.reply({ embeds: [shrugEmbed], fetchReply: true });
|
||||||
|
}
|
||||||
|
}
|
52
src/preconditions/CoordinatorOnly.ts
Normal file
52
src/preconditions/CoordinatorOnly.ts
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
// 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 { AllFlowsPrecondition } from '@sapphire/framework';
|
||||||
|
import type { CommandInteraction, ContextMenuInteraction, Message } from 'discord.js';
|
||||||
|
import { IDs } from '../utils/ids';
|
||||||
|
import type { GuildMember } from 'discord.js';
|
||||||
|
|
||||||
|
export class CoordinatorOnlyPrecondition extends AllFlowsPrecondition {
|
||||||
|
public override async messageRun(message: Message) {
|
||||||
|
// for message command
|
||||||
|
return this.checkCoordinator(message.member!);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async chatInputRun(interaction: CommandInteraction) {
|
||||||
|
// for slash command
|
||||||
|
return this.checkCoordinator(interaction.member! as GuildMember);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async contextMenuRun(interaction: ContextMenuInteraction) {
|
||||||
|
// for context menu command
|
||||||
|
return this.checkCoordinator(interaction.member! as GuildMember);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async checkCoordinator(user: GuildMember) {
|
||||||
|
return user.roles.cache.has(IDs.roles.staff.coordinator)
|
||||||
|
? this.ok()
|
||||||
|
: this.error({ message: 'Only coordinators can run this command!' });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '@sapphire/framework' {
|
||||||
|
interface Preconditions {
|
||||||
|
CoordinatorOnly: never;
|
||||||
|
}
|
||||||
|
}
|
@ -56,3 +56,10 @@ export const Sad = [
|
|||||||
'https://c.tenor.com/rD4KDir7lO0AAAAC/sad-pikachu.gif',
|
'https://c.tenor.com/rD4KDir7lO0AAAAC/sad-pikachu.gif',
|
||||||
'https://c.tenor.com/IeiDwBPDrZYAAAAC/peach-cat.gif',
|
'https://c.tenor.com/IeiDwBPDrZYAAAAC/peach-cat.gif',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
export const Shrug = [
|
||||||
|
'https://c.tenor.com/Bh2MF64_0JoAAAAC/whatever-shrug.gif',
|
||||||
|
'https://c.tenor.com/jQ-g5x_lPf0AAAAC/friends-joey.gif',
|
||||||
|
'https://c.tenor.com/U06tekgz-OQAAAAC/city-hunter-ryo-saeba.gif',
|
||||||
|
'https://c.tenor.com/mOR-MnUI3QEAAAAC/confused-white-persian-guardian.gif',
|
||||||
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user