rocket engine nozzle update

This commit is contained in:
Brevven 2022-01-05 20:51:09 -08:00
parent 3b7b447dde
commit 0dfd88f959
2 changed files with 11 additions and 14 deletions

View file

@ -1,6 +1,13 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.5.0
Date: 2022-01-03
Changes:
- Rocket engine nozzle recipe is set as 2 plates here and later modified in other mods.
- JA l10n updates
- AAI Vehicles
---------------------------------------------------------------------------------------------------
Version: 0.4.2 Version: 0.4.2
Date: 2021-12-31 Date: 2021-12-30
Changes: Changes:
- SE Void probe recipe - SE Void probe recipe
- Graphite compatibility - Graphite compatibility

View file

@ -168,15 +168,6 @@ data:extend({
}, },
}) })
local nozzle_i = {{"tungsten-plate", 2}}
if mods.bzzirconium then
table.insert(nozzle_i, {"zirconium-plate", 1})
end
if mods.bzcarbon then
table.insert(nozzle_i, {"graphite", 1})
end
data:extend({ data:extend({
{ {
type = "item", type = "item",
@ -197,10 +188,9 @@ data:extend({
{ icon = "__bztungsten__/graphics/icons/rocket-engine-nozzle.png", icon_size = 128} { icon = "__bztungsten__/graphics/icons/rocket-engine-nozzle.png", icon_size = 128}
}, },
enabled = false, enabled = false,
energy_required = 5 * #nozzle_i, energy_required = 5,
ingredients = nozzle_i, ingredients = {{"tungsten-plate", 2}},
result = "rocket-engine-nozzle", results = {{"rocket-engine-nozzle", 1}},
result_count = #nozzle_i
} }
}) })