/** * @file Game data definitions. * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ /* eslint-disable stylistic/max-len -- Data content */ import type { TranscendenceUpgrade } from "@elysium/types"; export const defaultTranscendenceUpgrades: Array = [ // ── Income multipliers ────────────────────────────────────────────────────── { category: "income", cost: 2, description: "The echoes of past runs linger, amplifying your guild's income by 25%.", id: "echo_income_1", multiplier: 1.25, name: "Whisper of Power", }, { category: "income", cost: 4, description: "Your transcendent experience resonates through your guild, boosting income by 50%.", id: "echo_income_2", multiplier: 1.5, name: "Resonance", }, { category: "income", cost: 8, description: "The harmony of multiple timelines surges through your guild, doubling its income.", id: "echo_income_3", multiplier: 2, name: "Harmonic Surge", }, { category: "income", cost: 16, description: "Ethereal energy overflows from your transcendence, tripling your guild's income.", id: "echo_income_4", multiplier: 3, name: "Ethereal Overflow", }, { category: "income", cost: 32, description: "The infinite chorus of every run you've ever played amplifies your guild fivefold.", id: "echo_income_5", multiplier: 5, name: "Infinite Chorus", }, // ── Combat multipliers ────────────────────────────────────────────────────── { category: "combat", cost: 2, description: "Memories of countless battles harden your adventurers, increasing party DPS by 25%.", id: "echo_combat_1", multiplier: 1.25, name: "Battle-Hardened", }, { category: "combat", cost: 6, description: "Veterans of transcendence know how to fight smarter, boosting party DPS by 50%.", id: "echo_combat_2", multiplier: 1.5, name: "Veteran's Edge", }, { category: "combat", cost: 12, description: "Your warriors carry the strength of every fallen timeline, doubling party DPS.", id: "echo_combat_3", multiplier: 2, name: "Transcendent Warrior", }, // ── Prestige threshold reductions ────────────────────────────────────────── { category: "prestige_threshold", cost: 3, description: "Experience from past lives shortens the road to prestige — threshold reduced by 10%.", id: "echo_prestige_threshold_1", multiplier: 0.9, name: "Accelerated Path", }, { category: "prestige_threshold", cost: 6, description: "You've walked this path so many times you know every shortcut — threshold reduced by 20%.", id: "echo_prestige_threshold_2", multiplier: 0.8, name: "Shortcut Through Time", }, // ── Prestige runestone multipliers ───────────────────────────────────────── { category: "prestige_runestones", cost: 3, description: "Transcendent insight attunes you to the runestones, earning 50% more per prestige.", id: "echo_prestige_runestones_1", multiplier: 1.5, name: "Runic Attunement", }, { category: "prestige_runestones", cost: 6, description: "You have mastered the art of runestone crafting, doubling your prestige runestone yield.", id: "echo_prestige_runestones_2", multiplier: 2, name: "Master Runesmith", }, // ── Echo meta multipliers ─────────────────────────────────────────────────── { category: "echo_meta", cost: 15, description: "Your transcendence resonates deeper, amplifying future echo yields by 25%.", id: "echo_meta_1", multiplier: 1.25, name: "Resonant Awakening", }, { category: "echo_meta", cost: 45, description: "Each loop of existence makes the next more powerful — future echo yields +50%.", id: "echo_meta_2", multiplier: 1.5, name: "Transcendent Loop", }, { category: "echo_meta", cost: 100, description: "You have mastered the infinite spiral of transcendence, doubling all future echo yields.", id: "echo_meta_3", multiplier: 2, name: "Infinite Spiral", }, ];