From ed2a99f90d3656d89b4dabc224581e0cddf14d24 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Tue, 9 Mar 2021 00:28:35 +0900 Subject: [PATCH] techtree wip --- work_files/energy_flow.pdf | 3 ++ work_files/tech_tree.gv | 66 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 work_files/energy_flow.pdf create mode 100644 work_files/tech_tree.gv diff --git a/work_files/energy_flow.pdf b/work_files/energy_flow.pdf new file mode 100644 index 000000000..b1365a379 --- /dev/null +++ b/work_files/energy_flow.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a40eea9a4ae184b18e71aae2fb61eaf4f9db6edb96fc53c720960a05649719 +size 12977 diff --git a/work_files/tech_tree.gv b/work_files/tech_tree.gv new file mode 100644 index 000000000..34798c900 --- /dev/null +++ b/work_files/tech_tree.gv @@ -0,0 +1,66 @@ +digraph techtree { + subgraph cluster_legend { + label=Legend + Item + Technolgy [shape=component,style=filled] + Material [shape=box3d] + "Energy Source" [style=filled] + } + + rankdir=LR + {rank=source; Metallurgy} + {rank=source; Electricity} + {rank=source; Information} + + Copper [shape=box3d] + Iron [shape=box3d] + + Heat [style=filled] + Kinetic [style=filled] + + Copper -> Iron + Copper -> Generator + Iron -> Generator + Iron -> Metallurgy + Furnace -> Heat + Heat -> Kinetic [label=Engine] + + "Metallurgy" [shape=component,style=filled] + Metallurgy -> Steel + Heat -> Metallurgy + Steel [shape=box3d] + Titanium [shape=box3d] + Uranium [shape=box3d] + Steel -> Titanium + Steel -> Uranium + Uranium -> Heat + + Kinetic -> Generator + Generator -> Electricity + + "Electricity" [shape=component,style=filled] + Electricity -> Computer + Electricity -> Machinery + Machinery -> Thermocouple + Heat -> Thermocouple -> Electricity + Electricity -> Drill + Steel -> Drill + + "Information" [shape=component,style=filled] + Information -> Entanglement + + "Logic" [shape=component,style=filled] + Information -> Logic + Electricity -> Logic + Logic -> Computer + + "Entanglement" [shape=component,style=filled] + Entanglement -> "Physical Warp" + Computer -> "Disk Oracle" + Entanglement -> "Disk Oracle" + + + "Physical Warp" [shape=component,style=filled] + "Physical Warp" -> "Multiworld Portal" + Titanium -> "Physical Warp" +} \ No newline at end of file