summaryrefslogtreecommitdiff
path: root/2019/src/bin/day_25.dot
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2022-04-19 20:32:43 +0200
committerJustin Wernick <justin@worthe-it.co.za>2022-04-19 20:32:43 +0200
commit2410e500560a1989399c8ad0c23fe7aa9827576d (patch)
tree5e3a18944de222f4d0565fb208d4d89f9eebdf2b /2019/src/bin/day_25.dot
parentcb3d2db9b82f131ebb36a9b3bea6830bf1a80c0f (diff)
parent9892e3ebde304726903a1e5c358d05c2e343ea5e (diff)
Merge branch '2019-main'
Diffstat (limited to '2019/src/bin/day_25.dot')
-rw-r--r--2019/src/bin/day_25.dot43
1 files changed, 43 insertions, 0 deletions
diff --git a/2019/src/bin/day_25.dot b/2019/src/bin/day_25.dot
new file mode 100644
index 0000000..58dc131
--- /dev/null
+++ b/2019/src/bin/day_25.dot
@@ -0,0 +1,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]
+}