jillo-bot/src/commands/attack.ts

52 lines
2.4 KiB
TypeScript

import { GuildMember, CommandInteraction, SlashCommandBuilder } from 'discord.js';
import { getItem, getItemQuantity, formatItems, formatItem, weaponInventoryAutocomplete } from '../lib/rpg/items';
import { Command } from '../types/index';
import { initHealth, dealDamage, BLOOD_ITEM, BLOOD_ID, resetInvincible, INVINCIBLE_TIMER, getInvincibleMs } from '../lib/rpg/pvp';
export default {
data: new SlashCommandBuilder()
.setName('attack')
.setDescription('Attack someone using a weapon you have')
.addStringOption(option =>
option
.setName('weapon')
.setAutocomplete(true)
.setDescription('The weapon to use')
.setRequired(true)
)
.addUserOption(option =>
option
.setName('user')
.setRequired(true)
.setDescription('Who to attack with the weapon')
)
.setDMPermission(false),
execute: async (interaction: CommandInteraction) => {
if (!interaction.isChatInputCommand()) return;
const member = interaction.member! as GuildMember;
await initHealth(member.id);
const weaponID = parseInt(interaction.options.getString('weapon', true));
const user = interaction.options.getUser('user', true);
await interaction.deferReply({ephemeral: true});
const weapon = await getItem(weaponID);
if (!weapon) return interaction.followUp('No such item exists!');
if (weapon.type !== 'weapon') return interaction.followUp('That is not a weapon!');
const inv = await getItemQuantity(member.id, weapon.id);
if (inv.quantity === 0) return interaction.followUp('You do not have this weapon!');
const invinTimer = await getInvincibleMs(user.id);
if (invinTimer > 0) return interaction.followUp(`You can only attack this user <t:${Math.floor((Date.now() + invinTimer) / 1000)}:R> (or if they perform an action first)!`);
const dmg = weapon.maxStack;
await dealDamage(user.id, dmg);
const newHealth = await getItemQuantity(user.id, BLOOD_ID);
if (user.id !== member.id) await resetInvincible(member.id);
await interaction.followUp(`You hit ${user} with ${formatItem(weapon)} for ${BLOOD_ITEM.emoji} **${dmg}** damage! They are now at ${formatItems(BLOOD_ITEM, newHealth.quantity)}.\nYou can attack them again <t:${Math.floor((Date.now() + INVINCIBLE_TIMER) / 1000)}:R> (or if they perform an action first).`);
},
autocomplete: weaponInventoryAutocomplete,
} satisfies Command;