From b29d997cf77ed2d7fdf1bcd801c6b91b3caef51f Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 4 Oct 2022 01:55:51 +0100 Subject: [PATCH] condense drug store diagrams --- .../data/production-chains-expansions.ts | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/src/pages/data/production-chains-expansions.ts b/src/pages/data/production-chains-expansions.ts index 7257243..693f194 100644 --- a/src/pages/data/production-chains-expansions.ts +++ b/src/pages/data/production-chains-expansions.ts @@ -669,5 +669,68 @@ export const productionChainsExpansions: TieredProductionChain[] = [ ` } ] + }, + { + colBreak: false, + tierName: 'Drug Store', + productionChains: [ + { + productionChain: 'toothpaste', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart LR + SugarCane(50%1) + Sugar(50%1) + Coal(25%1) + Pig(1) + Tallow(1) + Soap(50%1) + Toothpaste(1) + style Toothpaste stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + SugarCane --> Sugar --> Toothpaste + Coal --> Toothpaste + Pig --> Tallow --> Soap --> Toothpaste + ` + }, + { + productionChain: 'detergent', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart TB + Ethanol(50%1) + Citrus(50%1) + Saltpeter(2) + Detergent(1) + style Detergent stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Ethanol & Citrus & Saltpeter --> Detergent + ` + }, + { + productionChain: 'lipstick', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart TB + FishOil(50%1) + CoconutIcon(50%1) + Lacquer(50%1) + Lipstick(1) + style Lipstick stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + FishOil & CoconutIcon & Lacquer --> Lipstick + ` + }, + { + productionChain: 'faceCream', + chainMultiplier: '2', + mermaidDefinition: endent` + flowchart TB + CoconutIcon(50%1) + Citrus(50%1) + Whaling(1) + FaceCream(1) + style FaceCream stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + CoconutIcon & Citrus & Whaling --> FaceCream + ` + } + ] } ];