diff --git a/guide.lua b/guide.lua
index dd8a5a1..7f3f247 100644
--- a/guide.lua
+++ b/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={
||Picture 1. - Electric Furnace with
- Overclocker Upgrade.||
]]
}
+ },
+
+ {
+ name="batpacks",
+ title=S("BatPacks"),
+ icon="industrialtest:batpack_v",
+ content={
+ [[
+ ||BatPacks||
+
+ ||BatPack when equipped charges currently wielded electric item. There are two types of BatPacks:||
+
+
+ ||- BatPack||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="voltage",
+ value="LV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.BatPack.capacity)
+ }
+ },S("BatPack")),
+ [[
+
+
+ ||- LapPack||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="voltage",
+ value="MV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.LapPack.capacity)
+ }
+ },S("LapPack"),2)
+ }
}
}