Compare commits
2 Commits
d1511a5f10
...
37b6d2b8ff
| Author | SHA1 | Date | |
|---|---|---|---|
| 37b6d2b8ff | |||
| c9e73102c9 |
49
guide.lua
49
guide.lua
@@ -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
|
||||
|
||||
BIN
textures/industrialtest_guide_compressor.png
Normal file
BIN
textures/industrialtest_guide_compressor.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.3 KiB |
BIN
textures/industrialtest_guide_electric_furnace.png
Normal file
BIN
textures/industrialtest_guide_electric_furnace.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.8 KiB |
Reference in New Issue
Block a user