From 6ef7e256aa480bf3fd6a5d93aec4956f2b194135 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Sat, 1 Oct 2022 01:28:28 +0100 Subject: [PATCH] add latest --- src/pages/data/production-chains-base.ts | 75 +++++++++++++++++++++--- 1 file changed, 68 insertions(+), 7 deletions(-) diff --git a/src/pages/data/production-chains-base.ts b/src/pages/data/production-chains-base.ts index ac055c0..da9f384 100644 --- a/src/pages/data/production-chains-base.ts +++ b/src/pages/data/production-chains-base.ts @@ -312,19 +312,59 @@ export const productionChainsBase: TieredProductionChain[] = [ productionChains: [ { productionChain: 'highWheeler', - mermaidDefinition: `flowchart LR; Coal(1) & Iron(1) --> Steel(2) --> HighWheeler(1); style HighWheeler stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7;; Caoutchouc(4) --> HighWheeler` + mermaidDefinition: endent` + flowchart LR + Coal(1) + Iron(1) + Steel(2) + HighWheeler(1) + Caoutchouc(4) + style HighWheeler stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7; + Coal & Iron --> Steel --> HighWheeler + Caoutchouc --> HighWheeler + ` }, { productionChain: 'glasses', - mermaidDefinition: `flowchart LR; Sand(33%1) --> Glass(33%1) --> Glasses(1); Copper(33%1) & Zinc(33%1) --> Brass(66%1) --> Glasses` + mermaidDefinition: endent` + flowchart LR + Sand(33%1) + Glass(33%1) + Glasses(1) + Copper(33%1) + Zinc(33%1) + Brass(66%1) + Sand --> Glass --> Glasses + Copper & Zinc --> Brass --> Glasses + ` }, { productionChain: 'pocketWatches', - mermaidDefinition: `flowchart LR; GoldOre(83%4) & Coal(33%1) --> Gold(66%2) --> PocketWatches(1); Sand(66%1) --> Glass(66%1) --> PocketWatches; style PocketWatches stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7;` + mermaidDefinition: endent` + flowchart LR + GoldOre(83%4) + Coal(33%1) + Gold(66%2) + PocketWatches(1) + Sand(66%1) + Glass(66%1) + style PocketWatches stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7; + GoldOre & Coal --> Gold --> PocketWatches + Sand --> Glass --> PocketWatches + ` }, { productionChain: 'lightBulb', - mermaidDefinition: `flowchart LR; Charcoal(50%1) --> Filament(1) --> LightBulb(1); Sand(50%1) --> Glass(50%1) --> LightBulb` + mermaidDefinition: endent` + flowchart LR + Charcoal(50%1) + Filament(1) + LightBulb(1) + Sand(50%1) + Glass(50%1) + Charcoal --> Filament --> LightBulb + Sand --> Glass --> LightBulb + ` } ] }, @@ -478,15 +518,36 @@ export const productionChainsBase: TieredProductionChain[] = [ productionChains: [ { productionChain: 'advancedCoffee', - mermaidDefinition: `flowchart LR; Grain(2) --> MaltHouse(1) --> Coffee(1); style Coffee stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7;;` + mermaidDefinition: endent` + flowchart LR + Grain(2) + MaltHouse(1) + Coffee(1) + style Coffee stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Grain --> MaltHouse --> Coffee + ` }, { productionChain: 'advancedRum', - mermaidDefinition: `flowchart LR; Coal(1) & Potato(2) --> Rum(2); style Rum stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7;;` + mermaidDefinition: endent` + flowchart LR + Coal(50%1) + Potato(1) + Rum(1) + style Rum stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Coal & Potato --> Rum + ` }, { productionChain: 'advancedCotton', - mermaidDefinition: `flowchart LR; Sheep(2) & Wood(1) --> Cotton(2); style Cotton stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7;;` + mermaidDefinition: endent` + flowchart LR + Sheep(1) + Wood(50%1) + Cotton(1) + style Cotton stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Sheep & Wood --> Cotton + ` } ] },