52 lines
2.0 KiB
Lua
52 lines
2.0 KiB
Lua
--[[
|
|
|
|
TechAge
|
|
=======
|
|
|
|
Copyright (C) 2019 Joachim Stolberg
|
|
|
|
GPL v3
|
|
See LICENSE.txt for more information
|
|
|
|
TA4 Energy Storage System Help
|
|
|
|
]]--
|
|
|
|
local S = techage.S
|
|
|
|
local CONCR = "basic_materials_concrete_block.png"
|
|
local PIPEH = "techage_gaspipe.png"
|
|
local PIPEV = "techage_gaspipe.png^[transformR90"
|
|
local PN000 = "techage_gaspipe_knee.png"
|
|
local PN090 = "techage_gaspipe_knee.png^[transformR90"
|
|
local PN180 = "techage_gaspipe_knee.png^[transformR180"
|
|
local PN270 = "techage_gaspipe_knee.png^[transformR270"
|
|
local HEXR1 = "techage_filling_ta4.png^techage_frameT_ta4.png^techage_appl_ribsT.png"
|
|
local HEXR2 = "techage_filling_ta4.png^techage_frameM_ta4.png^techage_appl_ribsB.png"
|
|
local HEXR3 = "techage_filling_ta4.png^techage_frameB_ta4.png^techage_appl_hole_electric.png"
|
|
local TURBN = "techage_filling_ta4.png^techage_appl_turbine.png^techage_frame_ta4.png"
|
|
local GENER = "techage_filling_ta4.png^techage_frame_ta4.png^techage_appl_generator.png^[transformFX]"
|
|
local GRAVL = "default_gravel.png"
|
|
local INLET = "basic_materials_concrete_block.png^techage_gaspipe.png^[transformR90"
|
|
local GLASS = "default_obsidian_glass.png"
|
|
|
|
local Images = {
|
|
{false, false, false, false, false, false, false, false, false, false, false},
|
|
{false, false, false, PN000, PIPEH, PIPEH, PN270, false, false, false, false},
|
|
{false, CONCR, CONCR, INLET, CONCR, CONCR, PIPEV, false, false, false, false},
|
|
{false, CONCR, GRAVL, GRAVL, GRAVL, CONCR, PN090, HEXR1, PIPEH, PN270, false},
|
|
{false, GLASS, GRAVL, GRAVL, GRAVL, CONCR, false, HEXR2, false, PIPEV, false},
|
|
{false, CONCR, GRAVL, GRAVL, GRAVL, CONCR, PN000, HEXR3, PIPEH, TURBN, GENER},
|
|
{false, CONCR, CONCR, INLET, CONCR, CONCR, PIPEV, false, false, false, false},
|
|
{false, false, false, PN090, PIPEH, PIPEH, PN180, false, false, false, false},
|
|
}
|
|
|
|
techage.register_category_page("ta4es",
|
|
S("TA4: Energy Storage System"),
|
|
S("Build a Energy Storage System to the plan with TA4 Heat Exchanger, TA4 Turbine and TA4 Generator.@n"..
|
|
"- ..."),
|
|
nil,
|
|
{},
|
|
Images)
|
|
|