1
0
mirror of https://github.com/Wyrrrd/Rocket_Turrets.git synced 2026-03-25 23:29:49 +01:00

Merged vanilla version

Reworked loading logic of entities, items, recipes and tech
This commit is contained in:
Wyrrrd
2020-02-20 23:59:58 +01:00
parent 15114a7394
commit 2ac4f17e30
13 changed files with 382 additions and 183 deletions

View File

@@ -1,6 +1,17 @@
--item
data:extend({
{
item0 = {
type = "item",
name = "rocket-turret",
icon = "__Rocket_Turrets__/graphics/icon/turret-rocket-icon.png",
icon_size = 32,
subgroup = "defensive-structure",
order = "b[turret]-c[base]-d[rocket]",
place_result = "rocket-turret",
stack_size = 50,
}
item1 = {
type = "item",
name = "rocket-turret-mk1",
icon = "__Rocket_Turrets__/graphics/icon/turret-rocket-mk1-icon.png",
@@ -9,8 +20,9 @@ data:extend({
order = "b[turret]-c[base]-d[rocket-mk1]",
place_result = "rocket-turret-mk1",
stack_size = 50,
},
{
}
item2 = {
type = "item",
name = "rocket-turret-mk2",
icon = "__Rocket_Turrets__/graphics/icon/turret-rocket-mk2-icon.png",
@@ -19,8 +31,9 @@ data:extend({
order = "b[turret]-c[base]-d[rocket-mk2]",
place_result = "rocket-turret-mk2",
stack_size = 50,
},
{
}
item3 = {
type = "item",
name = "rocket-turret-mk3",
icon = "__Rocket_Turrets__/graphics/icon/turret-rocket-mk3-icon.png",
@@ -29,8 +42,9 @@ data:extend({
order = "b[turret]-c[base]-d[rocket-mk3]",
place_result = "rocket-turret-mk3",
stack_size = 50,
},
{
}
item4 = {
type = "item",
name = "rocket-turret-mk4",
icon = "__Rocket_Turrets__/graphics/icon/turret-rocket-mk4-icon.png",
@@ -39,8 +53,9 @@ data:extend({
order = "b[turret]-c[base]-d[rocket-mk4]",
place_result = "rocket-turret-mk4",
stack_size = 50,
},
{
}
item5 = {
type = "item",
name = "rocket-turret-mk5",
icon = "__Rocket_Turrets__/graphics/icon/turret-rocket-mk5-icon.png",
@@ -49,5 +64,4 @@ data:extend({
order = "b[turret]-c[base]-d[rocket-mk5]",
place_result = "rocket-turret-mk5",
stack_size = 50,
},
})
}