Finished Ch1

This commit is contained in:
Casey 2024-09-15 20:47:14 +03:00
parent d015fee44d
commit 63dc11ea51
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
1 changed files with 26 additions and 0 deletions

View File

@ -6,10 +6,20 @@ digraph {
algal_brick [label="Algal Brick"];
andesite [label="Andesite"];
andesite_alloy [label="Andesite Alloy"];
log [label="* Log"];
stripped_log [label="Stripped * Log"];
planks [label="* Planks"];
wood_slab [label="* Wood Slab"];
kinetic_mechanism [label="Kinetic Mechanism"];
kelp_farm [label="Kelp Farm" shape=box3d]; kelp_farm -> kelp;
andesite_farm [label="Bedrock Andesite farm" shape=box3d]; andesite_farm -> andesite;
strainers [label="Strainer array" shape=box3d]; strainers -> sand;
wood_farm [label="Wood Farm" shape=box3d]; wood_farm -> log;
log -> stripped_log [label="Sawing" color=gray];
stripped_log -> planks [label="Sawing" color=gray];
planks -> wood_slab [label="Sawing" color=gray];
sand -> clay_ball [label="Washing" color=blue fontcolor=blue];
@ -24,4 +34,20 @@ digraph {
algal_brick -> mixer_andesite;
andesite -> mixer_andesite;
mixer_andesite -> andesite_alloy;
wood_slab -> ckm_deploy_andesite_1;
andesite_alloy -> ckm_deploy_andesite_1;
andesite_alloy -> ckm_deploy_andesite_2;
ckm_saw [label="Input: Saw"]; ckm_saw -> ckm_deploy_saw;
subgraph cluster_kinetic_mechanism {
ckm_deploy_andesite_1 [label="1: Deploy Andesite alloy" shape=box];
ckm_deploy_andesite_2 [label="2: Deploy Andesite alloy" shape=box];
ckm_deploy_saw [label="3: Deploy Saw" shape=box];
ckm_deploy_andesite_1 -> ckm_deploy_andesite_2;
ckm_deploy_andesite_2 -> ckm_deploy_saw;
}
ckm_deploy_saw -> kinetic_mechanism;
}