diff --git a/guide.lua b/guide.lua
index ae2e725..f59a72d 100644
--- a/guide.lua
+++ b/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={
[[
||Tool Workshop||
- 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.||
]],
createMachineInformationTable({
@@ -1021,6 +1023,88 @@ local pages={
||Picture 1. Tool Workshop repairing - Iron Pickaxe.||
]]
}
+ },
+
+ {
+ name="transformers",
+ title=S("Transformers"),
+ icon="industrialtest:lv_transformer",
+ content={
+ [[
+ ||Transformers||
+
+ ||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:||
+
+
+
+
+ - ||LV Transformer||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="lowVoltage",
+ value="LV"
+ },
+ {
+ name="highVoltage",
+ value="MV"
+ }
+ },S("LV Transformer")),
+ [[
+
+
+ - ||MV Transformer||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="lowVoltage",
+ value="MV"
+ },
+ {
+ name="highVoltage",
+ value="HV"
+ }
+ },S("MV Transformer"),2),
+ [[
+
+
+ - ||HV Transformer||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="lowVoltage",
+ value="HV"
+ },
+ {
+ name="highVoltage",
+ value="EV"
+ }
+ },S("HV Transformer"),3),
+ [[
+
+
+ - ||EV Transformer||
+
+ ]],
+ createMachineInformationTable({
+ {
+ name="lowVoltage",
+ value="EV"
+ },
+ {
+ name="highVoltage",
+ value="IV"
+ }
+ },S("EV Transformer"),4),
+ [[
+
+
+ ||Picture 1. - Electric Furnace connected to
- MV Solar Array through
- LV Transformer.||
+ ]]
+ }
}
}
diff --git a/textures/industrialtest_guide_transformer.png b/textures/industrialtest_guide_transformer.png
new file mode 100644
index 0000000..3b23b0f
Binary files /dev/null and b/textures/industrialtest_guide_transformer.png differ