From d95ed353498a1fc96b3013804df33e1be475ba10 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Wed, 1 Apr 2026 20:18:55 -0700 Subject: [PATCH 01/40] Update functions.lua --- bobenemies/prototypes/functions.lua | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/bobenemies/prototypes/functions.lua b/bobenemies/prototypes/functions.lua index 74b9c8fdb..45013ce55 100644 --- a/bobenemies/prototypes/functions.lua +++ b/bobenemies/prototypes/functions.lua @@ -693,6 +693,11 @@ function bobmods.enemies.new_biter(inputs) flags = { "placeable-neutral", "placeable-off-grid", "building-direction-8-way", "not-on-map" }, }) + table.remove(corpse_prototype.animation.layers) + corpse_prototype.animation_render_layer = "corpse" + corpse_prototype.final_render_layer = "corpse" + corpse_prototype.use_decay_layer = false + data:extend({ biter_prototype, corpse_prototype }) end @@ -1342,6 +1347,11 @@ function bobmods.enemies.new_spitter(inputs) flags = { "placeable-neutral", "placeable-off-grid", "building-direction-8-way", "not-on-map" }, }) + table.remove(corpse_prototype.animation.layers) + corpse_prototype.animation_render_layer = "corpse" + corpse_prototype.final_render_layer = "corpse" + corpse_prototype.use_decay_layer = false + if not inputs.no_acid_stream == true then bobmods.enemies.acid_stream(inputs, final_scale) end @@ -2815,6 +2825,10 @@ function bobmods.enemies.new_worm(inputs) worm_corpse_2.icon = "__base__/graphics/icons/big-worm-corpse.png" worm_corpse_1.localised_name = { "entity-name.bob-enemies-corpse" } worm_corpse_2.localised_name = { "entity-name.bob-enemies-corpse" } + worm_corpse_1.animation_render_layer = "corpse" + worm_corpse_2.animation_render_layer = "corpse" + worm_corpse_1.final_render_layer = "corpse" + worm_corpse_2.final_render_layer = "corpse" if inputs.tint2 then table.insert( @@ -3170,9 +3184,19 @@ function bobmods.enemies.new_spawner(inputs) spawner_decay_animation(3, inputs.tint), }, decay_frame_transition_duration = 360, - final_render_layer = "lower-object-above-shadow", + animation_render_layer = "corpse", + final_render_layer = "corpse", } + table.remove(spawner_corpse.animation[1].layers) + table.remove(spawner_corpse.animation[2].layers) + table.remove(spawner_corpse.animation[3].layers) + table.remove(spawner_corpse.animation[4].layers) + table.remove(spawner_corpse.decay_animation[1].layers) + table.remove(spawner_corpse.decay_animation[2].layers) + table.remove(spawner_corpse.decay_animation[3].layers) + table.remove(spawner_corpse.decay_animation[4].layers) + if inputs.tint2 then table.insert( spawner_prototype.graphics_set.animations[1].layers, From 9d479102326efc8cad104d59731a754f3121c150 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 11:48:46 -0700 Subject: [PATCH 02/40] Update functions.lua --- bobenemies/prototypes/functions.lua | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/bobenemies/prototypes/functions.lua b/bobenemies/prototypes/functions.lua index 45013ce55..74b9c8fdb 100644 --- a/bobenemies/prototypes/functions.lua +++ b/bobenemies/prototypes/functions.lua @@ -693,11 +693,6 @@ function bobmods.enemies.new_biter(inputs) flags = { "placeable-neutral", "placeable-off-grid", "building-direction-8-way", "not-on-map" }, }) - table.remove(corpse_prototype.animation.layers) - corpse_prototype.animation_render_layer = "corpse" - corpse_prototype.final_render_layer = "corpse" - corpse_prototype.use_decay_layer = false - data:extend({ biter_prototype, corpse_prototype }) end @@ -1347,11 +1342,6 @@ function bobmods.enemies.new_spitter(inputs) flags = { "placeable-neutral", "placeable-off-grid", "building-direction-8-way", "not-on-map" }, }) - table.remove(corpse_prototype.animation.layers) - corpse_prototype.animation_render_layer = "corpse" - corpse_prototype.final_render_layer = "corpse" - corpse_prototype.use_decay_layer = false - if not inputs.no_acid_stream == true then bobmods.enemies.acid_stream(inputs, final_scale) end @@ -2825,10 +2815,6 @@ function bobmods.enemies.new_worm(inputs) worm_corpse_2.icon = "__base__/graphics/icons/big-worm-corpse.png" worm_corpse_1.localised_name = { "entity-name.bob-enemies-corpse" } worm_corpse_2.localised_name = { "entity-name.bob-enemies-corpse" } - worm_corpse_1.animation_render_layer = "corpse" - worm_corpse_2.animation_render_layer = "corpse" - worm_corpse_1.final_render_layer = "corpse" - worm_corpse_2.final_render_layer = "corpse" if inputs.tint2 then table.insert( @@ -3184,19 +3170,9 @@ function bobmods.enemies.new_spawner(inputs) spawner_decay_animation(3, inputs.tint), }, decay_frame_transition_duration = 360, - animation_render_layer = "corpse", - final_render_layer = "corpse", + final_render_layer = "lower-object-above-shadow", } - table.remove(spawner_corpse.animation[1].layers) - table.remove(spawner_corpse.animation[2].layers) - table.remove(spawner_corpse.animation[3].layers) - table.remove(spawner_corpse.animation[4].layers) - table.remove(spawner_corpse.decay_animation[1].layers) - table.remove(spawner_corpse.decay_animation[2].layers) - table.remove(spawner_corpse.decay_animation[3].layers) - table.remove(spawner_corpse.decay_animation[4].layers) - if inputs.tint2 then table.insert( spawner_prototype.graphics_set.animations[1].layers, From 545efc112bd3c76d9423e812ca3f81edfdfe1ec7 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:24:04 -0700 Subject: [PATCH 03/40] Update resource-recipe.lua --- bobplates/prototypes/recipe/resource-recipe.lua | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/bobplates/prototypes/recipe/resource-recipe.lua b/bobplates/prototypes/recipe/resource-recipe.lua index c3c89b377..97ed3bad4 100644 --- a/bobplates/prototypes/recipe/resource-recipe.lua +++ b/bobplates/prototypes/recipe/resource-recipe.lua @@ -2,6 +2,7 @@ data:extend({ { type = "recipe", name = "bob-carbon", + localised_name = { "item-name.carbon" }, category = "bob-chemical-furnace", subgroup = "bob-material-chemical", energy_required = 2, @@ -11,7 +12,7 @@ data:extend({ { type = "fluid", name = "water", amount = 5 }, { type = "item", name = "coal", amount = 1 }, }, - results = { { type = "item", name = "bob-carbon", amount = 2 } }, + results = { { type = "item", name = "carbon", amount = 2 } }, allow_decomposition = false, allow_productivity = true, }, @@ -222,7 +223,7 @@ data:extend({ { type = "recipe", name = "bob-carbon-from-wood", - localised_name = { "item-name.bob-carbon" }, + localised_name = { "item-name.carbon" }, category = "bob-chemical-furnace", subgroup = "bob-material-chemical", enabled = false, @@ -231,7 +232,7 @@ data:extend({ ingredients = { { type = "item", name = "wood", amount = 1 }, }, - results = { { type = "item", name = "bob-carbon", amount = 1 } }, + results = { { type = "item", name = "carbon", amount = 1 } }, subgroup = "bob-resource", order = "c", allow_decomposition = false, @@ -291,3 +292,7 @@ data:extend({ data.raw.recipe["solid-fuel-from-petroleum-gas"].allow_productivity = false data.raw.recipe["solid-fuel-from-light-oil"].allow_productivity = false data.raw.recipe["solid-fuel-from-heavy-oil"].allow_productivity = false + +if mods["space-age"] then + data.raw.recipe["bob-carbon"].allow_productivity = false +end From afee9c09b560f9cb6e347993ae74c62592a30d24 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:25:35 -0700 Subject: [PATCH 04/40] Update resource.lua --- bobplates/prototypes/item/resource.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bobplates/prototypes/item/resource.lua b/bobplates/prototypes/item/resource.lua index 15454e4ea..09d2660ac 100644 --- a/bobplates/prototypes/item/resource.lua +++ b/bobplates/prototypes/item/resource.lua @@ -1,7 +1,7 @@ data:extend({ { type = "item", - name = "bob-carbon", + name = "carbon", icon = "__bobplates__/graphics/icons/carbon.png", icon_size = 32, subgroup = "bob-resource", @@ -233,3 +233,8 @@ data:extend({ }, }, }) + +if mods["space-age"] then + data.raw.item.carbon.icon = "__space-age__/graphics/icons/carbon.png" + data.raw.item.carbon.icon_size = 64 +end From 6b670b534d9c1c61a5e1a4f95d676e4e464349d3 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:28:09 -0700 Subject: [PATCH 05/40] Update alloy-recipe.lua --- bobplates/prototypes/recipe/alloy-recipe.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bobplates/prototypes/recipe/alloy-recipe.lua b/bobplates/prototypes/recipe/alloy-recipe.lua index 4783de326..3eb1ef046 100644 --- a/bobplates/prototypes/recipe/alloy-recipe.lua +++ b/bobplates/prototypes/recipe/alloy-recipe.lua @@ -58,7 +58,7 @@ data:extend({ category = "bob-mixing-furnace", energy_required = 6.4, ingredients = { - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, { type = "item", name = "bob-tungsten-oxide", amount = 1 }, }, results = { @@ -76,7 +76,7 @@ data:extend({ category = "bob-mixing-furnace", energy_required = 12.8, ingredients = { - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, { type = "item", name = "bob-powdered-tungsten", amount = 1 }, }, results = { From 6e1c6a4d05e533d0ebe04be5bb17d0eb5d596968 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:30:49 -0700 Subject: [PATCH 06/40] Update chemistry-recipe.lua --- bobplates/prototypes/recipe/chemistry-recipe.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bobplates/prototypes/recipe/chemistry-recipe.lua b/bobplates/prototypes/recipe/chemistry-recipe.lua index b87a3d09a..7f0d1e9b5 100644 --- a/bobplates/prototypes/recipe/chemistry-recipe.lua +++ b/bobplates/prototypes/recipe/chemistry-recipe.lua @@ -700,7 +700,7 @@ data:extend({ ingredients = { { type = "item", name = "copper-ore", amount = 7 }, { type = "item", name = "stone", amount = 1 }, - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, { type = "fluid", name = "bob-hydrogen", amount = 5 }, }, results = { @@ -725,7 +725,7 @@ data:extend({ auto_recycle = false, ingredients = { { type = "item", name = "bob-lead-oxide", amount = 7 }, - { type = "item", name = "bob-carbon", amount = 3 }, + { type = "item", name = "carbon", amount = 3 }, { type = "item", name = "bob-nickel-plate", amount = 1 }, }, results = { @@ -746,7 +746,7 @@ data:extend({ auto_recycle = false, ingredients = { { type = "item", name = "bob-silicon-powder", amount = 1 }, - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, }, results = { { type = "item", name = "bob-silicon-carbide", amount = 2 } }, allow_productivity = true, From cc32efcd1a96bb4474d3427642ce7ed7455cd301 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:31:33 -0700 Subject: [PATCH 07/40] Update parts-recipe.lua --- bobplates/prototypes/recipe/parts-recipe.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/prototypes/recipe/parts-recipe.lua b/bobplates/prototypes/recipe/parts-recipe.lua index d403aa409..2c2946a89 100644 --- a/bobplates/prototypes/recipe/parts-recipe.lua +++ b/bobplates/prototypes/recipe/parts-recipe.lua @@ -195,7 +195,7 @@ data:extend({ ingredients = { { type = "item", name = "bob-lithium-perchlorate", amount = 2 }, { type = "item", name = "bob-lithium-cobalt-oxide", amount = 1 }, - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, { type = "item", name = "plastic-bar", amount = 1 }, }, results = { { type = "item", name = "bob-lithium-ion-battery", amount = 1 } }, From 4dca3586dfdf2073ffe1aa55ab8ccb20354a27dc Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:31:55 -0700 Subject: [PATCH 08/40] Update plates-recipe.lua --- bobplates/prototypes/recipe/plates-recipe.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bobplates/prototypes/recipe/plates-recipe.lua b/bobplates/prototypes/recipe/plates-recipe.lua index 7b1cbdf13..589669f4f 100644 --- a/bobplates/prototypes/recipe/plates-recipe.lua +++ b/bobplates/prototypes/recipe/plates-recipe.lua @@ -50,7 +50,7 @@ data:extend({ auto_recycle = false, ingredients = { { type = "item", name = "bob-lead-oxide", amount = 2 }, - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, }, results = { { type = "item", name = "bob-lead-plate", amount = 2 } }, allow_decomposition = false, @@ -159,7 +159,7 @@ data:extend({ auto_recycle = false, ingredients = { { type = "item", name = "bob-alumina", amount = 2 }, - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, }, results = { { type = "item", name = "bob-aluminium-plate", amount = 2 } }, allow_decomposition = false, @@ -176,7 +176,7 @@ data:extend({ auto_recycle = false, ingredients = { { type = "item", name = "bob-calcium-chloride", amount = 2 }, - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, { type = "item", name = "bob-rutile-ore", amount = 2 }, }, results = { { type = "item", name = "bob-titanium-plate", amount = 2 } }, @@ -194,7 +194,7 @@ data:extend({ auto_recycle = false, ingredients = { { type = "item", name = "bob-calcium-chloride", amount = 2 }, - { type = "item", name = "bob-carbon", amount = 1 }, + { type = "item", name = "carbon", amount = 1 }, { type = "item", name = "bob-quartz", amount = 2 }, }, results = { { type = "item", name = "bob-silicon-plate", amount = 2 } }, From 50529c3b4d02fd60d2019e070d4822975e327d62 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:33:08 -0700 Subject: [PATCH 09/40] Update technology-updates.lua --- bobplates/prototypes/technology-updates.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bobplates/prototypes/technology-updates.lua b/bobplates/prototypes/technology-updates.lua index 4f4e51f90..3698257fc 100644 --- a/bobplates/prototypes/technology-updates.lua +++ b/bobplates/prototypes/technology-updates.lua @@ -162,3 +162,8 @@ if mods["Nuclear Fuel"] then "production-science-pack" ) end + +if mods["space-age"] then + bobmods.lib.recipe.hide("carbon") + bobmods.lib.tech.remove_recipe_unlock("tungsten-carbide", "carbon") +end From 7d1dd949ca50b02ec8f17584426cd87f88f2ea1e Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:34:02 -0700 Subject: [PATCH 10/40] Update bobplates_2.0.0.json --- bobplates/migrations/bobplates_2.0.0.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/bobplates/migrations/bobplates_2.0.0.json b/bobplates/migrations/bobplates_2.0.0.json index 9be430568..112207b7e 100644 --- a/bobplates/migrations/bobplates_2.0.0.json +++ b/bobplates/migrations/bobplates_2.0.0.json @@ -70,7 +70,6 @@ ["brass-gear-wheel", "bob-brass-gear-wheel"], ["bronze-alloy", "bob-bronze-alloy"], ["calcium-chloride", "bob-calcium-chloride"], - ["carbon", "bob-carbon"], ["ceramic-bearing", "bob-ceramic-bearing"], ["ceramic-bearing-ball", "bob-ceramic-bearing-ball"], ["chlorine-barrel", "bob-chlorine-barrel"], @@ -227,7 +226,6 @@ ["brass-gear-wheel", "bob-brass-gear-wheel"], ["bronze-alloy", "bob-bronze-alloy"], ["calcium-chloride", "bob-calcium-chloride"], - ["carbon", "bob-carbon"], ["ceramic-bearing", "bob-ceramic-bearing"], ["ceramic-bearing-ball", "bob-ceramic-bearing-ball"], ["coal-cracking", "bob-coal-cracking"], From d9f2004da1f73f42a2296205b2d18c62fb403337 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:34:36 -0700 Subject: [PATCH 11/40] Update bobplates_2.0.6.json --- bobplates/migrations/bobplates_2.0.6.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bobplates/migrations/bobplates_2.0.6.json b/bobplates/migrations/bobplates_2.0.6.json index fc3848149..421b70d1c 100644 --- a/bobplates/migrations/bobplates_2.0.6.json +++ b/bobplates/migrations/bobplates_2.0.6.json @@ -1,4 +1,8 @@ { + "item": + [ + ["bob-carbon", "carbon"] + ], "recipe": [ ["bob-heavy-water-electrolysis", "bob-deuterium"] From f5b1427057f7638967d12f49e62fa53c51e30be5 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:35:39 -0700 Subject: [PATCH 12/40] Update recipe-updates.lua --- bobvehicleequipment/prototypes/recipe-updates.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bobvehicleequipment/prototypes/recipe-updates.lua b/bobvehicleequipment/prototypes/recipe-updates.lua index d21d108b4..34f932c30 100644 --- a/bobvehicleequipment/prototypes/recipe-updates.lua +++ b/bobvehicleequipment/prototypes/recipe-updates.lua @@ -735,14 +735,14 @@ if data.raw.fluid["hydrogen-chloride"] then end end -if data.raw.item["bob-carbon"] then +if data.raw.item["carbon"] then bobmods.lib.recipe.add_ingredient( "bob-vehicle-fission-reactor-equipment-1", - { type = "item", name = "bob-carbon", amount = 40 } + { type = "item", name = "carbon", amount = 40 } ) bobmods.lib.recipe.add_ingredient( "bob-vehicle-fission-cell-equipment-1", - { type = "item", name = "bob-carbon", amount = 20 } + { type = "item", name = "carbon", amount = 20 } ) end From 8e7a73e30a6e7e04f31cbd02587765a054a56e5a Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:36:30 -0700 Subject: [PATCH 13/40] Update recipe-updates.lua --- bobelectronics/prototypes/recipe-updates.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bobelectronics/prototypes/recipe-updates.lua b/bobelectronics/prototypes/recipe-updates.lua index 2e49600db..e4a8718e7 100644 --- a/bobelectronics/prototypes/recipe-updates.lua +++ b/bobelectronics/prototypes/recipe-updates.lua @@ -25,8 +25,8 @@ if data.raw.item["bob-tinned-copper-cable"] then bobmods.lib.recipe.replace_ingredient("bob-integrated-electronics", "copper-cable", "bob-tinned-copper-cable") end -if data.raw.item["bob-carbon"] then - bobmods.lib.recipe.replace_ingredient("bob-basic-electronic-components", "coal", "bob-carbon") +if data.raw.item["carbon"] then + bobmods.lib.recipe.replace_ingredient("bob-basic-electronic-components", "coal", "carbon") end if data.raw.item["bob-silicon-wafer"] then From 21d6907064eab1fcc978b9027f0feffc5f94aff8 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:36:48 -0700 Subject: [PATCH 14/40] Update data-updates.lua --- bobelectronics/data-updates.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bobelectronics/data-updates.lua b/bobelectronics/data-updates.lua index 25168c05c..440561a67 100644 --- a/bobelectronics/data-updates.lua +++ b/bobelectronics/data-updates.lua @@ -5,12 +5,6 @@ require("prototypes.aai-integration") data.raw.item["copper-cable"].subgroup = "bob-electronic-components" data.raw.item["copper-cable"].order = "0-a1" -if data.raw["recipe-category"]["bob-chemical-furnace"] then - if data.raw.recipe["bob-carbon"] then - data.raw.recipe["bob-carbon"].category = "bob-chemical-furnace" - end -end - if data.raw["recipe-category"]["bob-mixing-furnace"] then if data.raw.recipe["bob-solder-alloy"] then data.raw.recipe["bob-solder-alloy"].category = "bob-mixing-furnace" From 99615ca941b82792239dde74e1f9ab8510ed94f8 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:38:11 -0700 Subject: [PATCH 15/40] Update bobplates.cfg --- bobplates/locale/cs/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/cs/bobplates.cfg b/bobplates/locale/cs/bobplates.cfg index d5f8ea186..737c72c90 100644 --- a/bobplates/locale/cs/bobplates.cfg +++ b/bobplates/locale/cs/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Oxid kobaltu bob-salt=Sůl bob-sodium-hydroxide=Hydroxid sodný -bob-carbon=Uhlík +carbon=Uhlík bob-resin=Pryskyřice bob-rubber=Pryž bob-silicon-wafer=Křemíkový plát From 5bae4930fd1410336a766784401fb347cbc68196 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:38:43 -0700 Subject: [PATCH 16/40] Update bobplates.cfg --- bobplates/locale/fr/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/fr/bobplates.cfg b/bobplates/locale/fr/bobplates.cfg index 3e73e6c48..72440b95a 100644 --- a/bobplates/locale/fr/bobplates.cfg +++ b/bobplates/locale/fr/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Oxyde de cobalt bob-salt=Sel bob-sodium-hydroxide=Hydroxyde de sodium -bob-carbon=Carbone +carbon=Carbone bob-resin=Résine bob-rubber=Gomme bob-silicon-wafer=Wafer de silicium From 36f5ea6bc680591c3a4ba7f8104d6d81dc98777c Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:38:57 -0700 Subject: [PATCH 17/40] Update bobplates.cfg --- bobplates/locale/es-ES/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/es-ES/bobplates.cfg b/bobplates/locale/es-ES/bobplates.cfg index d76d949ea..84e2dd7ee 100644 --- a/bobplates/locale/es-ES/bobplates.cfg +++ b/bobplates/locale/es-ES/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Óxido de cobalto bob-salt=Sal bob-sodium-hydroxide=Hidróxido de sodio -bob-carbon=Carbono +carbon=Carbono bob-resin=Resina bob-rubber=Hule bob-silicon-wafer=Oblea de silicio From 2d4203346ae30adae0084a3c812bf9a7ed02f63c Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:39:09 -0700 Subject: [PATCH 18/40] Update bobplates.cfg --- bobplates/locale/en/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/en/bobplates.cfg b/bobplates/locale/en/bobplates.cfg index 9b5866f3b..59b9a77db 100644 --- a/bobplates/locale/en/bobplates.cfg +++ b/bobplates/locale/en/bobplates.cfg @@ -44,7 +44,7 @@ bob-cobalt-oxide=Cobalt oxide bob-salt=Salt bob-sodium-hydroxide=Sodium hydroxide -bob-carbon=Carbon +carbon=Carbon bob-resin=Resin bob-rubber=Rubber bob-silicon-wafer=Silicon wafer From b5c4e57e212d713e87f3cfbe3cd0b2cc9affc96b Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:39:25 -0700 Subject: [PATCH 19/40] Update bobplates.cfg --- bobplates/locale/de/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/de/bobplates.cfg b/bobplates/locale/de/bobplates.cfg index c53204b51..7ebe800e3 100644 --- a/bobplates/locale/de/bobplates.cfg +++ b/bobplates/locale/de/bobplates.cfg @@ -44,7 +44,7 @@ bob-cobalt-oxide=Kobaltoxid bob-salt=Salz bob-sodium-hydroxide=Natriumhydroxid -bob-carbon=Karbon +carbon=Karbon bob-resin=Harz bob-rubber=Gummi bob-silicon-wafer=Siliziumwafer From ba64dfccd367afe3f61734d90b8ab650b6d715bc Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:39:45 -0700 Subject: [PATCH 20/40] Update bobplates.cfg --- bobplates/locale/id/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/id/bobplates.cfg b/bobplates/locale/id/bobplates.cfg index 0ef91ac19..60a990ca1 100644 --- a/bobplates/locale/id/bobplates.cfg +++ b/bobplates/locale/id/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Cobalt oksida bob-salt=Garam bob-sodium-hydroxide=Natrium hidroksida -bob-carbon=Karbon +carbon=Karbon bob-resin=Resin bob-rubber=Karet bob-silicon-wafer=Wafer silikon From 1ef78fa58527c2416fb09daf46df7a322844e68d Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:41:04 -0700 Subject: [PATCH 21/40] Update bobplates.cfg --- bobplates/locale/it/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/it/bobplates.cfg b/bobplates/locale/it/bobplates.cfg index 64c6a9e77..739b43c6b 100644 --- a/bobplates/locale/it/bobplates.cfg +++ b/bobplates/locale/it/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Ossido di cobalto bob-salt=Sale bob-sodium-hydroxide=Idrossido di sodio -bob-carbon=Carbone lavorato +carbon=Carbone lavorato bob-resin=Resina bob-rubber=Gomma bob-silicon-wafer=Wafer di silicio From 41a2504c78128399a03c868afae8445c1b939418 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:41:18 -0700 Subject: [PATCH 22/40] Update bobplates.cfg --- bobplates/locale/ja/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/ja/bobplates.cfg b/bobplates/locale/ja/bobplates.cfg index 102f9b5cf..b6fbcb131 100644 --- a/bobplates/locale/ja/bobplates.cfg +++ b/bobplates/locale/ja/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=酸化コバルト bob-salt=塩 bob-sodium-hydroxide=水酸化ナトリウム -bob-carbon=カーボン +carbon=カーボン bob-resin=レジン bob-rubber=ゴム bob-silicon-wafer=シリコンウェーハー From fcc92b44af16bbe38f4d113a66f025f1e9640da9 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:41:34 -0700 Subject: [PATCH 23/40] Update bobplates.cfg --- bobplates/locale/ko/bobplates.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bobplates/locale/ko/bobplates.cfg b/bobplates/locale/ko/bobplates.cfg index 38904c345..4f71fbcc3 100644 --- a/bobplates/locale/ko/bobplates.cfg +++ b/bobplates/locale/ko/bobplates.cfg @@ -46,7 +46,7 @@ bob-silicon-powder=실리콘 분말 bob-cobalt-oxide=산화 코발트 bob-salt=소금 bob-sodium-hydroxide=수산화 나트륨 -bob-carbon=탄소 +carbon=탄소 bob-resin=수지 bob-rubber=고무 bob-silicon-wafer=실리콘 웨이퍼 @@ -323,4 +323,4 @@ bobmods-plates-vanillabarrelling=활성화하면, 기본 게임처럼 조립 기 bobmods-plates-bluedeuterium=중수소는 파란색이라고 알고있으며, 게임에서 그렇게 보여줬으면 한다면 활성화하세요. bobmods-plates-convert-recipes=활성화하면, 다양한 용광로 유형 사이에 자유로운 변환이 가능하도록, 제작법을 추가됩니다. bobmods-plates-expensive-electrolysis=활성화하면, 전기 분해 장치를 가동하는데 필요한 전력 비용이 증가합니다. 이렇게 되면 전기분해로 얻는 수소를 연소하는 것보다 더 많은 전력 비용이 발생하게 됩니다. -bobmods-plates-nuclearupdate=활성화하면, 토륨으로부터 플루토늄을 제거하는 방법이나, 중수소 연료 전지 제작에 필요한 연료 전지 재활용 공정에 핵융합 촉매를 추가하는 등 작은 변화를 시도합니다. \ No newline at end of file +bobmods-plates-nuclearupdate=활성화하면, 토륨으로부터 플루토늄을 제거하는 방법이나, 중수소 연료 전지 제작에 필요한 연료 전지 재활용 공정에 핵융합 촉매를 추가하는 등 작은 변화를 시도합니다. From 21a0990d0c75bff3c551b9b6f2e598e6560c03b4 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:41:49 -0700 Subject: [PATCH 24/40] Update bobplates.cfg --- bobplates/locale/nl/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/nl/bobplates.cfg b/bobplates/locale/nl/bobplates.cfg index 1d63189c4..bc37e4150 100644 --- a/bobplates/locale/nl/bobplates.cfg +++ b/bobplates/locale/nl/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Kobaltoxide bob-salt=Zout bob-sodium-hydroxide=Natriumhydroxide -bob-carbon=Koolstof +carbon=Koolstof bob-resin=Hars bob-rubber=Rubber bob-silicon-wafer=Silicium wafer From d093e84c9e4ee49350c88b06e9a4ea14c7851392 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:42:17 -0700 Subject: [PATCH 25/40] Update bobplates.cfg --- bobplates/locale/pl/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/pl/bobplates.cfg b/bobplates/locale/pl/bobplates.cfg index 3dc6c475d..1480252ee 100644 --- a/bobplates/locale/pl/bobplates.cfg +++ b/bobplates/locale/pl/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Tlenek kobaltu bob-salt=Sol bob-sodium-hydroxide=Wodorotlenek sodu -bob-carbon=Karbon +carbon=Karbon bob-resin=Żywica bob-rubber=Guma bob-silicon-wafer=Wafel krzemowy From ade373eb0285f75a49a38745701073611a30837c Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:42:27 -0700 Subject: [PATCH 26/40] Update bobplates.cfg --- bobplates/locale/pt-BR/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/pt-BR/bobplates.cfg b/bobplates/locale/pt-BR/bobplates.cfg index 90a4f1ad7..6016e8aaf 100644 --- a/bobplates/locale/pt-BR/bobplates.cfg +++ b/bobplates/locale/pt-BR/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Óxido de cobalto bob-salt=Sal bob-sodium-hydroxide=Hidróxido de sódio -bob-carbon=Carbono +carbon=Carbono bob-resin=Resina bob-rubber=Borracha bob-silicon-wafer=Wafer de silício From 7409b318aa2a497a34b8062aa8041301e8b952b6 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:42:53 -0700 Subject: [PATCH 27/40] Update bobplates.cfg --- bobplates/locale/ru/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/ru/bobplates.cfg b/bobplates/locale/ru/bobplates.cfg index 72b6b4088..10c44100a 100644 --- a/bobplates/locale/ru/bobplates.cfg +++ b/bobplates/locale/ru/bobplates.cfg @@ -44,7 +44,7 @@ bob-cobalt-oxide=Оксид кобальта bob-salt=Соль bob-sodium-hydroxide=Гидроксид натрия -bob-carbon=Углерод +carbon=Углерод bob-resin=Смола bob-rubber=Резина bob-silicon-wafer=Полупроводниковая пластина From 8ad49c4669b886c6331be7129ec72f999bbdfb92 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:43:06 -0700 Subject: [PATCH 28/40] Update bobplates.cfg --- bobplates/locale/th/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/th/bobplates.cfg b/bobplates/locale/th/bobplates.cfg index 92914c15c..325af47d6 100644 --- a/bobplates/locale/th/bobplates.cfg +++ b/bobplates/locale/th/bobplates.cfg @@ -42,7 +42,7 @@ bob-cobalt-oxide=โคบอลต์ออกไซด์ bob-salt=เกลือ bob-sodium-hydroxide=โซดาไฟ -bob-carbon=คาร์บอน +carbon=คาร์บอน bob-resin=ยางไม้ bob-rubber=ยาง bob-silicon-wafer=เวเฟอร์ซิลิคอน From 2b5b0bfd6a844b1531d1361d5b21a8aa3d62c8d6 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:43:49 -0700 Subject: [PATCH 29/40] Update bobplates.cfg --- bobplates/locale/tr/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/tr/bobplates.cfg b/bobplates/locale/tr/bobplates.cfg index 5e7af8176..637832f24 100644 --- a/bobplates/locale/tr/bobplates.cfg +++ b/bobplates/locale/tr/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Kobalt oksit bob-salt=Tuz bob-sodium-hydroxide=Sodyum hidroksit -bob-carbon=Karbon +carbon=Karbon bob-resin=Reçine bob-rubber=Kauçuk bob-silicon-wafer=Silikon levha From 3ebc360fb7e6cf4ce09d3b7801ba7e65cc0c622a Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:43:57 -0700 Subject: [PATCH 30/40] Update bobplates.cfg --- bobplates/locale/uk/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/uk/bobplates.cfg b/bobplates/locale/uk/bobplates.cfg index 152f2556d..4b03734ed 100644 --- a/bobplates/locale/uk/bobplates.cfg +++ b/bobplates/locale/uk/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=Кобальтин bob-salt=Сіль bob-sodium-hydroxide=Їдкий натр -bob-carbon=Вуглець +carbon=Вуглець bob-resin=Гума bob-rubber=Каучук bob-silicon-wafer=Кремнієвий лист From c941e3e0a435df88b47c25bee342198cf0f8a329 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:44:07 -0700 Subject: [PATCH 31/40] Update bobplates.cfg --- bobplates/locale/zh-CN/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/zh-CN/bobplates.cfg b/bobplates/locale/zh-CN/bobplates.cfg index d4920544f..32ac6b79d 100644 --- a/bobplates/locale/zh-CN/bobplates.cfg +++ b/bobplates/locale/zh-CN/bobplates.cfg @@ -43,7 +43,7 @@ bob-cobalt-oxide=氧化钴 bob-salt=盐 bob-sodium-hydroxide=氢氧化钠 -bob-carbon=碳 +carbon=碳 bob-resin=树脂 bob-rubber=橡胶 bob-silicon-wafer=硅晶片 From f859c722c62e9dae252751bf7437e0ad7708c98c Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 16:44:16 -0700 Subject: [PATCH 32/40] Update bobplates.cfg --- bobplates/locale/zh-TW/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/zh-TW/bobplates.cfg b/bobplates/locale/zh-TW/bobplates.cfg index 84ac69765..2439289d7 100644 --- a/bobplates/locale/zh-TW/bobplates.cfg +++ b/bobplates/locale/zh-TW/bobplates.cfg @@ -44,7 +44,7 @@ bob-cobalt-oxide=氧化鈷 bob-salt=鹽 bob-sodium-hydroxide=氫氧化鈉 -bob-carbon=碳 +carbon=碳 bob-resin=樹脂 bob-rubber=橡膠 bob-silicon-wafer=矽晶圓 From 225ef76480f7a4be5e4901d4fc821cb0fb5261b3 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 17:03:45 -0700 Subject: [PATCH 33/40] Update bobplates.cfg --- bobplates/locale/ko/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/ko/bobplates.cfg b/bobplates/locale/ko/bobplates.cfg index 4f71fbcc3..425b51a53 100644 --- a/bobplates/locale/ko/bobplates.cfg +++ b/bobplates/locale/ko/bobplates.cfg @@ -323,4 +323,4 @@ bobmods-plates-vanillabarrelling=활성화하면, 기본 게임처럼 조립 기 bobmods-plates-bluedeuterium=중수소는 파란색이라고 알고있으며, 게임에서 그렇게 보여줬으면 한다면 활성화하세요. bobmods-plates-convert-recipes=활성화하면, 다양한 용광로 유형 사이에 자유로운 변환이 가능하도록, 제작법을 추가됩니다. bobmods-plates-expensive-electrolysis=활성화하면, 전기 분해 장치를 가동하는데 필요한 전력 비용이 증가합니다. 이렇게 되면 전기분해로 얻는 수소를 연소하는 것보다 더 많은 전력 비용이 발생하게 됩니다. -bobmods-plates-nuclearupdate=활성화하면, 토륨으로부터 플루토늄을 제거하는 방법이나, 중수소 연료 전지 제작에 필요한 연료 전지 재활용 공정에 핵융합 촉매를 추가하는 등 작은 변화를 시도합니다. +bobmods-plates-nuclearupdate=bobmods-plates-nuclearupdate=활성화하면, 토륨으로부터 플루토늄을 제거하는 방법이나, 중수소 연료 전지 제작에 필요한 연료 전지 재활용 공정에 핵융합 촉매를 추가하는 등 작은 변화를 시도합니다. From c2f451cf2dbbfe62c1aa4c1eb44fe0dbda0de1bd Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 17:04:13 -0700 Subject: [PATCH 34/40] Update bobplates.cfg --- bobplates/locale/ko/bobplates.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/locale/ko/bobplates.cfg b/bobplates/locale/ko/bobplates.cfg index 425b51a53..4f71fbcc3 100644 --- a/bobplates/locale/ko/bobplates.cfg +++ b/bobplates/locale/ko/bobplates.cfg @@ -323,4 +323,4 @@ bobmods-plates-vanillabarrelling=활성화하면, 기본 게임처럼 조립 기 bobmods-plates-bluedeuterium=중수소는 파란색이라고 알고있으며, 게임에서 그렇게 보여줬으면 한다면 활성화하세요. bobmods-plates-convert-recipes=활성화하면, 다양한 용광로 유형 사이에 자유로운 변환이 가능하도록, 제작법을 추가됩니다. bobmods-plates-expensive-electrolysis=활성화하면, 전기 분해 장치를 가동하는데 필요한 전력 비용이 증가합니다. 이렇게 되면 전기분해로 얻는 수소를 연소하는 것보다 더 많은 전력 비용이 발생하게 됩니다. -bobmods-plates-nuclearupdate=bobmods-plates-nuclearupdate=활성화하면, 토륨으로부터 플루토늄을 제거하는 방법이나, 중수소 연료 전지 제작에 필요한 연료 전지 재활용 공정에 핵융합 촉매를 추가하는 등 작은 변화를 시도합니다. +bobmods-plates-nuclearupdate=활성화하면, 토륨으로부터 플루토늄을 제거하는 방법이나, 중수소 연료 전지 제작에 필요한 연료 전지 재활용 공정에 핵융합 촉매를 추가하는 등 작은 변화를 시도합니다. From 72cd78b0033d3821c5cff581ec5d8fbdf551e74c Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 17:05:43 -0700 Subject: [PATCH 35/40] Update bobplates.cfg From bc1848416b81c81e41625ab5902d7e080a9bd6d9 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Sun, 5 Apr 2026 17:06:48 -0700 Subject: [PATCH 36/40] Update bobplates.cfg From f67324643e3b7fe781ccf71b1d2f2793d183ae26 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Mon, 6 Apr 2026 11:34:06 -0700 Subject: [PATCH 37/40] Update bobplates_2.0.6.json --- bobplates/migrations/bobplates_2.0.6.json | 1 + 1 file changed, 1 insertion(+) diff --git a/bobplates/migrations/bobplates_2.0.6.json b/bobplates/migrations/bobplates_2.0.6.json index 421b70d1c..59c54f39f 100644 --- a/bobplates/migrations/bobplates_2.0.6.json +++ b/bobplates/migrations/bobplates_2.0.6.json @@ -5,6 +5,7 @@ ], "recipe": [ + ["bob-carbon", "carbon"], ["bob-heavy-water-electrolysis", "bob-deuterium"] ] } From e9e297c16942b55702cdd37f6837382c94bd57b9 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Mon, 6 Apr 2026 11:37:50 -0700 Subject: [PATCH 38/40] Update resource-recipe.lua --- bobplates/prototypes/recipe/resource-recipe.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bobplates/prototypes/recipe/resource-recipe.lua b/bobplates/prototypes/recipe/resource-recipe.lua index 97ed3bad4..48af9640a 100644 --- a/bobplates/prototypes/recipe/resource-recipe.lua +++ b/bobplates/prototypes/recipe/resource-recipe.lua @@ -1,7 +1,7 @@ data:extend({ { type = "recipe", - name = "bob-carbon", + name = "carbon", localised_name = { "item-name.carbon" }, category = "bob-chemical-furnace", subgroup = "bob-material-chemical", @@ -294,5 +294,6 @@ data.raw.recipe["solid-fuel-from-light-oil"].allow_productivity = false data.raw.recipe["solid-fuel-from-heavy-oil"].allow_productivity = false if mods["space-age"] then - data.raw.recipe["bob-carbon"].allow_productivity = false + data.raw.recipe["carbon"].allow_productivity = false + data.raw.recipe["coal-synthesis"].allow_productivity = false end From 02c5d3297de6b29453765041f2b4031d00eb14b8 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Mon, 6 Apr 2026 11:38:16 -0700 Subject: [PATCH 39/40] Update technology.lua --- bobplates/prototypes/technology.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bobplates/prototypes/technology.lua b/bobplates/prototypes/technology.lua index 45b86dde6..76de0d0e6 100644 --- a/bobplates/prototypes/technology.lua +++ b/bobplates/prototypes/technology.lua @@ -80,7 +80,7 @@ data:extend({ }, { type = "unlock-recipe", - recipe = "bob-carbon", + recipe = "carbon", }, { type = "unlock-recipe", From 30474dca8d35fd154071197707d8315aab8937c4 Mon Sep 17 00:00:00 2001 From: Qatavin <108201496+Qatavin@users.noreply.github.com> Date: Mon, 6 Apr 2026 11:43:40 -0700 Subject: [PATCH 40/40] Update technology-updates.lua --- bobplates/prototypes/technology-updates.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/bobplates/prototypes/technology-updates.lua b/bobplates/prototypes/technology-updates.lua index 3698257fc..618f61142 100644 --- a/bobplates/prototypes/technology-updates.lua +++ b/bobplates/prototypes/technology-updates.lua @@ -164,6 +164,5 @@ if mods["Nuclear Fuel"] then end if mods["space-age"] then - bobmods.lib.recipe.hide("carbon") bobmods.lib.tech.remove_recipe_unlock("tungsten-carbide", "carbon") end