From 3a58125d14bb307f861b38c6c5b0a63babde7e08 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 13:28:06 -0400 Subject: feat: all skills kind of implemented, random prototype content added --- data/rooms/1.yaml | 1 + data/rooms/10.yaml | 1 + data/rooms/12.yaml | 1 + data/rooms/16.yaml | 8 ++++++-- data/rooms/17.yaml | 6 +++++- data/rooms/170.yaml | 7 +++++++ data/rooms/171.yaml | 7 +++++++ data/rooms/200.yaml | 8 ++++++++ data/rooms/201.yaml | 9 +++++++++ data/rooms/202.yaml | 9 +++++++++ data/rooms/203.yaml | 9 +++++++++ data/rooms/204.yaml | 9 +++++++++ data/rooms/205.yaml | 9 +++++++++ data/rooms/210.yaml | 9 +++++++++ data/rooms/211.yaml | 9 +++++++++ data/rooms/212.yaml | 9 +++++++++ data/rooms/213.yaml | 9 +++++++++ data/rooms/214.yaml | 9 +++++++++ data/rooms/215.yaml | 9 +++++++++ data/rooms/220.yaml | 9 +++++++++ data/rooms/221.yaml | 9 +++++++++ data/rooms/222.yaml | 9 +++++++++ data/rooms/223.yaml | 9 +++++++++ data/rooms/224.yaml | 9 +++++++++ data/rooms/225.yaml | 9 +++++++++ data/rooms/226.yaml | 9 +++++++++ data/rooms/54.yaml | 1 + data/rooms/55.yaml | 12 ++++++++++++ data/rooms/56.yaml | 9 +++++++++ data/rooms/57.yaml | 8 ++++++++ data/rooms/58.yaml | 8 ++++++++ data/rooms/59.yaml | 9 +++++++++ data/rooms/60.yaml | 8 ++++++++ data/rooms/61.yaml | 7 +++++++ data/rooms/62.yaml | 8 ++++++++ data/rooms/63.yaml | 8 ++++++++ data/rooms/64.yaml | 8 ++++++++ data/rooms/65.yaml | 8 ++++++++ data/rooms/66.yaml | 8 ++++++++ data/rooms/67.yaml | 8 ++++++++ data/rooms/68.yaml | 7 +++++++ data/rooms/7.yaml | 1 + data/rooms/8.yaml | 7 ++++++- data/rooms/player_housing/200.yaml | 8 ++++++++ data/rooms/player_housing/201.yaml | 8 ++++++++ 45 files changed, 338 insertions(+), 4 deletions(-) create mode 100644 data/rooms/170.yaml create mode 100644 data/rooms/171.yaml create mode 100644 data/rooms/200.yaml create mode 100644 data/rooms/201.yaml create mode 100644 data/rooms/202.yaml create mode 100644 data/rooms/203.yaml create mode 100644 data/rooms/204.yaml create mode 100644 data/rooms/205.yaml create mode 100644 data/rooms/210.yaml create mode 100644 data/rooms/211.yaml create mode 100644 data/rooms/212.yaml create mode 100644 data/rooms/213.yaml create mode 100644 data/rooms/214.yaml create mode 100644 data/rooms/215.yaml create mode 100644 data/rooms/220.yaml create mode 100644 data/rooms/221.yaml create mode 100644 data/rooms/222.yaml create mode 100644 data/rooms/223.yaml create mode 100644 data/rooms/224.yaml create mode 100644 data/rooms/225.yaml create mode 100644 data/rooms/226.yaml create mode 100644 data/rooms/55.yaml create mode 100644 data/rooms/56.yaml create mode 100644 data/rooms/57.yaml create mode 100644 data/rooms/58.yaml create mode 100644 data/rooms/59.yaml create mode 100644 data/rooms/60.yaml create mode 100644 data/rooms/61.yaml create mode 100644 data/rooms/62.yaml create mode 100644 data/rooms/63.yaml create mode 100644 data/rooms/64.yaml create mode 100644 data/rooms/65.yaml create mode 100644 data/rooms/66.yaml create mode 100644 data/rooms/67.yaml create mode 100644 data/rooms/68.yaml create mode 100644 data/rooms/player_housing/200.yaml create mode 100644 data/rooms/player_housing/201.yaml (limited to 'data/rooms') diff --git a/data/rooms/1.yaml b/data/rooms/1.yaml index fa3fb9b..c4ec261 100644 --- a/data/rooms/1.yaml +++ b/data/rooms/1.yaml @@ -10,6 +10,7 @@ exits: objects: - id: lumby_fountain - id: charging_station + - id: bank_booth mobs: - "newbie_trainer" - "general_store_clerk" diff --git a/data/rooms/10.yaml b/data/rooms/10.yaml index 73ac75a..edeac4d 100644 --- a/data/rooms/10.yaml +++ b/data/rooms/10.yaml @@ -7,3 +7,4 @@ exits: mobs: - id: skeleton - id: skeleton + - id: mutant_rat diff --git a/data/rooms/12.yaml b/data/rooms/12.yaml index 0c4443b..80380b8 100644 --- a/data/rooms/12.yaml +++ b/data/rooms/12.yaml @@ -9,6 +9,7 @@ mobs: objects: - id: furnace - id: anvil + - id: bank_booth spawns: - item_id: copper_ore quantity: 3 diff --git a/data/rooms/16.yaml b/data/rooms/16.yaml index 115d55b..3776f4f 100644 --- a/data/rooms/16.yaml +++ b/data/rooms/16.yaml @@ -1,8 +1,12 @@ id: 16 name: "Construction Site" -description: "A half-built structure surrounded by planks, nails, and blueprints. This area is not yet accessible." +description: "A half-built structure surrounded by planks, nails, and blueprints. A workbench stands ready for crafting. Signs point north toward the Local Neighborhood and east toward the lumberyard." exits: - east: 17 + east: 171 west: 15 + north: 170 +objects: + - id: workbench mobs: - id: greater_drone + - id: estate_broker diff --git a/data/rooms/17.yaml b/data/rooms/17.yaml index 80b1dfc..512ec9e 100644 --- a/data/rooms/17.yaml +++ b/data/rooms/17.yaml @@ -1,6 +1,10 @@ id: 17 name: "Bonfire" -description: "A ring of stones surrounds a bed of ash. A few unlit logs wait nearby. This area is not yet accessible." +description: "A ring of stones surrounds a bed of ash. A few unlit logs wait nearby. A narrow passage leads north toward what sounds like echoing footsteps and clanging metal." exits: east: 18 west: 16 + north: 200 +mobs: + - id: scrap_bot + - id: scrap_bot diff --git a/data/rooms/170.yaml b/data/rooms/170.yaml new file mode 100644 index 0000000..35d539f --- /dev/null +++ b/data/rooms/170.yaml @@ -0,0 +1,7 @@ +id: 170 +name: "Local Neighborhood" +description: "A quiet cul-de-sac of modest homes, each with a small garden plot. An estate directory terminal glows in the center, listing residents and property information." +exits: + south: 16 +objects: + - id: estate_directory diff --git a/data/rooms/171.yaml b/data/rooms/171.yaml new file mode 100644 index 0000000..552ccd4 --- /dev/null +++ b/data/rooms/171.yaml @@ -0,0 +1,7 @@ +id: 171 +name: "Lumberyard" +description: "Stacks of fresh-cut timber fill the air with the scent of pine. A massive industrial sawmill hums in the background, operated by a burly worker." +exits: + west: 16 +mobs: + - id: sawmill_operator diff --git a/data/rooms/200.yaml b/data/rooms/200.yaml new file mode 100644 index 0000000..469e214 --- /dev/null +++ b/data/rooms/200.yaml @@ -0,0 +1,8 @@ +id: 200 +name: "Agility Training Grounds" +description: "A cavernous space beneath the asteroid's surface, repurposed as a training facility. Scaffolding, pipes, and platforms fill the chamber. Signs point to three courses of increasing difficulty: {33}Ventilation Shaft{/} (beginner), {214}Rooftop{/} (intermediate), and {196}Reactor{/} (advanced)." +exits: + south: 17 + north: 201 + east: 210 + west: 220 diff --git a/data/rooms/201.yaml b/data/rooms/201.yaml new file mode 100644 index 0000000..2beb2ec --- /dev/null +++ b/data/rooms/201.yaml @@ -0,0 +1,9 @@ +id: 201 +name: "Ventilation Shaft - Corroded Wall" +description: "A towering wall of corroded ventilation panels rises before you. Rust-eaten handholds and buckled seams offer a treacherous path upward. The air smells of old metal and recycled atmosphere." +on_enter: + - message: "Type 'scramble' to climb the wall." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/202.yaml b/data/rooms/202.yaml new file mode 100644 index 0000000..b9c0292 --- /dev/null +++ b/data/rooms/202.yaml @@ -0,0 +1,9 @@ +id: 202 +name: "Ventilation Shaft - Coolant Pipe Walkway" +description: "A narrow coolant pipe stretches across a dark chasm. Condensation drips from its surface, making it slick. Far below, you can hear the distant hum of machinery." +on_enter: + - message: "Type 'balance' to cross the pipe." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/203.yaml b/data/rooms/203.yaml new file mode 100644 index 0000000..4f5d883 --- /dev/null +++ b/data/rooms/203.yaml @@ -0,0 +1,9 @@ +id: 203 +name: "Ventilation Shaft - Shaft Gap" +description: "The ventilation shaft floor is missing here -- a jagged gap drops into darkness. The far side is just barely within jumping distance. Exposed wiring sparks intermittently below." +on_enter: + - message: "Type 'jump' to leap across the gap." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/204.yaml b/data/rooms/204.yaml new file mode 100644 index 0000000..2d82040 --- /dev/null +++ b/data/rooms/204.yaml @@ -0,0 +1,9 @@ +id: 204 +name: "Ventilation Shaft - Narrow Vent" +description: "The passage narrows dramatically here, becoming a tight rectangular vent barely wide enough to fit through. Scratches on the metal walls suggest others have squeezed through before you." +on_enter: + - message: "Type 'crawl' to squeeze through the vent." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/205.yaml b/data/rooms/205.yaml new file mode 100644 index 0000000..d814f7d --- /dev/null +++ b/data/rooms/205.yaml @@ -0,0 +1,9 @@ +id: 205 +name: "Ventilation Shaft - Emergency Chute" +description: "A smooth metal chute angles steeply downward, polished by countless slides. An old emergency evacuation sign hangs crookedly on the wall. This is the final obstacle -- the chute leads back to the training grounds." +on_enter: + - message: "Type 'slide' to descend the chute." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/210.yaml b/data/rooms/210.yaml new file mode 100644 index 0000000..2b86500 --- /dev/null +++ b/data/rooms/210.yaml @@ -0,0 +1,9 @@ +id: 210 +name: "Rooftop Course - Hab Block Wall" +description: "The exterior wall of Hab Block 7 rises three stories above the street. Rough permacrete and maintenance handholds provide a challenging climb. The city spreads out below, neon signs flickering in the perpetual twilight." +on_enter: + - message: "Type 'climb' to scale the wall." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/211.yaml b/data/rooms/211.yaml new file mode 100644 index 0000000..8b1f069 --- /dev/null +++ b/data/rooms/211.yaml @@ -0,0 +1,9 @@ +id: 211 +name: "Rooftop Course - Building Gap" +description: "You stand on the edge of Hab Block 7's roof. Across a three-meter gap, the roof of Hab Block 8 awaits. The street below is a dizzying drop. A few old bootprints mark the takeoff point." +on_enter: + - message: "Type 'jump' to leap to the next building." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/212.yaml b/data/rooms/212.yaml new file mode 100644 index 0000000..0393a7e --- /dev/null +++ b/data/rooms/212.yaml @@ -0,0 +1,9 @@ +id: 212 +name: "Rooftop Course - Cable Array" +description: "A tangle of power cables and data lines stretches between two antenna towers. One thick cable hangs low enough to grab. The gap below drops to a dark alleyway between hab blocks." +on_enter: + - message: "Type 'swing' to cross on the cable." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/213.yaml b/data/rooms/213.yaml new file mode 100644 index 0000000..be3b736 --- /dev/null +++ b/data/rooms/213.yaml @@ -0,0 +1,9 @@ +id: 213 +name: "Rooftop Course - Narrow Beam" +description: "A structural I-beam extends across the gap between two buildings, no wider than your foot. It sways slightly in the recycled air currents. Someone has scratched tally marks into the near end." +on_enter: + - message: "Type 'balance' to cross the beam." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/214.yaml b/data/rooms/214.yaml new file mode 100644 index 0000000..9f9e081 --- /dev/null +++ b/data/rooms/214.yaml @@ -0,0 +1,9 @@ +id: 214 +name: "Rooftop Course - Maintenance Railing" +description: "A high maintenance railing blocks the path forward, topped with sensor equipment and warning labels. It's too high to step over but the right technique could clear it. Beyond the railing, the course continues." +on_enter: + - message: "Type 'vault' to clear the railing." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/215.yaml b/data/rooms/215.yaml new file mode 100644 index 0000000..7ea39f9 --- /dev/null +++ b/data/rooms/215.yaml @@ -0,0 +1,9 @@ +id: 215 +name: "Rooftop Course - Rooftop Edge" +description: "The final jump. The gap here is wider than any before -- a full four meters of empty air between you and the landing platform. Far below, the streets of the asteroid colony pulse with dim light. This is the last obstacle." +on_enter: + - message: "Type 'leap' to make the final jump." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/220.yaml b/data/rooms/220.yaml new file mode 100644 index 0000000..d6826a3 --- /dev/null +++ b/data/rooms/220.yaml @@ -0,0 +1,9 @@ +id: 220 +name: "Reactor Course - Scaffolding" +description: "Massive metal scaffolding surrounds the outer reactor housing. The structure vibrates with the reactor's pulse. Heat radiates from every surface, and warning klaxons sound periodically in the distance." +on_enter: + - message: "Type 'climb' to ascend the scaffolding." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/221.yaml b/data/rooms/221.yaml new file mode 100644 index 0000000..936ee65 --- /dev/null +++ b/data/rooms/221.yaml @@ -0,0 +1,9 @@ +id: 221 +name: "Reactor Course - Coolant Chain" +description: "A heavy chain hangs from an overhead crane, suspended above the reactor cooling pit. The pit glows with an eerie blue-green light. The chain is your only way across -- the gantry ahead is the landing zone." +on_enter: + - message: "Type 'swing' to cross on the chain." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/222.yaml b/data/rooms/222.yaml new file mode 100644 index 0000000..119db01 --- /dev/null +++ b/data/rooms/222.yaml @@ -0,0 +1,9 @@ +id: 222 +name: "Reactor Course - Steam Pipe" +description: "An enormous steam pipe, two meters in diameter, stretches across the reactor chamber. Steam vents periodically blast from pressure valves along its length. The pipe's surface is warm but not scalding -- yet." +on_enter: + - message: "Type 'balance' to traverse the pipe." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/223.yaml b/data/rooms/223.yaml new file mode 100644 index 0000000..0e557f6 --- /dev/null +++ b/data/rooms/223.yaml @@ -0,0 +1,9 @@ +id: 223 +name: "Reactor Course - Platform Gap" +description: "A section of the reactor maintenance platform has collapsed into the void below. Emergency barriers block the edges, but someone has moved them aside here. The gap is intimidating but clearable." +on_enter: + - message: "Type 'jump' to clear the gap." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/224.yaml b/data/rooms/224.yaml new file mode 100644 index 0000000..4e70f7a --- /dev/null +++ b/data/rooms/224.yaml @@ -0,0 +1,9 @@ +id: 224 +name: "Reactor Course - Service Conduit" +description: "A narrow service conduit leads through the reactor shielding. Radiation warning symbols are painted on every surface. Damaged wiring hangs from the ceiling, sparking occasionally. It's the only way forward." +on_enter: + - message: "Type 'crawl' to enter the conduit." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/225.yaml b/data/rooms/225.yaml new file mode 100644 index 0000000..3413792 --- /dev/null +++ b/data/rooms/225.yaml @@ -0,0 +1,9 @@ +id: 225 +name: "Reactor Course - Radiation Barrier" +description: "A containment barrier hums with energy, its surface shimmering with a faint purple glow. It pulses on and off in a regular cycle. Beyond it, the final stretch of the course is visible." +on_enter: + - message: "Type 'vault' to clear the barrier." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/226.yaml b/data/rooms/226.yaml new file mode 100644 index 0000000..6faa2c1 --- /dev/null +++ b/data/rooms/226.yaml @@ -0,0 +1,9 @@ +id: 226 +name: "Reactor Course - Reactor Chasm" +description: "The final obstacle. A massive chasm separates you from the exit platform, the reactor's coolant pool churning far below in shades of luminous green. A narrow runway of grating leads to the edge. This is the longest leap on the course." +on_enter: + - message: "Type 'leap' to make the final jump." +exits: + down: + room: 200 + blocked_message: "" diff --git a/data/rooms/54.yaml b/data/rooms/54.yaml index 5bb6a1d..e86e5b7 100644 --- a/data/rooms/54.yaml +++ b/data/rooms/54.yaml @@ -3,6 +3,7 @@ name: "The Void Chamber" description: "A vast cavern where reality seems to thin. The air shimmers with {141}spectral energy{/} and strange whispers fill your mind." exits: north: 53 + down: 55 mobs: - "phantom" - "phantom" diff --git a/data/rooms/55.yaml b/data/rooms/55.yaml new file mode 100644 index 0000000..8000170 --- /dev/null +++ b/data/rooms/55.yaml @@ -0,0 +1,12 @@ +id: 55 +name: "The Deeper Tunnels" +description: "A junction deep beneath the void chamber. The walls here are reinforced with pre-regression alloys. Several passages branch off into the darkness, and you can hear the sounds of machinery echoing from all directions. A steep shaft descends further into the depths." +exits: + up: 54 + north: 56 + east: 57 + south: 58 + west: 60 + down: 62 +mobs: + - id: security_turret diff --git a/data/rooms/56.yaml b/data/rooms/56.yaml new file mode 100644 index 0000000..375696d --- /dev/null +++ b/data/rooms/56.yaml @@ -0,0 +1,9 @@ +id: 56 +name: "Irradiated Sector" +description: "Warning symbols cover every surface, their paint long since faded. A faint green glow emanates from cracks in the walls. The air is thick with the taste of old radiation." +exits: + south: 55 +mobs: + - id: ghoul + - id: ghoul + - id: corrupted_scientist diff --git a/data/rooms/57.yaml b/data/rooms/57.yaml new file mode 100644 index 0000000..714197d --- /dev/null +++ b/data/rooms/57.yaml @@ -0,0 +1,8 @@ +id: 57 +name: "Drone Assembly" +description: "A long-abandoned drone manufacturing bay. Conveyor belts lie still, and half-assembled drone chassis hang from the ceiling. A few of them still twitch with residual power." +exits: + west: 55 +mobs: + - id: war_drone + - id: war_drone diff --git a/data/rooms/58.yaml b/data/rooms/58.yaml new file mode 100644 index 0000000..f4d1829 --- /dev/null +++ b/data/rooms/58.yaml @@ -0,0 +1,8 @@ +id: 58 +name: "Security Checkpoint" +description: "A fortified security station with blast shields and a decommissioned weapons locker. Scorch marks on the walls tell the story of a last stand." +exits: + north: 55 + south: 59 +mobs: + - id: enforcer_bot diff --git a/data/rooms/59.yaml b/data/rooms/59.yaml new file mode 100644 index 0000000..a1cc594 --- /dev/null +++ b/data/rooms/59.yaml @@ -0,0 +1,9 @@ +id: 59 +name: "Plasma Core" +description: "A massive plasma containment chamber with cracked magnetic coils lining the walls. Streams of superheated gas leak from the containment vessel, forming shimmering wraith-like shapes in the air." +exits: + north: 58 +mobs: + - id: plasma_wraith + - id: plasma_wraith + - id: feral_cyborg diff --git a/data/rooms/60.yaml b/data/rooms/60.yaml new file mode 100644 index 0000000..e9b7114 --- /dev/null +++ b/data/rooms/60.yaml @@ -0,0 +1,8 @@ +id: 60 +name: "Heavy Mech Bay" +description: "An enormous maintenance bay built to house assault mechs. A gantry crane hangs overhead, and hydraulic lifts dot the floor. The bay's occupant is still active — and it has noticed you." +exits: + east: 55 + west: 61 +mobs: + - id: heavy_mech diff --git a/data/rooms/61.yaml b/data/rooms/61.yaml new file mode 100644 index 0000000..a85c7ba --- /dev/null +++ b/data/rooms/61.yaml @@ -0,0 +1,7 @@ +id: 61 +name: "Synth Lab" +description: "A sterile laboratory where combat androids were designed and assembled. White panels line the walls, some splattered with old coolant stains. Diagnostic screens flicker with corrupted data." +exits: + east: 60 +mobs: + - id: elite_synth diff --git a/data/rooms/62.yaml b/data/rooms/62.yaml new file mode 100644 index 0000000..9ed1fad --- /dev/null +++ b/data/rooms/62.yaml @@ -0,0 +1,8 @@ +id: 62 +name: "Abandoned Bunker" +description: "A fortified bunker from some forgotten conflict. Sandbags are piled in the corners and spent shell casings litter the floor. A solitary figure stands watch over the remains." +exits: + up: 55 + down: 63 +mobs: + - id: veteran_merc diff --git a/data/rooms/63.yaml b/data/rooms/63.yaml new file mode 100644 index 0000000..b6bf53e --- /dev/null +++ b/data/rooms/63.yaml @@ -0,0 +1,8 @@ +id: 63 +name: "Magma Conduit" +description: "A geothermal vent has been tapped and routed through industrial conduits. The heat is oppressive, and molten rivulets course through channels in the floor. Something moves within the glowing flow." +exits: + up: 62 + down: 64 +mobs: + - id: molten_elemental diff --git a/data/rooms/64.yaml b/data/rooms/64.yaml new file mode 100644 index 0000000..b412992 --- /dev/null +++ b/data/rooms/64.yaml @@ -0,0 +1,8 @@ +id: 64 +name: "The Foundry" +description: "A vast smelting facility where sentinels were once forged. Massive crucibles hang from chains, and rivers of cooled slag form a maze-like floor. A single iron sentinel stands guard over the dormant machinery." +exits: + up: 63 + down: 65 +mobs: + - id: iron_sentinel diff --git a/data/rooms/65.yaml b/data/rooms/65.yaml new file mode 100644 index 0000000..47aed6b --- /dev/null +++ b/data/rooms/65.yaml @@ -0,0 +1,8 @@ +id: 65 +name: "Titan's Rest" +description: "A colossal vault built to house something immense. The ceiling vanishes into darkness above, and the walls are etched with maintenance schematics for a machine of staggering proportions. At the center, a titan sentinel awakens." +exits: + up: 64 + down: 66 +mobs: + - id: titan_sentinel diff --git a/data/rooms/66.yaml b/data/rooms/66.yaml new file mode 100644 index 0000000..755d5e2 --- /dev/null +++ b/data/rooms/66.yaml @@ -0,0 +1,8 @@ +id: 66 +name: "Psionic Nexus" +description: "Reality grows thin here. The walls are covered in strange geometric patterns that hurt to look at directly. A low hum vibrates through your skull, and the air seems to bend around a central point of unseen pressure." +exits: + up: 65 + down: 67 +mobs: + - id: psionic_entity diff --git a/data/rooms/67.yaml b/data/rooms/67.yaml new file mode 100644 index 0000000..6b8d663 --- /dev/null +++ b/data/rooms/67.yaml @@ -0,0 +1,8 @@ +id: 67 +name: "Ancient Chamber" +description: "A perfectly spherical room carved from an unknown black metal. Glowing runes spiral across every surface in patterns that predate the asteroid itself. At the center, an ancient construct stirs from its eons-long vigil." +exits: + up: 66 + down: 68 +mobs: + - id: ancient_construct diff --git a/data/rooms/68.yaml b/data/rooms/68.yaml new file mode 100644 index 0000000..f631981 --- /dev/null +++ b/data/rooms/68.yaml @@ -0,0 +1,7 @@ +id: 68 +name: "The Void" +description: "The bottom of the world. Light itself seems to hesitate before entering this place. The floor is unnaturally smooth black glass, and the only sound is the beating of your own heart. Something waits in the darkness — something that was here before the asteroid, before the colony, before anything." +exits: + up: 67 +mobs: + - id: void_reaper diff --git a/data/rooms/7.yaml b/data/rooms/7.yaml index 7458314..37dfed9 100644 --- a/data/rooms/7.yaml +++ b/data/rooms/7.yaml @@ -6,3 +6,4 @@ exits: mobs: - id: goblin - id: goblin + - id: bandit diff --git a/data/rooms/8.yaml b/data/rooms/8.yaml index 4e36af4..b82c1bb 100644 --- a/data/rooms/8.yaml +++ b/data/rooms/8.yaml @@ -1,6 +1,11 @@ id: 8 name: "Hacking Lab" -description: "A dimly lit room filled with old terminals and flickering screens. This area is not yet accessible." +description: "A dimly lit room filled with old terminals and flickering screens. Cables dangle from the ceiling, some still sparking. The air smells of ozone and burnt circuitry. A {40}basic terminal{/} against the far wall still has power." exits: east: 9 west: 6 +objects: + - id: terminal_basic + - id: terminal_advanced + - id: terminal_secure + - id: netrunner diff --git a/data/rooms/player_housing/200.yaml b/data/rooms/player_housing/200.yaml new file mode 100644 index 0000000..1781818 --- /dev/null +++ b/data/rooms/player_housing/200.yaml @@ -0,0 +1,8 @@ +id: 200 +name: "Player House: Entrance Hall" +description: "A cozy entrance hall with polished floors and warm lighting. A welcome mat greets visitors at the door." +exits: + south: 170 + north: 201 +objects: + - id: charging_station diff --git a/data/rooms/player_housing/201.yaml b/data/rooms/player_housing/201.yaml new file mode 100644 index 0000000..dbc1fd9 --- /dev/null +++ b/data/rooms/player_housing/201.yaml @@ -0,0 +1,8 @@ +id: 201 +name: "Player House: Workshop" +description: "A well-lit workshop with a sturdy workbench covered in tools and blueprints. Wood shavings litter the floor around the bench." +exits: + south: 200 +objects: + - id: workbench + - id: bank_booth -- cgit v1.2.3