level-up/shared/script/rooms/küche.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

49 lines
No EOL
1,023 B
TypeScript

import type { Room } from "../types"
import { cSet } from "../../util"
export const roomKueche: Room = {
id: "küche",
label: "Küche",
initialObjects: cSet(
{
id: "schüssel",
label: "Schüssel"
},
{
id: "kühlschrank",
label: "Kühlschrank"
},
{
id: "kakaopulver",
label: "Kakaopulver"
}
),
hiddenObjects: cSet(
{
id: "milch",
label: "Milch"
},
{
id: "kakao",
label: "Kakao"
}
),
combinations: cSet(
{
id: "kakao",
inputs: cSet(
{
objectId: "milch",
isConsumed: true
},
{
objectId: "kakaopulver",
isConsumed: false
}
),
outputIds: cSet(
"kakao"
)
}
)
}