diff --git a/guide.lua b/guide.lua index 1659a7f..8186385 100644 --- a/guide.lua +++ b/guide.lua @@ -379,6 +379,34 @@ local pages={ ||Picture 1. Generator producing power from Coal|| ]] } + }, + + { + name="geothermalGenerator", + title=S("Geothermal Generator"), + icon="industrialtest:geothermal_generator", + content={ + [[ + ||Geothermal Generator|| + + ||Geothermal Generator produces energy using heat from fluids like lava. Hot fluids can be transferred into Geothermal Generator for example by using Empty Cell or Empty Bucket.|| + + ]], + createMachineInformationTable({ + { + name="outputVoltage", + value="LV" + }, + { + name="powerCapacity", + value=string.format("%d EU",industrialtest.GeothermalGenerator.capacity) + } + },S("Geothermal Generator")), + [[ + + ||Picture 1. Geothermal Generator producing power from Lava|| + ]] + } } } @@ -423,6 +451,7 @@ local function getGuideFormspec(playerName,pageName) local content=preprocessHypertext(table.concat(page.content,""),{ IMAGE_WIDTH=550, ITEM_HEIGHT=16, + elementKeyBucket=industrialtest.elementKeys.bucket, elementKeyCoal=industrialtest.elementKeys.coal, elementKeyIronIngot=industrialtest.elementKeys.ironIngot, elementKeyRubber=industrialtest.elementKeys.rubber, diff --git a/textures/industrialtest_guide_geothermal_generator.png b/textures/industrialtest_guide_geothermal_generator.png new file mode 100644 index 0000000..a3f6f02 Binary files /dev/null and b/textures/industrialtest_guide_geothermal_generator.png differ