generated from nhcarrigan/template
c5d1f53eef
- 18 zones, 72 bosses, 90 quests across the goddess realm - 32 disciple tiers, 53 equipment pieces, 9 equipment sets - 57 goddess upgrades, 25 consecration upgrades, 15 enlightenment upgrades - 54 sacred materials, 36 crafting recipes, 72 exploration areas - 40 goddess achievements - Added GoddessEquipmentSet type + computeGoddessSetBonuses to @elysium/types - All data files excluded from coverage pending Chunk 4 route imports
192 lines
8.8 KiB
TypeScript
192 lines
8.8 KiB
TypeScript
/**
|
|
* @file Game data definitions.
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
/* eslint-disable stylistic/max-len -- Data content */
|
|
import type { GoddessZone } from "@elysium/types";
|
|
|
|
export const defaultGoddessZones: Array<GoddessZone> = [
|
|
{
|
|
description:
|
|
"A realm of endless bloom where divine flowers grow in patterns that mirror the stars above. This is where newly awakened disciples take their first steps into the goddess's domain â and where the hardest part of the journey quietly begins.",
|
|
emoji: "ðļ",
|
|
id: "goddess_celestial_garden",
|
|
name: "The Celestial Garden",
|
|
status: "locked",
|
|
unlockBossId: null,
|
|
unlockQuestId: null,
|
|
},
|
|
{
|
|
description:
|
|
"A vast temple of living crystal whose facets hold every divine truth ever recorded. The scholars here do not distinguish between knowing something and becoming it.",
|
|
emoji: "ð",
|
|
id: "goddess_crystal_sanctum",
|
|
name: "The Crystal Sanctum",
|
|
status: "locked",
|
|
unlockBossId: "heavenly_warden",
|
|
unlockQuestId: "first_prayer",
|
|
},
|
|
{
|
|
description:
|
|
"A cathedral suspended in the astral plane, its spires reaching into realms that have no name. The choir that fills it has been singing the same hymn since before mortals learned to speak.",
|
|
emoji: "âĻ",
|
|
id: "goddess_astral_cathedral",
|
|
name: "The Astral Cathedral",
|
|
status: "locked",
|
|
unlockBossId: "sanctum_keeper",
|
|
unlockQuestId: "divine_meditation",
|
|
},
|
|
{
|
|
description:
|
|
"The fortress of the celestial host â a bastion of divine authority so immense that mortal minds instinctively refuse to estimate its size. The warriors here have never known defeat.",
|
|
emoji: "ð°",
|
|
id: "goddess_empyrean_citadel",
|
|
name: "The Empyrean Citadel",
|
|
status: "locked",
|
|
unlockBossId: "cathedral_warden",
|
|
unlockQuestId: "astral_revelation",
|
|
},
|
|
{
|
|
description:
|
|
"The wellspring of all creation â the point from which every soul, every star, and every prayer ultimately originates. Standing here is not comfortable. It is, however, true.",
|
|
emoji: "ð",
|
|
id: "goddess_primordial_springs",
|
|
name: "The Primordial Springs",
|
|
status: "locked",
|
|
unlockBossId: "citadel_guardian",
|
|
unlockQuestId: "empyrean_ascent",
|
|
},
|
|
{
|
|
description:
|
|
"The highest reach of the divine realm â where the goddess herself resides, and where all divine law originates. Everything below this point is a reflection of what exists here. Nothing here reflects anything else.",
|
|
emoji: "ð",
|
|
id: "goddess_eternal_firmament",
|
|
name: "The Eternal Firmament",
|
|
status: "locked",
|
|
unlockBossId: "wellspring_warden",
|
|
unlockQuestId: "springs_blessing",
|
|
},
|
|
{
|
|
description:
|
|
"An ancient grove where divine trees have grown for longer than the firmament has existed. Their roots drink directly from the primordial springs, and their canopy touches realms that have no name. Pilgrims do not enter this grove. They are invited.",
|
|
emoji: "ðŋ",
|
|
id: "goddess_sacred_grove",
|
|
name: "The Sacred Grove",
|
|
status: "locked",
|
|
unlockBossId: "the_goddess_avatar",
|
|
unlockQuestId: "eternal_ascension",
|
|
},
|
|
{
|
|
description:
|
|
"A realm of pure, unfiltered divine radiance â light made absolute, stripped of shadow, warmth, or mercy. Those who walk here must learn to see without their eyes, because the light does not illuminate. It simply is.",
|
|
emoji: "âïļ",
|
|
id: "goddess_luminous_expanse",
|
|
name: "The Luminous Expanse",
|
|
status: "locked",
|
|
unlockBossId: "grove_sovereign",
|
|
unlockQuestId: "grove_harmony",
|
|
},
|
|
{
|
|
description:
|
|
"The forge where the goddess shaped the first stars and the last laws of existence. The heat here is not heat â it is conviction made manifest. Every tool ever used to build a world was made here, and every one of them remembers.",
|
|
emoji: "ðĨ",
|
|
id: "goddess_heavenly_forge",
|
|
name: "The Heavenly Forge",
|
|
status: "locked",
|
|
unlockBossId: "light_titan",
|
|
unlockQuestId: "light_transcendence",
|
|
},
|
|
{
|
|
description:
|
|
"The sanctum of the divine oracle â the seat of all prophecy, all foresight, and all terrible knowledge that cannot be unlearned. The oracle does not grant visions here. The visions grant themselves, and they do not ask permission.",
|
|
emoji: "ðŪ",
|
|
id: "goddess_oracle_sanctum",
|
|
name: "The Oracle Sanctum",
|
|
status: "locked",
|
|
unlockBossId: "forge_master",
|
|
unlockQuestId: "forge_mastery",
|
|
},
|
|
{
|
|
description:
|
|
"The nesting ground of the seraphim â creatures that were never mortal, never made, and have no concept of a time before themselves. The nest is not a physical place. It is a state of being that those who reach it will never fully leave.",
|
|
emoji: "ðŠķ",
|
|
id: "goddess_seraphs_nest",
|
|
name: "The Seraph's Nest",
|
|
status: "locked",
|
|
unlockBossId: "grand_oracle",
|
|
unlockQuestId: "oracle_truth",
|
|
},
|
|
{
|
|
description:
|
|
"The repository of all divine knowledge â every truth the goddess has ever uttered, every law she has written, every act of creation she has witnessed. The archive is infinite, and it is still growing. The librarians here have forgotten how long they have served.",
|
|
emoji: "ð",
|
|
id: "goddess_divine_archive",
|
|
name: "The Divine Archive",
|
|
status: "locked",
|
|
unlockBossId: "supreme_seraph",
|
|
unlockQuestId: "seraph_ascension",
|
|
},
|
|
{
|
|
description:
|
|
"The depths that exist beneath the divine realm â the sacred abyss from which the goddess drew the first darkness that gives light its meaning. Nothing down here is evil. It is simply the part of creation that was never meant to be seen.",
|
|
emoji: "ðģïļ",
|
|
id: "goddess_consecrated_depths",
|
|
name: "The Consecrated Depths",
|
|
status: "locked",
|
|
unlockBossId: "archive_guardian",
|
|
unlockQuestId: "archive_completion",
|
|
},
|
|
{
|
|
description:
|
|
"The point where all divine currents converge â the confluence of every law, every prayer, every act of faith ever offered. Standing here is not a spiritual experience. It is a mathematical one. You are the solution to an equation the goddess has been solving since the beginning.",
|
|
emoji: "ð",
|
|
id: "goddess_astral_confluence",
|
|
name: "The Astral Confluence",
|
|
status: "locked",
|
|
unlockBossId: "depths_sovereign",
|
|
unlockQuestId: "depths_revelation",
|
|
},
|
|
{
|
|
description:
|
|
"The throne from which the goddess first looked down upon creation and chose to love it. It has not been sat in since. To approach it is to feel the weight of that choice pressing against you â the full, impossible gravity of a god who decided the universe was worth keeping.",
|
|
emoji: "âĄ",
|
|
id: "goddess_celestial_throne",
|
|
name: "The Celestial Throne",
|
|
status: "locked",
|
|
unlockBossId: "confluence_arbiter",
|
|
unlockQuestId: "confluence_alignment",
|
|
},
|
|
{
|
|
description:
|
|
"The choir of infinite voices â every soul that has ever achieved divinity, still singing the hymn that carried them there. The music here does not end. It has never ended. It is, in the strictest sense, the sound of eternity doing what eternity does.",
|
|
emoji: "ðĩ",
|
|
id: "goddess_infinite_choir",
|
|
name: "The Infinite Choir",
|
|
status: "locked",
|
|
unlockBossId: "throne_guardian",
|
|
unlockQuestId: "throne_recognition",
|
|
},
|
|
{
|
|
description:
|
|
"The veil that separates the divine realm from whatever lies beyond it â the last border between what can be known and what the goddess herself has chosen not to look at directly. Crossing it is not forbidden. It is simply unprecedented.",
|
|
emoji: "ðŦïļ",
|
|
id: "goddess_veil",
|
|
name: "The Veil",
|
|
status: "locked",
|
|
unlockBossId: "choir_conductor",
|
|
unlockQuestId: "choir_perfection",
|
|
},
|
|
{
|
|
description:
|
|
"The heart of the divine â the absolute centre of the goddess's being, the point from which all her love and all her law and all her creation ultimately originates. You have walked the entire length of her domain to stand here. She has been waiting. She is not surprised.",
|
|
emoji: "ð",
|
|
id: "goddess_divine_heart",
|
|
name: "The Divine Heart",
|
|
status: "locked",
|
|
unlockBossId: "veil_guardian",
|
|
unlockQuestId: "veil_crossing",
|
|
},
|
|
];
|