diff --git a/guide.lua b/guide.lua index 7ea50d4..802fac0 100644 --- a/guide.lua +++ b/guide.lua @@ -843,6 +843,46 @@ local pages={ ||Picture 1. Recycler transforming some items.|| ]] } + }, + + { + name="rotaryMacerator", + title=S("Rotary Macerator"), + icon="industrialtest:rotary_macerator", + content={ + [[ + ||Rotary Macerator|| + + ||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.|| + + ]], + 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")), + [[ + + ||Picture 1. Rotary Macerator running with altered recipe.|| + ]] + } } } diff --git a/textures/industrialtest_guide_rotary_macerator.png b/textures/industrialtest_guide_rotary_macerator.png new file mode 100644 index 0000000..54f00b1 Binary files /dev/null and b/textures/industrialtest_guide_rotary_macerator.png differ