tKitchen.dcgi - dotg - a bitreich fosdem adventure
HTML git clone https://git.parazyd.org/dotg
DIR Log
DIR Files
DIR Refs
---
tKitchen.dcgi (960B)
---
1 #!/bin/sh
2
3 . config
4 echo Kitchen > $savegame/room
5 . functions
6 . maps
7
8 map_kitchen
9
10 cat <<EOM
11 ## KITCHEN (KIT)
12
13 You are in the kitchen.
14
15 In the center of the kitchen there is a big table with lots of
16 random things.
17
18 Behind you there are cupboards, a sink, and a fridge.
19
20 The party host is across the table talking to some people.
21
22 EOM
23
24 if [ -f "$inventory/.elvesarehere" ]; then
25 cat <<EOM
26 Around the table there are Christmas elves that your friend has
27 invited.
28
29 They're holding lots of cheese and being all-around festive.
30
31 [1|Talk to the elves|$path/talk-elves.dcgi|server|port]
32 EOM
33 fi
34
35 cat <<EOM
36 [1|Talk to the party host|$path/talk-host.dcgi|server|port]
37
38 [1|Inspect the table|$path/kit-table.dcgi|server|port]
39 [1|Inspect the cupboards|$path/kit-cups.dcgi|server|port]
40 [1|Inspect the sink|$path/kitchen-sink.dcgi|server|port]
41 [1|Inspect the fridge|$path/kitchen-fridge.dcgi|server|port]
42
43 [1|Check inventory|$path/inventory.dcgi|server|port]
44 EOM
45 navigation