49 lines
No EOL
1 KiB
TypeScript
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"
|
|
)
|
|
}
|
|
)
|
|
} |