Describe Macerator in guide

This commit is contained in:
mrkubax10 2025-11-26 23:09:29 +01:00
parent 8760600105
commit 374f9037a1
2 changed files with 41 additions and 0 deletions

View File

@ -472,6 +472,46 @@ local pages={
<left>||Picture 1. Iron Furnace smelting <item name="industrialtest:iron_dust" height="{{ITEM_HEIGHT}}"> <b>Iron Dust</b> into <item name="{{elementKeyIronIngot}}" height="{{ITEM_HEIGHT}}"> <b>Iron Ingot</b> using <item name="{{elementKeyCoal}}" height="{{ITEM_HEIGHT}}"> <b>Coal</b>.||</left> <left>||Picture 1. Iron Furnace smelting <item name="industrialtest:iron_dust" height="{{ITEM_HEIGHT}}"> <b>Iron Dust</b> into <item name="{{elementKeyIronIngot}}" height="{{ITEM_HEIGHT}}"> <b>Iron Ingot</b> using <item name="{{elementKeyCoal}}" height="{{ITEM_HEIGHT}}"> <b>Coal</b>.||</left>
]] ]]
} }
},
{
name="macerator",
title=S("Macerator"),
icon="industrialtest:macerator",
content={
[[
<big>||Macerator||</big>
<left>
||Macerator allows to crush various materials into their dust form. This is particularly useful with ores where it can be used for obtaining twice as much resources in some cases.||
</left>
]],
createMachineInformationTable({
{
name="inputVoltage",
value="LV"
},
{
name="recipe",
value="Macerating"
},
{
name="powerCapacity",
value=string.format("%d EU",industrialtest.Macerator.capacity)
},
{
name="opPower",
value=string.format("%d EU",industrialtest.Macerator.opPower)
},
{
name="efficiency",
value=tostring(1/industrialtest.Macerator.efficiency)
}
},S("Macerator")),
[[
<img name="industrialtest_guide_macerator.png" width="{{IMAGE_WIDTH}}">
<left>||Picture 1. Macerator crushing <item name="{{elementKeyIronLump}}" height="{{ITEM_HEIGHT}}"> <b>Iron Lump</b> into <item name="industrialtest:iron_dust" height="{{ITEM_HEIGHT}}"> <b>Iron Dust</b>.||</left>
]]
}
} }
} }
@ -520,6 +560,7 @@ local function getGuideFormspec(playerName,pageName)
elementKeyCoal=industrialtest.elementKeys.coal, elementKeyCoal=industrialtest.elementKeys.coal,
elementKeyCopperIngot=industrialtest.elementKeys.copperIngot, elementKeyCopperIngot=industrialtest.elementKeys.copperIngot,
elementKeyIronIngot=industrialtest.elementKeys.ironIngot, elementKeyIronIngot=industrialtest.elementKeys.ironIngot,
elementKeyIronLump=industrialtest.elementKeys.ironLump,
elementKeyRubber=industrialtest.elementKeys.rubber, elementKeyRubber=industrialtest.elementKeys.rubber,
elementKeyRubberWood=industrialtest.elementKeys.rubberWood elementKeyRubberWood=industrialtest.elementKeys.rubberWood
}) })

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB