forked from cacklingfiend/bzzirconium2
Compare commits
7 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2306ca1cf7 | ||
|
|
48010919b1 | ||
|
|
51545e3a24 | ||
|
|
746d949dfd | ||
|
|
383fca46b5 | ||
|
|
7430525629 | ||
|
|
f7cf02ff6f |
6 changed files with 24 additions and 2172 deletions
|
|
@ -1,4 +1,19 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.2.2
|
||||||
|
Date: 16.03.2026
|
||||||
|
Bug Fixes:
|
||||||
|
- Correct renamed "efficiency-module"
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.2.1
|
||||||
|
Date: 11.03.2026
|
||||||
|
Bug Fixes:
|
||||||
|
- K2: Fix crash due to wrong call of get_setting
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.2.0
|
||||||
|
Date: 11.03.2026
|
||||||
|
Changes:
|
||||||
|
- Switch to bzlib - Please install the new dependency
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.1.14
|
Version: 2.1.14
|
||||||
Date: 21.10.2025
|
Date: 21.10.2025
|
||||||
Legacy version meant to be played with my other forks and ATOM.
|
Legacy version meant to be played with my other forks and ATOM.
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bzzirconium2",
|
"name": "bzzirconium2",
|
||||||
"version": "2.1.14",
|
"version": "2.2.2",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
"title": "Zirconium - Legacy",
|
"title": "Zirconium - Legacy",
|
||||||
"description": "Adds zircon, zirconia, zirconium, and more to the base game.",
|
"description": "Adds zircon, zirconia, zirconium, and more to the base game.",
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
"homepage": "https://discord.gg/ufvFUJtVwk",
|
"homepage": "https://discord.gg/ufvFUJtVwk",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"base >= 2.0.0",
|
"base >= 2.0.0",
|
||||||
|
"bzlib",
|
||||||
"? space-exploration",
|
"? space-exploration",
|
||||||
"? aai-industry",
|
"? aai-industry",
|
||||||
"? Krastorio2",
|
"? Krastorio2",
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ if util.me.ammo() then
|
||||||
end
|
end
|
||||||
table.insert(mag, {type="fluid", name="heavy-oil", amount=ct})
|
table.insert(mag, {type="fluid", name="heavy-oil", amount=ct})
|
||||||
|
|
||||||
if not util.k2() or not util.get_setting("kr-more-realistic-weapon") then
|
if not util.k2() or not util.me.get_setting("kr-more-realistic-weapon") then
|
||||||
table.insert(mag, util.item("piercing-rounds-magazine", ct))
|
table.insert(mag, util.item("piercing-rounds-magazine", ct))
|
||||||
|
|
||||||
data:extend({
|
data:extend({
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ if util.me.use_cermet() then
|
||||||
end
|
end
|
||||||
util.add_prerequisite("productivity-module-3", "cermet")
|
util.add_prerequisite("productivity-module-3", "cermet")
|
||||||
util.add_prerequisite("speed-module-3", "cermet")
|
util.add_prerequisite("speed-module-3", "cermet")
|
||||||
util.add_prerequisite("effectivity-module-3", "cermet")
|
util.add_prerequisite("efficiency-module-3", "cermet")
|
||||||
|
|
||||||
-- utility science techs behind cermet
|
-- utility science techs behind cermet
|
||||||
util.add_prerequisite("rocket-control-unit", "cermet")
|
util.add_prerequisite("rocket-control-unit", "cermet")
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ if util.k2() then
|
||||||
util.add_ingredient("kr-antimatter-reactor", nuclear_z, 350)
|
util.add_ingredient("kr-antimatter-reactor", nuclear_z, 350)
|
||||||
|
|
||||||
if util.me.early() then
|
if util.me.early() then
|
||||||
util.add_ingredient("stone-brick", "zircon", 1)
|
util.replace_some_ingredient("stone-brick", "stone", 5, "zircon", 5)
|
||||||
end
|
end
|
||||||
if mods["space-exploration"] then
|
if mods["space-exploration"] then
|
||||||
util.replace_some_ingredient("se-stone-brick-vulcanite", "stone", 2, "zircon", 2)
|
util.replace_some_ingredient("se-stone-brick-vulcanite", "stone", 2, "zircon", 2)
|
||||||
|
|
@ -246,7 +246,7 @@ if util.me.use_cermet() then
|
||||||
if mods["modules-t4"] then
|
if mods["modules-t4"] then
|
||||||
util.add_ingredient("speed-module-4", "cermet", 6)
|
util.add_ingredient("speed-module-4", "cermet", 6)
|
||||||
util.add_ingredient("productivity-module-4", "cermet", 6)
|
util.add_ingredient("productivity-module-4", "cermet", 6)
|
||||||
util.add_ingredient("effectivity-module-4", "cermet", 6)
|
util.add_ingredient("efficiency-module-4", "cermet", 6)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Various assemblers
|
-- Various assemblers
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue