1
0
mirror of https://github.com/Wyrrrd/Rocket_Turrets.git synced 2026-03-25 15:19:49 +01:00
Files
Rocket_Turrets/prototypes/technology.lua
Wyrrrd 0c0de13bd0 Reorganizing
- Moved integrations to separate directory
- Simplified check for bobplates
- Merged MK1 turret with vanilla turret
2020-03-11 21:26:03 +01:00

33 lines
503 B
Lua

-- technology
rocket_tech = {
type = "technology",
name = "rocket-turret",
icon = "__Rocket_Turrets__/graphics/technology/rocket-turret.png",
icon_size = 128,
effects =
{
{
type = "unlock-recipe",
recipe = "rocket-turret",
},
},
prerequisites =
{
"rocketry",
"turrets",
"steel-processing",
},
unit =
{
count = 75,
ingredients =
{
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"military-science-pack", 1},
},
time = 20
},
order = "c-a"
}