forked from cacklingfiend/bzcarbon2
Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
70202a0231 | ||
|
|
a15d04f8a6 | ||
|
|
4470642a06 |
4 changed files with 16 additions and 5 deletions
|
|
@ -4,8 +4,8 @@ if util.k2() then
|
||||||
if util.me.use_fullerenes() then
|
if util.me.use_fullerenes() then
|
||||||
-- Add extra nanotube recipes.
|
-- Add extra nanotube recipes.
|
||||||
-- This could be moved to data-updates in future if necessary
|
-- This could be moved to data-updates in future if necessary
|
||||||
cutil.nanotube_recipe("imersium-plate")
|
cutil.nanotube_recipe("kr-imersium-plate")
|
||||||
cutil.nanotube_recipe("kr-s-c-imersium-beam", "imersium-beam")
|
cutil.nanotube_recipe("kr-easy-imersium-beam","kr-imersium-beam")
|
||||||
cutil.nanotube_recipe("kr-s-c-imersium-gear-wheel", "imersium-gear-wheel")
|
cutil.nanotube_recipe("kr-easy-imersium-gear-wheel","kr-imersium-gear-wheel")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,11 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.0.24
|
||||||
|
Date: 01.11.2025
|
||||||
|
Bug Fixes:
|
||||||
|
- Fix graphite recipe icon scale
|
||||||
|
- Fix foundry requiring crucible while crucible is being made in foundry
|
||||||
|
- Fix K2 nanotube renames (thanks pla)
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.0.23
|
Version: 2.0.23
|
||||||
Date: 21.10.2025
|
Date: 21.10.2025
|
||||||
Changes:
|
Changes:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bzcarbon2",
|
"name": "bzcarbon2",
|
||||||
"version": "2.0.23",
|
"version": "2.0.24",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
"title": "Graphite & Diamonds - Legacy",
|
"title": "Graphite & Diamonds - Legacy",
|
||||||
"description": "Adds elemental carbon items to the game, including graphite, diamonds, graphene, and more.",
|
"description": "Adds elemental carbon items to the game, including graphite, diamonds, graphene, and more.",
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@ me.crucible_ingredients = {"zirconia", "silica", "stone-brick"}
|
||||||
|
|
||||||
me.furnaces = {
|
me.furnaces = {
|
||||||
"electric-furnace",
|
"electric-furnace",
|
||||||
"foundry", -- Space Age
|
|
||||||
"basic-foundry", -- BZ Tin
|
"basic-foundry", -- BZ Tin
|
||||||
"electric-foundry", -- BZ
|
"electric-foundry", -- BZ
|
||||||
"industrial-furnace", -- AAI
|
"industrial-furnace", -- AAI
|
||||||
|
|
@ -106,6 +105,11 @@ me.furnaces = {
|
||||||
"5d-industrial-furnace",
|
"5d-industrial-furnace",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Space Age foundry conflicts with bzfoundry burner foundry
|
||||||
|
if has_mod("space-age") then
|
||||||
|
table.insert(me.furnaces, "foundry")
|
||||||
|
end
|
||||||
|
|
||||||
if me.use_flake_graphite() then
|
if me.use_flake_graphite() then
|
||||||
table.insert(me.resources, {"graphite", "nauvis"})
|
table.insert(me.resources, {"graphite", "nauvis"})
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue