/** * @file Game data definitions. * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ /* eslint-disable stylistic/max-len -- Data content */ /* eslint-disable max-lines -- Data file */ import type { GoddessAchievement } from "@elysium/types"; export const defaultGoddessAchievements: Array = [ // TotalPrayersEarned milestones { condition: { amount: 1000, type: "totalPrayersEarned" }, description: "Offer your first thousand prayers and feel the divine stir for the first time.", icon: "🕯️", id: "prayers_thousand", name: "Whisper of the Faithful", reward: { divinity: 5 }, unlockedAt: null, }, { condition: { amount: 10_000, type: "totalPrayersEarned" }, description: "Ten thousand prayers rise like incense smoke toward the heavens.", icon: "🙏", id: "prayers_ten_thousand", name: "Voice of Devotion", reward: { divinity: 25 }, unlockedAt: null, }, { condition: { amount: 100_000, type: "totalPrayersEarned" }, description: "A hundred thousand supplications echoing across the sacred halls.", icon: "⛪", id: "prayers_hundred_thousand", name: "Chorus of the Devoted", reward: { divinity: 100 }, unlockedAt: null, }, { condition: { amount: 1_000_000, type: "totalPrayersEarned" }, description: "One million prayers — the Goddess turns her gaze upon you at last.", icon: "✨", id: "prayers_million", name: "Radiant Supplicant", reward: { divinity: 300 }, unlockedAt: null, }, { condition: { amount: 10_000_000, type: "totalPrayersEarned" }, description: "Ten million prayers offered; the sacred flame burns without end.", icon: "🔥", id: "prayers_ten_million", name: "Eternal Flame of Worship", reward: { divinity: 750 }, unlockedAt: null, }, { condition: { amount: 100_000_000, type: "totalPrayersEarned" }, description: "A hundred million prayers — your faith moves the pillars of the cosmos.", icon: "💫", id: "prayers_hundred_million", name: "Pillar of the Cosmos", reward: { divinity: 1500 }, unlockedAt: null, }, { condition: { amount: 1_000_000_000, type: "totalPrayersEarned" }, description: "A billion prayers ascend, weaving a tapestry of light across the void.", icon: "🌌", id: "prayers_billion", name: "Weaver of Sacred Light", reward: { divinity: 2500 }, unlockedAt: null, }, { condition: { amount: 10_000_000_000, type: "totalPrayersEarned" }, description: "Ten billion prayers; the stars themselves bow in reverence.", icon: "⭐", id: "prayers_ten_billion", name: "Constellation of Faith", reward: { divinity: 3500 }, unlockedAt: null, }, { condition: { amount: 100_000_000_000, type: "totalPrayersEarned" }, description: "A hundred billion prayers — the divine throne trembles with your devotion.", icon: "🌠", id: "prayers_hundred_billion", name: "Trembler of the Divine Throne", reward: { divinity: 4250 }, unlockedAt: null, }, { condition: { amount: 1_000_000_000_000, type: "totalPrayersEarned" }, description: "A trillion prayers offered — you have become the Goddess's own heartbeat.", icon: "👁️", id: "prayers_trillion", name: "Heartbeat of the Goddess", reward: { divinity: 5000 }, unlockedAt: null, }, // GoddessBossesDefeated milestones { condition: { amount: 1, type: "goddessBossesDefeated" }, description: "Strike down your first divine adversary and claim your place among the faithful.", icon: "⚔️", id: "goddess_boss_first", name: "Champion's First Blood", reward: { divinity: 10 }, unlockedAt: null, }, { condition: { amount: 5, type: "goddessBossesDefeated" }, description: "Five sacred titans fall before your righteous fury.", icon: "🗡️", id: "goddess_boss_five", name: "Slayer of Sacred Titans", reward: { divinity: 75 }, unlockedAt: null, }, { condition: { amount: 15, type: "goddessBossesDefeated" }, description: "Fifteen divine guardians vanquished — the celestial war begins in earnest.", icon: "🛡️", id: "goddess_boss_fifteen", name: "Celestial Warlord", reward: { divinity: 300 }, unlockedAt: null, }, { condition: { amount: 30, type: "goddessBossesDefeated" }, description: "Thirty heavenly champions broken at your feet.", icon: "💥", id: "goddess_boss_thirty", name: "Breaker of the Heavenly Host", reward: { divinity: 800 }, unlockedAt: null, }, { condition: { amount: 45, type: "goddessBossesDefeated" }, description: "Forty-five divine guardians have crumbled; the heavens ring with your name.", icon: "🌟", id: "goddess_boss_forty_five", name: "Name Written in Heaven", reward: { divinity: 2000 }, unlockedAt: null, }, { condition: { amount: 55, type: "goddessBossesDefeated" }, description: "Fifty-five sacred sentinels silenced; even the Goddess watches with awe.", icon: "👑", id: "goddess_boss_fifty_five", name: "Awe of the Goddess", reward: { divinity: 4000 }, unlockedAt: null, }, { condition: { amount: 65, type: "goddessBossesDefeated" }, description: "Sixty-five divine colossi toppled; the celestial order bends to your will.", icon: "🌙", id: "goddess_boss_sixty_five", name: "Bender of the Celestial Order", reward: { divinity: 7000 }, unlockedAt: null, }, { condition: { amount: 72, type: "goddessBossesDefeated" }, description: "All seventy-two divine guardians have fallen. The heavens stand open before you.", icon: "🏆", id: "goddess_boss_all", name: "Conqueror of the Heavens", reward: { divinity: 10_000 }, unlockedAt: null, }, // GoddessQuestsCompleted milestones { condition: { amount: 1, type: "goddessQuestsCompleted" }, description: "Complete your first sacred trial and prove yourself worthy of divine attention.", icon: "📜", id: "goddess_quest_first", name: "First Sacred Trial", reward: { divinity: 5 }, unlockedAt: null, }, { condition: { amount: 5, type: "goddessQuestsCompleted" }, description: "Five holy tasks fulfilled — the Goddess acknowledges your diligence.", icon: "🌿", id: "goddess_quest_five", name: "Acknowledged by the Divine", reward: { divinity: 40 }, unlockedAt: null, }, { condition: { amount: 15, type: "goddessQuestsCompleted" }, description: "Fifteen sacred errands completed in the name of the eternal light.", icon: "☀️", id: "goddess_quest_fifteen", name: "Errand of Eternal Light", reward: { divinity: 175 }, unlockedAt: null, }, { condition: { amount: 30, type: "goddessQuestsCompleted" }, description: "Thirty divine mandates carried out; your legend grows in the celestial annals.", icon: "📖", id: "goddess_quest_thirty", name: "Inscribed in the Celestial Annals", reward: { divinity: 500 }, unlockedAt: null, }, { condition: { amount: 50, type: "goddessQuestsCompleted" }, description: "Fifty holy quests fulfilled — the sacred codex opens its deepest chapters to you.", icon: "🔮", id: "goddess_quest_fifty", name: "Reader of the Sacred Codex", reward: { divinity: 1200 }, unlockedAt: null, }, { condition: { amount: 65, type: "goddessQuestsCompleted" }, description: "Sixty-five divine missions accomplished; the heavenly choir sings your praises.", icon: "🎶", id: "goddess_quest_sixty_five", name: "Sung by the Heavenly Choir", reward: { divinity: 2500 }, unlockedAt: null, }, { condition: { amount: 80, type: "goddessQuestsCompleted" }, description: "Eighty sacred tasks complete — you walk the path of the exalted chosen.", icon: "🕊️", id: "goddess_quest_eighty", name: "Path of the Exalted Chosen", reward: { divinity: 3750 }, unlockedAt: null, }, { condition: { amount: 90, type: "goddessQuestsCompleted" }, description: "Ninety divine quests fulfilled — every last sacred duty discharged with glory.", icon: "🌈", id: "goddess_quest_all", name: "Glory of Full Devotion", reward: { divinity: 5000 }, unlockedAt: null, }, // DiscipleTotal milestones { condition: { amount: 10, type: "discipleTotal" }, description: "Gather ten disciples beneath the Goddess's light and begin your congregation.", icon: "👥", id: "disciples_ten", name: "Seeds of a Congregation", reward: { divinity: 10 }, unlockedAt: null, }, { condition: { amount: 25, type: "discipleTotal" }, description: "Twenty-five faithful souls gathered — the divine community takes shape.", icon: "🏛️", id: "disciples_twenty_five", name: "The Divine Community", reward: { divinity: 50 }, unlockedAt: null, }, { condition: { amount: 50, type: "discipleTotal" }, description: "Fifty disciples united in worship — a true flock of the faithful.", icon: "🕌", id: "disciples_fifty", name: "Flock of the Faithful", reward: { divinity: 150 }, unlockedAt: null, }, { condition: { amount: 100, type: "discipleTotal" }, description: "One hundred devoted souls kneel at the Goddess's altar by your invitation.", icon: "💎", id: "disciples_hundred", name: "Hundred Kneeling Souls", reward: { divinity: 450 }, unlockedAt: null, }, { condition: { amount: 250, type: "discipleTotal" }, description: "Two hundred and fifty disciples — a living temple of mortal devotion.", icon: "🗼", id: "disciples_two_fifty", name: "Living Temple of Devotion", reward: { divinity: 1200 }, unlockedAt: null, }, { condition: { amount: 500, type: "discipleTotal" }, description: "Five hundred disciples gathered; the mortal world trembles with collective faith.", icon: "🌍", id: "disciples_five_hundred", name: "Trembling World of Faith", reward: { divinity: 3000 }, unlockedAt: null, }, { condition: { amount: 1000, type: "discipleTotal" }, description: "A thousand disciples stand as testament to your divine calling.", icon: "⚡", id: "disciples_thousand", name: "Testament of the Divine Calling", reward: { divinity: 6000 }, unlockedAt: null, }, { condition: { amount: 2500, type: "discipleTotal" }, description: "Two thousand five hundred disciples — an empire of faith sculpted by your hands.", icon: "🏰", id: "disciples_two_five_hundred", name: "Empire of Faith", reward: { divinity: 10_000 }, unlockedAt: null, }, // ConsecrationCount milestones { condition: { amount: 1, type: "consecrationCount" }, description: "Undergo the sacred rite of Consecration for the first time and be reborn in divine fire.", icon: "🔱", id: "consecration_first", name: "First Rite of Rebirth", reward: { stardust: 1 }, unlockedAt: null, }, { condition: { amount: 3, type: "consecrationCount" }, description: "Three consecrations endured — the cycle of death and rebirth refines your soul.", icon: "♾️", id: "consecration_three", name: "Cycle of the Refined Soul", reward: { stardust: 2 }, unlockedAt: null, }, { condition: { amount: 6, type: "consecrationCount" }, description: "Six times reborn through sacred flame — the Goddess has remade you utterly.", icon: "🌺", id: "consecration_six", name: "Utterly Remade", reward: { stardust: 3 }, unlockedAt: null, }, { condition: { amount: 10, type: "consecrationCount" }, description: "Ten consecrations completed — you have transcended the mortal concept of self.", icon: "🌸", id: "consecration_ten", name: "Transcendence of Self", reward: { stardust: 5 }, unlockedAt: null, }, // GoddessEquipmentOwned milestones { condition: { amount: 10, type: "goddessEquipmentOwned" }, description: "Gather ten pieces of divine armament and begin to walk as an instrument of the Goddess.", icon: "🛡️", id: "goddess_equipment_ten", name: "Instrument of the Goddess", reward: { divinity: 500 }, unlockedAt: null, }, { condition: { amount: 53, type: "goddessEquipmentOwned" }, description: "Every piece of sacred armament claimed — the full divine arsenal is yours to wield.", icon: "⚜️", id: "goddess_equipment_all", name: "Bearer of the Full Divine Arsenal", reward: { stardust: 3 }, unlockedAt: null, }, ];