Describe solar panels in guide
This commit is contained in:
parent
9633214a85
commit
603ae83507
102
guide.lua
102
guide.lua
@ -883,6 +883,108 @@ local pages={
|
||||
<left>||Picture 1. Rotary Macerator running with altered recipe.||</left>
|
||||
]]
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
name="solarPanels",
|
||||
title=S("Solar panels"),
|
||||
icon="industrialtest:solar_panel",
|
||||
content={
|
||||
[[
|
||||
<big>||Solar panels||</big>
|
||||
<left>
|
||||
||Solar panels are generators which allow for producting power from sun energy. There are few of them in this mod for different voltages. Those are:||
|
||||
</left>
|
||||
<mono>
|
||||
</mono>
|
||||
<left>
|
||||
<item name="industrialtest:solar_panel" height="{{ITEM_HEIGHT}}"> <b>||Solar Panel||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="outputVoltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.SolarPanel.capacity)
|
||||
},
|
||||
{
|
||||
name="Generation multiplier",
|
||||
value=tostring(industrialtest.SolarPanel.multiplier)
|
||||
}
|
||||
},S("Solar Panel")),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
<item name="industrialtest:lv_solar_array" height="{{ITEM_HEIGHT}}"> <b>||LV Solar Array||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="outputVoltage",
|
||||
value="LV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.LVSolarArray.capacity)
|
||||
},
|
||||
{
|
||||
name="Generation multiplier",
|
||||
value=tostring(industrialtest.LVSolarArray.multiplier)
|
||||
}
|
||||
},S("LV Solar Array"),2),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
<item name="industrialtest:mv_solar_array" height="{{ITEM_HEIGHT}}"> <b>||MV Solar Array||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="outputVoltage",
|
||||
value="MV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.MVSolarArray.capacity)
|
||||
},
|
||||
{
|
||||
name="Generation multiplier",
|
||||
value=tostring(industrialtest.MVSolarArray.multiplier)
|
||||
}
|
||||
},S("MV Solar Array"),3),
|
||||
[[
|
||||
<mono></mono>
|
||||
<left>
|
||||
<item name="industrialtest:hv_solar_array" height="{{ITEM_HEIGHT}}"> <b>||HV Solar Array||</b>
|
||||
</left>
|
||||
]],
|
||||
createMachineInformationTable({
|
||||
{
|
||||
name="outputVoltage",
|
||||
value="HV"
|
||||
},
|
||||
{
|
||||
name="powerCapacity",
|
||||
value=string.format("%d EU",industrialtest.HVSolarArray.capacity)
|
||||
},
|
||||
{
|
||||
name="Generation multiplier",
|
||||
value=tostring(industrialtest.HVSolarArray.multiplier)
|
||||
}
|
||||
},S("HV Solar Array"),4),
|
||||
[[
|
||||
<mono></mono>
|
||||
<img name="industrialtest_guide_solar_panel_full.png" width="{{IMAGE_WIDTH}}">
|
||||
<left>||Picture 1. Solar Panel generating in full sunlight.||</left>
|
||||
<mono>
|
||||
</mono>
|
||||
<img name="industrialtest_guide_solar_panel_none.png" width="{{IMAGE_WIDTH}}">
|
||||
<left>||Picture 2. Solar Panel not generating.||</left>
|
||||
]]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user