f085883e55
TA3 Terminal activated minor improvements
46 lines
1.2 KiB
Lua
46 lines
1.2 KiB
Lua
--[[
|
|
|
|
TechAge
|
|
=======
|
|
|
|
Copyright (C) 2019 Joachim Stolberg
|
|
|
|
GPL v3
|
|
See LICENSE.txt for more information
|
|
|
|
TA3 Furnace Help
|
|
|
|
]]--
|
|
|
|
local S = techage.S
|
|
|
|
local HelpText = S("Build the Furnace with TA3 Furnace Firebox, TA3 Furnace Top, "..
|
|
"and TA3 Booster according to the plan.@n"..
|
|
"- Heat the Firebox with coal/charcoal/oil@n"..
|
|
"- Power the Booster with electrical power.@n"..
|
|
"- Select one of the possible outputs@n"..
|
|
"- Connect the TA3 Furnace Top with your machines by means of tubes.@n"..
|
|
"- Start the Furnace")
|
|
|
|
local Cable = "techage_electric_cable_inv.png"
|
|
local Tube = "techage_tube_tube.png"
|
|
local Pusher = "techage_appl_pusher.png^techage_frame_ta3.png"
|
|
local Booster = "techage_filling_ta3.png^techage_appl_compressor.png^[transformFX^techage_frame_ta3.png"
|
|
local Firebox = "techage_concrete.png^techage_appl_firehole.png^techage_frame_ta3.png"
|
|
local Furnace = "techage_concrete.png^techage_appl_furnace.png^techage_frame_ta3.png"
|
|
|
|
local Images = {
|
|
{false, false, false, false, false, false, false},
|
|
{Tube, Pusher, Tube, Furnace, Tube, Pusher, Tube},
|
|
{false, Cable, Booster, Firebox, false, false, false},
|
|
}
|
|
|
|
techage.register_category_page("ta3f",
|
|
S("TA3 Industrial Furnace"),
|
|
HelpText,
|
|
nil,
|
|
{"firebox", "furnace", "booster"},
|
|
Images)
|
|
|
|
|