Skip to content

Instantly share code, notes, and snippets.

@nexeck
Created January 14, 2021 22:09
Show Gist options
  • Save nexeck/538412e85e4112e4f037ea7087a7b9b3 to your computer and use it in GitHub Desktop.
Save nexeck/538412e85e4112e4f037ea7087a7b9b3 to your computer and use it in GitHub Desktop.
Stellaris RSS Tree
digraph G {
rankdir = TB;
{rank = same; Food; Electriticty; Minerals; Gas; Gel; Metal; Hyperium; Titanium; "Aldar Crystal"; "Lythuric Gas"; "Yurantic Crystal"; "Gray Dust";}
splines="ortho";
"Food" -> "Product"[taillabel=3];
"Electriticty" -> "Alloy"[taillabel=4];
"Minerals" -> "Cornerstone"[taillabel=4];
"Minerals" -> "Consumer Goods"[taillabel=3];
"Gas" -> "Volatile Motes"[taillabel=1];
"Gas" -> "Jupitium"[taillabel=2];
"Gel" -> "Volatile Motes"[taillabel=1];
"Gel" -> "Saturnium"[taillabel=2];
"Metal" -> "Cornerstone"[taillabel=1];
"Metal" -> "Alloy"[taillabel=1];
"Hyperium" -> "Higgs Gold"[taillabel=1];
"Hyperium" -> "Living Metal"[taillabel=1];
"Titanium" -> "Higgs Gold"[taillabel=1];
"Titanium" -> "Liquid Metal"[taillabel=1];
"Aldar Crystal" -> "Neutronium"[taillabel=1];
"Aldar Crystal" -> "Jupitium"[taillabel=1];
"Lythuric Gas" -> "Pitharan Dust"[taillabel=1];
"Lythuric Gas" -> "Saturnium"[taillabel=1];
"Yurantic Crystal" -> "Neutronium"[taillabel=1];
"Yurantic Crystal" -> "Ionizing Fiber"[taillabel=2];
"Gray Dust" -> "Pitharan Dust"[taillabel=1];
"Gray Dust" -> "Neutronium Ore"[taillabel=2];
/* Factories */
"Product" -> "Consumer Goods"[taillabel=3];
"Product" -> "Luxury Items"[taillabel=3];
"Cornerstone" -> "Higgs Gold"[taillabel=4];
"Cornerstone" -> "Ionizing Fiber"[taillabel=8];
"Cornerstone" -> "Neutronium Ore"[taillabel=8];
"Alloy" -> "Volatile Motes"[taillabel=2];
"Higgs Gold" -> "Luxury Items"[taillabel=1];
"Higgs Gold" -> "Nuclear Material"[taillabel=2];
"Higgs Gold" -> "Venusium"[taillabel=2];
"Living Metal" -> "Fermionic Condensate"[taillabel=2];
"Liquid Metal" -> "Negative Energy Cube"[taillabel=2];
"Jupitium" -> "Ionizing Fiber"[taillabel=2];
"Jupitium" -> "Nuclear Material"[taillabel=2];
"Saturnium" -> "Neutronium Ore"[taillabel=2];
"Saturnium" -> "Venusium"[taillabel=2];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment