Technology/Basic Robotics: Difference between revisions

From Desynced Wiki
(I made it)
 
No edit summary
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Infobox |description = {{PAGENAME}} }}
{{Infobox}}


{|<!--Introduction:-->
{|<!--Introduction:-->
One of the first technology you can research.
One of the first technologies you can research.
<!--End of Introduction-->|}
<!--End of Introduction-->|}
{{TechTemplates|{{SUBPAGENAME}}}}
below the lua script that describe the technology:<syntaxhighlight lang="lua" line="1" start="150">
data.techs.t_robotics10 = {
name = "Basic Robotics",
desc = "Introduction of Robotics Assembler allowing production of units with greater capabilities",
-- desc = "New Robots production Component and additional units",
-- desc = "Add additional robotics unit production",
texture = "Main/textures/tech/robots/robot_robotics_02_1.png",


{{Recipe_Production
uplink_recipe = CreateUplinkRecipe({ crystal = 1, reinforced_plate = 2 }, 50),
|name = Basic Robotics
progress_count = 10,
|ingredient1 = Reinforced Plate
require_tech = { "t_structures1" }, --{ "t_robotics0" },
|amount1 = 20
category = "Basic",
|ingredient2 = Crystal Chunk
unlocks = {
|amount2 = 10
"c_robotics_factory",
|ingredient3 =
"f_bot_1s_b",
|amount3 =
-- "x_robotics", -- codex
|ingredient4 =
"f_building1x1a", -- 1M
|amount4 =
"f_building2x1a", -- 2M
|produced-by1 = Uplink
"energized_plate",
|time1 = 100
"silicon",
|produced-by2 =
},
|time2 =
}
}}
 
</syntaxhighlight>{{TechnologyNav}}
 
[[Category:Tech]]

Latest revision as of 09:47, 1 August 2025

Basic Robotics
     



One of the first technologies you can research.


Required Technology
Basic Structures Basic Structures


Recipe
Crystal ChunkReinforced PlateBasic Robotics
Crystal Chunk 1Reinforced Plate 2Arrow RightBasic Robotics 1
Researched with
Building/ComponentResearch time
UplinkUplink10 seconds
NexaspireNexaspire2 seconds
Human Science LabHuman Science Lab2 seconds
Total Requirements
Crystal ChunkReinforced PlateBasic Robotics
Crystal Chunk 10Reinforced Plate 20Arrow RightBasic Robotics 10

This technology unlocks:

Building 1x1 (1M) Building 1x1 (1M)
Building 2x1 (2M) Building 2x1 (2M)
Dashbot Dashbot
Energized Plate Energized Plate
Robotics Assembler Robotics Assembler
Silicon Silicon

This technology allows researching:

Robotics Production Robotics Production



below the lua script that describe the technology:

data.techs.t_robotics10 = {
	name = "Basic Robotics",
	desc = "Introduction of Robotics Assembler allowing production of units with greater capabilities",
	-- desc = "New Robots production Component and additional units",
	-- desc = "Add additional robotics unit production",
	texture = "Main/textures/tech/robots/robot_robotics_02_1.png",

	uplink_recipe = CreateUplinkRecipe({ crystal = 1, reinforced_plate = 2 }, 50),
	progress_count = 10,
	require_tech = { "t_structures1" }, --{ "t_robotics0" },
	category = "Basic",
	unlocks = {
		"c_robotics_factory",
		"f_bot_1s_b",
		-- "x_robotics", -- codex
		"f_building1x1a", -- 1M
		"f_building2x1a", -- 2M
		"energized_plate",
		"silicon",
	},
}