Reverted Power Pole Recipes


Changes the power pole recipes to how it was before 2.0, using copper plates instead of copper cables.

Tweaks
11 months ago
2.0
63
Power

b Invalid Recipes

8 months ago

Given the recipe format changes in 2.0, I'm not sure how this would have ever worked as the recipes use the deprecated format from 1.x.

data.lua should read as below for the mod to actually work:

--data.lua

data.raw.recipe["medium-electric-pole"].ingredients =
{
{type="item", name="copper-plate", amount=1},
{type="item", name="steel-plate", amount=2},
{type="item", name="iron-stick", amount=4}
}

data.raw.recipe["big-electric-pole"].ingredients =
{
{type="item", name="copper-plate", amount=2},
{type="item", name="steel-plate", amount=5},
{type="item", name="iron-stick", amount=8}
}

data.raw.recipe["substation"].ingredients =
{
{type="item", name="copper-plate", amount=3},
{type="item", name="steel-plate", amount=1},
{type="item", name="advanced-circuit", amount=5}
}

New response