feat(mystery): sample 3-room world for engine validation

This commit is contained in:
2026-05-08 23:26:45 -05:00
parent 49fc5a1015
commit d8c9b44058
5 changed files with 132 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import type { World } from './types'
import { rooms } from './rooms'
import { items } from './items'
import { encounters } from './encounters'
import { endings } from './story'
export const world: World = {
startingRoom: 'foyer',
startingInventory: ['matches'],
rooms,
items,
encounters,
endings,
}