Compare commits

..

No commits in common. "main" and "2.0.0" have entirely different histories.
main ... 2.0.0

3 changed files with 6 additions and 12 deletions

View file

@ -1,9 +1,4 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 2.0.1
Date: 21.10.2025
Changes:
- Switch to bz mods forks
---------------------------------------------------------------------------------------------------
Version: 2.0.0 Version: 2.0.0
Date: 19.10.2025 Date: 19.10.2025
Changes: Changes:

View file

@ -1,6 +1,6 @@
{ {
"name": "bztungsten2", "name": "bztungsten2",
"version": "2.0.1", "version": "2.0.0",
"factorio_version": "2.0", "factorio_version": "2.0",
"title": "Tungsten", "title": "Tungsten",
"description": "Adds tungsten ore (wolframite), tungsten plates, tungsten carbide and rocket engine nozzles to the base game.", "description": "Adds tungsten ore (wolframite), tungsten plates, tungsten carbide and rocket engine nozzles to the base game.",
@ -12,8 +12,7 @@
"? Krastorio2", "? Krastorio2",
"? deadlock-beltboxes-loaders", "? deadlock-beltboxes-loaders",
"? DeadlockCrating", "? DeadlockCrating",
"? bztitanium2", "? bztitanium",
"? bzlead2", "? bzlead"
"! space-age"
] ]
} }

View file

@ -22,7 +22,7 @@ util.replace_ingredient("cannon-shell", "copper-plate", "tungsten-plate")
-- Tooling -- Tooling
util.add_prerequisite("automation-2", util.me.tungsten_processing) util.add_prerequisite("automation-2", util.me.tungsten_processing)
if mods.bzaluminum2 or mods["bzcarbon2"] or mods.bzgas2 then if mods.bzaluminum2 or mods.bzcarbon or mods.bzgas2 then
util.replace_ingredient("assembling-machine-2", "steel-plate", "tungsten-carbide") util.replace_ingredient("assembling-machine-2", "steel-plate", "tungsten-carbide")
else else
util.replace_some_ingredient("assembling-machine-2", "steel-plate", 1, "tungsten-carbide", 1) util.replace_some_ingredient("assembling-machine-2", "steel-plate", 1, "tungsten-carbide", 1)
@ -126,7 +126,7 @@ if mods["Krastorio2"] then
util.replace_some_ingredient("kr-advanced-furnace", "kr-rare-metals", 40, cuw, 40) util.replace_some_ingredient("kr-advanced-furnace", "kr-rare-metals", 40, cuw, 40)
-- Other -- Other
if mods["bzzirconium2"] then if mods.bzzirconium then
util.add_ingredient("matter-research-data", "zirconium-tungstate", 5) util.add_ingredient("matter-research-data", "zirconium-tungstate", 5)
else else
util.add_ingredient("matter-research-data", "tungsten-plate", 5) util.add_ingredient("matter-research-data", "tungsten-plate", 5)
@ -164,7 +164,7 @@ if mods["space-exploration"] then
-- Data -- Data
util.add_ingredient("se-electromagnetic-field-data", "tungsten-plate", 1) util.add_ingredient("se-electromagnetic-field-data", "tungsten-plate", 1)
util.add_product("se-electromagnetic-field-data", {type="item", name="tungsten-plate", amount=1, probability=0.95}) util.add_product("se-electromagnetic-field-data", {type="item", name="tungsten-plate", amount=1, probability=0.95})
if mods["bzzirconium2"] then if mods.bzzirconium then
util.add_ingredient("se-hot-thermodynamics-data", "zirconium-tungstate", 1) util.add_ingredient("se-hot-thermodynamics-data", "zirconium-tungstate", 1)
util.add_product("se-hot-thermodynamics-data", {type="item", name="zirconium-tungstate", amount=1, probability=0.50}) util.add_product("se-hot-thermodynamics-data", {type="item", name="zirconium-tungstate", amount=1, probability=0.50})
else else