import type { Zone } from "@elysium/types"; export const DEFAULT_ZONES: Zone[] = [ { id: "verdant_vale", name: "The Verdant Vale", description: "Rolling green hills and ancient forests stretch to the horizon. This is where your guild takes its first steps — trade roads in need of clearing, goblin camps to rout, and an undead queen stirring in the north.", emoji: "🌿", status: "unlocked", unlockBossId: null, unlockQuestId: null, }, { id: "shattered_ruins", name: "The Shattered Ruins", description: "The remnants of a civilisation long lost to war and dragonfire. Crumbling towers and cursed lakes hide treasures — and an elder dragon who claims these lands as his own.", emoji: "🏛️", status: "locked", unlockBossId: "forest_giant", unlockQuestId: "ancient_ruins", }, { id: "frozen_peaks", name: "The Frozen Peaks", description: "At the edge of the world, where the sun barely rises and the cold is a living thing, a tear in reality has drawn something ancient and terrible. Only the mightiest guilds dare tread here.", emoji: "❄️", status: "locked", unlockBossId: "elder_dragon", unlockQuestId: "dragon_lair", }, { id: "shadow_marshes", name: "The Shadow Marshes", description: "A vast, fog-choked wetland where the sun never fully rises. Dark magic seeps from the earth itself, and things far older than the kingdom lurk beneath the murky waters.", emoji: "🌑", status: "locked", unlockBossId: "void_titan", unlockQuestId: "storm_citadel", }, { id: "volcanic_depths", name: "The Volcanic Depths", description: "A chain of active volcanoes whose caverns plunge deep into the earth's molten heart. Legendary forges burn here, tended by fire elementals who serve no master — yet.", emoji: "🌋", status: "locked", unlockBossId: "mud_kraken", unlockQuestId: "plague_ruins", }, { id: "astral_void", name: "The Astral Void", description: "Beyond the veil of the mortal world lies a realm of pure possibility and absolute terror. Stars are born and die here in moments, and the beings that call this place home have never known mortality.", emoji: "🌌", status: "locked", unlockBossId: "phoenix_lord", unlockQuestId: "the_forge", }, ];