1
0
mirror of https://github.com/Wyrrrd/Rocket_Turrets.git synced 2026-03-25 15:19:49 +01:00
Files
Rocket_Turrets/prototypes/recipe.lua
Wyrrrd 2ba82873b9 Various fixes
- Fixed some things still referring to rocket-turret-mk1
- Fixed recipe order
- Improved readability
2020-03-16 00:13:12 +01:00

17 lines
297 B
Lua

--recipe
rocket_recipe = {
type = "recipe",
name = "rocket-turret",
enabled = false,
energy_required = 10,
ingredients =
{
{"rocket-launcher", 10},
{"iron-gear-wheel", 5},
{"steel-plate", 20},
{"advanced-circuit", 15},
},
result = "rocket-turret",
order = "c-a"
}