Compare commits

..

2 Commits

Author SHA1 Message Date
37b6d2b8ff Describe Electric Furnace in guide 2025-11-22 20:13:23 +01:00
c9e73102c9 Describe Compressor in guide 2025-11-22 20:07:14 +01:00
3 changed files with 48 additions and 1 deletions

View File

@ -103,6 +103,52 @@ local pages={
<img name="industrialtest_guide_canning_machine.png" width="{{IMAGE_WIDTH}}">
<left>Picture 1. Canning Machine refilling <item name="industrialtest:fuel_can" height="{{ITEM_HEIGHT}}"> <b>Fuel Can</b> with fuel from <item name="industrialtest:coalfuel_cell" height="{{ITEM_HEIGHT}}"> <b>Coalfuel Cell</b></left>
]]
},
{
name="compressor",
title=S("Compressor"),
icon="industrialtest:compressor",
content=[[
<big>Compressor</big>
<left>
Compressor as the name suggests is used to compress various materials. Mostly required to produce items for crafting other items.
</left>
<mono>
---------------------------------
| Input voltage level | LV |
| Power per operation | 120 EU |
| Power capacity | 1400 EU |
| Default efficiency | 1 |
---------------------------------
Figure 1. Machine information for Compressor
</mono>
<img name="industrialtest_guide_compressor.png" width="{{IMAGE_WIDTH}}">
<left>Picture 1. Compressor compressing <item name="industrialtest:plantball" height="{{ITEM_HEIGHT}}"> <b>Plantball</b> into <item name="industrialtest:compressed_plantball" height="{{ITEM_HEIGHT}}"> <b>Compressed Plantball</b></left>
]]
},
{
name="electricFurnace",
title=S("Electric Furnace"),
icon="industrialtest:electric_furnace",
content=[[
<big>Electric Furnace</big>
<left>
Electric Furnace like regular furnace can be used to smelt items. The difference is that Electric Furnace is slightly faster even without any upgrades and, well, it's electric so it doesn't require fuel.
</left>
<mono>
--------------------------------
| Input voltage level | LV |
| Power per operation | 60 EU |
| Power capacity | 416 EU |
| Default efficiency | 0.5 |
--------------------------------
Figure 1. Machine information for Electric Furnace
</mono>
<img name="industrialtest_guide_electric_furnace.png" width="{{IMAGE_WIDTH}}">
<left>Picture 1. Electric Furnace smelting <item name="industrialtest:iron_dust" height="{{ITEM_HEIGHT}}"> <b>Iron Dust</b> into <item name="{{elementKeyIronIngot}}" height="{{ITEM_HEIGHT}}"> <b>Iron Ingot</b></left>
]]
}
}
@ -140,7 +186,8 @@ local function getGuideFormspec(playerName,pageName)
if page.name==pageName then
local content=preprocessHypertext(page.content,{
IMAGE_WIDTH=550,
ITEM_HEIGHT=16
ITEM_HEIGHT=16,
elementKeyIronIngot=industrialtest.elementKeys.ironIngot
})
table.insert(formspec,string.format("hypertext[4.2,0.4;10.7,10.3;content;%s]",content))
break

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB