Back to NxLabs

NxLabs / Vintage Story

Bauxite Bottleneck Begone

RBy Reizeron

Adds more refractory brick recipes, making them craftable without crushed bauxite.

Bauxite Bottleneck Begone

Description

This mod adds more refractory brick recipes, making them less reliant on any single particular ingredient, especially crushed bauxite. Now the brick tier depends on how many different refractory ingredients you will add to fire clay and quartz, instead of having strict material-tier crafting conditions.
Essentially what this means is, instead of needing bauxite to get your steelmaking started, you can now substitute olivine for it, making steel a little bit more accessible. Ilmenite meanwhile can only help you bump the bricks up a tier, because it still requires steel to be mined.

 

To make Tier 1 refractory bricks you'll need:
Crushed Bauxite
OR
Crushed Olivine
OR
Crushed Ilmenite

 

To make Tier 2 refractory bricks you'll need:
Crushed Bauxite AND Crushed Olivine
OR
Crushed Bauxite AND Crushed Ilmenite
OR
Crushed Olivine AND Crushed Ilmenite

 

You will still need all three ingredients to make Tier 3 refractory bricks.

 

 

 

Code:
<pre class="language-javascript">[ { ingredientPattern: "FF,QB", ingredients: { "F": { type: "item", code: "game:clay-fire" }, "Q": { type: "item", code: "game:crushed-quartz" }, "B": { type: "item", code: "game:crushed-olivine" }, }, width: 2, height: 2, shapeless: true, output: { type: "item", code: "game:refractorybrick-raw-tier1", quantity: 1 } }, { ingredientPattern: "FF,QB", ingredients: { "F": { type: "item", code: "game:clay-fire" }, "Q": { type: "item", code: "game:crushed-quartz" }, "B": { type: "item", code: "game:crushed-ilmenite" }, }, width: 2, height: 2, shapeless: true, output: { type: "item", code: "game:refractorybrick-raw-tier1", quantity: 1 } },

{ ingredientPattern: "FF,QB,P_", ingredients: { "F": { type: "item", code: "game:clay-fire" }, "Q": { type: "item", code: "game:crushed-quartz" }, "B": { type: "item", code: "game:crushed-bauxite" }, "P": { type: "item", code: "game:crushed-ilmenite" }, }, width: 2, height: 3, shapeless: true, output: { type: "item", code: "game:refractorybrick-raw-tier2", quantity: 1 } }, { ingredientPattern: "FF,QB,P_", ingredients: { "F": { type: "item", code: "game:clay-fire" }, "Q": { type: "item", code: "game:crushed-quartz" }, "B": { type: "item", code: "game:crushed-olivine" }, "P": { type: "item", code: "game:crushed-ilmenite" }, }, width: 2, height: 3, shapeless: true, output: { type: "item", code: "game:refractorybrick-raw-tier2", quantity: 1 } } ]</pre>

&nbsp;

&nbsp;

Ratings & reviews

No ratings yet

Sign in to leave a rating or comment.