diff --git a/apps/api/src/data/quests.ts b/apps/api/src/data/quests.ts index b33b3a0..81d2bbc 100644 --- a/apps/api/src/data/quests.ts +++ b/apps/api/src/data/quests.ts @@ -82,7 +82,7 @@ export const defaultQuests: Array = [ rewards: [ { amount: 15_000, type: "gold" }, { amount: 20, type: "essence" }, - { targetId: "cleric_1", type: "upgrade" }, + { targetId: "acolyte_1", type: "upgrade" }, { targetId: "ranger", type: "adventurer" }, ], status: "locked", @@ -116,7 +116,7 @@ export const defaultQuests: Array = [ rewards: [ { amount: 300, type: "essence" }, { amount: 30, type: "crystals" }, - { targetId: "mage_1", type: "upgrade" }, + { targetId: "apprentice_1", type: "upgrade" }, { targetId: "archmage", type: "adventurer" }, ], status: "locked", diff --git a/apps/api/src/data/upgrades.ts b/apps/api/src/data/upgrades.ts index 1f06343..8256d65 100644 --- a/apps/api/src/data/upgrades.ts +++ b/apps/api/src/data/upgrades.ts @@ -209,7 +209,7 @@ export const defaultUpgrades: Array = [ costEssence: 2, costGold: 5000, description: "Ancient books of magic double mage output.", - id: "mage_1", + id: "apprentice_1", multiplier: 2, name: "Arcane Tomes", purchased: false, @@ -222,7 +222,7 @@ export const defaultUpgrades: Array = [ costEssence: 3, costGold: 8000, description: "Sacred ceremonies double the output of your clerics.", - id: "cleric_1", + id: "acolyte_1", multiplier: 2, name: "Holy Rites", purchased: false, diff --git a/apps/web/src/data/codex.ts b/apps/web/src/data/codex.ts index 3cc5fd9..d7a51cd 100644 --- a/apps/web/src/data/codex.ts +++ b/apps/web/src/data/codex.ts @@ -2752,8 +2752,8 @@ export const CODEX_ENTRIES: Array = [ { content: "The ancient books of magic acquired for the guild's mages contained techniques that their trainers had either not known or had chosen not to teach. The omission, in most cases, appeared to be deliberate — the techniques worked but produced results that the academies found uncomfortable to endorse. Your guild finds them extremely comfortable to have, and the mage output doubled from the application of knowledge that had been sitting in books waiting for someone to act on it.", - id: "upgrade_mage_1", - sourceId: "mage_1", + id: "upgrade_apprentice_1", + sourceId: "apprentice_1", sourceType: "upgrade", title: "Arcane Tomes: The Written Knowledge", zoneId: "guild_library", @@ -2761,8 +2761,8 @@ export const CODEX_ENTRIES: Array = [ { content: "The sacred ceremonies that your clerics now perform before and during operations were developed by your head cleric over six months of experimentation that their deity appears to have sanctioned, based on the results. The rites formalise the relationship between divine power and operational output into a repeatable process. Doubled cleric output is the result of making the exceptional ordinary through the discipline of ceremony.", - id: "upgrade_cleric_1", - sourceId: "cleric_1", + id: "upgrade_acolyte_1", + sourceId: "acolyte_1", sourceType: "upgrade", title: "Holy Rites: The Sacred Routine", zoneId: "guild_library",