blob: 58dc1315a8ef0f00c96ad9f66aaff2d2451e12b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
digraph {
Breach [label="Hull Breach"]
Crew [label="Crew Quarters (antenna)"]
Hallway [label="Hallway (weather machine)"]
Storage [label="Storage (klein bottle)"]
Stables [label="Stables (spool of cat6)"]
Warp [label="Warp Drive Maintenance"]
Security [label="Security Checkpoint"]
Pressure [label="Pressure-Sensitive Floor"]
Gift [label="Gift Wrapping Center"]
Sick [label="Sick Bay (infinite loop X)"]
Chocolate [label="Hot Chocolate Fountain (giant electromagnet X)"]
Observatory [label="Observatory (cake)"]
Navigation [label="Navigation (escape pod XX)"]
Corridor [label="Corridor"]
Holodeck [label="Holodeck (molten lava X)"]
Science [label="Science Lab (tambourine)"]
Passages [label="Passages (shell)"]
Engineering [label="Engineering"]
Arcade [label="Arcade (photons X)"]
Kitchen [label="Kitchen (mug)"]
Breach -> Crew [label=East]
Breach -> Hallway [label=North]
Hallway -> Storage [label=North]
Storage -> Stables [label=East]
Stables -> Warp [label=South]
Warp -> Security [label=South]
Security -> Pressure [label=East]
Stables -> Gift [label=East]
Gift -> Sick [label=North]
Sick -> Chocolate [label=West]
Chocolate -> Observatory [label=North]
Chocolate -> Navigation [label=West]
Corridor -> Holodeck [label=North]
Holodeck -> Science [label=North]
Sick -> Corridor [label=East]
Corridor -> Passages [label=South]
Passages -> Engineering [label=East]
Engineering -> Arcade [label=South]
Gift -> Kitchen [label=South]
}
|