Describe BatPacks in guide
This commit is contained in:
parent
f480f16340
commit
a210cc78e0
44
guide.lua
44
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,49 @@ 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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user