Skip to content

Commit

Permalink
Updating ingredients format
Browse files Browse the repository at this point in the history
For bobplates
  • Loading branch information
KiwiHawk committed Aug 4, 2024
1 parent 35534dd commit 7dbd475
Show file tree
Hide file tree
Showing 9 changed files with 208 additions and 208 deletions.
6 changes: 3 additions & 3 deletions bobplates/prototypes/distillery.lua
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ if settings.startup["bobmods-plates-purewater"].value == true then
energy_required = 3,
enabled = false,
ingredients = {
{ "iron-plate", 3 },
{ "copper-plate", 3 },
{ "pipe", 2 },
{ type = "item", name = "iron-plate", amount = 3 },
{ type = "item", name = "copper-plate", amount = 3 },
{ type = "item", name = "pipe", amount = 2 },
},
results = { { type = "item", name = "bob-distillery", amount = 1 } },
},
Expand Down
6 changes: 3 additions & 3 deletions bobplates/prototypes/recipe/chemistry-recipe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ data:extend({
enabled = false,
energy_required = 5,
ingredients = {
{ "silver-plate", 1 },
{ type = "item", name = "silver-plate", amount = 1 },
{ type = "fluid", name = "nitrogen-dioxide", amount = 10 },
},
results = { { type = "item", name = "silver-nitrate", amount = 1 } },
Expand All @@ -621,8 +621,8 @@ data:extend({
enabled = false,
energy_required = 5,
ingredients = {
{ "silver-nitrate", 1 },
{ "sodium-hydroxide", 1 },
{ type = "item", name = "silver-nitrate", amount = 1 },
{ type = "item", name = "sodium-hydroxide", amount = 1 },
},
results = { { type = "item", name = "silver-oxide", amount = 1 } },
crafting_machine_tint = {
Expand Down
4 changes: 2 additions & 2 deletions bobplates/prototypes/recipe/electronics-recipe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ data:extend({
enabled = false,
energy_required = 15,
ingredients = {
{ "advanced-circuit", 20 },
{ "processing-unit", 2 },
{ type = "item", name = "advanced-circuit", amount = 20 },
{ type = "item", name = "processing-unit", amount = 2 },
{ type = "fluid", name = "sulfuric-acid", amount = 20 },
},
results = { { type = "item", name = "advanced-processing-unit", amount = 1 } },
Expand Down
Loading

0 comments on commit 7dbd475

Please sign in to comment.