diff --git a/src/pages/data/icons.ts b/src/pages/data/icons.ts index e036123..30f8682 100644 --- a/src/pages/data/icons.ts +++ b/src/pages/data/icons.ts @@ -238,7 +238,6 @@ export { parkasIcon, pearlsIcon, pemmicanIcon, - pigIcon, pigsIcon, pipesIcon, plantainPlantationIcon, diff --git a/src/pages/data/production-chains-base.ts b/src/pages/data/production-chains-base.ts index 68c6ac7..dcffccf 100644 --- a/src/pages/data/production-chains-base.ts +++ b/src/pages/data/production-chains-base.ts @@ -388,16 +388,44 @@ export const productionChainsBase: TieredProductionChain[] = [ productionChains: [ { productionChain: 'champagne', - mermaidDefinition: `flowchart LR; Sand(1) --> GlassMakers(1) --> Champagne(1); Grapes(4) --> Champagne` + mermaidDefinition: endent` + flowchart LR + Sand(1) + Glass(1) + Champagne(1) + Grapes(4) + Sand --> Glass --> Champagne + Grapes --> Champagne + ` }, { productionChain: 'jewelry', - mermaidDefinition: `flowchart LR; Charcoal(1) & GoldOre(5) --> Gold(2) -->Jewelry(1); Pearls(3) --> Jewelry` + mermaidDefinition: endent` + flowchart LR + Charcoal(1) + GoldOre(5) + Gold(2) + Jewelry(1) + Pearls(3) + Charcoal & GoldOre --> Gold --> Jewelry + Pearls --> Jewelry + ` }, { productionChain: 'gramophone', chainMultiplier: '4', - mermaidDefinition: `flowchart LR; Wood(25%1) --> Marquetry(1) --> Gramophone(1); style Gramophone stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7;; Copper(50%1) & Zinc(50%1) --> Brass(1) --> Gramophone` + mermaidDefinition: endent` + flowchart LR + Wood(25%1) + Marquetry(1) + Gramophone(1) + Copper(50%1) + Zinc(50%1) + Brass(1) + style Gramophone stroke:#0675BD,stroke-width:5px,stroke-dasharray: 7 7 + Wood --> Marquetry --> Gramophone + Copper & Zinc --> Brass --> Gramophone + ` } ] },