diff --git a/guide.lua b/guide.lua index 4f200ff..ae2e725 100644 --- a/guide.lua +++ b/guide.lua @@ -985,6 +985,42 @@ local pages={ ||Picture 2. Solar Panel not generating.|| ]] } + }, + + { + name="toolWorkshop", + title=S("Tool Workshop"), + icon="industrialtest:tool_workshop", + content={ + [[ + ||Tool Workshop|| + + Tool Workshop can be used to repair various tools with cost of energy. The process requires quite a lot energy and is slow. + + ]], + createMachineInformationTable({ + { + name="inputVoltage", + value="HV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.ToolWorkshop.capacity) + }, + { + name="opPower", + value=string.format("%d EU",industrialtest.ToolWorkshop._opPower) + }, + { + name="efficiency", + value=tostring(industrialtest.ToolWorkshop._efficiency) + } + },S("Tool Workshop")), + [[ + + ||Picture 1. Tool Workshop repairing Iron Pickaxe.|| + ]] + } } } @@ -1034,6 +1070,7 @@ local function getGuideFormspec(playerName,pageName) elementKeyCopperIngot=industrialtest.elementKeys.copperIngot, elementKeyIronIngot=industrialtest.elementKeys.ironIngot, elementKeyIronLump=industrialtest.elementKeys.ironLump, + elementKeyIronPickaxe=industrialtest.elementKeys.ironPickaxe, elementKeyRubber=industrialtest.elementKeys.rubber, elementKeyRubberWood=industrialtest.elementKeys.rubberWood })