Compare commits
2 Commits
374f9037a1
...
08fd6a5a40
| Author | SHA1 | Date | |
|---|---|---|---|
| 08fd6a5a40 | |||
| 0cd9db64fb |
76
guide.lua
76
guide.lua
@ -512,6 +512,82 @@ 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>
|
||||
]]
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
name="massFabricator",
|
||||
title=S("Mass Fabricator"),
|
||||
icon="industrialtest:mass_fabricator",
|
||||
content={
|
||||
[[
|
||||
<big>||Mass Fabricator||</big>
|
||||
<left>
|
||||
||Mass Fabricator can transform energy and <item name="industrialtest:scrap" height="{{ITEM_HEIGHT}}"> <b>Scrap</b> into <item name="industrialtest:uu_matter" height="{{ITEM_HEIGHT}}"> <b>UU-Matter</b> which then can be later used to produce various materials.||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="inputVoltage",
|
||||
value="EV"
|
||||
},
|
||||
{
|
||||
name="recipe",
|
||||
value="Mass fabricating"
|
||||
},
|
||||
{
|
||||
name="Scraps per UU-Matter",
|
||||
value="34"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.MassFabricator.capacity)
|
||||
},
|
||||
{
|
||||
name="opPower",
|
||||
value=string.format("%d EU",industrialtest.MassFabricator.opPower)
|
||||
},
|
||||
{
|
||||
name="efficiency",
|
||||
value=tostring(1/industrialtest.MassFabricator.efficiency)
|
||||
}
|
||||
},S("Mass Fabricator")),
|
||||
[[
|
||||
<img name="industrialtest_guide_mass_fabricator.png" width="{{IMAGE_WIDTH}}">
|
||||
<left>||Picture 1. Mass Fabricator producing <item name="industrialtest:uu_matter" height="{{ITEM_HEIGHT}}"> <b>UU-Matter</b> from <item name="industrialtest:scrap" height="{{ITEM_HEIGHT}}"> <b>Scrap</b>.||</left>
|
||||
]]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
BIN
textures/industrialtest_guide_magnetizer.png
Normal file
BIN
textures/industrialtest_guide_magnetizer.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 183 KiB |
BIN
textures/industrialtest_guide_mass_fabricator.png
Normal file
BIN
textures/industrialtest_guide_mass_fabricator.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.3 KiB |
Loading…
x
Reference in New Issue
Block a user