Skip to content

Commit

Permalink
Update catalyst recipes #189
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Aug 11, 2024
1 parent 4f2340d commit 9d01de6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
24 changes: 12 additions & 12 deletions bobenemies/prototypes/alien-artifact.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ if settings.startup["bobmods-enemies-enableartifacts"].value == true then
{
type = "recipe",
name = "alien-artifact-red-from-basic",
results = { { type = "item", name = "alien-artifact-red", amount = 5 } },
results = { { type = "item", name = "alien-artifact-red", amount = 5, ignored_by_productivity = 1, ignored_by_stats = 1 } },
ingredients = {
{ type = "item", name = "alien-artifact-red", amount = 1 },
{ type = "item", name = "alien-artifact-red", amount = 1, ignored_by_stats = 1 },
{ type = "item", name = "alien-artifact", amount = 5 },
},
energy_required = 1,
Expand All @@ -78,9 +78,9 @@ if settings.startup["bobmods-enemies-enableartifacts"].value == true then
{
type = "recipe",
name = "alien-artifact-orange-from-basic",
results = { { type = "item", name = "alien-artifact-orange", amount = 5 } },
results = { { type = "item", name = "alien-artifact-orange", amount = 5, ignored_by_productivity = 1, ignored_by_stats = 1 } },
ingredients = {
{ type = "item", name = "alien-artifact-orange", amount = 1 },
{ type = "item", name = "alien-artifact-orange", amount = 1, ignored_by_stats = 1 },
{ type = "item", name = "alien-artifact", amount = 5 },
},
energy_required = 1,
Expand All @@ -101,9 +101,9 @@ if settings.startup["bobmods-enemies-enableartifacts"].value == true then
{
type = "recipe",
name = "alien-artifact-yellow-from-basic",
results = { { type = "item", name = "alien-artifact-yellow", amount = 5 } },
results = { { type = "item", name = "alien-artifact-yellow", amount = 5, ignored_by_productivity = 1, ignored_by_stats = 1 } },
ingredients = {
{ type = "item", name = "alien-artifact-yellow", amount = 1 },
{ type = "item", name = "alien-artifact-yellow", amount = 1, ignored_by_stats = 1 },
{ type = "item", name = "alien-artifact", amount = 5 },
},
energy_required = 1,
Expand All @@ -124,9 +124,9 @@ if settings.startup["bobmods-enemies-enableartifacts"].value == true then
{
type = "recipe",
name = "alien-artifact-green-from-basic",
results = { { type = "item", name = "alien-artifact-green", amount = 5 } },
results = { { type = "item", name = "alien-artifact-green", amount = 5, ignored_by_productivity = 1, ignored_by_stats = 1 } },
ingredients = {
{ type = "item", name = "alien-artifact-green", amount = 1 },
{ type = "item", name = "alien-artifact-green", amount = 1, ignored_by_stats = 1 },
{ type = "item", name = "alien-artifact", amount = 5 },
},
energy_required = 1,
Expand All @@ -147,9 +147,9 @@ if settings.startup["bobmods-enemies-enableartifacts"].value == true then
{
type = "recipe",
name = "alien-artifact-blue-from-basic",
results = { { type = "item", name = "alien-artifact-blue", amount = 5 } },
results = { { type = "item", name = "alien-artifact-blue", amount = 5, ignored_by_productivity = 1, ignored_by_stats = 1 } },
ingredients = {
{ type = "item", name = "alien-artifact-blue", amount = 1 },
{ type = "item", name = "alien-artifact-blue", amount = 1, ignored_by_stats = 1 },
{ type = "item", name = "alien-artifact", amount = 5 },
},
energy_required = 1,
Expand All @@ -170,9 +170,9 @@ if settings.startup["bobmods-enemies-enableartifacts"].value == true then
{
type = "recipe",
name = "alien-artifact-purple-from-basic",
results = { { type = "item", name = "alien-artifact-purple", amount = 5 } },
results = { { type = "item", name = "alien-artifact-purple", amount = 5, ignored_by_productivity = 1, ignored_by_stats = 1 } },
ingredients = {
{ type = "item", name = "alien-artifact-purple", amount = 1 },
{ type = "item", name = "alien-artifact-purple", amount = 1, ignored_by_stats = 1 },
{ type = "item", name = "alien-artifact", amount = 5 },
},
energy_required = 1,
Expand Down
16 changes: 8 additions & 8 deletions bobplates/prototypes/recipe/nuclear-recipe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ data:extend({
enabled = false,
category = "centrifuging",
ingredients = {
{ type = "item", name = "plutonium-239", amount = 40 },
{ type = "item", name = "uranium-238", amount = 5 },
{ type = "item", name = "plutonium-239", amount = 40, ignored_by_stats = 40 },
{ type = "item", name = "uranium-238", amount = 5, ignored_by_stats = 2 },
},
results = {
{ type = "item", name = "plutonium-239", amount = 41 },
{ type = "item", name = "uranium-238", amount = 2 },
{ type = "item", name = "plutonium-239", amount = 41, ignored_by_productivity = 40, ignored_by_stats = 40 },
{ type = "item", name = "uranium-238", amount = 2, ignored_by_productivity = 2, ignored_by_stats = 2 },
},
crafting_machine_tint = {
primary = { r = 1, g = 0.7, b = 0 },
Expand Down Expand Up @@ -206,12 +206,12 @@ if settings.startup["bobmods-plates-nuclearupdate"].value == true then
enabled = false,
category = "centrifuging",
ingredients = {
{ type = "item", name = "uranium-235", amount = 5 },
{ type = "item", name = "uranium-238", amount = 15 },
{ type = "item", name = "uranium-235", amount = 5, ignored_by_stats = 3 },
{ type = "item", name = "uranium-238", amount = 15, ignored_by_stats = 10 },
},
results = {
{ type = "item", name = "uranium-235", amount = 3 },
{ type = "item", name = "uranium-238", amount = 10 },
{ type = "item", name = "uranium-235", amount = 3, ignored_by_productivity = 3, ignored_by_stats = 3 },
{ type = "item", name = "uranium-238", amount = 10, ignored_by_productivity = 10, ignored_by_stats = 10 },
{ type = "item", name = "plutonium-239", amount = 1 },
},
crafting_machine_tint = {
Expand Down

0 comments on commit 9d01de6

Please sign in to comment.