- Added interactive selection for offers in the `offerEdit` command, allowing users to choose an offer to edit. - Improved permission checks with detailed error messages. - Refactored editor display and components for better readability and user experience. - Updated modal handling for various editing options (base, price, window, limits, metadata) to ensure consistent UI updates. - Enhanced feedback messages for successful updates and cancellations. - Integrated item fetching and formatting for better display of rewards in `pelear`, `pescar`, `plantar`, and `racha` commands. - Improved item display in the shop command with consistent formatting and icons.
90 lines
3.5 KiB
TypeScript
90 lines
3.5 KiB
TypeScript
import type { CommandMessage } from '../../../core/types/commands';
|
||
import type Amayo from '../../../core/client';
|
||
import { claimQuestReward, getPlayerQuests } from '../../../game/quests/service';
|
||
import { EmbedBuilder } from 'discord.js';
|
||
import { fetchItemBasics, formatItemLabel } from './_helpers';
|
||
|
||
export const command: CommandMessage = {
|
||
name: 'mision-reclamar',
|
||
type: 'message',
|
||
aliases: ['claim-quest', 'reclamar-mision'],
|
||
cooldown: 3,
|
||
description: 'Reclamar recompensa de misión completada',
|
||
usage: 'mision-reclamar <numero>',
|
||
run: async (message, args, client: Amayo) => {
|
||
try {
|
||
const userId = message.author.id;
|
||
const guildId = message.guild!.id;
|
||
|
||
if (!args[0]) {
|
||
await message.reply(`❌ Uso: \`!mision-reclamar <numero>\`\nEjemplo: \`!mision-reclamar 1\``);
|
||
return;
|
||
}
|
||
|
||
// Obtener misiones completadas
|
||
const quests = await getPlayerQuests(userId, guildId);
|
||
const allQuests = [...quests.daily, ...quests.weekly, ...quests.permanent, ...quests.event];
|
||
const claimable = allQuests.filter(q => q.canClaim);
|
||
|
||
if (claimable.length === 0) {
|
||
await message.reply('❌ No tienes misiones listas para reclamar. Completa misiones primero usando los comandos del bot.');
|
||
return;
|
||
}
|
||
|
||
const index = parseInt(args[0]) - 1;
|
||
if (isNaN(index) || index < 0 || index >= claimable.length) {
|
||
await message.reply(`❌ Número de misión inválido. Elige un número entre 1 y ${claimable.length}.`);
|
||
return;
|
||
}
|
||
|
||
const selected = claimable[index];
|
||
|
||
// Reclamar recompensa
|
||
const { quest, rewards } = await claimQuestReward(userId, guildId, selected.quest.id);
|
||
|
||
const rewardData = (quest.rewards as any) ?? {};
|
||
const formattedRewards: string[] = [];
|
||
if (rewardData.coins) formattedRewards.push(`💰 **${rewardData.coins.toLocaleString()}** monedas`);
|
||
if (rewardData.items && Array.isArray(rewardData.items) && rewardData.items.length) {
|
||
const basics = await fetchItemBasics(guildId, rewardData.items.map((item: any) => item.key));
|
||
for (const item of rewardData.items) {
|
||
const info = basics.get(item.key) ?? { key: item.key, name: null, icon: null };
|
||
const label = formatItemLabel(info, { bold: true });
|
||
formattedRewards.push(`${label} ×${item.quantity}`);
|
||
}
|
||
}
|
||
if (rewardData.xp) formattedRewards.push(`⭐ **${rewardData.xp}** XP`);
|
||
if (rewardData.title) formattedRewards.push(`🏆 Título: **${rewardData.title}**`);
|
||
const rewardsDisplay = formattedRewards.length > 0 ? formattedRewards : rewards;
|
||
|
||
const embed = new EmbedBuilder()
|
||
.setColor(0x00FF00)
|
||
.setTitle('🎉 ¡Misión Completada!')
|
||
.setDescription(`Has reclamado las recompensas de **${quest.name}**`)
|
||
.setThumbnail(message.author.displayAvatarURL({ size: 128 }));
|
||
|
||
// Mostrar recompensas
|
||
if (rewardsDisplay.length > 0) {
|
||
embed.addFields({
|
||
name: '🎁 Recompensas Recibidas',
|
||
value: rewardsDisplay.join('\n'),
|
||
inline: false
|
||
});
|
||
}
|
||
|
||
// Info de la misión
|
||
embed.addFields(
|
||
{ name: '📜 Misión', value: quest.description, inline: false }
|
||
);
|
||
|
||
embed.setFooter({ text: `Usa !misiones para ver más misiones` });
|
||
embed.setTimestamp();
|
||
|
||
await message.reply({ embeds: [embed] });
|
||
} catch (error: any) {
|
||
console.error('Error en comando mision-reclamar:', error);
|
||
await message.reply(`❌ ${error.message || 'Error al reclamar la misión.'}`);
|
||
}
|
||
}
|
||
};
|