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
+ `
+ }
+ ]
}
];