mirror of
https://github.com/Wyrrrd/Rocket_Turrets.git
synced 2026-06-02 06:02:28 +02:00
Various fixes
- Fixed some things still referring to rocket-turret-mk1 - Fixed recipe order - Improved readability
This commit is contained in:
@@ -8,12 +8,15 @@ if mods["bobplates"] then
|
||||
|
||||
data.raw["ammo-turret"]["rocket-turret"].folded_animation.layers[1].filename = "__Rocket_Turrets__/graphics/entity/rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].folded_animation.layers[1].hr_version["filename"] = "__Rocket_Turrets__/graphics/entity/hr-rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].folding_animation.layers[1].filename = "__Rocket_Turrets__/graphics/entity/rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].folding_animation.layers[1].hr_version["filename"] = "__Rocket_Turrets__/graphics/entity/hr-rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].prepared_animation.layers[1].filename = "__Rocket_Turrets__/graphics/entity/rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].prepared_animation.layers[1].hr_version["filename"] = "__Rocket_Turrets__/graphics/entity/hr-rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].preparing_animation.layers[1].filename = "__Rocket_Turrets__/graphics/entity/rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].preparing_animation.layers[1].hr_version["filename"] = "__Rocket_Turrets__/graphics/entity/hr-rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].attacking_animation.layers[1].filename = "__Rocket_Turrets__/graphics/entity/rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].attacking_animation.layers[1].hr_version["filename"] = "__Rocket_Turrets__/graphics/entity/hr-rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].folding_animation.layers[1].filename = "__Rocket_Turrets__/graphics/entity/rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].folding_animation.layers[1].hr_version["filename"] = "__Rocket_Turrets__/graphics/entity/hr-rocket-mk1-sheet.png"
|
||||
data.raw["ammo-turret"]["rocket-turret"].fast_replaceable_group = "turret"
|
||||
data.raw["item"]["rocket-turret"].icon = "__Rocket_Turrets__/graphics/icon/turret-rocket-mk1-icon.png"
|
||||
data.raw["technology"]["rocket-turret"].icon = "__Rocket_Turrets__/graphics/technology/rocket-turret-mk1.png"
|
||||
|
||||
@@ -24,16 +27,20 @@ if mods["bobplates"] then
|
||||
rocket_mk2_item,
|
||||
rocket_mk2_recipe,
|
||||
rocket_mk2_tech,
|
||||
|
||||
rocket_mk3_entity,
|
||||
rocket_mk3_item,
|
||||
rocket_mk3_recipe,
|
||||
rocket_mk3_tech,
|
||||
|
||||
rocket_mk4_entity,
|
||||
rocket_mk4_item,
|
||||
rocket_mk4_recipe,
|
||||
rocket_mk4_tech,
|
||||
|
||||
rocket_mk5_entity,
|
||||
rocket_mk5_item,
|
||||
-- recipe below
|
||||
rocket_mk5_tech
|
||||
})
|
||||
|
||||
|
||||
@@ -173,6 +173,7 @@ rocket_mk2_entity = {
|
||||
folding_animation = rocket_mk2_sheet{direction_count = 4, line_length = 1, run_mode = "backward"},
|
||||
|
||||
vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact.ogg", volume = 0.65 },
|
||||
fast_replaceable_group = "turret",
|
||||
|
||||
attack_parameters =
|
||||
{
|
||||
@@ -233,6 +234,7 @@ rocket_mk3_entity = {
|
||||
folding_animation = rocket_mk3_sheet{direction_count = 4, line_length = 1, run_mode = "backward"},
|
||||
|
||||
vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact.ogg", volume = 0.65 },
|
||||
fast_replaceable_group = "turret",
|
||||
|
||||
attack_parameters =
|
||||
{
|
||||
@@ -293,6 +295,7 @@ rocket_mk4_entity = {
|
||||
folding_animation = rocket_mk4_sheet{direction_count = 4, line_length = 1, run_mode = "backward"},
|
||||
|
||||
vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact.ogg", volume = 0.65 },
|
||||
fast_replaceable_group = "turret",
|
||||
|
||||
attack_parameters =
|
||||
{
|
||||
@@ -353,6 +356,7 @@ rocket_mk5_entity = {
|
||||
folding_animation = rocket_mk5_sheet{direction_count = 4, line_length = 1, run_mode = "backward"},
|
||||
|
||||
vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact.ogg", volume = 0.65 },
|
||||
fast_replaceable_group = "turret",
|
||||
|
||||
attack_parameters =
|
||||
{
|
||||
|
||||
@@ -7,13 +7,14 @@ rocket_mk2_recipe = {
|
||||
energy_required = 10,
|
||||
ingredients =
|
||||
{
|
||||
{"rocket-turret-mk1", 1},
|
||||
{"rocket-turret", 1},
|
||||
{"steel-gear-wheel", 10},
|
||||
{"steel-plate", 20},
|
||||
{"battery", 5},
|
||||
{"electronic-circuit", 5},
|
||||
},
|
||||
result = "rocket-turret-mk2",
|
||||
order = "c-a"
|
||||
}
|
||||
|
||||
rocket_mk3_recipe = {
|
||||
@@ -29,6 +30,7 @@ rocket_mk3_recipe = {
|
||||
{"advanced-circuit", 20},
|
||||
},
|
||||
result = "rocket-turret-mk3",
|
||||
order = "c-a"
|
||||
}
|
||||
|
||||
rocket_mk4_recipe = {
|
||||
@@ -44,6 +46,7 @@ rocket_mk4_recipe = {
|
||||
{"processing-unit", 20},
|
||||
},
|
||||
result = "rocket-turret-mk4",
|
||||
order = "c-a"
|
||||
}
|
||||
|
||||
rocket_mk5_recipe1 = {
|
||||
@@ -59,6 +62,7 @@ rocket_mk5_recipe1 = {
|
||||
{"processing-unit", 20},
|
||||
},
|
||||
result = "rocket-turret-mk5",
|
||||
order = "c-a"
|
||||
}
|
||||
|
||||
rocket_mk5_recipe2 = {
|
||||
@@ -74,4 +78,5 @@ rocket_mk5_recipe2 = {
|
||||
{"advanced-processing-unit", 20},
|
||||
},
|
||||
result = "rocket-turret-mk5",
|
||||
order = "c-a"
|
||||
}
|
||||
@@ -12,7 +12,7 @@ rocket_mk2_tech = {
|
||||
},
|
||||
prerequisites =
|
||||
{
|
||||
"rocket-turret-mk1",
|
||||
"rocket-turret",
|
||||
},
|
||||
unit =
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user