diff --git a/guide.lua b/guide.lua index 777df50..743651a 100644 --- a/guide.lua +++ b/guide.lua @@ -301,6 +301,46 @@ local pages={ ||Picture 1. Electric Furnace smelting Iron Dust into Iron Ingot|| ]] } + }, + + { + name="extractor", + title=S("Extractor"), + icon="industrialtest:extractor", + content={ + [[ + ||Extractor|| + + ||Extractor is used to separate materials from within other materials, often when it's not possible by other means.|| + + ]], + createMachineInformationTable({ + { + name="inputVoltage", + value="LV" + }, + { + name="recipe", + value="Extracting" + }, + { + name="powerCapacity", + value="1000 EU" + }, + { + name="opPower", + value="100 EU" + }, + { + name="efficiency", + value="1" + } + },S("Extractor")), + [[ + + ||Picture 1. Extractor extracting Rubber from Rubber Wood|| + ]] + } } } @@ -345,7 +385,9 @@ local function getGuideFormspec(playerName,pageName) local content=preprocessHypertext(table.concat(page.content,""),{ IMAGE_WIDTH=550, ITEM_HEIGHT=16, - elementKeyIronIngot=industrialtest.elementKeys.ironIngot + elementKeyIronIngot=industrialtest.elementKeys.ironIngot, + elementKeyRubber=industrialtest.elementKeys.rubber, + elementKeyRubberWood=industrialtest.elementKeys.rubberWood }) table.insert(formspec,string.format("hypertext[4.2,0.4;10.7,10.3;content;%s]",content)) break diff --git a/textures/industrialtest_guide_extractor.png b/textures/industrialtest_guide_extractor.png new file mode 100644 index 0000000..85a3cc9 Binary files /dev/null and b/textures/industrialtest_guide_extractor.png differ