Cyberpunk Game

> eXitZork_ "Parser Horror in a Dying Megacity"

A text adventure where the terminal protocol is a fundamental law of physics. Trapped in a dying megacity, you must manipulate reality through commands governed by the Seven Integrity Beams.

68 Rooms
5 Acts
D&D 5e Mechanics
EXITZORK v2.0.1 - K-PLATFORM TRANSIT TERMINAL

> SYSTEM BOOT SEQUENCE INITIATED...

> INTEGRITY BEAMS: ONLINE

> PARSER PROTOCOL: ACTIVE

 

You awaken on a cold platform. The air tastes of copper and ozone. Flickering screens display departure times for trains that will never arrive.

 

[Exits: NORTH, EAST, DOWN]

>

The Seven Integrity Beams

The Laws of Reality

In eXitZork, the parser isn't just a game mechanic — it's the physics engine of the universe.

Syntax

Commands must follow grammar rules. Reality rejects malformed input.

Continuity

The world maintains consistency. Paradoxes cause system instability.

Identity

You are who the system says you are. Identity is authenticated.

Consent

NPCs can refuse commands. Free will exists within protocol.

Memory

The system remembers. Actions have persistent consequences.

Latency

Time flows at protocol speed. Some actions take real processing.

Causality

Effects follow causes. The parser enforces logical progression through the narrative.

Core Systems

Gameplay Features

A fusion of classic text adventure and modern RPG mechanics.

D&D 5e Integration

Full ability scores, skill checks, saving throws, and a complete dice engine. Your STR, DEX, CON, INT, WIS, and CHA affect every action.

AI-Powered Narration

Multi-model LLM orchestration with OpenAI and Anthropic fallback. Coherence scoring ensures narrative consistency.

Character Classes

6 unique cyberpunk archetypes: Street Samurai, Netrunner, Fixer, Techie, Nomad, and Corp. Each with unique abilities.

Quest System

Protocol Contracts (daily/weekly missions), Neural Imprints (meta-progression), and Beam Resonance (mastery levels).

Loot & Equipment

Rarity-tiered gear generation with weapon, armor, accessory, and cybernetic slots. Build your perfect operator.

Faction Reputation

Your choices matter. Karma tracking, faction reputation, and consequence-driven narrative branches.

The Story

Five Acts of Survival

I

The Hub

Awakening in K-Platform Transit Terminal. Learn the Beam laws. Reach the Exit Line. 34 rooms

II

Museum of Obsolete Tech

Discover the parser's origins. Obtain high-level Lexemes that reshape reality.

III

Cathedral of Antennas

Gain access to JACK IN and PATCH verbs. The deeper commands await.

IV

The Nullsea

Navigate the predatory in-between space. Find the Root Key.

V

The Exit Decision

Three endings based on the fate of the Threads. Your choices culminate.

Architecture

Technical Foundation

A sophisticated stack bridging classic text adventures with modern infrastructure.

React Native 0.72 Bare project with Expo Go & EAS
Node.js/Express Backend 23 API endpoints, 900+ lines
Multi-Model LLM OpenAI + Anthropic with failover
ZIL-like Story Engine Deterministic scene-based narrative
gameController.js
// System commands bypass LLM latency
const SYSTEM_VERBS = [
  'LOOK', 'GO', 'TAKE', 'USE',
  'ROLL', 'STATS', 'CLASS',
  'TIER', 'CONTRACT', 'IMPRINT',
  'SAFEHOUSE', 'RESONANCE'
];

async function processCommand(cmd, state) {
  if (SYSTEM_VERBS.includes(cmd.verb)) {
    return executeSystemVerb(cmd, state);
  }
  // Fallback to AI narration
  return await llmService.generateResponse(cmd);
}

> READY TO JACK IN?

The megacity awaits. Your terminal is ready.