Last active
December 27, 2018 06:22
-
-
Save oneirosFade/2bbebe04afde84d0c5fada6544025ed3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
graph aardvark_metro { | |
node [shape=box, style=filled] | |
edge [penwidth=4] | |
root = R02B05 | |
rankdir = LR | |
node [color=red, fontcolor=black] | |
R01 [label="Rolling Hills"] | |
R02B05 [label="Aard Centre", shape=Mcircle, color=black, fontcolor=black, fillcolor=white] | |
R03Y02 [label="Circus West", shape=Mcircle, color=black, fontcolor=black, fillcolor=white] | |
R04 [label="Pantheon"] | |
R05 [label="CNaude Village"] | |
R06b01 [label="Arch Station", shape=Mcircle, color=black, fontcolor=black, fillcolor=white] | |
edge [color=red] | |
R01 -- R02B05 -- R03Y02 -- R04 -- R05 -- R06b01 | |
node [color=brown, fontcolor=black] | |
b02 [label="Dark Ziggurat"] | |
b03 [label="Crater City"] | |
b04 [label="Ziggurat"] | |
b05 [label="Desertville"] | |
b06B01 [label="Craftsylvania", shape=Mcircle, color=black, fontcolor=black, fillcolor=white] | |
edge [color=brown] | |
R06b01 -- b02 -- b03 -- b04 -- b05 -- b06B01 | |
node [color=blue, fontcolor=black] | |
B02 [label="Flower Farm"] | |
B03 [label="CNaude Ruins"] | |
B04 [label="Clopa Farms"] | |
B06Y01 [label="Isle Center", shape=Mcircle, color=black, fontcolor=black, fillcolor=white] | |
B07 [label="Redstone Cathedral"] | |
edge [color=blue] | |
b06B01 -- B02 -- B03 -- B04 -- R02B05 -- B06Y01 -- B07 | |
node [color=yellow, fontcolor=black] | |
edge [color=yellow] | |
B06Y01 -- R03Y02 | |
{ rank = same; b02 b03 b04 } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment