english translation added
This commit is contained in:
parent
94eca6933e
commit
67338d82aa
@ -4,11 +4,6 @@
|
||||
|
||||
local S = techage.S
|
||||
|
||||
local aTitel = techage.manual_DE.aTitel
|
||||
local aText = techage.manual_DE.aText
|
||||
local aItemName = techage.manual_DE.aItemName -- item identifier as key
|
||||
local aPlanTable = techage.manual_DE.aPlanTable -- plan identifier as key
|
||||
|
||||
local tItems = techage.Items -- k/v table with item definitions
|
||||
local tPlans = techage.ConstructionPlans -- k/v table with plan definitions
|
||||
|
||||
@ -56,10 +51,14 @@ local function plan(images)
|
||||
return table.concat(tbl)
|
||||
end
|
||||
|
||||
local function formspec_help(meta)
|
||||
local function formspec_help(meta, manual)
|
||||
local bttn
|
||||
local idx = meta:get_int("index")
|
||||
local box = "box[9.5,0.9;1,1.1;#BBBBBB]"
|
||||
local aTitel = manual.aTitel
|
||||
local aText = manual.aText
|
||||
local aItemName = manual.aItemName -- item identifier as key
|
||||
local aPlanTable = manual.aPlanTable -- plan identifier as key
|
||||
|
||||
if aPlanTable[idx] ~= "" then
|
||||
bttn = "button[9.6,1;1,1;plan;"..S("Plan").."]"
|
||||
@ -88,17 +87,18 @@ local function formspec_help(meta)
|
||||
"table[0.1,0;9,5;page;"..table.concat(aTitel, ",")..";"..idx.."]"
|
||||
end
|
||||
|
||||
local function formspec_plan(meta)
|
||||
local function formspec_plan(meta, manual)
|
||||
local idx = meta:get_int("index")
|
||||
local images = tPlans[aPlanTable[idx]] or "none"
|
||||
local titel = string.sub(aTitel[idx], 3) or "unknown"
|
||||
local images = tPlans[manual.aPlanTable[idx]] or "none"
|
||||
local titel = string.sub(manual.aTitel[idx], 3) or "unknown"
|
||||
|
||||
return "size[11,10]"..
|
||||
default.gui_bg..
|
||||
default.gui_bg_img..
|
||||
default.gui_slots..
|
||||
"label[0,0;"..titel..":]"..
|
||||
"button[10,0;1,0.8;back;<<]"..
|
||||
plan(images)
|
||||
default.gui_bg..
|
||||
default.gui_bg_img..
|
||||
default.gui_slots..
|
||||
"label[0,0;"..titel..":]"..
|
||||
"button[10,0;1,0.8;back;<<]"..
|
||||
plan(images)
|
||||
end
|
||||
|
||||
local board_box = {
|
||||
@ -109,7 +109,7 @@ local board_box = {
|
||||
}
|
||||
|
||||
minetest.register_node("techage:construction_board", {
|
||||
description = S("TA Construction Board"),
|
||||
description = "TA Konstruktionsplan (DE)",
|
||||
inventory_image = 'techage_constr_plan_inv.png',
|
||||
tiles = {"techage_constr_plan.png"},
|
||||
drawtype = "nodebox",
|
||||
@ -119,7 +119,7 @@ minetest.register_node("techage:construction_board", {
|
||||
after_place_node = function(pos, placer, itemstack)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_int("index", 1)
|
||||
meta:set_string("formspec", formspec_help(meta))
|
||||
meta:set_string("formspec", formspec_help(meta, techage.manual_DE))
|
||||
end,
|
||||
|
||||
on_receive_fields = function(pos, formname, fields, player)
|
||||
@ -129,15 +129,15 @@ minetest.register_node("techage:construction_board", {
|
||||
end
|
||||
local meta = minetest.get_meta(pos)
|
||||
if fields.plan then
|
||||
meta:set_string("formspec", formspec_plan(meta))
|
||||
meta:set_string("formspec", formspec_plan(meta, techage.manual_DE))
|
||||
elseif fields.back then
|
||||
meta:set_string("formspec", formspec_help(meta))
|
||||
meta:set_string("formspec", formspec_help(meta, techage.manual_DE))
|
||||
elseif fields.page then
|
||||
local evt = minetest.explode_table_event(fields.page)
|
||||
if evt.type == "CHG" then
|
||||
local idx = tonumber(evt.row)
|
||||
meta:set_int("index", idx)
|
||||
meta:set_string("formspec", formspec_help(meta))
|
||||
meta:set_string("formspec", formspec_help(meta, techage.manual_DE))
|
||||
end
|
||||
end
|
||||
end,
|
||||
@ -159,4 +159,54 @@ minetest.register_craft({
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_node("techage:construction_board_EN", {
|
||||
description = "TA Construction Board (EN)",
|
||||
inventory_image = 'techage_constr_plan_inv.png',
|
||||
tiles = {"techage_constr_plan.png"},
|
||||
drawtype = "nodebox",
|
||||
node_box = board_box,
|
||||
selection_box = board_box,
|
||||
|
||||
after_place_node = function(pos, placer, itemstack)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_int("index", 1)
|
||||
meta:set_string("formspec", formspec_help(meta, techage.manual_EN))
|
||||
end,
|
||||
|
||||
on_receive_fields = function(pos, formname, fields, player)
|
||||
local player_name = player:get_player_name()
|
||||
if minetest.is_protected(pos, player_name) then
|
||||
return
|
||||
end
|
||||
local meta = minetest.get_meta(pos)
|
||||
if fields.plan then
|
||||
meta:set_string("formspec", formspec_plan(meta, techage.manual_EN))
|
||||
elseif fields.back then
|
||||
meta:set_string("formspec", formspec_help(meta, techage.manual_EN))
|
||||
elseif fields.page then
|
||||
local evt = minetest.explode_table_event(fields.page)
|
||||
if evt.type == "CHG" then
|
||||
local idx = tonumber(evt.row)
|
||||
meta:set_int("index", idx)
|
||||
meta:set_string("formspec", formspec_help(meta, techage.manual_EN))
|
||||
end
|
||||
end
|
||||
end,
|
||||
|
||||
paramtype2 = "wallmounted",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
is_ground_content = false,
|
||||
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "techage:construction_board_EN",
|
||||
recipe = {
|
||||
{"default:stick", "default:paper", "default:stick"},
|
||||
{"default:paper", "default:paper", "default:paper"},
|
||||
{"default:paper", "default:paper", "default:paper"},
|
||||
},
|
||||
})
|
||||
|
||||
|
@ -222,7 +222,7 @@ techage.manual_DE.aText = {
|
||||
"\n"..
|
||||
"\n"..
|
||||
"\n",
|
||||
"Usmium kommt nur als Nuggets vor und kann nur beim Waschen von Kies mit der TA2 Kieswaschanlage gewonnen werden.\n"..
|
||||
"Usmium kommt nur als Nuggets vor und kann nur beim Waschen von Kies mit der TA2/TA3 Kieswaschanlage gewonnen werden.\n"..
|
||||
"\n"..
|
||||
"\n"..
|
||||
"\n",
|
||||
@ -384,7 +384,7 @@ techage.manual_DE.aText = {
|
||||
"\n"..
|
||||
"\n",
|
||||
"Ein Schieber ist in der Lage\\, Items aus Kisten oder Maschinen zu ziehen und in andere Kisten oder Maschinen zu schieben. Oder anders gesagt: Zwischen zwei Blöcken mit Inventar muss ein und genau ein Schieber sein. Mehrere Schieber in Reihe sind nicht möglich.\n"..
|
||||
"In die Gegenrichtung ist ein Schieber für Items aber durchlässig\\, so dass eine Kiste über eine Röhre gefüllt und ebenso gelehrt werden kann. \n"..
|
||||
"In die Gegenrichtung ist ein Schieber für Items aber durchlässig\\, so dass eine Kiste über eine Röhre gefüllt und ebenso geleert werden kann. \n"..
|
||||
"\n"..
|
||||
"Ein Schieber geht in den Zustand \"standby\"\\, wenn der keine Items zum Schieben hat. Ist der Ausgang blockiert oder das Inventory des Empfängers voll\\, so geht der Schieber in den Zustand \"blocked\". Aus beiden Zuständen kommt der Schieber nach einigen Sekunden selbsttätig wieder raus\\, sofern sich die Situation geändert hat.\n"..
|
||||
"\n"..
|
||||
@ -404,7 +404,7 @@ techage.manual_DE.aText = {
|
||||
"\n"..
|
||||
"Im ersten Fall werden immer alle Items weitergeleitet und der Verteiler läuft nicht voll. Im zweiten Fall werden Items zurückgehalten und der Verteiler kann voll laufen und in der Folge blockieren.\n"..
|
||||
"\n"..
|
||||
"Einstellbar ist die Betriebsart über die \">>|\" Checkbox (an => Betriebsart 2)\n"..
|
||||
"Einstellbar ist die Betriebsart über die \"blockiere\" Checkbox.\n"..
|
||||
"\n"..
|
||||
"Der Verarbeitungsleistung eines TA2 Verteilers beträgt 4 Items alle 2 s\\, wobei der Verteiler dabei versucht\\, die 4 Items auf die offenen Ausgänge zu verteilen.\n"..
|
||||
"\n"..
|
||||
@ -418,11 +418,11 @@ techage.manual_DE.aText = {
|
||||
" - daneben den Kiesspüler\\, ggf. mit Röhrenanschlüssen für den Kies An- und Abtransport\n"..
|
||||
" - dann den Trichter mit Kiste\n"..
|
||||
"\n"..
|
||||
"Das Ganze umgeben von weiteren Glasblöcken\\, so dass das Wasser über den Kiesspüler und den Trichter fließt und ausgespielten Nuggets vom Trichter wieder eingesammelt werden können.\n"..
|
||||
"Das Ganze umgeben von weiteren Glasblöcken\\, so dass das Wasser über den Kiesspüler und den Trichter fließt und ausgespülten Nuggets vom Trichter wieder eingesammelt werden können.\n"..
|
||||
"\n"..
|
||||
"\n"..
|
||||
"\n",
|
||||
"Der Kiesspüler ist in der Lade\\, aus bereits gesiebtem Kies die Erze Usmium und Kupfer auszuspülen\\, sofern dieser von Wasser überspült wird.\n"..
|
||||
"Der Kiesspüler ist in der Lage\\, aus bereits gesiebtem Kies die Erze Usmium und Kupfer auszuspülen\\, sofern dieser von Wasser überspült wird.\n"..
|
||||
"\n"..
|
||||
"Ob der Kiesspüler korrekt arbeitet\\, kann mit Hilfe von Stöcken (sticks) getestet werden\\, wenn diese in das Inventar des Kiesspülers getan werden. Diese müssen einzeln ausgespült und vom Trichter eingefangen werden.\n"..
|
||||
"\n"..
|
||||
@ -1042,7 +1042,7 @@ techage.manual_DE.aText = {
|
||||
"\n"..
|
||||
"Es empfiehlt sich daher\\, nach heißen Steppen und Wüsten für die Solaranlage Ausschau zu halten.\n"..
|
||||
"Für den Stromtransport stehen die Überlandleitungen zur Verfügung.\n"..
|
||||
"Es kann aber auch Wasserstoff produziert werden\\, welcher sich transportieren und am Ziel wieder zu Strom umwandeln lässt (geplant).\n"..
|
||||
"Es kann aber auch Wasserstoff produziert werden\\, welcher sich transportieren und am Ziel wieder zu Strom umwandeln lässt.\n"..
|
||||
"\n"..
|
||||
"Die kleinste Einheit bei einer Solaranlage sind zwei Solarmodule und ein Trägermodul. Das Trägermodul muss zuerst gesetzt werden\\, die zwei Solarmodule dann links und rechts daneben (nicht darüber!).\n"..
|
||||
"\n"..
|
||||
@ -1092,7 +1092,7 @@ techage.manual_DE.aText = {
|
||||
" - Hülle mit 7x7x7 Concrete Blocks\\, gefüllt mit 125 Gravel\\, Speicherkapazität: 2\\,5 Tage bei 60 ku\n"..
|
||||
" - Hülle mit 9x9x9 Concrete Blocks\\, gefüllt mit 343 Gravel\\, Speicherkapazität: 6\\,5 Tage bei 60 ku\n"..
|
||||
"\n"..
|
||||
"In der Betonhülle darf ein Fenster aus einem Obsidian Glas Block sein. Dieses muss ziemlich in der Mitte der Wand platziert werden. Durch dieses Fenster sieht man\\, ob der Speicher zu mehr aus 80 % geladen ist. Im Plan rechts sieht man den Aufbau aus TA4 Wärmetauscher bestehend aus 3 Blöcken\\, der TA4 Turbine und dem TA4 Generator. Beim Wärmetauscher ist auf die Ausrichtung achten (der Pfeil bei Block 1 muss zur Turbine zeigen).\n"..
|
||||
"In der Betonhülle darf ein Fenster aus einem Obsidian Glas Block sein. Dieses muss ziemlich in der Mitte der Wand platziert werden. Durch dieses Fenster sieht man\\, ob der Speicher mehr als 80 % geladen ist. Im Plan rechts sieht man den Aufbau aus TA4 Wärmetauscher bestehend aus 3 Blöcken\\, der TA4 Turbine und dem TA4 Generator. Beim Wärmetauscher ist auf die Ausrichtung achten (der Pfeil bei Block 1 muss zur Turbine zeigen).\n"..
|
||||
"\n"..
|
||||
"Entgegen dem Plan rechts müssen die Anschlüsse am Speicherblock auf gleicher Ebene sein (horizontal angeordnet\\, also nicht unten und oben). Die Rohrzuläufe (TA4 Pipe Inlet) müssen genau in der Mitte der Wand sein und stehen sich damit gegenüber. Als Röhren kommen die gelbel TA4 Röhren zum Einsatz. Die TA3 Dampfrohre können hier nicht verwendet werden.\n"..
|
||||
"Sowohl der Generator als auch der Wärmetauscher haben einen Stromanschluss und müssen mit dem Stromnetz verbunden werden.\n"..
|
||||
@ -1353,8 +1353,8 @@ techage.manual_DE.aText = {
|
||||
"\n"..
|
||||
"Der TA4 Schieber besitzt zwei zusätzliche Kommandos für den Lua Controller:\n"..
|
||||
"\n"..
|
||||
" - 'config' dient zur Konfiguration des Schiebers\\, analog zum manuellen Konfiguration über das Menü.\nBeispiel: '$send_cmnd(PUSHER\\, \"config\"\\, \"default:dirt\")'\n"..
|
||||
" - 'pull' dient zum Absetzen eines Auftrags an den Schieber:\nBeispiel: '$send_cmnd(PUSHER\\, \"pull\"\\, \"default:dirt 8\")'\nAls Nummer sind Werte von 1 bis 12 zulässig. Danach geht der Schieber wieder in den 'stopped' Mode und sendet ein \"off\" Kommando zurück an den Sender des \"pull\" Kommandos.\n"..
|
||||
" - 'config' dient zur Konfiguration des Schiebers\\, analog zum manuellen Konfiguration über das Menü.\nBeispiel: '$send_cmnd(1234\\, \"config\"\\, \"default:dirt\")'\n"..
|
||||
" - 'pull' dient zum Absetzen eines Auftrags an den Schieber:\nBeispiel: '$send_cmnd(1234\\, \"pull\"\\, \"default:dirt 8\")'\nAls Nummer sind Werte von 1 bis 12 zulässig. Danach geht der Schieber wieder in den 'stopped' Mode und sendet ein \"off\" Kommando zurück an den Sender des \"pull\" Kommandos.\n"..
|
||||
"\n"..
|
||||
"\n"..
|
||||
"\n",
|
||||
|
1776
doc/manual_EN.lua
Normal file
1776
doc/manual_EN.lua
Normal file
File diff suppressed because it is too large
Load Diff
2
init.lua
2
init.lua
@ -72,7 +72,7 @@ dofile(MP.."/basis/formspec_update.lua")
|
||||
|
||||
-- Main doc
|
||||
dofile(MP.."/doc/manual_DE.lua")
|
||||
--dofile(MP.."/doc/manual_EN.lua")
|
||||
dofile(MP.."/doc/manual_EN.lua")
|
||||
dofile(MP.."/doc/plans.lua")
|
||||
dofile(MP.."/doc/items.lua")
|
||||
dofile(MP.."/doc/guide.lua") -- construction guides
|
||||
|
@ -55,7 +55,7 @@ Meridium ist eine Legierung aus Stahl und Mesekristallen. Meridium Ingots könne
|
||||
|
||||
### Usmium
|
||||
|
||||
Usmium kommt nur als Nuggets vor und kann nur beim Waschen von Kies mit der TA2 Kieswaschanlage gewonnen werden.
|
||||
Usmium kommt nur als Nuggets vor und kann nur beim Waschen von Kies mit der TA2/TA3 Kieswaschanlage gewonnen werden.
|
||||
|
||||
[usmium|image]
|
||||
|
||||
|
96
manuals/manual_EN.md
Normal file
96
manuals/manual_EN.md
Normal file
@ -0,0 +1,96 @@
|
||||
# Tech Age Mod
|
||||
|
||||
Tech Age is a technology mod with 4 development stages:
|
||||
|
||||
TA1: Iron Age
|
||||
Use tools and aids such as coal burners, coal burners, gravel sieves, hammers and hoppers to mine and process the necessary ores and metals.
|
||||
|
||||
TA2: Steam Age
|
||||
Build a steam engine with drive axles and use it to operate your first ore processing machines.
|
||||
|
||||
TA3: Oil Age
|
||||
Find and extract oil, built railways for oil transportation. A power plant provides the necessary electricity for your machines. Electric light illuminates your industrial plants.
|
||||
|
||||
TA4: Future Age
|
||||
Renewable energy sources such as wind, sun and biofuels help you to leave the oil age. With modern technologies and intelligent machines you set out into the future.
|
||||
|
||||
[wlanchip|image]
|
||||
|
||||
|
||||
|
||||
## Hints
|
||||
|
||||
This documentation is available both "ingame" (block construction plan) and on GitHub as MD files.
|
||||
|
||||
- Link: https://github.com/joe7575/techage/wiki
|
||||
|
||||
The construction plans (diagrams) for the construction of the machines and the pictures are only available in-game.
|
||||
|
||||
With Tech Age you have to start over. You can only create TA2 blocks with the items from TA1, for TA3 you need the results from TA2, etc.
|
||||
|
||||
In TA2, the machines only run with drive axes.
|
||||
|
||||
From TA3, the machines run on electricity and have a communication interface for remote control.
|
||||
|
||||
TA4 adds more power sources, but also higher logistical challenges (power lines, item transport).
|
||||
|
||||
|
||||
## Ores and Minerals
|
||||
|
||||
Techage adds some new items to the game:
|
||||
|
||||
- Meridium - an alloy for the production of luminous tools in TA1
|
||||
- Usmium - an ore that is mined in TA2 and needed for TA3
|
||||
- Baborium - a metal that is needed for recipes in TA3
|
||||
- Petroleum - is needed in TA3
|
||||
- Bauxite - an aluminum ore that is needed in TA4 to produce aluminum
|
||||
|
||||
|
||||
### Meridium
|
||||
|
||||
Meridium is an alloy of steel and mesecons crystals. Meridium ingots can be made with the coal burner from steel andesecons crystals. Meridium glows in the dark. Tools made of Meridium also light up and are therefore very helpful in underground mining.
|
||||
|
||||
[meridium|image]
|
||||
|
||||
|
||||
### Usmium
|
||||
|
||||
Usmium only occurs as nuggets and can only be obtained by washing gravel with the TA2/TA3 gravel washing system.
|
||||
|
||||
[usmium|image]
|
||||
|
||||
|
||||
### Baborium
|
||||
|
||||
Baborium is only extracted in underground mining. Baborium can only be found in stone at an altitude between -250 and -340 meters.
|
||||
|
||||
[baborium|image]
|
||||
|
||||
|
||||
### Petroleum
|
||||
|
||||
Petroleum can only be found with the help of the Explorer and extracted with the help of appropriate TA3 machines. See TA3.
|
||||
|
||||
[oil|image]
|
||||
|
||||
|
||||
### Bauxite
|
||||
|
||||
Bauxite is only extracted in underground mining. Bauxite is only found in stone at a height between -50 and -500 meters.
|
||||
It is required for the production of aluminum, which is mainly used in TA4.
|
||||
|
||||
[bauxite|image]
|
||||
|
||||
|
||||
|
||||
|
||||
## History
|
||||
|
||||
- 28.09.2019: Solar system added
|
||||
- 05.10.2019: Data on the solar system and description of the inverter and the power terminal changed
|
||||
- 18.11.2019: Chapter for ores, reactor, aluminum, silo, bauxite, furnace heating, gravel washing system added
|
||||
- 22.02.2020: corrections and chapters on the update
|
||||
- 29.02.2020: ICTA controller added and further corrections
|
||||
- 14.03.2020 Lua controller added and further corrections
|
||||
- 22.03.2020 More TA4 blocks added
|
||||
|
@ -1,698 +1,103 @@
|
||||
# Tech Age
|
||||
|
||||
techage.register_category_page("techage", "Tech Age",
|
||||
S("Tech Age is a technic mod with four technic stages.@n@n"..
|
||||
"Iron Age (TA1): Use tools like coal pile, coal burner, gravel sieve, hammer and hopper to obtain the necessary metals and ores to further machines and tools for TA2@n@n"..
|
||||
"Steam Age (TA2): Build a steam engine with drive axles to run first simple machines.@n@n"..
|
||||
"Oil Age (TA3): Drill and pump oil, build your transport routes with Minecarts and power and control TA3 machines and lamps with electrical energy.@n@n"..
|
||||
"Future Age (TA4): Build regenerative power plants and intelligent machines, travel at high speed and use other future technologies."),
|
||||
"techage:ta4_wlanchip",
|
||||
{}
|
||||
)
|
||||
|
||||
|
||||
|
||||
# TA1: Iron Age
|
||||
|
||||
local PileHelp = S("Coal Pile to produce charcoal:@n"..
|
||||
"- build a 5x5 block dirt base@n"..
|
||||
"- place a lighter in the centre@n"..
|
||||
"- build a 3x3x3 wood cube around@n"..
|
||||
"- cover all with dirt to a 5x5x5 cube@n"..
|
||||
"- keep a hole to the lighter@n"..
|
||||
"- ignite the lighter and immediately@n"..
|
||||
"- close the pile with one wood and one dirt@n"..
|
||||
"- open the pile after the smoke disappeared@n"..
|
||||
"(see plan)")
|
||||
|
||||
techage.register_entry_page("ta1", "coalpile", "Coal Pile", PileHelp, nil, PileImages)
|
||||
|
||||
local BurnerHelp = S("Coal Burner to heat the melting pot:@n"..
|
||||
"- build cobble tower with a 3x3 footprint@n"..
|
||||
"- more height means more flame heat@n"..
|
||||
"- keep a hole open on one side@n"..
|
||||
"- put a lighter in@n"..
|
||||
"- fill the tower from the top with charcoal@n"..
|
||||
"- ignite the lighter@n"..
|
||||
"- place the pot in the flame, (one block above the tower)@n"..
|
||||
"- to pause the burner, close the hole temporarily with e.g. dirt@n"..
|
||||
"(see plan)")
|
||||
|
||||
techage.register_entry_page("ta1", "sieve",
|
||||
S("TA1 Gravel Sieve"),
|
||||
S("To sieve Gravel and Basalt Gravel to get ores. Punch the sieve with wielded gravel to start sieving. "..
|
||||
"Sieving can be automated by means of the TA1 Hopper. Gravel can be found in caves or "..
|
||||
"generated by means of a TA1 Hammer."),
|
||||
"techage:sieve3")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
techage.register_entry_page("ta1", "hammer",
|
||||
"TA1 xxx Hammer", [[Hammer to smash stone to gravel.
|
||||
Available as Bronze, Steel, Mese, and Diamond Hammer.]], "techage:hammer_bronze")
|
||||
|
||||
|
||||
|
||||
techage.register_entry_page("ta1", "hopper",
|
||||
S("TA1 Hopper"),
|
||||
S("The Hopper collects dropped items and pushes them to the right side.@n"..
|
||||
"Items are sucked up when they are dropped on top of the Hopper block.@n"..
|
||||
"But the Hopper can also pull items out of chests or furnace blocks, if it is placed below."),
|
||||
"techage:hopper_ta1")
|
||||
|
||||
|
||||
|
||||
techage.register_entry_page("ta1", "lighter",
|
||||
S("TA1 Lighter"),
|
||||
S("lighter to ignite the Coal Burner and the Coal Pile."), "techage:lighter")
|
||||
|
||||
techage.register_entry_page("ta1", "meltingpot",
|
||||
S("TA1 Melting Pot"),
|
||||
S("To melt ores and/or produce alloys. Place the pot on top of the Coal Burner."),
|
||||
"techage:meltingpot")
|
||||
|
||||
techage.register_entry_page("ta1", "meridium",
|
||||
S("Meridium Ingot"),
|
||||
S("A brilliant alloy for tools, which are used in the dark. Can be made with Coal Burner and TA3 Industrial Furnace."),
|
||||
"techage:meridium_ingot")
|
||||
|
||||
techage.register_entry_page("ta1", "iron",
|
||||
S("TA1 Iron Ingot"),
|
||||
S("Steel replacement for TA1. Needed for many tools. Can be made with the Coal Burner from iron lumps."),
|
||||
"techage:iron_ingot")
|
||||
|
||||
techage.register_entry_page("ta2", "autocrafter",
|
||||
S("TA2 Autocrafter"),
|
||||
S("The Autocrafter allows the automated crafting of items based on configured recipes.@n"..
|
||||
"It can craft one item every two seconds.@n"..
|
||||
"Needs axle power: 4"),
|
||||
"techage:ta2_autocrafter_pas")
|
||||
|
||||
techage.register_entry_page("ta3m", "autocrafter",
|
||||
S("TA3 Autocrafter"),
|
||||
S("The Autocrafter allows the automated crafting of items based on configured recipes.@n"..
|
||||
"It can craft two items every two seconds.@n"..
|
||||
"Needs electrical power: 6"),
|
||||
"techage:ta3_autocrafter_pas")
|
||||
|
||||
techage.register_entry_page("ta", "blackhole",
|
||||
S("Techage Black Hole"),
|
||||
S("The Techage Black Hole Block let items disappear. If your machine produces to much or unneeded items, push them into the Black Hole."),
|
||||
"techage:blackhole")
|
||||
|
||||
local help = S("The Protected Chest is useful in protected areas (by means of any protection mod).@n"..
|
||||
"Only players with interaction rights on that position can take/put item from/to the chest.@n"..
|
||||
"The Chest supports commands to read the last player action (player-name, take/put, item-name) "..
|
||||
"and the chest state ('empty', 'loaded', 'full').@n"..
|
||||
"The chest returns 'loaded' when it is not empty and not full, "..
|
||||
"'full' is returned, when no empty stack is available.@n")
|
||||
|
||||
techage.register_entry_page("ta2", "chest",
|
||||
S("TA2 Protected Chest"),
|
||||
S("The Protected Chest is useful in protected areas (by means of any protection mod).@n"..
|
||||
"Only players with interaction rights on that position can take/put item from/to the chest."),
|
||||
"techage:chest_ta2")
|
||||
|
||||
techage.register_entry_page("ta3m", "chest",
|
||||
S("TA3 Protected Chest"), help, "techage:chest_ta3")
|
||||
|
||||
local help = S("The Distributor works as filter and pusher. It allows to divide and distribute incoming items into the 4 output ports. "..
|
||||
"The channels can be switched on/off and individually configured with up to 6 item types. "..
|
||||
"The filter passes the configured items and restrains all others. "..
|
||||
"Unconfigured but activated filters are used for items, which do not fit to all other filters. "..
|
||||
"If the Distributor can’t push an item into a block with an inventory (such as a chest) because that inventory is full, "..
|
||||
"but there is one open and unconfigured output, it will use this output port.")
|
||||
|
||||
techage.register_entry_page("ta2", "distributor",
|
||||
S("TA2 Distributor"),
|
||||
help..S("@nThe Distributor tries to push 4 items every 2 seconds."),
|
||||
"techage:ta2_distributor_pas")
|
||||
|
||||
techage.register_entry_page("ta3m", "distributor",
|
||||
S("TA3 Distributor"),
|
||||
help..S("@nThe Distributor tries to push 12 items every 2 seconds."),
|
||||
"techage:ta3_distributor_pas")
|
||||
|
||||
techage.register_entry_page("ta2", "electronic_fab",
|
||||
S("TA2 Electronic Fab"),
|
||||
S("Used to produce Vacuum Pipes, needed for TA3 machines.@n"..
|
||||
"The fab produces 1 item every 6 seconds.@n"..
|
||||
"It needs 8 units axle power"),
|
||||
"techage:ta2_electronic_fab_pas")
|
||||
|
||||
|
||||
|
||||
techage.register_entry_page("ta3m", "electronic_fab",
|
||||
S("TA3 Electronic Fab"),
|
||||
S("Used to produce WLAN Chips, needed for TA4 machines.@n"..
|
||||
"The fab produces 1 item every 6 seconds.@n"..
|
||||
"It needs 12 units electrical power."),
|
||||
"techage:ta3_electronic_fab_pas")
|
||||
|
||||
techage.register_entry_page("ta", "forceload",
|
||||
S("Techage Forceload Block"),
|
||||
S("The Forceload Block keeps the corresponding area loaded and the machines operational "..
|
||||
"as far as the player is logged in. If the player leaves the game, all areas will be unloaded.@n"..
|
||||
"The maximum number of Forceload Blocks per player is configurable (default 20).@n"..
|
||||
"The loaded area per block is a cube with 16 m side length (according to a Minetest area block). "..
|
||||
"Punching the block makes the area visible and invisible again."),
|
||||
"techage:forceload")
|
||||
|
||||
techage.register_entry_page("ta3m", "funnel",
|
||||
S("TA3 Funnel"),
|
||||
S("The Funnel collects dropped items and stores them in its inventory.@n"..
|
||||
"Items are sucked up when they are dropped on top of the funnel block.@n"..
|
||||
"The scan radius is 1 m."),
|
||||
"techage:ta3_funnel")
|
||||
|
||||
local Tube = "techage_tube_knee.png"
|
||||
local Tube2 = "techage_tube_knee.png^[transformR270"
|
||||
local Rinser = "techage_filling_ta2.png^techage_appl_rinser.png^techage_frame_ta2.png"
|
||||
local Hopper = "techage_hopper.png"
|
||||
local Glass = "default_glass.png"
|
||||
local Water = "default_water.png"
|
||||
local Chest = "default_chest_lock.png"
|
||||
local Dirt = "default_dirt.png"
|
||||
|
||||
local Images = {
|
||||
{false, false, false, false, false, false, false, false},
|
||||
{false, Glass, false, false, false, false, Water, Glass},
|
||||
{false, Chest, Hopper, Tube, Rinser, Tube2, Glass, Glass},
|
||||
}
|
||||
|
||||
techage.register_entry_page("ta2", "rinser",
|
||||
S("TA2 Gravel Rinser"),
|
||||
S("Used to wash Sieved Gravel to get Usmium Nuggets. The block has to be placed under flowing water. "..
|
||||
"The washed-out nuggets must be sucked in with a Hopper.@nFor the plant you need a chest, "..
|
||||
"the Hopper, the Rinser with tube support and a frame around the flowing water (see plan).@n"..
|
||||
"Hint: You can test the Rinser with some sticks that are washed out immediately.@n"..
|
||||
"It needs 3 units axle power"),
|
||||
nil, Images)
|
||||
|
||||
|
||||
techage.register_entry_page("ta2", "gravelsieve",
|
||||
S("TA2 Gravel Sieve"),
|
||||
S("To sieve Gravel and Basalt Gravel to get ores. Use a Grinder to make Gravel from Cobblestone.@n"..
|
||||
"It can sieve one item every four seconds.@n"..
|
||||
"It needs 3 units axle power."),
|
||||
"techage:ta2_gravelsieve_pas")
|
||||
|
||||
techage.register_entry_page("ta3m", "gravelsieve",
|
||||
S("TA3 Gravel Sieve"),
|
||||
S("To sieve Gravel and Basalt Gravel to get ores. Use a Grinder to make Gravel from Cobblestone.@n"..
|
||||
"It can sieve two items every four seconds.@n"..
|
||||
"It needs 4 units electrical power."),
|
||||
"techage:ta3_gravelsieve_pas")
|
||||
|
||||
techage.register_entry_page("ta2", "grinder",
|
||||
S("TA2 Grinder"),
|
||||
S("The Grinder grinds all kinds of cobblestone to gravel, gravel to sand, sand to clay, wood to leaves, and more.@n"..
|
||||
"It can grind one item every four seconds.@n"..
|
||||
"It needs 4 units axle power."),
|
||||
"techage:ta2_grinder_pas")
|
||||
|
||||
techage.register_entry_page("ta3m", "grinder",
|
||||
S("TA3 Grinder"),
|
||||
S("The Grinder grinds all kinds of cobblestone to gravel, gravel to sand, sand to clay, wood to leaves, and more.@n"..
|
||||
"It can grind two items every four seconds.@n"..
|
||||
"It needs 6 units electrical power."),
|
||||
"techage:ta3_grinder_pas")
|
||||
|
||||
techage.register_entry_page("ta2", "liquidsampler",
|
||||
S("TA2 Liquid Sampler"),
|
||||
S("The Liquid Sampler is used to collect water or other bucket registered liquids.@n"..
|
||||
"The Liquid Sampler has to be placed into water/liquids and need empty buckets@n"..
|
||||
"to operate. The Liquid Sampler takes 1 bucket water every 8 seconds.@n"..
|
||||
"It needs 3 units axle power, supplied from the top."),
|
||||
"techage:ta2_liquidsampler_pas")
|
||||
|
||||
techage.register_entry_page("ta3m", "liquidsampler",
|
||||
S("TA3 Liquid Sampler"),
|
||||
S("The Liquid Sampler is used to collect water or other bucket registered liquids.@n"..
|
||||
"The Liquid Sampler has to be placed into water/liquids and need empty buckets@n"..
|
||||
"to operate. The Liquid Sampler takes 2 buckets water every 8 seconds.@n"..
|
||||
"It needs 5 units electrical power, supplied from the top."),
|
||||
"techage:ta3_liquidsampler_pas")
|
||||
|
||||
techage.register_entry_page("ta2", "pusher",
|
||||
S("TA2 Pusher"),
|
||||
S("The Pusher is a pulling/pushing block, moving items from one inventory block to another (e.g. chests). "..
|
||||
"Start the Pusher with a right-click. It shows the state 'running' as infotext. "..
|
||||
"The Pusher moves items from left to right (IN to OUT).@n"..
|
||||
"If the source chest is empty, the Pusher goes into 'standby' state for some seconds. If the destination "..
|
||||
"chest is full, the Pusher goes into 'blocked' state.@n"..
|
||||
"The TA2 Pusher moves two items every 2 seconds."),
|
||||
"techage:ta2_pusher_pas")
|
||||
|
||||
techage.register_entry_page("ta3m", "pusher",
|
||||
S("TA3 Pusher"),
|
||||
S("The Pusher is a pulling/pushing block, moving items from one inventory block to another (e.g. chests). "..
|
||||
"Start the Pusher with a right-click. It shows the state 'running' as infotext. "..
|
||||
"The Pusher moves items from left to right (IN to OUT).@n"..
|
||||
"If the source chest is empty, the Pusher goes into 'standby' state for some seconds. If the destination "..
|
||||
"chest is full, the Pusher goes into 'blocked' state.@n"..
|
||||
"The TA3 Pusher moves 6 items every 2 seconds."),
|
||||
"techage:ta3_pusher_pas")
|
||||
|
||||
techage.register_entry_page("ta3ps", "akku",
|
||||
S("TA3 Akku Box"),
|
||||
S("Used to store electrical energy. Charged in about 10 min, provides energy for 10 min.@n"..
|
||||
"It take and deliver up to 10 units electrical power."),
|
||||
"techage:ta3_akku")
|
||||
|
||||
techage.register_entry_page("ta3ps", "coalboiler_base",
|
||||
S("TA3 Boiler Base"),
|
||||
S("Part of the Power Station. Has to be placed on top of the TA3 Power Station Firebox and filled with water.@n"..
|
||||
"(see TA3 Power Station)"),
|
||||
"techage:coalboiler_base")
|
||||
|
||||
techage.register_entry_page("ta3ps", "coalboiler_top",
|
||||
S("TA3 Boiler Top"),
|
||||
S("Part of the Power Station. Has to be placed on top of TA3 Power Station Boiler Base.@n"..
|
||||
"(see TA3 Power Station)"),
|
||||
"techage:coalboiler_top")
|
||||
|
||||
techage.register_entry_page("ta3ps", "cooler",
|
||||
S("TA3 Cooler"),
|
||||
S("Part of the Power Station. Has to be placed in the steam circulation after the Turbine.@n"..
|
||||
"(see TA3 Power Station)"),
|
||||
"techage:cooler")
|
||||
|
||||
techage.register_entry_page("ta3ps", "generator",
|
||||
S("TA3 Generator"),
|
||||
S("Part of the Power Station. Has to be placed side by side with the TA3 Turbine. "..
|
||||
"Connect the Generator with your TA3 machines by means of Electric Cables and Junction Boxes@n"..
|
||||
"(see TA3 Power Station)"),
|
||||
"techage:generator")
|
||||
|
||||
techage.register_entry_page("ta3ps", "ta3_power_terminal",
|
||||
S("TA3 Power Terminal"),
|
||||
S("Terminal for power network information. Has to be placed in front of an Electric Junction Box."),
|
||||
"techage:ta3_power_terminal")
|
||||
|
||||
techage.register_entry_page("ta3ps", "turbine",
|
||||
S("TA3 Turbine"),
|
||||
S("Part of the Power Station. Has to be placed side by side with the TA3 Generator.@n"..
|
||||
"(see TA3 Power Station)"),
|
||||
"techage:turbine")
|
||||
|
||||
|
||||
local S = techage.S
|
||||
|
||||
techage.register_category_page("ta3",
|
||||
S("Oil Age (TA3)"),
|
||||
S("The Oil Age is the third level of the available technic stages. "..
|
||||
"The goal of TA3 is to build Power Stations, drill for oil, and build "..
|
||||
"machines to produce ores and chips for smart TA4 devices and machines."),
|
||||
"techage:oil_source",
|
||||
{"power", "times"}
|
||||
)
|
||||
|
||||
techage.register_entry_page("ta3", "power",
|
||||
S("Power Consumption"),
|
||||
S("Power consumption and supply:@n"..
|
||||
"- TA3 Power Station: 80 ku@n"..
|
||||
"- TA3 Tiny Generator: 12 ku@n"..
|
||||
"- TA3 Akku Box: 10 ku (in both dirs)@n"..
|
||||
"- TA3 Oil Drill Box: 16 ku@n"..
|
||||
"- TA3 Oil Pumpjack: 16 ku@n"..
|
||||
"- TA3 Electronic Fab: 12 ku@n"..
|
||||
"- TA3 Autocrafter: 6 ku@n"..
|
||||
"- TA3 Grinder: 6 ku@n"..
|
||||
"- TA3 Gravel Sieve: 4 ku@n"..
|
||||
"- TA3 Booster: 3 ku@n"..
|
||||
"- Lamps: 0.5 ku@n"..
|
||||
"- TA4 Streetlamp Solar Cell: 1 ku@n"..
|
||||
"@n"..
|
||||
"- Signs Bot: 8 ku (while loading)"),
|
||||
"techage:t3_source", nil)
|
||||
|
||||
techage.register_entry_page("ta3", "times",
|
||||
S("Oil Burning Times"),
|
||||
S("Burning times with one oil item for@n"..
|
||||
"Stream Engine / Power Station / Tiny Generator:@n"..
|
||||
"@n"..
|
||||
"Power max./ku : 25 / 80 / 12@n"..
|
||||
"Oil burn time/s : 32 / 20 / 100 @n"..
|
||||
"@n"..
|
||||
"burn time at power 2 : 400 / 800 / 600@n"..
|
||||
"burn time at power 10 : 80 / 160 / 120@n"..
|
||||
"burn time at power 20 : 40 / 80 / --"),
|
||||
"techage:t3_source", nil)
|
||||
|
||||
|
||||
--techage.register_entry_page("ta3", "power_station",
|
||||
techage.register_category_page("ta3ps",
|
||||
S("TA3: Power Station"),
|
||||
S("Build a Power Station according to the plan with TA3 Firebox, TA3 Boiler, Steam Pipes, Cooler, Turbine and Generator.@n"..
|
||||
"- Heat the Firebox with coal/charcoal or oil@n"..
|
||||
"- Fill the boiler with water (more than one bucket is needed)@n"..
|
||||
"- Wait until the water is heated@n"..
|
||||
"- Open the steam ventil@n"..
|
||||
"- Connect the Generator with your machines by means of cables and junction boxes@n"..
|
||||
"- Start the Generator"),
|
||||
nil,
|
||||
{"coalboiler_base", "coalboiler_top", "turbine", "generator", "cooler", "akku", "tiny_generator", "ta3_power_terminal"},
|
||||
Images)
|
||||
|
||||
techage.register_category_page("ta3op",
|
||||
S("TA3: Oil plants"),
|
||||
S("In the TA3 age, oil (petroleum) serves as an almost infinite fuel. But oil is difficult "..
|
||||
"and expensive to recover:@n"..
|
||||
"1: Search for oil with the TA3 Oil Explorer@n"..
|
||||
"2: Drill for oil with the TA3 Oil Drill Box (oil derrick)@n"..
|
||||
"3: Recover the oil with the TA3 Oil Pumpjack@n"..
|
||||
"4: A power station nearby provides the necessary @n"..
|
||||
" electrical power for the derrick and pumpjack.@n"..
|
||||
"5: Tubes or rails are used for oil transportation."),
|
||||
"techage:oilexplorer",
|
||||
{"oilexplorer", "drillbox", "pumpjack"}
|
||||
)
|
||||
|
||||
techage.register_category_page("ta3m",
|
||||
S("TA3: Machines"),
|
||||
S("Collection of TA3 machines, some with eletrical power supply."),
|
||||
"techage:ta3_autocrafter_pas",
|
||||
{"pusher", "distributor", "chest", "grinder", "gravelsieve", "autocrafter", "electronic_fab",
|
||||
"funnel", "liquidsampler"}
|
||||
)
|
||||
|
||||
techage.register_category_page("ta3l",
|
||||
S("TA3: Logic"),
|
||||
S("Collection of TA3 logic blocks to control your machines."),
|
||||
"techage:terminal2",
|
||||
{"terminal", "button", "detector", "repeater", "logic", "node_detector", "player_detector", "cart_detector", "programmer"}
|
||||
).
|
||||
|
||||
techage.register_category_page("ta4",
|
||||
S("Future Age (TA4)"),
|
||||
S("The Future Age is the forth level of the available technic stages.@n"..
|
||||
"The goal of TA4 is to operate your machines only with renewable energy.@n"..
|
||||
"Build wind turbines, solar panel plants and biogas plants and use@n"..
|
||||
"future technologies."),
|
||||
"techage:ta4_wlanchip",
|
||||
{}
|
||||
)
|
||||
|
||||
|
||||
local ROTOR = "techage_wind_turbine_inv.png"
|
||||
local CANELLE = "techage_rotor.png"
|
||||
local PILLAR = "techage:pillar"
|
||||
|
||||
local Images = {
|
||||
{false, false, false, ROTOR, CANELLE, false, false},
|
||||
{false, false, false, PILLAR, false, false, false},
|
||||
{false, false, false, PILLAR, false, false, false},
|
||||
{false, false, false, PILLAR, false, false, false},
|
||||
{false, false, false, PILLAR, false, false, false},
|
||||
{false, false, false, PILLAR, false, false, false},
|
||||
{false, false, false, PILLAR, false, false, false},
|
||||
{false, false, false, PILLAR, false, false, false},
|
||||
}
|
||||
|
||||
--techage.register_entry_page("ta3", "power_station",
|
||||
techage.register_category_page("ta4wt",
|
||||
S("TA4: Wind Turbine"),
|
||||
S("Build a Wind Turbine according to the plan with TA4 Wind Turbine, TA4 Wind Turbine Nacelle and@n"..
|
||||
"a pillar by means of TA4 Pillar nodes (power cables have to be inside).@n"..
|
||||
"Please note the following limitations:@n"..
|
||||
"- pillar height between 10 and 19 m@n"..
|
||||
"- can only be built offshore (20 m in all 4 directions is water)@n"..
|
||||
"- more than 14 m to the next wind turbine@n"..
|
||||
"- the wind blows only between 5 and 9 o'clock and between 17 and 21 o'clock"),
|
||||
nil,
|
||||
{},
|
||||
Images)
|
||||
.
|
||||
|
||||
|
||||
techage.register_category_page("ta", "Further nodes and tools",
|
||||
S("This is a collection of further nodes and tools which do not fit to the stages 1 to 4."),
|
||||
"techage:end_wrench", {"end_wrench", "powerswitch", "trowel", "blackhole", "forceload", "doorblock", "gateblock"}
|
||||
)
|
||||
|
||||
techage.register_entry_page("ta", "powerswitch",
|
||||
S("TA Power Switch"),
|
||||
S("To turn electrical power on/off.@n"..
|
||||
"Has to be placed on a TA Power Switch Box."),
|
||||
"techage:powerswitch")
|
||||
|
||||
techage.register_entry_page("ta", "trowel",
|
||||
S("TechAge Trowel"),
|
||||
S("Tool to hide and retrieve electrical wiring in walls and floors.@n"..
|
||||
"The material for hiding the cables must be in the left stack of the first row in the player inventory."),
|
||||
"techage:trowel").
|
||||
|
||||
techage.register_entry_page("ta4es", "ta4_generator",
|
||||
S("TA4 Generator"),
|
||||
S("Part of TA4 Energy Systems. Has to be placed side by side with the TA4 Turbine. "..
|
||||
"Connect the Generator with your power network@n"),
|
||||
"techage:ta4_generator")
|
||||
|
||||
techage.register_entry_page("ta4es", "turbine",
|
||||
S("TA4 Turbine"),
|
||||
S("Part of TA4 Energy Systems. Has to be placed side by side with the TA4 Generator.@n"),
|
||||
"techage:ta4_turbine")
|
||||
|
||||
techage.register_entry_page("ta3f", "booster",
|
||||
S("TA3 Booster"),
|
||||
S("Part of the TA3 Industrial Furnace and further machines. Used to increase the air/gas pressure."),
|
||||
"techage:ta3_booster")
|
||||
|
||||
techage.register_entry_page("ta3f", "firebox",
|
||||
S("TA3 Furnace Firebox"),
|
||||
S("Part of the TA3 Industrial Furnace. Faster and more powerful than the standard furnace."),
|
||||
"techage:furnace_firebox")
|
||||
|
||||
techage.register_entry_page("ta3f", "furnace",
|
||||
S("TA3 Furnace Top"),
|
||||
S("Part of the TA3 Industrial Furnace. Faster and more powerful than the standard furnace."),
|
||||
"techage:ta3_furnace_pas")
|
||||
|
||||
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")
|
||||
|
||||
techage.register_entry_page("ta3l", "button",
|
||||
S("TA3 Button/Switch"),
|
||||
S("The Button/Switch is used to send on/off commands to machines/nodes.@n"..
|
||||
"It can be configured as switch or as button with configurable cycle time from 2 to 32s)"),
|
||||
"techage:ta3_button_on")
|
||||
|
||||
|
||||
techage.register_entry_page("ta3l", "cart_detector",
|
||||
S("TA3 Cart Detector"),
|
||||
S("The Cart Detector sends a 'on' signal if a cart (Minecart) is nearby@n"..
|
||||
"In addition the node starts the cart again, if a 'on' signal is received.@n"),
|
||||
"techage:ta3_cartdetector_off")
|
||||
|
||||
techage.register_entry_page("ta3l", "detector",
|
||||
S("TA3 Detector"),
|
||||
S("The Detector is a special kind of tube block that@n"..
|
||||
"outputs an event when items pass through.@n"..
|
||||
"It sends an 'on' when an item goes through,@n"..
|
||||
"followed by an 'off' event one second later.@n"..
|
||||
"After that it blocks further events for 8 seconds."),
|
||||
"techage:ta3_detector_on")
|
||||
|
||||
techage.register_entry_page("ta3l", "logic",
|
||||
S("TA3 Logic Block"),
|
||||
S("The Logic Block is used to combine one or several input signals@n"..
|
||||
"by means of a boolean expression into one output signal,@n"..
|
||||
"like 'n123 and n345', 'not n123', or simply 'inp'.@n"..
|
||||
"The then-part and the else-part are used to set the output.@n"..
|
||||
"true means 'on', false means 'off', nothing means send nothing."),
|
||||
"techage:ta3_logic")
|
||||
|
||||
techage.register_entry_page("ta3l", "node_detector",
|
||||
S("TA3 Node Detector"),
|
||||
S("The Node Detector sends an 'on' signal when it detects that nodes appear@n"..
|
||||
"or disappear, but has to be configured accordingly.@n"..
|
||||
"After the node switches back to the default state (grey block)@n"..
|
||||
"an 'off' signal will be sent.@n"..
|
||||
"Valid nodes are all kind of blocks and plants.@n"..
|
||||
"The sensor range is 3 nodes/meters in the arrow direction."),
|
||||
"techage:ta3_nodedetector_on")
|
||||
|
||||
|
||||
techage.register_entry_page("ta3l", "player_detector",
|
||||
S("TA3 Player Detector"),
|
||||
S(funnel."),
|
||||
"techage:ta3_playerdetector_off")
|
||||
|
||||
techage.register_entry_page("ta3l", "programmer",
|
||||
S("Techage Programmer"),
|
||||
S("The Programmer is a tool to collect block numbers (right mouse button)@n"..
|
||||
"from machines/nodes to program (left mouse button) the Repeater@n"..
|
||||
"or other nodes. This is especially useful if you want to switch on/off@n"..
|
||||
"many block at the same time."),
|
||||
"techage:programmer")
|
||||
|
||||
techage.register_entry_page("ta3l", "repeater",
|
||||
S("TA3 Repeater"),
|
||||
S("The Repeater is a multiplier block, sending received commands@n"..
|
||||
"to all connected blocks. The list of destination block numbers@n"..
|
||||
"has to be configured, but can easily programmed@n"..
|
||||
"by means of the Programmer."),
|
||||
"techage:ta3_repeater")
|
||||
|
||||
techage.register_entry_page("ta3l", "sequencer",
|
||||
S("TA3 Sequencer"),
|
||||
S("The Sequencer block allows to define sequences of on/off commands@n"..
|
||||
"with time delays in between. A sequence of up to 8 steps@n"..
|
||||
"can be programmed, each with destination block numbers, on/off command,@n"..
|
||||
"and time gap to the next step in seconds. The Sequencer can run endless@n"..
|
||||
"or only once and can be switches on/off by other blocks."),
|
||||
"techage:ta3_sequencer")
|
||||
|
||||
techage.register_entry_page("ta3l", "terminal",
|
||||
S("TA3 Terminal"),
|
||||
S("The Terminal is used to send commands to machines and output their responses.@n"..
|
||||
"In order to not always have to enter commands, commands can be assigned to buttons@n"..
|
||||
"and with a double-click on a text line, the command is copied into the input field, again.@n"..
|
||||
"The terminal has a help command with further information to the supported commands."),
|
||||
"techage:terminal2")
|
||||
|
||||
techage.register_entry_page("ta3l", "timer",
|
||||
S("TA3 Timer"),
|
||||
S("The Timer block allows to turn machines/nodes on and off@n"..
|
||||
"based on the day time."),
|
||||
"techage:ta3_timer")
|
||||
|
||||
techage.register_entry_page("ta2", "boiler1",
|
||||
S("TA2 Boiler Base"),
|
||||
S("Part of the steam engine. Has to be placed on top of the Firebox and filled with water.@n"..
|
||||
"(see Steam Engine)"), "techage:boiler1")
|
||||
|
||||
techage.register_entry_page("ta2", "boiler2",
|
||||
S("TA2 Boiler Top"),
|
||||
S("Part of the steam engine. Has to be placed on top of TA2 Boiler Base.@n(see Steam Engine)"),
|
||||
"techage:boiler2")
|
||||
|
||||
local S = techage.S
|
||||
|
||||
local HelpText = S("Build a steam engine according to the plan with TA2 Firebox, TA2 Boiler, Steam Pipes, TA2 Cylinder and TA2 Flywheel.@n"..
|
||||
"- Heat the Firebox with coal/charcoal@n"..
|
||||
"- Fill the boiler with water (more than one bucket is needed)@n"..
|
||||
"- Wait until the water is heated@n"..
|
||||
"- Open the steam ventil@n"..
|
||||
"- Start the Flywheel@n"..
|
||||
"- Connect the Flywheel with your machines by means of Axles and Gearboxes")
|
||||
|
||||
local Images = {
|
||||
|
||||
{false, false, false, false, false, false, false},
|
||||
{false, false, false, false, false, false, false},
|
||||
{false, false, "techage_steam_knee.png", 'techage_steam_pipe.png', "techage_steam_knee.png^[transformR270"},
|
||||
{false, false, "techage:boiler2", false, 'techage_steam_pipe.png^[transformR90'},
|
||||
{false, false, "techage:boiler1", false, 'techage_steam_pipe.png^[transformR90'},
|
||||
{false, false, "techage_firebox.png^techage_appl_firehole.png^techage_frame_ta2.png", false,
|
||||
"techage_steam_knee.png^[transformR90",
|
||||
"techage_filling_ta2.png^techage_cylinder.png^techage_frame_ta2.png",
|
||||
"techage_filling_ta2.png^techage_frame_ta2.png^techage_flywheel.png^[transformFX]"},
|
||||
}
|
||||
|
||||
techage.register_entry_page("ta2", "steam_engine",
|
||||
S("Steam Engine"), HelpText, nil, Images)
|
||||
|
||||
techage.register_entry_page("ta2", "cylinder",
|
||||
S("TA2 Cylinder"),
|
||||
S("Part of the steam engine. Has to be placed side by side with the TA2 Flywheel.@n"..
|
||||
"(see Steam Engine)"),
|
||||
"techage:cylinder")
|
||||
|
||||
techage.register_entry_page("ta2", "flywheel",
|
||||
S("TA2 Flywheel"),
|
||||
S("Part of the steam engine. Has to be placed side by side with the TA2 Cylinder.@n"..
|
||||
"Used to turn on/off the steam engine. Connect the Flywheel with your TA2 machines "..
|
||||
"by means of Axles and Gearboxes.@n"..
|
||||
"(see Steam Engine)"), "techage:flywheel")
|
||||
|
||||
techage.register_entry_page("ta", "end_wrench",
|
||||
S("TechAge Info Tool"),
|
||||
S("The TechAge Info Tool is a tool to read any kind of status information from nodes providing a command interface.@n"..
|
||||
"Click on the node to read the status"),
|
||||
"techage:end_wrench")
|
||||
|
||||
techage.register_entry_page("ta", "trowel",
|
||||
S("TechAge Trowel"),
|
||||
S("Tool to hide and retrieve electrical wiring in walls and floors.@n"..
|
||||
"The material for hiding the cables must be in the left stack of the first row in the player inventory."),
|
||||
"techage:trowel")
|
||||
|
||||
techage.register_entry_page("ta", "doorblock",
|
||||
S("Techage Door Block"),
|
||||
S("The Door Block can disappear by means of commands from a button or switch.@n"..
|
||||
"It is commonly used to build larger gates. All Door Blocks@n"..
|
||||
"obtain a unique number which is shown as block infotext.@n"..
|
||||
"This number is used as destination address for commands.@n"..
|
||||
"The texture of the Door Block can be configured after@n"..
|
||||
"placement with the right mouse button."),
|
||||
"techage:doorblock"..NUM_TEXTURES)
|
||||
|
||||
techage.register_entry_page("ta", "gateblock",
|
||||
S("Techage Gate Block"),
|
||||
S("The Gate Block can disappear by means of commands from a button or switch.@n"..
|
||||
"It is commonly used to build larger gates. All Gate Blocks@n"..
|
||||
"obtain a unique number which is shown as block infotext.@n"..
|
||||
"This number is used as destination address for commands.@n"..
|
||||
"The texture of the Gate Block can be configured after@n"..
|
||||
"placement with the right mouse button."),
|
||||
"techage:gateblock"..NUM_TEXTURES)
|
||||
|
||||
--minetest.register_on_joinplayer(function(player)
|
||||
-- minetest.after(2, function(name)
|
||||
-- minetest.show_formspec(name, "test:formspec",
|
||||
-- "size[6,4]"..
|
||||
-- "textarea[0.5,1;6,3;;"..
|
||||
-- "This is a grey text line.\n"..
|
||||
-- "\027(c@#FF0000)This\194\160\027(c@#00FF00)is\194\160\027(c@#0000FF)a\194\160\027(c@#FF00FF)colored\194\160\027(c@#FFFF00)text\194\160\027(c@#00FFFF)line."..
|
||||
-- ";]")
|
||||
-- end, player:get_player_name())
|
||||
--end)
|
||||
|
||||
techage.register_entry_page("ta3op", "drillbox",
|
||||
S("TA3 Oil Drill Box"),
|
||||
S("The box automatically unfolds to a derrick when you press the button.@n"..
|
||||
"1: Place the box in the middle of the marked position@n"..
|
||||
" (the derrick requires a free area of 3x3m)@n"..
|
||||
"2: Press the build button@n"..
|
||||
"3: Supply the drill with electricity@n"..
|
||||
"4: Supply the drill with Drill Bits@n"..
|
||||
"5: Press the start button@n"..
|
||||
"6: Remove the excavated material with Tubes/Pusher@n"..
|
||||
"7: The drill stops when oil is found@n"..
|
||||
" (drill speed is 1m/16s)@n"..
|
||||
"8: Replace the drill with the Pumpjack.@n"..
|
||||
"It needs 16 units electrical power"),
|
||||
node_name_ta3)
|
||||
|
||||
techage.register_entry_page("ta3ps", "tiny_generator",
|
||||
S("TA3 Tiny Power Generator"),
|
||||
S("Small electrical power generator. Needs oil as fuel.@n"..
|
||||
"It provides 12 units electrical power@n"..
|
||||
"Oil burn time: 100s"),
|
||||
"techage:tiny_generator")
|
||||
|
||||
techage.register_entry_page("ta3op", "pumpjack",
|
||||
S("TA3 Oil Pumpjack"),
|
||||
S("The Pumpjack works similar to a pusher. It pumps one oil item every 8 seconds. It needs 16 units of electrical power."),
|
||||
"techage:ta3_pumpjack_pas")
|
||||
|
||||
techage.register_entry_page("ta3op", "oilexplorer",
|
||||
S("TA3 Oil Explorer"),
|
||||
S("Used to find oil (petroleum). Oil can be used as fuel for the Power Station and others. "..
|
||||
"Place the block and right-click on the block to explore the underground. "..
|
||||
"The block will explore a 16x16 field with a depth of up to 400 m. "..
|
||||
"To search deeper, click the block several times. "..
|
||||
"When oil is found, the position for the derrick (Drill Box) is highlighted.@n"..
|
||||
"Hint: Mark and protect the position for later use."),
|
||||
"techage:oilexplorer")
|
||||
TA1 is about mining sufficient ores and producing charcoal with simple tools and equipment, so that TA2 machines can be manufactured and operated.
|
||||
|
||||
Of course, for an iron age there must also be iron and not just steel, as in "Minetest Game". As a result, some recipes have been changed so that iron has to be produced first and then steel later.
|
||||
|
||||
The durability of the tools is based on the ages and therefore does not correspond to the original Minetest game.
|
||||
The durability / hardness for an axe, for example:
|
||||
|
||||
* Bronze: 20
|
||||
* Steel: 30
|
||||
|
||||
[techage_ta1|image]
|
||||
|
||||
|
||||
## Coal Pile
|
||||
|
||||
You need the charcoal burner to make charcoal. Charcoal is required for the burner, but also, for example, in TA2 for the steam engine.
|
||||
|
||||
Building instructions (see also plan):
|
||||
|
||||
- Build a 5x5 area of dirt
|
||||
- Place a lighter in the middle
|
||||
- Build a 3x3x3 cube above it out of wood
|
||||
- Cover everything with a layer of earth to form a 5x5x5 cube
|
||||
- Leave a hole to the lighter
|
||||
- Light the lighter and immediately close the hole with a block of wood and earth
|
||||
- If you have done everything correctly, the coal burner will start smoking after a few seconds
|
||||
- Only open the charcoal burner when the smoke has disappeared (approx. 20 min)
|
||||
|
||||
Then you can remove the 9 charcoal blocks and refill the charcoal burner.
|
||||
|
||||
[coalpile|plan]
|
||||
|
||||
|
||||
## Coal Burner
|
||||
|
||||
You need the coal burner, for example, to melt iron and other ores in the melting pot. There are different recipes that require different temperatures. The higher the tower, the hotter the flame. A height of 11 blocks above the base plate is for all recipes, but a burner with this height also requires more charcoal.
|
||||
|
||||
Building instructions (see also plan):
|
||||
|
||||
* Build a stone tower (cobble) with a 3x3 base (7-11 blocks high)
|
||||
* Leave a hole open on one side at the bottom
|
||||
* Put a lighter in it
|
||||
* Fill the tower with charcoal from the top to the top
|
||||
* Light the lighter through the hole
|
||||
* Place the melting pot in the flame over the tower
|
||||
(one block above the flame)
|
||||
* To stop the burner, temporarily close the hole with an earth block, for example.
|
||||
|
||||
The melting pot has its own menu of recipes and an inventory where you have to put the ores in.
|
||||
|
||||
[coalburner|plan]
|
||||
|
||||
|
||||
## Ores and Tools
|
||||
|
||||
TA1 has its own tools such as hammer and gravel sieve, but the Minecart Hopper can also be used.
|
||||
|
||||
[ta1_gravelsieve|image]
|
||||
|
||||
|
||||
### Hammer
|
||||
|
||||
The TA1 hammer can be used to knock/dig stone in a mine, but also to smash cobble to gravel. The hammer is available in different versions and therefore different properties: bronze, steel, brass and diamond.
|
||||
|
||||
[hammer|image]
|
||||
|
||||
|
||||
### Gravel Sieve
|
||||
|
||||
Ores can be sifted from the gravel with the gravel sieve. To do this, click on the sieve with the gravel. The sifted gravel and ores fall out below.
|
||||
|
||||
In order not to stand at the sieve for hours, sieving can be automated with the hopper.
|
||||
|
||||
[ta1_gravelsieve|image]
|
||||
|
||||
|
||||
### Hopper
|
||||
|
||||
The hopper from the "Minecart" mod is primarily used for loading and unloading Minecarts. He sucks in items from above and passes them on to the right. Therefore, when placing the hopper, pay attention to the direction of dispensing.
|
||||
|
||||
The hopper can also pull items from boxes (chest), provided the box is next to or on the hopper.
|
||||
|
||||
The hopper can also put items in boxes if the box is next to the hopper.
|
||||
|
||||
[ta1_hopper|image]
|
||||
|
||||
|
||||
### Gravel seven with the hopper
|
||||
|
||||
With the help of two boxes, two hoppers and a gravel sieve, the sieving process can be automated. The plan on the right shows the structure.
|
||||
|
||||
Make sure that the boxes are "chest_locked", otherwise someone will steal the valuable ores from the box below.
|
||||
|
||||
[hoppersieve|plan]
|
||||
|
||||
|
||||
### Meridium
|
||||
|
||||
TA1 has its own metal alloy meridium. Meridium ingots can be made with the coal burner from steel and mesecons splinters. Meridium glows in the dark. Tools made of Meridium also light up and are therefore very helpful in underground mining.
|
||||
|
||||
[meridium|image]
|
||||
|
@ -86,7 +86,7 @@ Die Transportkapazität einer Röhre ist unbegrenzt und nur durch die Schieber b
|
||||
### TA2 Schieber / Pusher
|
||||
|
||||
Ein Schieber ist in der Lage, Items aus Kisten oder Maschinen zu ziehen und in andere Kisten oder Maschinen zu schieben. Oder anders gesagt: Zwischen zwei Blöcken mit Inventar muss ein und genau ein Schieber sein. Mehrere Schieber in Reihe sind nicht möglich.
|
||||
In die Gegenrichtung ist ein Schieber für Items aber durchlässig, so dass eine Kiste über eine Röhre gefüllt und ebenso gelehrt werden kann.
|
||||
In die Gegenrichtung ist ein Schieber für Items aber durchlässig, so dass eine Kiste über eine Röhre gefüllt und ebenso geleert werden kann.
|
||||
|
||||
Ein Schieber geht in den Zustand "standby", wenn der keine Items zum Schieben hat. Ist der Ausgang blockiert oder das Inventory des Empfängers voll, so geht der Schieber in den Zustand "blocked". Aus beiden Zuständen kommt der Schieber nach einigen Sekunden selbsttätig wieder raus, sofern sich die Situation geändert hat.
|
||||
|
||||
@ -109,7 +109,7 @@ Für einen nicht-konfigurierten Ausgang gibt es zwei Betriebsarten:
|
||||
|
||||
Im ersten Fall werden immer alle Items weitergeleitet und der Verteiler läuft nicht voll. Im zweiten Fall werden Items zurückgehalten und der Verteiler kann voll laufen und in der Folge blockieren.
|
||||
|
||||
Einstellbar ist die Betriebsart über die ">>|" Checkbox (an => Betriebsart 2)
|
||||
Einstellbar ist die Betriebsart über die "blockiere" Checkbox.
|
||||
|
||||
Der Verarbeitungsleistung eines TA2 Verteilers beträgt 4 Items alle 2 s, wobei der Verteiler dabei versucht, die 4 Items auf die offenen Ausgänge zu verteilen.
|
||||
|
||||
@ -126,14 +126,14 @@ Aufbau von links nach rechts (siehe auch Plan):
|
||||
* daneben den Kiesspüler, ggf. mit Röhrenanschlüssen für den Kies An- und Abtransport
|
||||
* dann den Trichter mit Kiste
|
||||
|
||||
Das Ganze umgeben von weiteren Glasblöcken, so dass das Wasser über den Kiesspüler und den Trichter fließt und ausgespielten Nuggets vom Trichter wieder eingesammelt werden können.
|
||||
Das Ganze umgeben von weiteren Glasblöcken, so dass das Wasser über den Kiesspüler und den Trichter fließt und ausgespülten Nuggets vom Trichter wieder eingesammelt werden können.
|
||||
|
||||
[gravelrinser|plan]
|
||||
|
||||
|
||||
### TA2 Kiesspüler / Gravel Rinser
|
||||
|
||||
Der Kiesspüler ist in der Lade, aus bereits gesiebtem Kies die Erze Usmium und Kupfer auszuspülen, sofern dieser von Wasser überspült wird.
|
||||
Der Kiesspüler ist in der Lage, aus bereits gesiebtem Kies die Erze Usmium und Kupfer auszuspülen, sofern dieser von Wasser überspült wird.
|
||||
|
||||
Ob der Kiesspüler korrekt arbeitet, kann mit Hilfe von Stöcken (sticks) getestet werden, wenn diese in das Inventar des Kiesspülers getan werden. Diese müssen einzeln ausgespült und vom Trichter eingefangen werden.
|
||||
|
||||
|
229
manuals/manual_ta2_EN.md
Normal file
229
manuals/manual_ta2_EN.md
Normal file
@ -0,0 +1,229 @@
|
||||
# TA2: Steam Age
|
||||
|
||||
TA2 is about building and operating the first machines for processing ores. Some machines have to be driven via drive axles. To do this, you need to build a steam engine and heat it with coal or charcoal.
|
||||
|
||||
In TA2 there is also a gravel rinser that can be used to wash out rare ores such as Usmium nuggets. You will need these nuggets later for further recipes.
|
||||
|
||||
[techage_ta2|image]
|
||||
|
||||
## Steam Engine
|
||||
|
||||
The steam engine consists of several blocks and must be assembled as shown in the plan on the right. The blocks TA2 fire box, TA2 boiler top, TA2 boiler bottom, TA2 cylinder, TA2 flywheel and steam pipes are required.
|
||||
|
||||
In addition, drive axles and gear blocks are required for changing direction. The flywheel must be connected to all machines that have to be driven via the drive axles.
|
||||
|
||||
Always pay attention to the alignment of all blocks when placing:
|
||||
|
||||
- Cylinder on the left, flywheel on the right
|
||||
- Connect steam pipes where there is a corresponding hole
|
||||
- Drive axle on flywheel only on the right
|
||||
- In all machines, the drive axles can be connected on all sides, which is not occupied by other functions, such as the IN and OUT holes in the grinder and sieve.
|
||||
|
||||
The boiler must be filled with water. Fill up to 10 buckets of water in the boiler.
|
||||
The fire box must be filled with coal or charcoal.
|
||||
When the water is hot (temperature display at the top), the steam engine can be started on the flywheel.
|
||||
|
||||
The steam engine has a capacity of 25 ku, so it can drive several machines at the same time.
|
||||
|
||||
[steamengine|plan]
|
||||
|
||||
|
||||
### TA2 Firebox
|
||||
|
||||
Part of the steam engine.
|
||||
|
||||
The fire box must be filled with coal or charcoal. The burning time depends on the power demanded by the steam engine. Coal burns for 32 s and charcoal for 96 s under full load.
|
||||
|
||||
[ta2_firebox|image]
|
||||
|
||||
|
||||
### TA2 Boiler
|
||||
|
||||
Part of the steam engine. Must be filled with water. This is done by clicking on the boiler with a water bucket. When there is no more water or the temperature drops too low, the steam engine switches off.
|
||||
|
||||
[ta2_boiler|image]
|
||||
|
||||
|
||||
### TA2 Cylinder
|
||||
|
||||
Part of the steam engine.
|
||||
|
||||
[ta2_cylinder|image]
|
||||
|
||||
|
||||
### TA2 Flywheel
|
||||
|
||||
Drive part of the steam engine. The flywheel must be connected to the machines via drive axles.
|
||||
|
||||
[ta2_flywheel|image]
|
||||
|
||||
|
||||
### TA2 Steam Pipes
|
||||
|
||||
Part of the steam engine. The boiler must be connected to the cylinder via the steam pipes. The steam pipe has no branches, the maximum length is 12 m (blocks).
|
||||
|
||||
[ta2_steampipe|image]
|
||||
|
||||
|
||||
## Push and sort items
|
||||
|
||||
In order to transport objects from one processing station to the next, pushers and tubes are used. See plan.
|
||||
|
||||
[itemtransport|plan]
|
||||
|
||||
|
||||
### TechAge Tube
|
||||
|
||||
Two machines can be connected with the help of a pusher and a tube. Tubes have no branches. The maximum length is 200 m (blocks).
|
||||
|
||||
Alternatively, tubes can be placed using the Shift key. This allows, for example, tubes to be laid in parallel without them accidentally connecting.
|
||||
|
||||
The transport capacity of a tube is unlimited and only limited by the pusher.
|
||||
|
||||
[tube|image]
|
||||
|
||||
|
||||
### TA2 Pusher
|
||||
|
||||
A pusher is able to pull items out of boxes or machines and push them into other boxes or machines. In other words, there must be one and exactly one pusher between two blocks with inventory. Multiple pushers in a row are not possible.
|
||||
In the opposite direction, however, a pusher is permeable for items, so that a box can be filled via a tube and also taught.
|
||||
|
||||
A pusher goes into the "standby" state if it has no items to push. If the output is blocked or the recipient's inventory is full, the pusher goes into the "blocked" state. The pusher automatically comes out of both states after a few seconds if the situation has changed.
|
||||
|
||||
The processing power of a TA2 pusher is 2 items every 2 s.
|
||||
|
||||
[ta2_pusher|image]
|
||||
|
||||
|
||||
### TA2 Distributor
|
||||
|
||||
The distributor is able to transport the items from his inventory sorted in up to four directions. To do this, the distributor must be configured accordingly.
|
||||
|
||||
The distributor has a menu with 4 filters with different colors, corresponding to the 4 outputs. If an output is to be used, the corresponding filter must be activated via the "on" checkbox. All items that are configured for this filter are output via the assigned output. If a filter is activated without items being configured, we are talking about an "unconfigured", open output.
|
||||
|
||||
There are two operating modes for a non-configured output:
|
||||
|
||||
1) Output all items that cannot be output to any other exit, even if they are blocked.
|
||||
|
||||
2) Only output the items that have not been configured for any other filter.
|
||||
|
||||
In the first case, all items are always forwarded and the distributor does not run full. In the second case, items are held back and the distributor can run full and then block.
|
||||
|
||||
The operating mode can be set using the "blocking mode" checkbox.
|
||||
|
||||
The processing power of a TA2 distributor is 4 items every 2 s, whereby the distributor tries to distribute the 4 items to the open outputs.
|
||||
|
||||
[ta2_distributor|image]
|
||||
|
||||
|
||||
## Gravel washer
|
||||
|
||||
The gravel washer is a more complex machine with the goal of washing Usmium nuggets out of sieved gravel. A TA2 rinser with axis drive, a hopper, a chest and running water are required for the installation.
|
||||
|
||||
Structure from left to right (see also plan):
|
||||
|
||||
* A dirt block, on top of it the water source, surrounded on 3 sides by e.g. glass blocks
|
||||
* next to it the gravel rinser, if necessary with tube connections for the gravel delivery and removal
|
||||
* then the hopper with chest
|
||||
|
||||
The whole thing is surrounded by further glass blocks, so that the water flows over the gravel rinser and the hopper and rinsed-out nuggets can be collected again by the hopper.
|
||||
|
||||
[gravelrinser|plan]
|
||||
|
||||
|
||||
### TA2 Gravel Rinser
|
||||
|
||||
The gravel washer is able to rinse out the Usmium and copper ores from gravel that has already been sieved, provided that this is flushed with water.
|
||||
|
||||
Whether the Gravel Rinser works correctly can be tested with sticks if these are placed in the inventory of the Gravel Rinser. These must be rinsed out individually and caught by the hopper.
|
||||
|
||||
The processing power is one gravel item every 2 s. The gravel washer needs 3 ku of energy.
|
||||
|
||||
[ta2_rinser|image]
|
||||
|
||||
|
||||
## Dig stone, grind and sieve
|
||||
|
||||
Crushing, grinding and sieving of rock is used to extract ores. Sieved gravel can also be used for other purposes. Quarry, grinder and sieve must be driven and thus installed near a steam engine.
|
||||
|
||||
[ta2_grinder|image]
|
||||
|
||||
|
||||
### TA2 Quarry
|
||||
|
||||
The quarry is used to remove stones and other materials from the underground. The quarry digs a 5x5 block hole. The depth is adjustable.
|
||||
The processing power is one block every 4 s. The quarry needs 10 ku of energy. The maximum depth is 20 meters. For greater depths see TA3 / TA4.
|
||||
|
||||
[ta2_quarry|image]
|
||||
|
||||
|
||||
### TA2 Grinder
|
||||
|
||||
The grinder is able to grind various rocks, but also wood and other items.
|
||||
The processing power is one item every 4 s. The grinder needs 4 ku of energy.
|
||||
|
||||
[ta2_grinder|image]
|
||||
|
||||
|
||||
### TA2 Gravel Sieve
|
||||
|
||||
The gravel sieve is able to sieve gravel to extract ores. The result is partially "sieved gravel", which cannot be sieved again.
|
||||
The processing power is one item every 4 s. The gravel sieve requires 3 ku of energy.
|
||||
|
||||
[ta2_gravelsieve|image]
|
||||
|
||||
|
||||
## Produce Items
|
||||
|
||||
TA2 machines can not only extract ores, but also produce objects.
|
||||
|
||||
|
||||
### TA2 Autocrafter
|
||||
|
||||
The autocrafter is used for the automatic production of goods. Everything that the player can produce via the "Crafting Grid" can also be done by the autocrafter. To do this, the recipe must be entered in the menu of the autocrafter and the necessary ingredients added.
|
||||
|
||||
Ingredients and manufactured goods can be transported in and out of the block via tubes and pushers.
|
||||
|
||||
The processing power is one item every 4 s. The autocrafter requires 4 ku of energy.
|
||||
|
||||
[ta2_autocrafter|image]
|
||||
|
||||
|
||||
### TA2 Electronic Fab
|
||||
|
||||
The electronic fab is a special machine and can only be used for the production of vacuum tubes. Vacuum tubes are required for TA3 machines and blocks.
|
||||
|
||||
The processing power is one vacuum tube every 6 s. The electronic fab requires 8 ku of energy.
|
||||
|
||||
[ta2_electronicfab|image]
|
||||
|
||||
|
||||
## Other blocks
|
||||
|
||||
### TA2 Liquid Sampler
|
||||
|
||||
Some recipes require water. So that these recipes can also be processed automatically with the autocrafter, water must be provided in buckets. The liquid sampler is used for this. He needs empty buckets and has to be put in the water.
|
||||
|
||||
The processing capacity is one water bucket every 8 s. The liquid sampler requires 3 ku of energy.
|
||||
|
||||
[ta2_liquidsampler|image]
|
||||
|
||||
|
||||
### TA2 Protected Chest
|
||||
|
||||
The protected chest can only be used by players who can build at this location, i.e. who have protection rights. It does not matter who sets the chest.
|
||||
|
||||
[ta2_chest|image]
|
||||
|
||||
|
||||
### Techage Forceload Block
|
||||
|
||||
Minetest divides the map into so-called map blocks. These are cubes with an edge length of 16x16x16 blocks. Such a map block is always loaded completely by the server, but only the blocks around a player are loaded (approx. 2-3 blocks in all directions). In the player's direction of view, there are also more map blocks. Only this part of the world is active and only here do plants and trees grow or the machines run.
|
||||
|
||||
With a forceload block you can force the map block in which the forceload block is located to remain loaded as long as you are on the server. When all your farms and machines are covered with Forceload blocks, everything is always running.
|
||||
|
||||
The map blocks with their coordinates are predefined, e.g. (0,0,0) to (15,15,15), or (16,16,16) to (31,31,31).
|
||||
You can move a forceload block within a map block as you like, the position of the map block remains unchanged.
|
||||
|
||||
[ta2_forceload|image]
|
||||
|
714
manuals/manual_ta3_EN.md
Normal file
714
manuals/manual_ta3_EN.md
Normal file
@ -0,0 +1,714 @@
|
||||
# TA3: Oil Age
|
||||
|
||||
At TA3 it is important to replace the steam-powered machines with more powerful and electric-powered machines.
|
||||
|
||||
To do this, you have to build coal-fired power plants and generators. You will soon see that your electricity needs can only be met with oil-powered power plants. So you go looking for oil. Drilling derricks and oil pumps help them get the oil. Railways are used to transport oil to the power plants.
|
||||
|
||||
The industrial age is at its peak.
|
||||
|
||||
[techage_ta3|image]
|
||||
|
||||
|
||||
## Coal-fired Power Station / Oil-fired Power Station
|
||||
|
||||
The coal-fired power plant consists of several blocks and must be assembled as shown in the plan on the right. The blocks TA3 power station fire box, TA3 boiler top, TA3 boiler base, TA3 turbine, TA3 generator and TA3 cooler are required.
|
||||
|
||||
The boiler must be filled with water. Fill up to 10 buckets of water in the boiler.
|
||||
The fire box must be filled with coal or charcoal.
|
||||
When the water is hot, the generator can then be started.
|
||||
|
||||
Alternatively, the power plant can be equipped with an oil burner and then operated with oil.
|
||||
The oil can be refilled using a pump and oil pipe.
|
||||
|
||||
The power plant delivers an output of 80 ku.
|
||||
|
||||
[coalpowerstation|plan]
|
||||
|
||||
|
||||
### TA3 power station firebox
|
||||
|
||||
Part of the power plant.
|
||||
The fire box must be filled with coal or charcoal. The burning time depends on the power that is requested by the power plant. Coal burns for 20 s and charcoal for 60 s under full load. Correspondingly longer under partial load (50% load = double time).
|
||||
|
||||
[ta3_firebox|image]
|
||||
|
||||
|
||||
### TA3 Power Station Oil Burner
|
||||
|
||||
Part of the power plant.
|
||||
|
||||
The oil burner can be filled with petroleum, heavy oil, naphtha or petrol. The burning time depends on the power that is requested by the power plant. Under full load, petroleum burns 15 s, heavy oil 20 s, naphtha 22 s and gasoline 25 s.
|
||||
|
||||
Correspondingly longer under partial load (50% load = double time).
|
||||
|
||||
The oil burner can only hold 50 units of fuel. An additional oil tank and an oil pump are therefore advisable.
|
||||
|
||||
|
||||
[ta3_oilbox|image]
|
||||
|
||||
|
||||
### TA3 boiler base / top
|
||||
|
||||
Part of the power plant. Must be filled with water. If there is no more water or the temperature drops too low, the power plant switches off.
|
||||
|
||||
[ta3_boiler|image]
|
||||
|
||||
|
||||
### TA3 turbine
|
||||
|
||||
The turbine is part of the power plant. It must be placed next to the generator and connected to the boiler and cooler via steam pipes as shown in the plan.
|
||||
|
||||
[ta3_turbine|image]
|
||||
|
||||
|
||||
### TA3 generator
|
||||
|
||||
The generator is used to generate electricity. It must be connected to the machines via power cables and junction boxes.
|
||||
|
||||
[ta3_generator|image]
|
||||
|
||||
|
||||
### TA3 cooler
|
||||
|
||||
Used to cool the hot steam from the turbine. Must be connected to the boiler and turbine via steam pipes as shown in the plan.
|
||||
|
||||
[ta3_cooler|image]
|
||||
|
||||
|
||||
## Electrical current
|
||||
|
||||
In TA3 (and TA4) the machines are powered by electricity. To do this, the machines and generators must be connected with power cables.
|
||||
TA3 has 2 types of power cables:
|
||||
|
||||
- Insulated cables (TA power cables) for local wiring in the floor or in buildings. These cables can be hidden in the wall or in the floor (can be "plastered" with the trowel).
|
||||
- Overland lines (TA power line) for outdoor cabling over long distances. These cables are protected and cannot be removed by other players.
|
||||
|
||||
Several consumers and generators can be operated together in a power network. Large networks can be set up with the help of the junction boxes.
|
||||
If too little electricity is provided, consumers run out.
|
||||
In this context, it is also important that the functionality of Forceload blocks is understood, because generators, for example, only supply electricity when the corresponding map block is loaded. This can be enforced with a forceload block.
|
||||
|
||||
In TA4 there is also a cable for the solar system.
|
||||
|
||||
|
||||
[ta3_powerswitch|image]
|
||||
|
||||
|
||||
### TA Electric Cable
|
||||
|
||||
For local wiring in the floor or in buildings.
|
||||
Branches can be realized using junction boxes. The maximum cable length between machines or junction boxes is 1000 m. A maximum of 1000 nodes can be connected in a power network. All generators, batteries, junction boxes and machines count as nodes.
|
||||
|
||||
Since the power cables are not automatically protected, the land lines (TA power line) are recommended for longer distances.
|
||||
|
||||
Power cables can be plastered with the trowel so they can be hidden in the wall or in the floor. All stone, clay and other blocks without "intelligence" can be used as plastering material. Dirt does not work because dirt can be converted to grass or the like, which would destroy the line.
|
||||
|
||||
For plastering, the cable must be clicked on with the trowel. The material with which the cable is to be plastered must be on the far left in the player inventory.
|
||||
The cables can be made visible again by clicking on the block with the trowel.
|
||||
|
||||
In addition to cables, the TA junction box and the TA power switch box can also be plastered.
|
||||
|
||||
[ta3_powercable|image]
|
||||
|
||||
|
||||
### TA Electric Junction Box
|
||||
|
||||
With the junction box, electricity can be distributed in up to 6 directions. Junction boxes can also be plastered (hidden) with a trowel and made visible again.
|
||||
If the TechAge Info tool (wrench) is clicked on the junction box, it is shown whether the power line is powered or not.
|
||||
|
||||
[ta3_powerjunction|image]
|
||||
|
||||
|
||||
### TA Power Line
|
||||
|
||||
With the TA power line and the electricity poles, reasonably realistic overhead lines can be realized. The power pole heads also serve to protect the power line (protection). A pole must be set every 16 m or less. The protection only applies to the power line and the poles, however, all other blocks in this area are not protected.
|
||||
|
||||
[ta3_powerline|image]
|
||||
|
||||
|
||||
### TA Power Pole
|
||||
Used to build electricity poles. Is protected from destruction by the electricity pole head and can only be removed by the owner.
|
||||
|
||||
[ta3_powerpole|image]
|
||||
|
||||
|
||||
### TA Power Pole Top
|
||||
Has up to four arms and thus allows electricity to be distributed in up to 6 directions.
|
||||
The electricity pole head protects power lines and poles within a radius of 8 m.
|
||||
|
||||
[ta3_powerpole4|image]
|
||||
|
||||
|
||||
### TA Power Pole Top 2
|
||||
|
||||
This electricity pole head has two fixed arms and is used for the overhead lines. However, it can also transmit current downwards and upwards.
|
||||
The electricity pole head protects power lines and poles within a radius of 8 m.
|
||||
|
||||
[ta3_powerpole2|image]
|
||||
|
||||
|
||||
### TA Power Switch
|
||||
|
||||
The switch can be used to switch the power on and off. To do this, the switch must be placed on a power switch box. The power switch box must be connected to the power cable on both sides.
|
||||
|
||||
[ta3_powerswitch|image]
|
||||
|
||||
|
||||
### TA Power Switch Small
|
||||
|
||||
The switch can be used to switch the power on and off. To do this, the switch must be placed on a power switch box. The power switch box must be connected to the power cable on both sides.
|
||||
|
||||
[ta3_powerswitchsmall|image]
|
||||
|
||||
|
||||
### TA Power Switch Box
|
||||
|
||||
see TA power switch.
|
||||
|
||||
[ta3_powerswitchbox|image]
|
||||
|
||||
|
||||
### TA3 Small Power Generator
|
||||
|
||||
The small power generator runs on gasoline and can be used for small consumers with up to 12 ku. Gasoline burns for 150 s under full load. Correspondingly longer under partial load (50% load = double time).
|
||||
|
||||
The power generator can only hold 50 units of gasoline. An additional tank and a pump are therefore advisable.
|
||||
|
||||
|
||||
[ta3_tinygenerator|image]
|
||||
|
||||
|
||||
### TA3 Battery Block
|
||||
|
||||
The battery block is used to store excess energy and automatically delivers power in the event of a power failure (if available).
|
||||
The battery block is a secondary power source. This means that the generators are used first when electricity is required. The battery block will only provide power if there is insufficient electricity in the network. The same applies to the current consumption. Therefore, no battery can be charged with another battery.
|
||||
The battery delivers 10 ku or takes up 10 ku.
|
||||
At full load, a battery can take up to 400 s of current and, when it is full, also release it again. This corresponds to 8 hours of playing time on a normal game day of 20 minutes.
|
||||
|
||||
[ta3_akkublock|image]
|
||||
|
||||
|
||||
### TA3 Power Terminal
|
||||
|
||||
The power terminal must be connected to the power grid. It shows data from the power grid.
|
||||
|
||||
Only the data of a selected type are output in the upper half. If, for example, "Power station" is selected as the type, only the data from oil and coal-fired power stations are collected and output. The data from generators (power delivery) and the data from energy storage devices (power consumption) are output on the left. In the case of the battery blocl, for example, both are output because the battery can draw and deliver power.
|
||||
|
||||
In the lower half, the data of all generators and storage systems of the entire electricity network are summarized.
|
||||
|
||||
[ta3_powerterminal|image]
|
||||
|
||||
|
||||
## TA3 Industrial Furnace
|
||||
|
||||
The TA3 industrial furnace serves as a supplement to normal furnaces. This means that all goods can be produced with "cooking" recipes, even in an industrial furnace. But there are also special recipes that can only be made in an industrial furnace.
|
||||
The industrial furnace has its own menu for recipe selection. Depending on the goods in the industrial furnace inventory on the left, the output product can be selected on the right.
|
||||
|
||||
The industrial furnace requires electricity (for the fan) and oil / gasoline for the burner. The industrial furnace and must be assembled as shown in the plan on the right.
|
||||
|
||||
See also TA4 heater.
|
||||
|
||||
[ta3_furnace|plan]
|
||||
|
||||
|
||||
### TA3 Furnace Oil Burner
|
||||
|
||||
Is part of the TA3 industrial furnace.
|
||||
|
||||
The oil burner can be operated with heavy oil, naphtha or gasoline. The burning time is 80 s for heavy oil, 90 s for naphtha and 100 s for gasoline.
|
||||
|
||||
The oil burner can only hold 50 units of fuel. An additional tank and a pump are therefore advisable.
|
||||
|
||||
[ta3_furnacefirebox|image]
|
||||
|
||||
|
||||
### TA3 Furnace Top
|
||||
|
||||
Is part of the TA3 industrial furnace. See TA3 industrial furnace.
|
||||
|
||||
[ta3_furnace|image]
|
||||
|
||||
|
||||
### TA3 Booster
|
||||
|
||||
Is part of the TA3 industrial furnace. See TA3 industrial furnace.
|
||||
|
||||
[ta3_booster|image]
|
||||
|
||||
|
||||
## Liquids
|
||||
|
||||
Liquids such as water or oil can only be pumped through the special pipes and stored in tanks. As with water, there are containers (canisters, barrels) in which the liquid can be stored and transported.
|
||||
|
||||
It is also possible to connect several tanks using the yellow pipes and connectors. However, the tanks must have the same content and there must always be at least one yellow pipe between the tank, pump and distributor pipe.
|
||||
|
||||
E.g. It is not possible to connect two tanks directly to a distributor pipe.
|
||||
|
||||
The liquid filler is used to transfer liquids from containers to tanks. The plan shows how canisters or barrels with liquids are pushed into a liquid filler via pushers. The container is emptied in the liquid filler and the liquid is led down into the tank.
|
||||
|
||||
The liquid filler can also be placed under a tank to empty the tank.
|
||||
|
||||
[ta3_tank|plan]
|
||||
|
||||
|
||||
### TA3 Tank
|
||||
|
||||
Liquids can be stored in a tank. A tank can be filled or emptied using a pump. To do this, the pump must be connected to the tank via a pipe (yellow pipes).
|
||||
|
||||
A tank can also be filled or emptied manually by clicking on the tank with a full or empty liquid container (barrel, canister). It should be noted that barrels can only be completely filled or emptied. If, for example, there are less than 10 units in the tank, this remainder must be removed with canisters or pumped empty.
|
||||
|
||||
A TA3 tank can hold 1000 units or 100 barrels of liquid.
|
||||
|
||||
[ta3_tank|image]
|
||||
|
||||
|
||||
### TA3 Pump
|
||||
|
||||
The pump can be used to pump liquids from tanks or containers to other tanks or containers. The pump direction (arrow) must be observed for the pump. The yellow lines and connectors also make it possible to arrange several tanks on each side of the pump. However, the tanks must have the same content.
|
||||
|
||||
The TA3 pump pumps 4 units of liquid every two seconds.
|
||||
|
||||
Note 1: The pump must not be placed directly next to the tank. There must always be at least a piece of yellow pipe between them.
|
||||
|
||||
[ta3_pump|image]
|
||||
|
||||
|
||||
### TA Liquid Filler
|
||||
|
||||
The liquid filler is used to transfer liquids between containers and tanks.
|
||||
|
||||
- If the liquid filler is placed under a tank and empty barrels are put into the liquid filler with a pusher or by hand, the contents of the tank are transferred to the barrels and the barrels can be removed from the outlet
|
||||
- If the liquid filler is placed on a tank and if full containers are put into the liquid filler with a pusher or by hand, the content is transferred to the tank and the empty containers can be removed on the exit side
|
||||
|
||||
It should be noted that barrels can only be completely filled or emptied. If, for example, there are less than 10 units in the tank, this remainder must be removed with canisters or pumped empty.
|
||||
|
||||
[ta3_filler|image]
|
||||
|
||||
### TA4 Pipe
|
||||
|
||||
The yellow pipes are used for the transmission of gas and liquids.
|
||||
The maximum pipe length is 100 m.
|
||||
|
||||
[ta3_pipe|image]
|
||||
|
||||
### TA3 Pipe Wall Entry Blocks
|
||||
|
||||
The blocks serve as wall openings for tubes, so that no holes remain open.
|
||||
|
||||
[ta3_pipe_wall_entry|image]
|
||||
|
||||
|
||||
## Oil Production
|
||||
|
||||
In order to run your generators and stoves with oil, you must first look for oil and build a derrick and then extract the oil.
|
||||
TA3 oil explorer, TA3 oil drilling box and TA3 pump jack are used for this.
|
||||
|
||||
[techage_ta3|image]
|
||||
|
||||
|
||||
### TA3 Oil Explorer
|
||||
|
||||
You can search for oil with the oil explorer. To do this, place the block on the floor and right-click to start the search. The oil explorer can be used above ground and underground at all depths.
|
||||
The chat output shows you the depth to which oil was searched and how much oil (petroleum) was found.
|
||||
You can click the block multiple times to search for oil in deeper areas. Oil fields range in size from 4,000 to 20,000 items.
|
||||
|
||||
If the search was unsuccessful, you have to move the block approx. 16 m further.
|
||||
The oil explorer always searches for oil in the whole map block and below, in which it was set. A new search in the same map block (16x16 field) therefore makes no sense.
|
||||
|
||||
If oil is found, the location for the derrick is displayed. You have to erect the derrick within the area shown, it is best to mark the spot with a sign and protect the entire area against foreign players.
|
||||
|
||||
Don't give up looking for oil too quickly. If you're unlucky, it can take a long time to find an oil well.
|
||||
It also makes no sense to search an area that another player has already searched. The chance of finding oil anywhere is the same for all players.
|
||||
|
||||
The oil explorer can always be used to search for oil.
|
||||
|
||||
[ta3_oilexplorer|image]
|
||||
|
||||
|
||||
### TA3 Oil Drill Box
|
||||
|
||||
The oil drill box must be placed in the position indicated by the oil explorer. Drilling for oil elsewhere is pointless.
|
||||
If the button on the oil drilling box is clicked, the derrick is erected above the box. This takes a few seconds.
|
||||
The oil drilling box has 4 sides, at IN the drill pipe has to be delivered via pusher and at OUT the drilling material has to be removed. The oil drilling box must be supplied with power via one of the other two sides.
|
||||
|
||||
The oil drilling box drills to the oil field (1 meter in 16 s) and requires 10 ku of electricity.
|
||||
Once the oil field has been reached, the derrick can be dismantled and the box removed.
|
||||
|
||||
[ta3_drillbox|image]
|
||||
|
||||
|
||||
### TA3 Oil Pumpjack
|
||||
|
||||
The oil pump (pump-jack) must now be placed in the place of the oil drilling box. The oil pump also requires electricity (16 ku) and supplies one unit of oil every 8 s. The oil must be collected in a tank. To do this, the oil pump must be connected to the tank via yellow pipes.
|
||||
Once all the oil has been pumped out, the oil pump can also be removed.
|
||||
|
||||
[ta3_pumpjack|image]
|
||||
|
||||
|
||||
### TA3 Drill Pipe
|
||||
|
||||
The drill pipe is required for drilling. As many drill pipe items are required as the depth specified for the oil field. The drill pipe is useless after drilling, but it also cannot be dismantled and remains in the ground. However, there is a tool to remove the drill pipe blocks (-> Tools -> TA3 drill pipe pliers).
|
||||
|
||||
[ta3_drillbit|image]
|
||||
|
||||
|
||||
### Oil tank
|
||||
|
||||
The oil tank is the large version of the TA3 tank (see liquids -> TA3 tank).
|
||||
|
||||
The large tank can hold 4000 units of oil, but also any other type of liquid.
|
||||
|
||||
[oiltank|image]
|
||||
|
||||
|
||||
|
||||
## Oil Transportation
|
||||
|
||||
Minecarts can be used to transport oil from the oil well to the oil processing plant. Only canisters or barrels can be loaded into the Minecarts. Therefore, the oil must first be transferred to barrels. The oil barrels can be pushed directly into the Minecart with a pusher and tubes (see map). The empty barrels, which come back from the unloading station by Minecart, can be unloaded using a hopper, which is placed under the rail at the stop.
|
||||
|
||||
It is not possible with the hopper to both **unload the empty barrels and load the full barrels at a stop**. The hopper immediately unloads the full barrels. It is therefore advisable to set up 2 stations on the loading and unloading side and then program the Minecart accordingly using a recording run.
|
||||
|
||||
The plan shows how the oil can be pumped into a tank and filled into barrels via a liquid filler and loaded into Minecarts.
|
||||
|
||||
For the Minecarts to start again automatically, the bumper blocks must be configured with the station name and waiting time. 5 s are sufficient for unloading. However, since the pushers always go into standby for several seconds when there is no Minecart, a time of 15 or more seconds must be entered for loading.
|
||||
|
||||
[ta3_loading|plan]
|
||||
|
||||
|
||||
|
||||
|
||||
## Oil Processing
|
||||
|
||||
Oil is a mixture of substances and consists of many components. The oil can be broken down into its main components such as bitumen, heavy oil, naphtha, gasoline and gas via a distillation tower.
|
||||
Further processing to end products takes place in the chemical reactor.
|
||||
|
||||
[techage_ta31|image]
|
||||
|
||||
|
||||
### Distillation Tower
|
||||
|
||||
The distillation tower must be set up as in the plan at the top right.
|
||||
The bitumen is drained off via the base block. The exit is on the back of the base block (note the direction of the arrow).
|
||||
The "distillation tower" blocks with the numbers: 1, 2, 3, 2, 3, 2, 3, 4 are placed on this basic block
|
||||
Heavy oil, naphtha and gasoline are drained from the openings from bottom to top. The gas is caught at the top.
|
||||
All openings on the tower must be connected to tanks.
|
||||
The reboiler must be connected to the "distillation tower 1" block.
|
||||
|
||||
The reboiler needs electricity (not shown in the plan)!
|
||||
|
||||
|
||||
[ta3_distiller|plan]
|
||||
|
||||
#### Reboiler
|
||||
|
||||
The reboiler heats the oil to approx. 400 ° C. It largely evaporates and is fed into the distillation tower for cooling.
|
||||
|
||||
The reboiler requires 12 units of electricity and produces one unit of bitumen, heavy oil, naphtha, gasoline and gas every 6 s.
|
||||
To do this, the reboiler must be supplied with oil via a pump.
|
||||
|
||||
[reboiler|image]
|
||||
|
||||
|
||||
## Logic / Switching Blocks
|
||||
|
||||
In addition to the tubes for goods transport, as well as the gas and power pipes, there is also a wireless communication level through which blocks can exchange data with each other. No lines have to be drawn for this, the connection between transmitter and receiver is only made via the block number. All blocks that can participate in this communication show the block number as info text if you fix the block with the mouse cursor.
|
||||
Which commands a block supports can be read out and displayed with the TechAge Info Tool (wrench).
|
||||
The simplest commands supported by almost all blocks are:
|
||||
|
||||
- `on` - to turn on block / machine / lamp
|
||||
- `off` - to turn off the block / machine / lamp
|
||||
|
||||
With the help of the TA3 Terminal, these commands can be tried out very easily. Suppose a signal lamp is number 123.
|
||||
Then with:
|
||||
|
||||
cmd 123 on
|
||||
|
||||
the lamp can be turned on and with:
|
||||
|
||||
cmd 123 off
|
||||
|
||||
the lamp can be turned off again. These commands must be entered in the input field of the TA3 terminal.
|
||||
|
||||
Commands such as `on` and` off` are sent to the recipient without a response coming back. These commands can therefore be sent to several receivers at the same time, for example with a push button / switch, if several numbers are entered in the input field.
|
||||
|
||||
A command like `state` requests the status of a block. The block then sends its status back. This type of confirmed command can only be sent to one recipient at a time.
|
||||
This command can also be tested with the TA3 terminal on a pusher, for example:
|
||||
|
||||
cmd 123 state
|
||||
|
||||
Possible responses from the pusher are:
|
||||
- `running` -> I'm working
|
||||
- `stopped` -> switched off
|
||||
- `standby` -> nothing to do because source inventory is empty
|
||||
- `blocked` -> can't do anything because target inventory is full
|
||||
|
||||
This status and other information is also output when the wrench is clicked on the block.
|
||||
|
||||
[ta3_logic|image]
|
||||
|
||||
|
||||
### TA3 Button / Switch
|
||||
The button/switch sends `on` / `off` commands to the blocks that have been configured via the numbers.
|
||||
The button/switch can be configured as a button or a switch. If it is configured as a button, the time between the `on` and `off` commands can be set.
|
||||
|
||||
The checkbox "public" can be used to set whether the button can be used by everyone (set) or only by the owner himself (not set).
|
||||
|
||||
Note: With the programmer, block numbers can be easily collected and configured.
|
||||
|
||||
[ta3_button|image]
|
||||
|
||||
|
||||
### TA3 Logic Block
|
||||
|
||||
The TA3 logic block can be programmed so that one or more input signals are linked to one output signal and sent. This block can therefore replace various logic elements such as AND, OR, NOT, XOR etc.
|
||||
Input signals for the logic block are `on` / `off` commands. An `on` is a logical `true`, an `off` corresponds to the `false`.
|
||||
Input signals are referenced by the number, e.g. `n123` for the signal from the transmitter with the number 123.
|
||||
|
||||
** Examples for the IF expression **
|
||||
|
||||
Negate signal (NOT):
|
||||
|
||||
not n123
|
||||
|
||||
Logical AND:
|
||||
|
||||
n123 and n345
|
||||
|
||||
Logical OR:
|
||||
|
||||
n123 or n345
|
||||
|
||||
If the `if` expression is true, the `then` branch is executed, otherwise the `else` branch.
|
||||
With `then` and `else` you can either enter `true`, `false`, or nothing:
|
||||
- `true` will lead to a `on` command
|
||||
- `false` will lead to a `off` command
|
||||
- if nothing is entered, nothing is sent
|
||||
|
||||
The target block or blocks for the output signal must be entered in the target number field.
|
||||
|
||||
[ta3_logic|image]
|
||||
|
||||
|
||||
### TA3 Repeater
|
||||
|
||||
The repeater sends the received signal to all configured numbers.
|
||||
This can make sense, for example, if you want to control many blocks at the same time. The repeater can be configured with the programmer, which is not possible with all blocks.
|
||||
|
||||
[ta3_repeater|image]
|
||||
|
||||
|
||||
### TA3 Sequencer
|
||||
|
||||
The sequencer can send a series of `on` / `off` commands, whereby the interval between the commands must be specified in seconds. You can use it to make a lamp blink, for example.
|
||||
Up to 8 commands can be configured, each with target block number and pending the next command.
|
||||
The sequencer repeats the commands endlessly when "Run endless" is set.
|
||||
If nothing is selected, only the specified time in seconds is waited for.
|
||||
|
||||
[ta3_sequencer|image]
|
||||
|
||||
|
||||
### TA3 Timer
|
||||
|
||||
The timer can send commands time-controlled. The time, the target number(s) and the command itself can be specified for each command line. This means that lamps can be switched on in the evening and switched off again in the morning.
|
||||
|
||||
[ta3_timer|image]
|
||||
|
||||
|
||||
### TA3 Terminal
|
||||
|
||||
The terminal is primarily used to test the command interface of other blocks (see "Logic / switching blocks").
|
||||
You can also assign commands to keys and use the terminal productively.
|
||||
|
||||
set <button-num> <button-text> <command>
|
||||
|
||||
With `set 1 ON cmd 123 on`, for example, user key 1 can be programmed with the command `cmd 123 on`. If the key is pressed, the command is sent and the response is output on the screen.
|
||||
|
||||
The terminal has the following local commands:
|
||||
- `clear` clear screen
|
||||
- `help` output a help page
|
||||
- `pub` switch to public mode
|
||||
- `priv` switch to private mode
|
||||
|
||||
In the private mode, only the owner can enter commands himself or use keys.
|
||||
|
||||
[ta3_terminal|image]
|
||||
|
||||
|
||||
### TechAge Signal Lamp
|
||||
|
||||
The signal lamp can be switched on or off with the `on` / `off` command. This lamp does not need electricity and
|
||||
can be colored with the spray gun.
|
||||
|
||||
[ta3_signallamp|image]
|
||||
|
||||
|
||||
### Door/Gate Blocks
|
||||
|
||||
With these blocks you can realize doors and gates that can be opened via commands (blocks disappear) and closed again. One door controller is required for each gate or door.
|
||||
|
||||
The appearance of the blocks can be adjusted via the block menu.
|
||||
This makes it possible to realize secret doors that only open for certain players (with the help of the player detector).
|
||||
|
||||
[ta3_doorblock|image]
|
||||
|
||||
|
||||
|
||||
### TA3 Door Controller
|
||||
|
||||
The door controller is used to control the TA3 door/gate blocks. With the door controller, the numbers of the door/gate blocks must be entered. If an `on` / `off` command is sent to the door controller, this opens/closes the door or gate.
|
||||
|
||||
[ta3_doorcontroller|image]
|
||||
|
||||
|
||||
|
||||
## Detectors
|
||||
|
||||
Detectors scan their surroundings and send an `on` command when the search is recognized.
|
||||
|
||||
[ta3_nodedetector|image]
|
||||
|
||||
|
||||
### TA3 Detector
|
||||
|
||||
The detector is a special tube block that detects when items are passed on through the tube. To do this, it must be connected to tubes on both sides. If items are pushed into the detector with a pusher, they are automatically passed on.
|
||||
It sends an `on` when an item is recognized, followed by an `off` a second later.
|
||||
Then further commands are blocked for 8 seconds.
|
||||
|
||||
|
||||
[ta3_detector|image]
|
||||
|
||||
|
||||
### TA3 Cart Detector
|
||||
|
||||
The cart detector sends an `on` command if it has recognized a cart (Minecart) directly in front of it. In addition, the detector can also restart the cart when an `on` command is received.
|
||||
|
||||
[ta3_cartdetector|image]
|
||||
|
||||
|
||||
### TA3 Block Detector
|
||||
|
||||
The block detector sends an `on` command if it detects that blocks appear or disappear in front of it, but must be configured accordingly. After switching the detector back to the standard state (gray block), an `off` command is sent. Valid blocks are all types of blocks and plants, but not animals or players. The sensor range is 3 blocks / meter in the direction of the arrow.
|
||||
|
||||
[ta3_nodedetector|image]
|
||||
|
||||
|
||||
### TA3 Player Detector
|
||||
|
||||
The player detector sends an `on` command if it detects a player within 4 m of the block. If the player leaves the area again, an `off` command is sent.
|
||||
If the search should be limited to specific players, these player names can also be entered.
|
||||
|
||||
[ta3_playerdetector|image]
|
||||
|
||||
|
||||
## TA3 Machines
|
||||
|
||||
TA3 has the same machines as TA2, only these are more powerful and require electricity instead of axis drive.
|
||||
Therefore, only the different technical data are given below.
|
||||
|
||||
[ta3_grinder|image]
|
||||
|
||||
|
||||
### TA3 Pusher
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 6 items every 2 s.
|
||||
|
||||
[ta3_pusher|image]
|
||||
|
||||
|
||||
### TA3 Distributor
|
||||
|
||||
The function of the TA3 distributor corresponds to that of TA2 with another operating mode.
|
||||
The processing power is 12 items every 4 s.
|
||||
|
||||
[ta3_distributor|image]
|
||||
|
||||
|
||||
### TA3 Autocrafter
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 2 items every 4 s. The autocrafter requires 6 ku of electricity.
|
||||
|
||||
[ta3_autocrafter|image]
|
||||
|
||||
|
||||
### TA3 Electronic Fab
|
||||
|
||||
The function corresponds to that of TA2, only TA4 WLAN chips are produced here.
|
||||
The processing power is one chip every 6 s. The block requires 12 ku of electricity for this.
|
||||
|
||||
[ta3_electronicfab|image]
|
||||
|
||||
|
||||
### TA3 Quarry
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The maximum depth is 40 meters. The quarry requires 12 ku of electricity.
|
||||
|
||||
[ta3_quarry|image]
|
||||
|
||||
|
||||
### TA3 Gravel Sieve
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 2 items every 4 s. The block requires 4 ku of electricity.
|
||||
|
||||
[ta3_gravelsieve|image]
|
||||
|
||||
|
||||
### TA3 Gravel Rinser
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The probability is also the same as for TA2. The block also requires 3 ku of electricity.
|
||||
But in contrast to TA2, the status of the TA3 block can be read (controller)
|
||||
|
||||
[ta3_gravelrinser|image]
|
||||
|
||||
|
||||
### TA3 Grinder
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 2 items every 4 s. The block requires 6 ku of electricity.
|
||||
|
||||
[ta3_grinder|image]
|
||||
|
||||
|
||||
### TA3 Liquid Sampler
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 2 items every 8 s. The block requires 5 ku of electricity.
|
||||
|
||||
[ta3_liquidsampler|image]
|
||||
|
||||
|
||||
## Tools
|
||||
|
||||
### Techage Info Tool
|
||||
|
||||
The Techage Info Tool (wrench) has several functions. It shows the time, position, temperature and biome when an unknown block is clicked on.
|
||||
If you click on a TechAge block with command interface, all available data will be shown (see also "Logic / switching blocks").
|
||||
In the case of power junction boxes, the neighboring network participants (up to 50 meters away) are displayed with a blue cage.
|
||||
|
||||
[ta3_end_wrench|image]
|
||||
|
||||
|
||||
### TechAge Programmer
|
||||
|
||||
With the programmer, block numbers can be collected from several blocks with a right click and written into a block like a button / switch with a left click.
|
||||
If you click in the air, the internal memory is deleted.
|
||||
|
||||
[ta3_programmer|image]
|
||||
|
||||
|
||||
|
||||
### TechAge Trowel / Trowel
|
||||
|
||||
The trowel is used for plastering power cables. See also "TA power cable".
|
||||
|
||||
[ta3_trowel|image]
|
||||
|
||||
|
||||
### TA3 drill pipe wrench
|
||||
|
||||
This tool can be used to remove the drill pipe blocks if, for example, a tunnel is to pass through there.
|
||||
|
||||
[ta3_drill_pipe_wrench|image]
|
@ -62,7 +62,7 @@ Die Biome Temperatur kann mit dem Techage Info Tool (Schraubenschlüssel) bestim
|
||||
|
||||
Es empfiehlt sich daher, nach heißen Steppen und Wüsten für die Solaranlage Ausschau zu halten.
|
||||
Für den Stromtransport stehen die Überlandleitungen zur Verfügung.
|
||||
Es kann aber auch Wasserstoff produziert werden, welcher sich transportieren und am Ziel wieder zu Strom umwandeln lässt (geplant).
|
||||
Es kann aber auch Wasserstoff produziert werden, welcher sich transportieren und am Ziel wieder zu Strom umwandeln lässt.
|
||||
|
||||
Die kleinste Einheit bei einer Solaranlage sind zwei Solarmodule und ein Trägermodul. Das Trägermodul muss zuerst gesetzt werden, die zwei Solarmodule dann links und rechts daneben (nicht darüber!).
|
||||
|
||||
@ -134,7 +134,7 @@ Der Energiespeicher besteht aus einer Betonhülle (Concrete Block) gefüllt mit
|
||||
- Hülle mit 7x7x7 Concrete Blocks, gefüllt mit 125 Gravel, Speicherkapazität: 2,5 Tage bei 60 ku
|
||||
- Hülle mit 9x9x9 Concrete Blocks, gefüllt mit 343 Gravel, Speicherkapazität: 6,5 Tage bei 60 ku
|
||||
|
||||
In der Betonhülle darf ein Fenster aus einem Obsidian Glas Block sein. Dieses muss ziemlich in der Mitte der Wand platziert werden. Durch dieses Fenster sieht man, ob der Speicher zu mehr aus 80 % geladen ist. Im Plan rechts sieht man den Aufbau aus TA4 Wärmetauscher bestehend aus 3 Blöcken, der TA4 Turbine und dem TA4 Generator. Beim Wärmetauscher ist auf die Ausrichtung achten (der Pfeil bei Block 1 muss zur Turbine zeigen).
|
||||
In der Betonhülle darf ein Fenster aus einem Obsidian Glas Block sein. Dieses muss ziemlich in der Mitte der Wand platziert werden. Durch dieses Fenster sieht man, ob der Speicher mehr als 80 % geladen ist. Im Plan rechts sieht man den Aufbau aus TA4 Wärmetauscher bestehend aus 3 Blöcken, der TA4 Turbine und dem TA4 Generator. Beim Wärmetauscher ist auf die Ausrichtung achten (der Pfeil bei Block 1 muss zur Turbine zeigen).
|
||||
|
||||
Entgegen dem Plan rechts müssen die Anschlüsse am Speicherblock auf gleicher Ebene sein (horizontal angeordnet, also nicht unten und oben). Die Rohrzuläufe (TA4 Pipe Inlet) müssen genau in der Mitte der Wand sein und stehen sich damit gegenüber. Als Röhren kommen die gelbel TA4 Röhren zum Einsatz. Die TA3 Dampfrohre können hier nicht verwendet werden.
|
||||
Sowohl der Generator als auch der Wärmetauscher haben einen Stromanschluss und müssen mit dem Stromnetz verbunden werden.
|
||||
@ -502,9 +502,9 @@ Die Verarbeitungsleistung beträgt 12 Items alle 2 s.
|
||||
Der TA4 Schieber besitzt zwei zusätzliche Kommandos für den Lua Controller:
|
||||
|
||||
- `config` dient zur Konfiguration des Schiebers, analog zum manuellen Konfiguration über das Menü.
|
||||
Beispiel: `$send_cmnd(PUSHER, "config", "default:dirt")`
|
||||
Beispiel: `$send_cmnd(1234, "config", "default:dirt")`
|
||||
- `pull` dient zum Absetzen eines Auftrags an den Schieber:
|
||||
Beispiel: `$send_cmnd(PUSHER, "pull", "default:dirt 8")`
|
||||
Beispiel: `$send_cmnd(1234, "pull", "default:dirt 8")`
|
||||
Als Nummer sind Werte von 1 bis 12 zulässig. Danach geht der Schieber wieder in den `stopped` Mode und sendet ein "off" Kommando zurück an den Sender des "pull" Kommandos.
|
||||
|
||||
[ta4_pusher|image]
|
||||
|
596
manuals/manual_ta4_EN.md
Normal file
596
manuals/manual_ta4_EN.md
Normal file
@ -0,0 +1,596 @@
|
||||
# TA4: Future
|
||||
|
||||
Renewable energy sources such as wind, sun and biofuels help you to leave the oil age. With modern technologies and intelligent machines you set out into the future.
|
||||
|
||||
[techage_ta4|image]
|
||||
|
||||
|
||||
## Wind Turbine
|
||||
|
||||
A wind turbine always delivers electricity when there is wind. There is no wind in the game, but the mod simulates this by only turning the wind turbines in the morning (5:00 a.m. - 9:00 a.m.) and in the evening (5:00 p.m. - 9:00 p.m.) and thus supplying electricity, provided they are positioned appropriately.
|
||||
|
||||
The TA wind turbines are pure offshore plants, which means that they have to be installed in the sea (water). This means that there must be in the minimum 20 blocks of water around the mast and at least 2 blocks deep.
|
||||
The rotor must be placed at a height (Y coordinate) of 12 to a maximum of 20 m. The distance to other wind turbines must be at least 14 m.
|
||||
|
||||
The current must be led from the rotor block down through the mast. First pull the power line up and then "plaster" the power cable with TA4 pillar blocks. A work platform can be built below. The plan on the right shows the structure in the upper part.
|
||||
|
||||
The wind turbine delivers 70 ku, but only 8 hours a day (see above).
|
||||
|
||||
[ta4_windturbine|plan]
|
||||
|
||||
|
||||
### TA4 Wind Turbine
|
||||
|
||||
The wind turbine block (rotor) is the heart of the wind turbine. This block must be placed on top of the mast. Ideally at Y = 15, then you just stay within a map / forceload block.
|
||||
If all conditions are met, the rotor blades appear automatically when this block is set. Otherwise you will see an error message.
|
||||
|
||||
[ta4_windturbine|image]
|
||||
|
||||
|
||||
### TA4 Wind Turbine Nacelle
|
||||
|
||||
This block must be placed on the black end of the wind turbine block.
|
||||
|
||||
[ta4_nacelle|image]
|
||||
|
||||
|
||||
### TA4 Wind Turbine Signal Lamp
|
||||
|
||||
This flashing light is only for decorative purposes and can be placed on top of the wind turbine block.
|
||||
|
||||
[ta4_blinklamp|image]
|
||||
|
||||
|
||||
### TA4 Pillar
|
||||
|
||||
This builds the mast for the wind turbine. However, these blocks are not set by hand but must be set with the help of a trowel, so that the power line to the mast tip is replaced with these blocks (see under TA power cable).
|
||||
|
||||
[ta4_pillar|image]
|
||||
|
||||
|
||||
## Solar System
|
||||
|
||||
The solar system only produces electricity when the sun is shining. In the game this is every game day from 6:00 am to 6:00 pm.
|
||||
The same power is always available during this time. After 6:00 p.m., the solar modules switch off completely.
|
||||
|
||||
The biome temperature is decisive for the performance of the solar modules. The hotter the temperature, the higher the yield.
|
||||
The biome temperature can be determined with the Techage Info Tool (wrench). It typically fluctuates between 0 and 100:
|
||||
|
||||
- full power is available at 100
|
||||
- at 50, half the power is available
|
||||
- at 0 there is no service available
|
||||
|
||||
It is therefore advisable to look for hot steppes and deserts for the solar system.
|
||||
The overhead lines are available for the transport of electricity.
|
||||
However, hydrogen can also be produced, which can be transported and converted back into electricity at the destination.
|
||||
|
||||
The smallest unit in a solar system is two solar modules and one carrier module. The carrier module must be placed first, the two solar modules to the left and right next to it (not above!).
|
||||
|
||||
The plan on the right shows 3 units, each with two solar modules and one carrier module, connected to the inverter via red cables.
|
||||
|
||||
Solar modules supply DC voltage, which cannot be fed directly into the power grid. Therefore, the solar units must first be connected to the inverter via the red cable. This consists of two blocks, one for the red cable to the solar modules (DC) and one for the gray power cable to the power grid (AC).
|
||||
|
||||
The map area where the solar system is located must be fully loaded. This also applies to the direct position above the solar module, because the light intensity is regularly measured there. It is therefore advisable to first set a forceload block and then to place the modules within this area.
|
||||
|
||||
[ta4_solarplant|plan]
|
||||
|
||||
|
||||
### TA4 Solar Module
|
||||
|
||||
The solar module must be placed on the carrier module. Two solar modules are always required.
|
||||
In a pair, the solar modules perform up to 3 ku, depending on the temperature.
|
||||
With the solar modules, care must be taken that they have full daylight and are not shaded by blocks or trees. This can be tested with the Info Tool (wrench).
|
||||
|
||||
[ta4_solarmodule|image]
|
||||
|
||||
|
||||
### TA4 Solar Carrier Module
|
||||
|
||||
The carrier module is available in two heights (1m and 2m). Both are functionally identical.
|
||||
The carrier modules can be placed directly next to one another and thus connected to form a row of modules. The connection to the inverter or to other module series must be made with the red low-voltage cables or the low-voltage junction boxes.
|
||||
|
||||
[ta4_solarcarrier|image]
|
||||
|
||||
|
||||
### TA4 Solar Inverter
|
||||
|
||||
The inverter converts the solar power (DC) into alternating current (AC) so that it can be fed into the power grid.
|
||||
An inverter can feed a maximum of 100 ku of electricity, which corresponds to 33 solar modules or more.
|
||||
|
||||
[ta4_solar_inverter|image]
|
||||
|
||||
|
||||
### TA4 Low Power Cable
|
||||
|
||||
The low voltage cable is used to connect rows of solar modules to the inverter. The cable must not be used for other purposes.
|
||||
|
||||
The maximum cable length is 200 m.
|
||||
|
||||
[ta4_powercable|image]
|
||||
|
||||
|
||||
### TA4 Low Voltage Junction Box
|
||||
|
||||
The junction box must be placed on the floor. It has only 4 connections (in the 4 directions).
|
||||
|
||||
[ta4_powerbox|image]
|
||||
|
||||
|
||||
### TA4 Street Lamp Solar Cell
|
||||
|
||||
As the name suggests, the street lamp solar cell is used to power a street lamp. A solar cell can supply two lamps (1 ku). The solar cell stores the sun's energy during the day and delivers the electricity to the lamp at night. That means the lamp only glows in the dark.
|
||||
|
||||
This solar cell cannot be combined with the other solar modules.
|
||||
|
||||
[ta4_minicell|image]
|
||||
|
||||
|
||||
|
||||
## Thermal Energy Storage
|
||||
|
||||
The thermal energy store consists of a concrete shell (concrete blocks) filled with gravel. Three sizes of the storage are possible:
|
||||
|
||||
- Cover with 5x5x5 concrete blocks, filled with 27 gravel, storage capacity: 1/2 day at 60 ku
|
||||
- Cover with 7x7x7 concrete blocks, filled with 125 gravel, storage capacity: 2.5 days at 60 ku
|
||||
- Cover with 9x9x9 concrete blocks, filled with 343 gravel, storage capacity: 6.5 days at 60 ku
|
||||
|
||||
A window made of an obsidian glass block may be in the concrete shell. This must be placed fairly in the middle of the wall. Through this window you can see whether the storage is loaded more than 80%. In the plan on the right you can see the structure of TA4 heat exchanger consisting of 3 blocks, the TA4 turbine and the TA4 generator. Pay attention to the alignment of the heat exchanger (the arrow at block 1 must point to the turbine).
|
||||
|
||||
Contrary to the plan on the right, the connections on the storage block must be on the same level (arranged horizontally, i.e. not below and above). The pipe inlets (TA4 Pipe Inlet) must be exactly in the middle of the wall and face each other. The yellow TA4 pipes are used as steam pipes. The TA3 steam pipes cannot be used here.
|
||||
Both the generator and the heat exchanger have a power connection and must be connected to the power grid.
|
||||
|
||||
In principle, the heat storage system works exactly the same as the batteries, only with much more storage capacity.
|
||||
The heat accumulator can hold and deliver 60 ku.
|
||||
|
||||
In order for the heat storage system to work, all blocks (except the concrete shell and gravel) must be loaded using a forceload block.
|
||||
|
||||
[ta4_storagesystem|plan]
|
||||
|
||||
|
||||
### TA4 Heat Exchanger
|
||||
|
||||
The heat exchanger consists of 3 parts that must be placed on top of each other, with the arrow of the first block pointing towards the turbine. The pipes must be built with the yellow TA4 pipes.
|
||||
The heat exchanger must be connected to the power grid. The heat exchanger can consume 60 ku.
|
||||
|
||||
[ta4_heatexchanger|image]
|
||||
|
||||
|
||||
### TA4 Turbine
|
||||
|
||||
The turbine is part of the energy storage. It must be placed next to the generator and connected to the heat exchanger via TA4 tubes as shown in the plan.
|
||||
|
||||
[ta4_turbine|image]
|
||||
|
||||
|
||||
### TA4 Generator
|
||||
|
||||
The generator is used to generate electricity. Therefore, the generator must also be connected to the power grid.
|
||||
|
||||
The generator can deliver 60 ku.
|
||||
|
||||
[ta4_generator|image]
|
||||
|
||||
|
||||
### TA4 Pipe Inlet
|
||||
|
||||
One pipe inlet block each must be installed on both sides of the storage block. The blocks must face each other exactly.
|
||||
|
||||
The pipe inlet blocks **cannot** be used as normal wall openings, use the TA3 pipe wall entry blocks instead.
|
||||
|
||||
[ta4_pipeinlet|image]
|
||||
|
||||
|
||||
### TA4 Pipe
|
||||
|
||||
With TA4, the yellow pipes are used for the transmission of gas and liquids.
|
||||
The maximum cable length is 100 m.
|
||||
|
||||
[ta4_pipe|image]
|
||||
|
||||
## Hydrogen
|
||||
|
||||
Electrolysis can be used to split electricity into hydrogen and oxygen. On the other hand, hydrogen can be converted back into electricity with oxygen from the air using a fuel cell.
|
||||
This enables current peaks or an excess supply of electricity to be converted into hydrogen and thus stored.
|
||||
|
||||
In the game, electricity can be converted back into electricity via the fuel cell using the electrolyzer in hydrogen and hydrogen.
|
||||
This means that electricity (in the form of hydrogen) can not only be stored in tanks, but can also be transported with carts using gas cylinders.
|
||||
|
||||
However, the conversion of electricity into hydrogen and back is lossy. Out of 100 units of electricity, only 83 units of electricity come out after the conversion to hydrogen and back.
|
||||
|
||||
[ta4_hydrogen|image]
|
||||
|
||||
|
||||
### Electrolyzer
|
||||
|
||||
The electrolyzer converts electricity into hydrogen.
|
||||
It must be powered from the left. On the right, hydrogen can be extracted via pipes and pumps.
|
||||
|
||||
The electrolyzer can draw up to 30 ku of electricity and then generates a hydrogen item every 4 s.
|
||||
200 units of hydrogen fit into the electrolyzer.
|
||||
|
||||
[ta4_electrolyzer|image]
|
||||
|
||||
|
||||
### Fuel VCell
|
||||
|
||||
The fuel cell converts hydrogen into electricity.
|
||||
It must be supplied with hydrogen from the left by a pump. The power connection is on the right.
|
||||
|
||||
The fuel cell can deliver up to 25 ku of electricity and needs a hydrogen item every 4 s.
|
||||
|
||||
[ta4_fuelcell|image]
|
||||
|
||||
|
||||
## Chemical Reactor
|
||||
|
||||
The reactor is used to process the ingredients obtained from the distillation tower or from other recipes into new products. A reactor consists of:
|
||||
- Various tanks and silos with the ingredients that are connected to the doser via pipes
|
||||
- optionally a reactor base, which discharges the waste from the reactor (only necessary for recipes with two starting materials)
|
||||
- the reactor stand, which must be placed on the base (if available). The stand has a power connection and draws 8 ku during operation.
|
||||
- The reactor vessel that has to be placed on the reactor stand
|
||||
- The filler pipe that must be placed on the reactor vessel
|
||||
- The dosing device, which has to be connected to the tanks or silos and the filler pipe via pipes
|
||||
|
||||
Note 1: Liquids are only stored in tanks, substances in powder form only in silos. This applies to ingredients and raw materials.
|
||||
|
||||
Note 2: Tanks or silos with different contents must not be connected to a pipe system. In contrast, several tanks or silos with the same content may hang in parallel on one line.
|
||||
|
||||
|
||||
[ta4_reactor|plan]
|
||||
|
||||
|
||||
### TA4 Doser
|
||||
|
||||
Part of the chemical reactor.
|
||||
Pipes for input materials can be connected on all 4 sides of the doser. The materials for the reactor are discharged upwards.
|
||||
|
||||
The recipe can be set and the reactor started via the doser.
|
||||
|
||||
As with other machines:
|
||||
- if the doser is in standby mode, one or more ingredients are missing
|
||||
- if thedoser is in the blocked state, the outlet tank or silo is full, defective or incorrectly connected
|
||||
|
||||
The doser does not need any electricity. A recipe is processed every 10 s.
|
||||
|
||||
[ta4_doser|image]
|
||||
|
||||
### TA4 Reactor
|
||||
|
||||
Part of the chemical reactor.
|
||||
|
||||
[ta4_reactor|image]
|
||||
|
||||
|
||||
### TA4 Filler Pipe
|
||||
|
||||
Part of the chemical reactor. Must be placed on the reactor. If this does not work, remove the pipe at the position above and place it again.
|
||||
|
||||
[ta4_fillerpipe|image]
|
||||
|
||||
|
||||
### TA4 Reactor Stand
|
||||
|
||||
Part of the chemical reactor. Here is also the power connection for the reactor. The reactor requires 8 ku of electricity.
|
||||
|
||||
The stand has two pipe connections, to the right for the starting product and down for the waste, such as red mud in aluminum production.
|
||||
|
||||
[ta4_reactorstand|image]
|
||||
|
||||
|
||||
### TA4 Reactor Base
|
||||
|
||||
Part of the chemical reactor. Is required for the drainage of the waste product.
|
||||
|
||||
[ta4_reactorbase|image]
|
||||
|
||||
|
||||
### TA4 Silo
|
||||
|
||||
Part of the chemical reactor. Is required to store substances in powder or granule form.
|
||||
|
||||
[ta4_silo|image]
|
||||
|
||||
|
||||
|
||||
|
||||
## ICTA Controller
|
||||
|
||||
The ICTA controller (ICTA stands for "If Condition Then Action") is used to monitor and control machines. The controller can be used to read in data from machines and other blocks and, depending on this, switch other machines and blocks on / off.
|
||||
|
||||
Machine data is read in and blocks and machines are controlled using commands. Chapter TA3 -> Logic / switching blocks is important for understanding how commands work.
|
||||
|
||||
The controller requires a battery to operate. The display is used to output data, the signal tower to display errors.
|
||||
|
||||
[ta4_icta_controller|image]
|
||||
|
||||
|
||||
|
||||
### TA4 ICTA controller
|
||||
|
||||
The controller works on the basis of `IF <condition> THEN <action>` rules. Up to 8 rules can be created per controller.
|
||||
|
||||
Examples of rules are:
|
||||
|
||||
- If a distributor is `blocked`, the pusher in front of it should be switched off
|
||||
- If a machine shows an error, this should be shown on the display
|
||||
|
||||
The controller checks these rules cyclically. To do this, a cycle time in seconds (`` Cycle / s '') must be specified for each rule (1..1000).
|
||||
|
||||
For rules that evaluate an on / off input, e.g. from a switch or detector, cycle time 0 must be specified. The value 0 means that this rule should always be carried out when the input signal has changed, e.g. the button has sent a new value.
|
||||
|
||||
All rules should only be executed as often as necessary. This has two advantages:
|
||||
|
||||
- the battery of the controller lasts longer (each controller needs a battery)
|
||||
- the load for the server is lower (therefore fewer lags)
|
||||
|
||||
You have to set a delay time (`after/s`) for each action. If the action is to be carried out immediately, 0 must be entered.
|
||||
|
||||
The controller has its own help and information on all commands via the controller menu.
|
||||
|
||||
[ta4_icta_controller|image]
|
||||
|
||||
### Battery
|
||||
|
||||
The battery must be placed in close proximity to the controller, i.e. in one of the 26 positions around the controller.
|
||||
|
||||
[ta4_battery|image]
|
||||
|
||||
### TA4 Display
|
||||
|
||||
The display shows its number after placement. The display can be addressed via this number. Texts can be output on the display, whereby the display can display 5 lines and thus 5 different texts.
|
||||
|
||||
The display is updated at most once per second.
|
||||
|
||||
[ta4_display|image]
|
||||
|
||||
### TA4 Display XL
|
||||
|
||||
The TA4 Display XL is twice the size of the TA4 display.
|
||||
|
||||
The display is updated every two seconds at most.
|
||||
|
||||
[ta4_displayXL|image]
|
||||
|
||||
|
||||
### TA4 Signal Tower
|
||||
|
||||
The signal tower can display red, green and orange. A combination of the 3 colors is not possible.
|
||||
|
||||
[ta4_signaltower|image]
|
||||
|
||||
|
||||
|
||||
## TA4 Lua Controller
|
||||
|
||||
As the name suggests, the Lua controller must be programmed in the Lua programming language. You should also be able to speak some English. The manual in English is here available:
|
||||
|
||||
https://github.com/joe7575/techage/blob/master/manuals/ta4_lua_controller_EN.md
|
||||
|
||||
The Lua controller also requires a battery. The battery must be placed in close proximity to the controller, i.e. in one of the 26 positions around the controller.
|
||||
|
||||
[ta4_lua_controller|image]
|
||||
|
||||
### TA4 Lua Server
|
||||
|
||||
The server is used for the central storage of data from several Lua controllers. It also saves the data after a server restart.
|
||||
|
||||
[ta4_lua_server|image]
|
||||
|
||||
### TA4 Sensor Box / Chest
|
||||
|
||||
The TA4 sensor box is used to set up automatic warehouses or vending machines. It has additional commands for remote control.
|
||||
|
||||
[ta4_sensor_chest|image]
|
||||
|
||||
### TA4 Lua Controller Terminal
|
||||
|
||||
The terminal is used for input / output for the Lua controller.
|
||||
|
||||
[ta4_terminal|image]
|
||||
|
||||
|
||||
|
||||
## TA4 Logic/Switching Modules
|
||||
|
||||
### TA4 Button/Switch
|
||||
|
||||
Only the appearance of the TA4 button/switch has changed. The functionality is the same as with the TA3 button/switch.
|
||||
|
||||
[ta4_button|image]
|
||||
|
||||
### TA4 Player Detector
|
||||
|
||||
Only the appearance of the TA4 player detector has changed. The functionality is the same as with the TA3 player detector.
|
||||
|
||||
[ta4_playerdetector|image]
|
||||
|
||||
### TA4 State Collector
|
||||
|
||||
[ta4_collector|image]
|
||||
|
||||
The status collector queries all configured machines in turn for the status. If one of the machines has reached or exceeded a preconfigured status, an "on" command is sent. For example, many machines can be easily monitored for faults from a Lua controller.
|
||||
|
||||
### TA4 Detector
|
||||
|
||||
The functionality is the same as for the TA3 detector. In addition, the detector counts the items passed on.
|
||||
This counter can be queried with the 'count' command and reset with 'reset'.
|
||||
|
||||
[ta4_detector|image]
|
||||
|
||||
|
||||
## TA4 Lamps
|
||||
|
||||
TA4 contains a series of powerful lamps that enable better illumination or take on special tasks.
|
||||
|
||||
### TA4 LED Grow Light
|
||||
|
||||
The TA4 LED grow light enables fast and vigorous growth of all plants from the `farming` mod. The lamp illuminates a 3x3 field, so that plants can also be grown underground.
|
||||
The lamp must be placed one block above the ground in the middle of the 3x3 field.
|
||||
|
||||
The lamp can also be used to grow flowers. If the lamp is placed over a 3x3 flower bed made of "Garden Soil" (Mod `compost`), the flowers grow there automatically (above and below ground).
|
||||
|
||||
You can harvest the flowers with the Signs Bot, which also has a corresponding sign that must be placed in front of the flower field.
|
||||
|
||||
The lamp requires 1 ku of electricity.
|
||||
|
||||
[ta4_growlight|image]
|
||||
|
||||
### TA4 Street Lamp
|
||||
|
||||
The TA4 LED street lamp is a lamp with particularly strong illumination. The lamp consists of the lamp housing, lamp arm and lamp pole blocks.
|
||||
|
||||
The current must be led from below through the mast up to the lamp housing. First pull the power line up and then "plaster" the power cable with lamp pole blocks.
|
||||
|
||||
The lamp requires 1 ku of electricity.
|
||||
|
||||
[ta4_streetlamp|image]
|
||||
|
||||
### TA4 LED Industrial Lamp
|
||||
|
||||
The TA4 LED industrial lamp is a lamp with particularly strong illumination. The lamp must be powered from above.
|
||||
|
||||
The lamp requires 1 ku of electricity.
|
||||
|
||||
[ta4_industriallamp|image]
|
||||
|
||||
|
||||
|
||||
|
||||
## More TA4 Blocks
|
||||
|
||||
### TA4 Tank
|
||||
|
||||
See TA3 tank.
|
||||
|
||||
A TA4 tank can hold 2000 units or 200 barrels of liquid.
|
||||
|
||||
[ta4_tank|image]
|
||||
|
||||
### TA4 Pump
|
||||
|
||||
See TA3 pump.
|
||||
|
||||
The TA4 pump pumps 8 units of liquid every two seconds.
|
||||
|
||||
[ta4_pump|image]
|
||||
|
||||
### TA4 Furnace Heater
|
||||
|
||||
With TA4, the industrial furnace also has its electrical heating. The oil burner and the blower can be replaced with the heater.
|
||||
|
||||
The heater requires 14 ku of electricity.
|
||||
|
||||
[ta4_furnaceheater|image]
|
||||
|
||||
### TA4 water Pump
|
||||
|
||||
With the water pump, water can be pumped through liquid lines in tanks and thus used for recipes. The water pump has to be placed in the sea. A "pool" consisting of a few blocks of water is not possible!
|
||||
|
||||
[ta4_waterpump|image]
|
||||
|
||||
### TA4 Tube
|
||||
|
||||
TA4 also has its own tubes in the TA4 design. These correspond to the standard tubes, only look better. ;-)
|
||||
|
||||
[ta4_tube|image]
|
||||
|
||||
### TA4 Pusher
|
||||
|
||||
The function basically corresponds to that of TA2 / TA3. In addition, a menu can be used to configure which objects should be taken from a TA4 chest and transported further.
|
||||
The processing power is 12 items every 2 s.
|
||||
|
||||
The TA4 pusher has two additional commands for the Lua controller:
|
||||
|
||||
- `config` is used to configure the pusher, analogous to manual configuration via the menu.
|
||||
Example: `$ send_cmnd(1234, "config", "default: dirt")`
|
||||
- `pull` is used to send an order to the pusher:
|
||||
Example: `$ send_cmnd(1234, "pull", "default: dirt 8")`
|
||||
Values from 1 to 12 are permitted as numbers. Then the pusher goes back to `stopped` mode and sends an" off "command back to the transmitter of the" pull "command.
|
||||
|
||||
[ta4_pusher|image]
|
||||
|
||||
### TA4 Chest
|
||||
|
||||
The function corresponds to that of TA3. The chest can hold more content.
|
||||
|
||||
In addition, the TA4 chest has a shadow inventory for configuration. Here certain stack locations can be pre-assigned with an item. Pre-assigned inventory stacks are only filled with these items when filling. A TA4 pusher or TA4 injector with the appropriate configuration is required to empty a pre-assigned inventory stacks.
|
||||
|
||||
[ta4_chest|image]
|
||||
|
||||
### TA4 8x2000 Chest
|
||||
|
||||
The TA4 8x2000 chest does not have a normal inventory like other chest, but has 8 stores, whereby each store can hold up to 2000 items of one sort. The orange buttons can be used to move items to or from the store. The box can also be filled or emptied with a pusher (TA2, TA3 or TA4) as usual.
|
||||
|
||||
If the chest is filled with a pusher, all stores fill from left to right. If all 8 stores are full and no further items can be added, further items are rejected.
|
||||
|
||||
** Row function **
|
||||
|
||||
Several TA4 8x2000 chests can be connected to a large chest with more content. To do this, the chests must be placed in a row one after the other.
|
||||
|
||||
First the front chest must be placed, then the stacking chests are placed behind with the same direction of view (all boxes have the front towards the player). With 2 chests in a row, the size increases to 8x4000, etc.
|
||||
|
||||
The rows of chests can no longer be removed. There are two ways to dismantle the chests:
|
||||
|
||||
- Empty and remove the front chest. This unlocks the next chest and can be removed.
|
||||
- Empty the front chest so far that all stores contain a maximum of 2000 items. This unlocks the next chest and can be removed.
|
||||
|
||||
The chests have an "order" checkbox. If this checkbox is activated, the stores are no longer completely emptied by a pusher. The last item remains in the store as a default. This results in a fixed assignment of items to storage locations.
|
||||
|
||||
The chest can only be used by players who can build at this location, i.e. who have protection rights. It does not matter who sets the chest.
|
||||
|
||||
The chest has an additional command for the Lua controller:
|
||||
|
||||
- `count` is used to request how many items are in the chest.
|
||||
Example 1: `$ read_data(CHEST, "count")` -> Sum of items across all 8 stores
|
||||
Example 2: `$ read_data(CHEST, "count", 2)` -> number of items in store 2 (second from left)
|
||||
|
||||
[ta4_8x2000_chest|image]
|
||||
|
||||
|
||||
|
||||
### TA4 Distributor
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 24 items every 4 s.
|
||||
|
||||
[ta4_distributor|image]
|
||||
|
||||
### TA4 Gravel Sieve
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 4 items every 4 s. The block requires 5 ku of electricity.
|
||||
|
||||
[ta4_gravelsieve|image]
|
||||
|
||||
### TA4 Grinder
|
||||
|
||||
The function corresponds to that of TA2.
|
||||
The processing power is 4 items every 4 s. The block requires 9 ku of electricity.
|
||||
|
||||
[ta4_grinder|image]
|
||||
|
||||
### TA4 Quarry
|
||||
|
||||
The function largely corresponds to that of TA2.
|
||||
|
||||
In addition, the hole size can be set between 3x3 and 11x11 blocks.
|
||||
The maximum depth is 80 meters. The quarry requires 14 ku of electricity.
|
||||
|
||||
[ta4_quarry|image]
|
||||
|
||||
### TA4 Electronic Fab
|
||||
|
||||
The function corresponds to that of TA2, only different chips are produced here.
|
||||
The processing power is one chip every 6 s. The block requires 12 ku of electricity for this.
|
||||
|
||||
[ta4_electronicfab|image]
|
||||
|
||||
### TA4 Injector
|
||||
|
||||
The injector is a TA4 pusher with special properties. It has a menu for configuration. Up to 8 items can be configured here. He only takes these items from a chest (TA4 chest or TA4 8x2000 chest) to pass them on to machines with recipes (autocrafter, industrial furnace and electronic fab).
|
||||
|
||||
When passing on, only one position in the inventory is used in the target machine. If, for example, only the first three entries are configured in the injector, only the first three storage locations in the machine's inventory are used. So that an overflow in the machine inventory is prevented.
|
||||
|
||||
The processing power is up to 8 items every 3 seconds.
|
||||
|
||||
[ta4_injector|image]
|
@ -239,6 +239,7 @@ def gen_file_local_toc(dest_name, level_range=[1,6]):
|
||||
lOut.append("%s [%s](%s)" % (list_item, item["header"].replace("\\", ""), link))
|
||||
file(dest_name, "w").write("\n".join(lOut))
|
||||
|
||||
########################### German #########################
|
||||
mod = "techage"
|
||||
manual = "manual_DE"
|
||||
parse_md_file("./manual_DE.md", mod, manual)
|
||||
@ -249,6 +250,21 @@ parse_md_file("./manual_ta4_DE.md", mod, manual)
|
||||
gen_lua_file("../doc/manual_DE.lua")
|
||||
gen_toc_md_file("./toc_DE.md", "Inhaltsverzeichnis")
|
||||
|
||||
########################### English #########################
|
||||
reset()
|
||||
mod = "techage"
|
||||
manual = "manual_EN"
|
||||
parse_md_file("./manual_EN.md", mod, manual)
|
||||
parse_md_file("./manual_ta1_EN.md", mod, manual)
|
||||
parse_md_file("./manual_ta2_EN.md", mod, manual)
|
||||
parse_md_file("./manual_ta3_EN.md", mod, manual)
|
||||
parse_md_file("./manual_ta4_EN.md", mod, manual)
|
||||
gen_lua_file("../doc/manual_EN.lua")
|
||||
gen_toc_md_file("./toc_EN.md", "Table of Contents")
|
||||
|
||||
########################### Lua Manual #########################
|
||||
reset()
|
||||
parse_md_file("./ta4_lua_controller_EN.md", mod, manual)
|
||||
gen_file_local_toc("toc.txt", level_range=[2,4])
|
||||
|
||||
|
||||
|
178
manuals/toc_EN.md
Normal file
178
manuals/toc_EN.md
Normal file
@ -0,0 +1,178 @@
|
||||
# Table of Contents
|
||||
|
||||
- [Tech Age Mod](./manual_EN.md#tech-age-mod)
|
||||
- [Hints](./manual_EN.md#hints)
|
||||
- [Ores and Minerals](./manual_EN.md#ores-and-minerals)
|
||||
- [Meridium](./manual_EN.md#meridium)
|
||||
- [Usmium](./manual_EN.md#usmium)
|
||||
- [Baborium](./manual_EN.md#baborium)
|
||||
- [Petroleum](./manual_EN.md#petroleum)
|
||||
- [Bauxite](./manual_EN.md#bauxite)
|
||||
- [History](./manual_EN.md#history)
|
||||
- [TA1: Iron Age](./manual_ta1_EN.md#ta1:-iron-age)
|
||||
- [Coal Pile](./manual_ta1_EN.md#coal-pile)
|
||||
- [Coal Burner](./manual_ta1_EN.md#coal-burner)
|
||||
- [Ores and Tools](./manual_ta1_EN.md#ores-and-tools)
|
||||
- [Hammer](./manual_ta1_EN.md#hammer)
|
||||
- [Gravel Sieve](./manual_ta1_EN.md#gravel-sieve)
|
||||
- [Hopper](./manual_ta1_EN.md#hopper)
|
||||
- [Gravel seven with the hopper](./manual_ta1_EN.md#gravel-seven-with-the-hopper)
|
||||
- [Meridium](./manual_ta1_EN.md#meridium)
|
||||
- [TA2: Steam Age](./manual_ta2_EN.md#ta2:-steam-age)
|
||||
- [Steam Engine](./manual_ta2_EN.md#steam-engine)
|
||||
- [TA2 Firebox](./manual_ta2_EN.md#ta2-firebox)
|
||||
- [TA2 Boiler](./manual_ta2_EN.md#ta2-boiler)
|
||||
- [TA2 Cylinder](./manual_ta2_EN.md#ta2-cylinder)
|
||||
- [TA2 Flywheel](./manual_ta2_EN.md#ta2-flywheel)
|
||||
- [TA2 Steam Pipes](./manual_ta2_EN.md#ta2-steam-pipes)
|
||||
- [Push and sort items](./manual_ta2_EN.md#push-and-sort-items)
|
||||
- [TechAge Tube](./manual_ta2_EN.md#techage-tube)
|
||||
- [TA2 Pusher](./manual_ta2_EN.md#ta2-pusher)
|
||||
- [TA2 Distributor](./manual_ta2_EN.md#ta2-distributor)
|
||||
- [Gravel washer](./manual_ta2_EN.md#gravel-washer)
|
||||
- [TA2 Gravel Rinser](./manual_ta2_EN.md#ta2-gravel-rinser)
|
||||
- [Dig stone\\, grind and sieve](./manual_ta2_EN.md#dig-stone\\,-grind-and-sieve)
|
||||
- [TA2 Quarry](./manual_ta2_EN.md#ta2-quarry)
|
||||
- [TA2 Grinder](./manual_ta2_EN.md#ta2-grinder)
|
||||
- [TA2 Gravel Sieve](./manual_ta2_EN.md#ta2-gravel-sieve)
|
||||
- [Produce Items](./manual_ta2_EN.md#produce-items)
|
||||
- [TA2 Autocrafter](./manual_ta2_EN.md#ta2-autocrafter)
|
||||
- [TA2 Electronic Fab](./manual_ta2_EN.md#ta2-electronic-fab)
|
||||
- [Other blocks](./manual_ta2_EN.md#other-blocks)
|
||||
- [TA2 Liquid Sampler](./manual_ta2_EN.md#ta2-liquid-sampler)
|
||||
- [TA2 Protected Chest](./manual_ta2_EN.md#ta2-protected-chest)
|
||||
- [Techage Forceload Block](./manual_ta2_EN.md#techage-forceload-block)
|
||||
- [TA3: Oil Age](./manual_ta3_EN.md#ta3:-oil-age)
|
||||
- [Coal-fired Power Station / Oil-fired Power Station](./manual_ta3_EN.md#coal-fired-power-station--oil-fired-power-station)
|
||||
- [TA3 power station firebox](./manual_ta3_EN.md#ta3-power-station-firebox)
|
||||
- [TA3 Power Station Oil Burner](./manual_ta3_EN.md#ta3-power-station-oil-burner)
|
||||
- [TA3 boiler base / top](./manual_ta3_EN.md#ta3-boiler-base--top)
|
||||
- [TA3 turbine](./manual_ta3_EN.md#ta3-turbine)
|
||||
- [TA3 generator](./manual_ta3_EN.md#ta3-generator)
|
||||
- [TA3 cooler](./manual_ta3_EN.md#ta3-cooler)
|
||||
- [Electrical current](./manual_ta3_EN.md#electrical-current)
|
||||
- [TA Electric Cable](./manual_ta3_EN.md#ta-electric-cable)
|
||||
- [TA Electric Junction Box](./manual_ta3_EN.md#ta-electric-junction-box)
|
||||
- [TA Power Line](./manual_ta3_EN.md#ta-power-line)
|
||||
- [TA Power Pole](./manual_ta3_EN.md#ta-power-pole)
|
||||
- [TA Power Pole Top](./manual_ta3_EN.md#ta-power-pole-top)
|
||||
- [TA Power Pole Top 2](./manual_ta3_EN.md#ta-power-pole-top-2)
|
||||
- [TA Power Switch](./manual_ta3_EN.md#ta-power-switch)
|
||||
- [TA Power Switch Small](./manual_ta3_EN.md#ta-power-switch-small)
|
||||
- [TA Power Switch Box](./manual_ta3_EN.md#ta-power-switch-box)
|
||||
- [TA3 Small Power Generator](./manual_ta3_EN.md#ta3-small-power-generator)
|
||||
- [TA3 Battery Block](./manual_ta3_EN.md#ta3-battery-block)
|
||||
- [TA3 Power Terminal](./manual_ta3_EN.md#ta3-power-terminal)
|
||||
- [TA3 Industrial Furnace](./manual_ta3_EN.md#ta3-industrial-furnace)
|
||||
- [TA3 Furnace Oil Burner](./manual_ta3_EN.md#ta3-furnace-oil-burner)
|
||||
- [TA3 Furnace Top](./manual_ta3_EN.md#ta3-furnace-top)
|
||||
- [TA3 Booster](./manual_ta3_EN.md#ta3-booster)
|
||||
- [Liquids](./manual_ta3_EN.md#liquids)
|
||||
- [TA3 Tank](./manual_ta3_EN.md#ta3-tank)
|
||||
- [TA3 Pump](./manual_ta3_EN.md#ta3-pump)
|
||||
- [TA Liquid Filler](./manual_ta3_EN.md#ta-liquid-filler)
|
||||
- [TA4 Pipe](./manual_ta3_EN.md#ta4-pipe)
|
||||
- [TA3 Pipe Wall Entry Blocks](./manual_ta3_EN.md#ta3-pipe-wall-entry-blocks)
|
||||
- [Oil Production](./manual_ta3_EN.md#oil-production)
|
||||
- [TA3 Oil Explorer](./manual_ta3_EN.md#ta3-oil-explorer)
|
||||
- [TA3 Oil Drill Box](./manual_ta3_EN.md#ta3-oil-drill-box)
|
||||
- [TA3 Oil Pumpjack](./manual_ta3_EN.md#ta3-oil-pumpjack)
|
||||
- [TA3 Drill Pipe](./manual_ta3_EN.md#ta3-drill-pipe)
|
||||
- [Oil tank](./manual_ta3_EN.md#oil-tank)
|
||||
- [Oil Transportation](./manual_ta3_EN.md#oil-transportation)
|
||||
- [Oil Processing](./manual_ta3_EN.md#oil-processing)
|
||||
- [Distillation Tower](./manual_ta3_EN.md#distillation-tower)
|
||||
- [Reboiler](./manual_ta3_EN.md#reboiler)
|
||||
- [Logic / Switching Blocks](./manual_ta3_EN.md#logic--switching-blocks)
|
||||
- [TA3 Button / Switch](./manual_ta3_EN.md#ta3-button--switch)
|
||||
- [TA3 Logic Block](./manual_ta3_EN.md#ta3-logic-block)
|
||||
- [TA3 Repeater](./manual_ta3_EN.md#ta3-repeater)
|
||||
- [TA3 Sequencer](./manual_ta3_EN.md#ta3-sequencer)
|
||||
- [TA3 Timer](./manual_ta3_EN.md#ta3-timer)
|
||||
- [TA3 Terminal](./manual_ta3_EN.md#ta3-terminal)
|
||||
- [TechAge Signal Lamp](./manual_ta3_EN.md#techage-signal-lamp)
|
||||
- [Door/Gate Blocks](./manual_ta3_EN.md#doorgate-blocks)
|
||||
- [TA3 Door Controller](./manual_ta3_EN.md#ta3-door-controller)
|
||||
- [Detectors](./manual_ta3_EN.md#detectors)
|
||||
- [TA3 Detector](./manual_ta3_EN.md#ta3-detector)
|
||||
- [TA3 Cart Detector](./manual_ta3_EN.md#ta3-cart-detector)
|
||||
- [TA3 Block Detector](./manual_ta3_EN.md#ta3-block-detector)
|
||||
- [TA3 Player Detector](./manual_ta3_EN.md#ta3-player-detector)
|
||||
- [TA3 Machines](./manual_ta3_EN.md#ta3-machines)
|
||||
- [TA3 Pusher](./manual_ta3_EN.md#ta3-pusher)
|
||||
- [TA3 Distributor](./manual_ta3_EN.md#ta3-distributor)
|
||||
- [TA3 Autocrafter](./manual_ta3_EN.md#ta3-autocrafter)
|
||||
- [TA3 Electronic Fab](./manual_ta3_EN.md#ta3-electronic-fab)
|
||||
- [TA3 Quarry](./manual_ta3_EN.md#ta3-quarry)
|
||||
- [TA3 Gravel Sieve](./manual_ta3_EN.md#ta3-gravel-sieve)
|
||||
- [TA3 Gravel Rinser](./manual_ta3_EN.md#ta3-gravel-rinser)
|
||||
- [TA3 Grinder](./manual_ta3_EN.md#ta3-grinder)
|
||||
- [TA3 Liquid Sampler](./manual_ta3_EN.md#ta3-liquid-sampler)
|
||||
- [Tools](./manual_ta3_EN.md#tools)
|
||||
- [Techage Info Tool](./manual_ta3_EN.md#techage-info-tool)
|
||||
- [TechAge Programmer](./manual_ta3_EN.md#techage-programmer)
|
||||
- [TechAge Trowel / Trowel](./manual_ta3_EN.md#techage-trowel--trowel)
|
||||
- [TA3 drill pipe wrench](./manual_ta3_EN.md#ta3-drill-pipe-wrench)
|
||||
- [TA4: Future](./manual_ta4_EN.md#ta4:-future)
|
||||
- [Wind Turbine](./manual_ta4_EN.md#wind-turbine)
|
||||
- [TA4 Wind Turbine](./manual_ta4_EN.md#ta4-wind-turbine)
|
||||
- [TA4 Wind Turbine Nacelle](./manual_ta4_EN.md#ta4-wind-turbine-nacelle)
|
||||
- [TA4 Wind Turbine Signal Lamp](./manual_ta4_EN.md#ta4-wind-turbine-signal-lamp)
|
||||
- [TA4 Pillar](./manual_ta4_EN.md#ta4-pillar)
|
||||
- [Solar System](./manual_ta4_EN.md#solar-system)
|
||||
- [TA4 Solar Module](./manual_ta4_EN.md#ta4-solar-module)
|
||||
- [TA4 Solar Carrier Module](./manual_ta4_EN.md#ta4-solar-carrier-module)
|
||||
- [TA4 Solar Inverter](./manual_ta4_EN.md#ta4-solar-inverter)
|
||||
- [TA4 Low Power Cable](./manual_ta4_EN.md#ta4-low-power-cable)
|
||||
- [TA4 Low Voltage Junction Box](./manual_ta4_EN.md#ta4-low-voltage-junction-box)
|
||||
- [TA4 Street Lamp Solar Cell](./manual_ta4_EN.md#ta4-street-lamp-solar-cell)
|
||||
- [Thermal Energy Storage](./manual_ta4_EN.md#thermal-energy-storage)
|
||||
- [TA4 Heat Exchanger](./manual_ta4_EN.md#ta4-heat-exchanger)
|
||||
- [TA4 Turbine](./manual_ta4_EN.md#ta4-turbine)
|
||||
- [TA4 Generator](./manual_ta4_EN.md#ta4-generator)
|
||||
- [TA4 Pipe Inlet](./manual_ta4_EN.md#ta4-pipe-inlet)
|
||||
- [TA4 Pipe](./manual_ta4_EN.md#ta4-pipe)
|
||||
- [Hydrogen](./manual_ta4_EN.md#hydrogen)
|
||||
- [Electrolyzer](./manual_ta4_EN.md#electrolyzer)
|
||||
- [Fuel VCell](./manual_ta4_EN.md#fuel-vcell)
|
||||
- [Chemical Reactor](./manual_ta4_EN.md#chemical-reactor)
|
||||
- [TA4 Doser](./manual_ta4_EN.md#ta4-doser)
|
||||
- [TA4 Reactor](./manual_ta4_EN.md#ta4-reactor)
|
||||
- [TA4 Filler Pipe](./manual_ta4_EN.md#ta4-filler-pipe)
|
||||
- [TA4 Reactor Stand](./manual_ta4_EN.md#ta4-reactor-stand)
|
||||
- [TA4 Reactor Base](./manual_ta4_EN.md#ta4-reactor-base)
|
||||
- [TA4 Silo](./manual_ta4_EN.md#ta4-silo)
|
||||
- [ICTA Controller](./manual_ta4_EN.md#icta-controller)
|
||||
- [TA4 ICTA controller](./manual_ta4_EN.md#ta4-icta-controller)
|
||||
- [Battery](./manual_ta4_EN.md#battery)
|
||||
- [TA4 Display](./manual_ta4_EN.md#ta4-display)
|
||||
- [TA4 Display XL](./manual_ta4_EN.md#ta4-display-xl)
|
||||
- [TA4 Signal Tower](./manual_ta4_EN.md#ta4-signal-tower)
|
||||
- [TA4 Lua Controller](./manual_ta4_EN.md#ta4-lua-controller)
|
||||
- [TA4 Lua Server](./manual_ta4_EN.md#ta4-lua-server)
|
||||
- [TA4 Sensor Box / Chest](./manual_ta4_EN.md#ta4-sensor-box--chest)
|
||||
- [TA4 Lua Controller Terminal](./manual_ta4_EN.md#ta4-lua-controller-terminal)
|
||||
- [TA4 Logic/Switching Modules](./manual_ta4_EN.md#ta4-logicswitching-modules)
|
||||
- [TA4 Button/Switch](./manual_ta4_EN.md#ta4-buttonswitch)
|
||||
- [TA4 Player Detector](./manual_ta4_EN.md#ta4-player-detector)
|
||||
- [TA4 State Collector](./manual_ta4_EN.md#ta4-state-collector)
|
||||
- [TA4 Detector](./manual_ta4_EN.md#ta4-detector)
|
||||
- [TA4 Lamps](./manual_ta4_EN.md#ta4-lamps)
|
||||
- [TA4 LED Grow Light](./manual_ta4_EN.md#ta4-led-grow-light)
|
||||
- [TA4 Street Lamp](./manual_ta4_EN.md#ta4-street-lamp)
|
||||
- [TA4 LED Industrial Lamp](./manual_ta4_EN.md#ta4-led-industrial-lamp)
|
||||
- [More TA4 Blocks](./manual_ta4_EN.md#more-ta4-blocks)
|
||||
- [TA4 Tank](./manual_ta4_EN.md#ta4-tank)
|
||||
- [TA4 Pump](./manual_ta4_EN.md#ta4-pump)
|
||||
- [TA4 Furnace Heater](./manual_ta4_EN.md#ta4-furnace-heater)
|
||||
- [TA4 water Pump](./manual_ta4_EN.md#ta4-water-pump)
|
||||
- [TA4 Tube](./manual_ta4_EN.md#ta4-tube)
|
||||
- [TA4 Pusher](./manual_ta4_EN.md#ta4-pusher)
|
||||
- [TA4 Chest](./manual_ta4_EN.md#ta4-chest)
|
||||
- [TA4 8x2000 Chest](./manual_ta4_EN.md#ta4-8x2000-chest)
|
||||
- [TA4 Distributor](./manual_ta4_EN.md#ta4-distributor)
|
||||
- [TA4 Gravel Sieve](./manual_ta4_EN.md#ta4-gravel-sieve)
|
||||
- [TA4 Grinder](./manual_ta4_EN.md#ta4-grinder)
|
||||
- [TA4 Quarry](./manual_ta4_EN.md#ta4-quarry)
|
||||
- [TA4 Electronic Fab](./manual_ta4_EN.md#ta4-electronic-fab)
|
||||
- [TA4 Injector](./manual_ta4_EN.md#ta4-injector)
|
Loading…
Reference in New Issue
Block a user