Compare commits
2 Commits
a9be76866f
...
9633214a85
| Author | SHA1 | Date | |
|---|---|---|---|
| 9633214a85 | |||
| a920bef790 |
80
guide.lua
80
guide.lua
@ -803,6 +803,86 @@ local pages={
|
|||||||
<left>||Picture 1. Pump attached to <item name="industrialtest:miner" height="{{ITEM_HEIGHT}}"> <b>Miner</b>.||</left>
|
<left>||Picture 1. Pump attached to <item name="industrialtest:miner" height="{{ITEM_HEIGHT}}"> <b>Miner</b>.||</left>
|
||||||
]]
|
]]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name="recycler",
|
||||||
|
title=S("Recycler"),
|
||||||
|
icon="industrialtest:recycler",
|
||||||
|
content={
|
||||||
|
[[
|
||||||
|
<big>||Recycler||</big>
|
||||||
|
<left>
|
||||||
|
||Recycler with chance of 1/8 allows for transforming any item into <item name="industrialtest:scrap" height="{{ITEM_HEIGHT}}"> <b>Scrap</b>.||
|
||||||
|
</left>
|
||||||
|
]],
|
||||||
|
createMachineInformationTable({
|
||||||
|
{
|
||||||
|
name="inputVoltage",
|
||||||
|
value="LV"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="recipe",
|
||||||
|
value="Recycling"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="powerCapacity",
|
||||||
|
value=string.format("%d EU",industrialtest.Recycler.capacity)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="opPower",
|
||||||
|
value=string.format("%d EU",industrialtest.Recycler.opPower)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="efficiency",
|
||||||
|
value=tostring(1/industrialtest.Recycler.efficiency)
|
||||||
|
}
|
||||||
|
},S("Recycler")),
|
||||||
|
[[
|
||||||
|
<img name="industrialtest_guide_recycler.png" width="{{IMAGE_WIDTH}}">
|
||||||
|
<left>||Picture 1. Recycler transforming some items.||</left>
|
||||||
|
]]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name="rotaryMacerator",
|
||||||
|
title=S("Rotary Macerator"),
|
||||||
|
icon="industrialtest:rotary_macerator",
|
||||||
|
content={
|
||||||
|
[[
|
||||||
|
<big>||Rotary Macerator||</big>
|
||||||
|
<left>
|
||||||
|
||Rotary Macerator works in similar way to regular Macerator with few differences. Like Induction Furnace the longer it runs the faster it works. Furthermore it provides additional slot for recipe modifier which can slightly alter the result.||
|
||||||
|
</left>
|
||||||
|
]],
|
||||||
|
createMachineInformationTable({
|
||||||
|
{
|
||||||
|
name="inputVoltage",
|
||||||
|
value="LV"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="recipe",
|
||||||
|
value="Macerating + modifier"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="powerCapacity",
|
||||||
|
value=string.format("%d EU",industrialtest.RotaryMacerator.capacity)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="opPower",
|
||||||
|
value=string.format("%d EU",industrialtest.RotaryMacerator._opPower)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name="Power while maintaining energy",
|
||||||
|
value=string.format("%d EU",industrialtest.RotaryMacerator._maintainSpeedOpPower)
|
||||||
|
}
|
||||||
|
},S("Rotary Macerator")),
|
||||||
|
[[
|
||||||
|
<img name="industrialtest_guide_rotary_macerator.png" width="{{IMAGE_WIDTH}}">
|
||||||
|
<left>||Picture 1. Rotary Macerator running with altered recipe.||</left>
|
||||||
|
]]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
BIN
textures/industrialtest_guide_recycler.png
Normal file
BIN
textures/industrialtest_guide_recycler.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.6 KiB |
BIN
textures/industrialtest_guide_rotary_macerator.png
Normal file
BIN
textures/industrialtest_guide_rotary_macerator.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
Loading…
x
Reference in New Issue
Block a user