level-up/shared/script/rooms/küche.ts
2025-04-11 21:03:18 +02:00

49 lines
No EOL
1 KiB
TypeScript

import type { SceneDefinition } from "../types"
import { cSet } from "../../util"
export const roomKueche: SceneDefinition = {
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"
)
}
)
}