diff --git a/guide.lua b/guide.lua
index 7f3f247..71751df 100644
--- a/guide.lua
+++ b/guide.lua
@@ -1250,6 +1250,91 @@ local pages={
}
},S("LapPack"),2)
}
+ },
+
+ {
+ name="electricToolset",
+ title=S("Electric toolset"),
+ icon="industrialtest:electric_drill",
+ content={
+ [[
+ ||Electric toolset||
+
+ ||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):||
+
+
+ ||- Electric Chainsaw||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="voltage",
+ value="LV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.ElectricChainsaw.capacity)
+ }
+ },S("Electric Chainsaw")),
+ [[
+
+
+ ||- Electric Drill||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="voltage",
+ value="LV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.ElectricDrill.capacity)
+ }
+ },S("Electric Drill"),2),
+ [[
+
+ ||- Electric Hoe||
+ ]],
+ createMachineInformationTable({
+ {
+ name="voltage",
+ value="LV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.ElectricHoe.capacity)
+ }
+ },S("Electric Hoe"),3),
+ [[
+
+ ||
- Electric Saber||
+ ]],
+ createMachineInformationTable({
+ {
+ name="voltage",
+ value="LV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.ElectricSaber.capacity)
+ }
+ },S("Electric Saber"),4),
+ [[
+
+ ||
- Electric Treetap||
+ ]],
+ createMachineInformationTable({
+ {
+ name="voltage",
+ value="LV"
+ },
+ {
+ name="powerCapacity",
+ value=string.format("%d EU",industrialtest.ElectricTreetap.capacity)
+ }
+ },S("Electric Treetap"),5)
+ }
}
}