Compare commits
2 Commits
d709feee6e
...
374f9037a1
| Author | SHA1 | Date | |
|---|---|---|---|
| 374f9037a1 | |||
| 8760600105 |
65
guide.lua
65
guide.lua
@ -448,6 +448,70 @@ local pages={
|
||||
<left>||Picture 1. Induction Furnace smelting <item name="industrialtest:copper_dust" height="{{ITEM_HEIGHT}}"> <b>Copper Dust</b> and <item name="industrialtest:iron_dust" height="{{ITEM_HEIGHT}}"> <b>Iron Dust</b> into <item name="{{elementKeyCopperIngot}}" height="{{ITEM_HEIGHT}}"> <b>Copper Ingot</b> and <item name="{{elementKeyIronIngot}}" height="{{ITEM_HEIGHT}}"> <b>Iron Ingot</b>.||</left>
|
||||
]]
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
name="ironFurnace",
|
||||
title=S("Iron Furnace"),
|
||||
icon="industrialtest:iron_furnace",
|
||||
content={
|
||||
[[
|
||||
<big>||Iron Furnace||</big>
|
||||
<left>
|
||||
||Iron Furnace works in similar way to regular furnace but it smelts items faster.||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="recipe",
|
||||
value="Smelting"
|
||||
}
|
||||
},S("Iron Furnace")),
|
||||
[[
|
||||
<img name="industrialtest_guide_iron_furnace.png" width="{{IMAGE_WIDTH}}">
|
||||
<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>
|
||||
]]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -496,6 +560,7 @@ local function getGuideFormspec(playerName,pageName)
|
||||
elementKeyCoal=industrialtest.elementKeys.coal,
|
||||
elementKeyCopperIngot=industrialtest.elementKeys.copperIngot,
|
||||
elementKeyIronIngot=industrialtest.elementKeys.ironIngot,
|
||||
elementKeyIronLump=industrialtest.elementKeys.ironLump,
|
||||
elementKeyRubber=industrialtest.elementKeys.rubber,
|
||||
elementKeyRubberWood=industrialtest.elementKeys.rubberWood
|
||||
})
|
||||
|
||||
BIN
textures/industrialtest_guide_iron_furnace.png
Normal file
BIN
textures/industrialtest_guide_iron_furnace.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.1 KiB |
BIN
textures/industrialtest_guide_macerator.png
Normal file
BIN
textures/industrialtest_guide_macerator.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
Loading…
x
Reference in New Issue
Block a user