From 3f9c235559defaceed13db01dd624010c00509a5 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Tue, 4 Oct 2022 01:06:45 +0100 Subject: [PATCH] add furniture store chains --- .../data/production-chains-expansions.ts | 87 ++++++++++++++++++- 1 file changed, 86 insertions(+), 1 deletion(-) diff --git a/src/pages/data/production-chains-expansions.ts b/src/pages/data/production-chains-expansions.ts index a99a83b..7257243 100644 --- a/src/pages/data/production-chains-expansions.ts +++ b/src/pages/data/production-chains-expansions.ts @@ -583,6 +583,91 @@ export const productionChainsExpansions: TieredProductionChain[] = [ { colBreak: false, tierName: 'Furniture Store', - productionChains: [] + productionChains: [ + { + productionChain: 'bankersLamps', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart LR + Copper(50%1) + Zinc(50%1) + Brass(1) + Sand(50%1) + Glass(50%1) + Coal(25%1) + Filament(1) + Sand0(50%1) + Glass0(50%1) + LightBulb(1) + BankerLamp(1) + style BankerLamp stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Copper & Zinc --> Brass --> BankerLamp + Sand --> Glass --> BankerLamp + Coal --> Filament --> LightBulb + Sand0 --> Glass0 --> LightBulb + LightBulb --> BankerLamp + ` + }, + { + productionChain: 'vanityScreens', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart LR + Cotton(1) + CottonMill(50%1) + CherryWood(50%1) + Lacquer(50%1) + CottonMill(50%1) + VanityScreens(1) + style VanityScreens stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Cotton --> CottonMill + CottonMill & CherryWood & Lacquer --> VanityScreens + ` + }, + { + productionChain: 'writingDesks', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart LR + Copper(50%1) + Zinc(50%1) + Brass(1) + Wood(25%1) + Marquetry(1) + Lacquer(50%1) + WritingDesks(1) + style WritingDesks stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Copper & Zinc --> Brass + Wood --> Marquetry + Brass & Marquetry & Lacquer --> WritingDesks + ` + }, + { + productionChain: 'fourPosterBeds', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart TB + BearHunting(75%2) + Goose(2) + CherryWood(50%1) + FourPosterBeds(1) + style FourPosterBeds stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + BearHunting & Goose & CherryWood --> FourPosterBeds + ` + }, + { + productionChain: 'loungeSeating', + chainMultiplier: '4', + mermaidDefinition: endent` + flowchart TB + Sheep(50%1) + Sanga(1) + WansaWood(25%1) + LoungeSeating(1) + style LoungeSeating stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Sheep & Sanga & WansaWood --> LoungeSeating + ` + } + ] } ];