15 lines
312 B
TypeScript
15 lines
312 B
TypeScript
|
|
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,
|
||
|
|
}
|