Compare commits
3 Commits
6a37a84114
...
ae26f0fe58
| Author | SHA1 | Date | |
|---|---|---|---|
| ae26f0fe58 | |||
| a210cc78e0 | |||
| f480f16340 |
129
guide.lua
129
guide.lua
@ -66,6 +66,7 @@ local function createMachineInformationTable(fields,machineName,num)
|
||||
local fieldLabels={
|
||||
inputVoltage="Input voltage level",
|
||||
outputVoltage="Output voltage level",
|
||||
voltage="Voltage",
|
||||
lowVoltage="Low voltage",
|
||||
highVoltage="High voltage",
|
||||
recipe="Recipe type",
|
||||
@ -1206,6 +1207,134 @@ local pages={
|
||||
<left>||Picture 1. <item name="industrialtest:electric_furnace" height="{{ITEM_HEIGHT}}"> <b>Electric Furnace</b> with <item name="industrialtest:overclocker_upgrade" height="{{ITEM_HEIGHT}}"> <b>Overclocker Upgrade</b>.||</left>
|
||||
]]
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
name="batpacks",
|
||||
title=S("BatPacks"),
|
||||
icon="industrialtest:batpack_v",
|
||||
content={
|
||||
[[
|
||||
<big>||BatPacks||</big>
|
||||
<left>
|
||||
||BatPack when equipped charges currently wielded electric item. There are two types of BatPacks:||
|
||||
</left>
|
||||
<left>
|
||||
||<item name="industrialtest:batpack_v" height="{{ITEM_HEIGHT}}"> <b>BatPack</b>||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="voltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.BatPack.capacity)
|
||||
}
|
||||
},S("BatPack")),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
||<item name="industrialtest:lappack_v" height="{{ITEM_HEIGHT}}"> <b>LapPack</b>||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="voltage",
|
||||
value="MV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.LapPack.capacity)
|
||||
}
|
||||
},S("LapPack"),2)
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
name="electricToolset",
|
||||
title=S("Electric toolset"),
|
||||
icon="industrialtest:electric_drill",
|
||||
content={
|
||||
[[
|
||||
<big>||Electric toolset||</big>
|
||||
<left>
|
||||
||Electric toolset consists of typical tools like pickaxe but powered by electricity. While used they don't wear out but instead discharge which allow them to be reused. When completely discharged it's still possible to use the tool but it will be considerably slower. Those are (regular and advanced version):||
|
||||
</left>
|
||||
<left>
|
||||
||<item name="industrialtest:electric_chainsaw" height="{{ITEM_HEIGHT}}"> <b>Electric Chainsaw</b>||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="voltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.ElectricChainsaw.capacity)
|
||||
}
|
||||
},S("Electric Chainsaw")),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
||<item name="industrialtest:electric_drill" height="{{ITEM_HEIGHT}}"> <b>Electric Drill</b>||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="voltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.ElectricDrill.capacity)
|
||||
}
|
||||
},S("Electric Drill"),2),
|
||||
[[
|
||||
<mono></mono>
|
||||
||<item name="industrialtest:electric_hoe" height="{{ITEM_HEIGHT}}"> <b>Electric Hoe</b>||
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="voltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.ElectricHoe.capacity)
|
||||
}
|
||||
},S("Electric Hoe"),3),
|
||||
[[
|
||||
<mono></mono>
|
||||
||<item name="industrialtest:electric_saber" height="{{ITEM_HEIGHT}}"> <b>Electric Saber</b>||
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="voltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.ElectricSaber.capacity)
|
||||
}
|
||||
},S("Electric Saber"),4),
|
||||
[[
|
||||
<mono></mono>
|
||||
||<item name="industrialtest:electric_treetap" height="{{ITEM_HEIGHT}}"> <b>Electric Treetap</b>||
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="voltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.ElectricTreetap.capacity)
|
||||
}
|
||||
},S("Electric Treetap"),5)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -69,8 +69,8 @@ industrialtest.internal.unpackTableInto(industrialtest.LapPack,{
|
||||
description=S("LapPack"),
|
||||
inventoryImage="industrialtest_lappack_v_inv.png",
|
||||
modelImage="industrialtest_lappack_v.png",
|
||||
capacity=60000,
|
||||
flow=industrialtest.api.lvPowerFlow
|
||||
capacity=300000,
|
||||
flow=industrialtest.api.mvPowerFlow
|
||||
})
|
||||
|
||||
industrialtest.LapPack:register()
|
||||
@ -79,7 +79,7 @@ minetest.register_craft({
|
||||
type="shaped",
|
||||
output="industrialtest:lappack_v",
|
||||
recipe={
|
||||
{industrialtest.elementKeys.powerCarrier,"industrialtest:electronic_circuit",industrialtest.elementKeys.powerCarrier},
|
||||
{industrialtest.elementKeys.powerCarrier,"industrialtest:advanced_electronic_circuit",industrialtest.elementKeys.powerCarrier},
|
||||
{industrialtest.elementKeys.powerCarrier,"industrialtest:batpack_v",industrialtest.elementKeys.powerCarrier},
|
||||
{industrialtest.elementKeys.powerCarrier,"",industrialtest.elementKeys.powerCarrier}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user