level-up/shared/script/rooms/hauseingang.ts
Moritz Ruth 88f0632194
All checks were successful
Build / build (push) Successful in 1m14s
Update dependencies, containerize, add build workflow
2025-03-03 00:35:21 +01:00

41 lines
No EOL
911 B
TypeScript

import type { Room } from "../types"
import { cSet } from "../../util"
export const roomHauseingang: Room = {
id: "hauseingang",
label: "Hauseingang",
initialObjects: cSet(
{
id: "schlüssel",
label: "Schlüssel",
},
{
id: "haustür",
label: "Haustür"
}
),
hiddenObjects: cSet(
{
id: "offene-haustür",
label: "Offene Haustür"
}
),
combinations: cSet(
{
id: "open-door",
inputs: cSet(
{
objectId: "schlüssel",
isConsumed: false
},
{
objectId: "haustür",
isConsumed: true
}
),
outputIds: cSet(
"offene-haustür"
)
}
)
}