feat: Implement gradual daily streak decay and rename currency from 'coins' to 'Astral Units'.

This commit is contained in:
syntaxbullet
2025-12-14 14:16:16 +01:00
parent ee2fda83e5
commit 4639fecf45
3 changed files with 6 additions and 9 deletions

View File

@@ -13,9 +13,9 @@ export const daily = createCommand({
const embed = new EmbedBuilder()
.setTitle("💰 Daily Reward Claimed!")
.setDescription(`You claimed **${result.amount}** coins!`)
.setDescription(`You claimed **${result.amount}** Astral Units!`)
.addFields(
{ name: "Current Streak", value: `🔥 ${result.streak} days`, inline: true },
{ name: "Activity Score", value: `🔥 ${result.streak}`, inline: true },
{ name: "Next Reward", value: `<t:${Math.floor(result.nextReadyAt.getTime() / 1000)}:R>`, inline: true }
)
.setColor("Gold")