Describe Magnetizer in guide

This commit is contained in:
2025-11-27 22:25:48 +01:00
parent 374f9037a1
commit 0cd9db64fb
2 changed files with 32 additions and 0 deletions

View File

@@ -512,6 +512,38 @@ local pages={
<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>
]]
}
},
{
name="magnetizer",
title=S("Magnetizer"),
icon="industrialtest:magnetizer",
content={
[[
<big>||Magnetizer||</big>
<left>
||Magnetizer when used together with vertical rail made of <item name="industrialtest:iron_fence" height="{{ITEM_HEIGHT}}"> <b>Iron Fence</b> next to it creates small magnetic field around the fence. Such field allows for moving (as long as player wears some metal boots) upwards when jump key is pressed or downwards when sneak key is pressed. Each fence in rail adds to total power capacity that can be stored. Magnetizer automatically changes rotation to face detected fence rail.||
</left>
]],
createMachineInformationTable({
{
name="inputVoltage",
value="LV"
},
{
name="powerCapacity",
value=string.format("%d EU + %d EU per fence in rail",industrialtest.Magnetizer.capacity,industrialtest.Magnetizer._capacityPerFence)
},
{
name="opPower",
value=string.format("%d EU",industrialtest.Magnetizer._opPower)
}
},S("Magnetizer")),
[[
<img name="industrialtest_guide_magnetizer.png">
<left>||Picture 1. Magnetizer powered by <item name="industrialtest:solar_panel" height="{{ITEM_HEIGHT}}"> <b>Solar Panel</b> with fence rail next to it.||</left>
]]
}
}
}