Skip to content

Commit

Permalink
Changed the recipes for moss module breeding. Resolves pyanodon/pybug…
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Nov 23, 2024
1 parent 86649f8 commit a27a1f5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 18 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Date: ????
Animation plays 2x faster.
- The guar technology has been moved from logistics science to py science pack 2.
- The guar MK02 technology has been moved from py science pack 2 to chemical science.
- Changed the recipes for moss module breeding. Resolves https://github.com/pyanodon/pybugreports/issues/745
---------------------------------------------------------------------------------------------------
Version: 3.0.25
Date: 2024-11-20
Expand Down
28 changes: 10 additions & 18 deletions prototypes/recipes/seaweed/recipes-seaweed-modules.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
-- Secondary Upgrade Recipes--
-- SUR--
-- WIP--

-- mk02--
-- DONE--
-- Secondary Upgrade Recipes --

RECIPE {
type = "recipe",
Expand All @@ -20,38 +15,35 @@ RECIPE {
results = {{type = "item", name = "seaweed-mk02", amount = 1}}
}:add_unlock("seaweed-mk02")

--mk03--
--WIP--

RECIPE {
type = "recipe",
name = "seaweed-mk03",
category = "seaweed",
enabled = true,
energy_required = 25,
ingredients = {
{type = "fluid", name = "water", amount = 200},
{type = "item", name = "molybdenum-oxide", amount = 5},
{type = "fluid", name = "water-saline", amount = 200, fluidbox_index = 2},
{type = "item", name = "molybdenum-oxide", amount = 10},
{type = "item", name = "fertilizer", amount = 1},
{type = "item", name = "seaweed-mk02", amount = 5}
{type = "item", name = "seaweed-mk02", amount = 5},
{type = "item", name = "pesticide-mk01", amount = 5},
},
results = {{type = "item", name = "seaweed-mk03", amount = 1}}
}:add_unlock("seaweed-mk03")

--mk04--
--WIP--

RECIPE {
type = "recipe",
name = "seaweed-mk04",
category = "seaweed",
enabled = true,
energy_required = 25,
ingredients = {
{type = "fluid", name = "water", amount = 200},
{type = "item", name = "molybdenum-oxide", amount = 5},
{type = "fluid", name = "slacked-lime", amount = 200, fluidbox_index = 2},
{type = "item", name = "molybdenum-oxide", amount = 15},
{type = "item", name = "fertilizer", amount = 1},
{type = "item", name = "seaweed-mk03", amount = 5}
{type = "item", name = "seaweed-mk03", amount = 5},
{type = "item", name = "pesticide-mk01", amount = 5},
{type = "item", name = "pesticide-mk02", amount = 5},
},
results = {{type = "item", name = "seaweed-mk04", amount = 1}}
}:add_unlock("seaweed-mk04")

0 comments on commit a27a1f5

Please sign in to comment.