Compare commits
2 Commits
647d46b2f4
...
0d8807a1c3
| Author | SHA1 | Date | |
|---|---|---|---|
| 0d8807a1c3 | |||
| e7ed72b261 |
118
guide.lua
118
guide.lua
@@ -66,6 +66,8 @@ local function createMachineInformationTable(fields,machineName,num)
|
||||
local fieldLabels={
|
||||
inputVoltage="Input voltage level",
|
||||
outputVoltage="Output voltage level",
|
||||
lowVoltage="Low voltage",
|
||||
highVoltage="High voltage",
|
||||
recipe="Recipe type",
|
||||
powerCapacity="Power capacity",
|
||||
opPower="Power per operation",
|
||||
@@ -995,7 +997,7 @@ local pages={
|
||||
[[
|
||||
<big>||Tool Workshop||</big>
|
||||
<left>
|
||||
Tool Workshop can be used to repair various tools with cost of energy. The process requires quite a lot energy and is slow.
|
||||
||Tool Workshop can be used to repair various tools with cost of energy. The process requires quite a lot energy and is slow.||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
@@ -1021,6 +1023,120 @@ local pages={
|
||||
<left>||Picture 1. Tool Workshop repairing <item name="{{elementKeyIronPickaxe}}" height="{{ITEM_HEIGHT}}"> <b>Iron Pickaxe</b>.||</left>
|
||||
]]
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
name="transformers",
|
||||
title=S("Transformers"),
|
||||
icon="industrialtest:lv_transformer",
|
||||
content={
|
||||
[[
|
||||
<big>||Transformers||</big>
|
||||
<left>
|
||||
||Transformer can be used to either bump up or lower the voltage between different voltage levels. Each transformer has one high voltage input/output side and five low voltage input/output sides. These are transformers in this mod:||
|
||||
</left>
|
||||
<mono>
|
||||
</mono>
|
||||
<left>
|
||||
<item name="industrialtest:lv_transformer" height="{{ITEM_HEIGHT}}"> <b>||LV Transformer||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="lowVoltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="highVoltage",
|
||||
value="MV"
|
||||
}
|
||||
},S("LV Transformer")),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
<item name="industrialtest:mv_transformer" height="{{ITEM_HEIGHT}}"> <b>||MV Transformer||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="lowVoltage",
|
||||
value="MV"
|
||||
},
|
||||
{
|
||||
name="highVoltage",
|
||||
value="HV"
|
||||
}
|
||||
},S("MV Transformer"),2),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
<item name="industrialtest:hv_transformer" height="{{ITEM_HEIGHT}}"> <b>||HV Transformer||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="lowVoltage",
|
||||
value="HV"
|
||||
},
|
||||
{
|
||||
name="highVoltage",
|
||||
value="EV"
|
||||
}
|
||||
},S("HV Transformer"),3),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
<item name="industrialtest:ev_transformer" height="{{ITEM_HEIGHT}}"> <b>||EV Transformer||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="lowVoltage",
|
||||
value="EV"
|
||||
},
|
||||
{
|
||||
name="highVoltage",
|
||||
value="IV"
|
||||
}
|
||||
},S("EV Transformer"),4),
|
||||
[[
|
||||
<mono></mono>
|
||||
<img name="industrialtest_guide_transformer.png">
|
||||
<left>||Picture 1. <item name="industrialtest:electric_furnace" height="{{ITEM_HEIGHT}}"> <b>Electric Furnace</b> connected to <item name="industrialtest:mv_solar_array" height="{{ITEM_HEIGHT}}"> <b>MV Solar Array</b> through <item name="industrialtest:lv_transformer" height="{{ITEM_HEIGHT}}"> <b>LV Transformer</b>.||</left>
|
||||
]]
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
name="waterMill",
|
||||
title=S("Water Mill"),
|
||||
icon="industrialtest:water_mill",
|
||||
content={
|
||||
[[
|
||||
<big>||Water Mill||</big>
|
||||
<left>
|
||||
||Water Mill is used to produce power from water kinetic force. There are two ways to supply water flow to Water Mill: putting it next to water or putting water in Water Mill for example by using <item name="industrialtest:empty_cell" height="{{ITEM_HEIGHT}}"> <b>Empty Cell</b>. The fluid level indicator in formspec shows the amount of water.||
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="outputVoltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.WaterMill.capacity)
|
||||
}
|
||||
},S("Water Mill")),
|
||||
[[
|
||||
<img name="industrialtest_guide_water_mill_formspec.png" width="{{IMAGE_WIDTH}}">
|
||||
<left>||Picture 1. Water Mill with some water inside.||</left>
|
||||
<mono>
|
||||
</mono>
|
||||
<img name="industrialtest_guide_water_mill.png">
|
||||
<left>||Picture 2. Water Mill in water.||</left>
|
||||
]]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
BIN
textures/industrialtest_guide_transformer.png
Normal file
BIN
textures/industrialtest_guide_transformer.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 220 KiB |
BIN
textures/industrialtest_guide_water_mill.png
Normal file
BIN
textures/industrialtest_guide_water_mill.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 221 KiB |
BIN
textures/industrialtest_guide_water_mill_formspec.png
Normal file
BIN
textures/industrialtest_guide_water_mill_formspec.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.0 KiB |
Reference in New Issue
Block a user