diff --git a/apps/api/src/data/achievements.ts b/apps/api/src/data/achievements.ts index 1d70349..bbc7693 100644 --- a/apps/api/src/data/achievements.ts +++ b/apps/api/src/data/achievements.ts @@ -315,6 +315,15 @@ export const defaultAchievements: Array = [ reward: { crystals: 5000 }, unlockedAt: null, }, + { + condition: { amount: 75, type: "questsCompleted" }, + description: "Complete 75 quests.", + icon: "🌠", + id: "quest_hero", + name: "Quest Hero", + reward: { crystals: 10_000 }, + unlockedAt: null, + }, { condition: { amount: 122, type: "questsCompleted" }, description: "Complete all 122 quests across the known multiverse.", @@ -343,6 +352,15 @@ export const defaultAchievements: Array = [ reward: { crystals: 5000 }, unlockedAt: null, }, + { + condition: { amount: 50, type: "bossesDefeated" }, + description: "Defeat 50 bosses.", + icon: "⚡", + id: "boss_legend", + name: "Legendary Vanquisher", + reward: { crystals: 15_000 }, + unlockedAt: null, + }, { condition: { amount: 72, type: "bossesDefeated" }, description: "Defeat all 72 bosses across every plane of existence.", @@ -396,7 +414,7 @@ export const defaultAchievements: Array = [ icon: "✨", id: "prestige_transcendent", name: "Transcendent", - reward: { crystals: 10_000 }, + reward: { runestones: 100 }, unlockedAt: null, }, { @@ -405,7 +423,7 @@ export const defaultAchievements: Array = [ icon: "💎", id: "prestige_eternal", name: "Eternal Looper", - reward: { crystals: 25_000 }, + reward: { runestones: 500 }, unlockedAt: null, }, { @@ -414,7 +432,7 @@ export const defaultAchievements: Array = [ icon: "🌟", id: "prestige_immortal", name: "Immortal Cycler", - reward: { crystals: 50_000 }, + reward: { runestones: 2000 }, unlockedAt: null, }, { @@ -423,7 +441,7 @@ export const defaultAchievements: Array = [ icon: "👑", id: "prestige_absolute", name: "Absolute Champion", - reward: { crystals: 100_000 }, + reward: { runestones: 10_000 }, unlockedAt: null, }, ];