Skip to content

Commit

Permalink
Moss MK02-MK04 breeding recipes are now significantly cheaper.
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Nov 22, 2024
1 parent 083d834 commit ef95719
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Date: ????
Changes:
- Fixed milk barreling recipes did not work. https://github.com/pyanodon/pyalienlife/pull/278
- Fixed incorrect crafting speed for fish farms MK02-MK04.
- Moss MK02-MK04 breeding recipes are now significantly cheaper.
- Fast wood forestry animation improvements:
- Animation now uses FSM to ensure no floating robots when the machine stops crafting.
- Animation no longer extents past the bounding box.
Expand Down
10 changes: 5 additions & 5 deletions prototypes/recipes/moss/recipes-moss-modules.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ RECIPE {
energy_required = 100,
ingredients = {
{type = "item", name = "moss-mk02", amount = 2},
{type = "item", name = "cdna", amount = 2},
{type = "item", name = "cdna", amount = 1},
{type = "item", name = "moss-gen", amount = 3},
{type = "fluid", name = "liquid-manure", amount = 50},
{type = "fluid", name = "xenogenic-cells", amount = 100},
{type = "item", name = "ground-sample01", amount = 5},
{type = "item", name = "solidified-sarcorus", amount = 1},
},
results = {
{type = "item", name = "moss-mk02", amount = 3},
{type = "item", name = "moss-mk02", amount = 5, ignored_by_stats = 2, ignored_by_productivity = 0},
},
icons =
{
Expand All @@ -121,15 +121,15 @@ RECIPE {
energy_required = 100,
ingredients = {
{type = "item", name = "moss-mk03", amount = 2},
{type = "item", name = "cdna", amount = 2},
{type = "item", name = "cdna", amount = 1},
{type = "item", name = "moss-gen", amount = 3},
{type = "fluid", name = "chelator", amount = 50},
{type = "fluid", name = "xenogenic-cells", amount = 100},
{type = "item", name = "rich-clay", amount = 5},
{type = "item", name = "paragen", amount = 1},
},
results = {
{type = "item", name = "moss-mk03", amount = 3},
{type = "item", name = "moss-mk03", amount = 5, ignored_by_stats = 2, ignored_by_productivity = 0},
},
icons =
{
Expand Down Expand Up @@ -159,7 +159,7 @@ RECIPE {
{type = "fluid", name = "rich-gas", amount = 100},
},
results = {
{type = "item", name = "moss-mk04", amount = 4},
{type = "item", name = "moss-mk04", amount = 5, ignored_by_stats = 2, ignored_by_productivity = 0},
},
icons =
{
Expand Down

0 comments on commit ef95719

Please sign in to comment.