From b484d98e8bd3855d94e70c6d53d931e702a3f501 Mon Sep 17 00:00:00 2001 From: notnotmelon Date: Fri, 29 Dec 2023 14:08:44 -0600 Subject: [PATCH] moondrop turd balance --- changelog.txt | 1 + prototypes/upgrades/moondrop.lua | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/changelog.txt b/changelog.txt index f4d131ff..fa06e885 100644 --- a/changelog.txt +++ b/changelog.txt @@ -20,6 +20,7 @@ Date: ??? - buffed all three paths of arthurian turd (path 1: abacus crafting time halfed, prod allowed in abacus recipe, prod module boost increased 15% -> 25%) (path 2: now also removes bedding from egg recipes & speeds egg recipes by 2x) (path 3: agar amount increased from 2 -> 5) - buffed atomizer turd path 2; cognition-osteochain requirement reduced from 5 -> 2 - buffed sap turd path 2 to give resveratrol instead of cellulose + - buffed paths 1&2 of moondrop turd. path 1 output multipler increased from 10% to 20%. path 2 oxygen output increased 30->40. path 2 recipe time decreased 15s -> 8s. path 2 lamp recycle chance increased 50% -> 75% - buffed all three paths of moss turd (chlorinated water is effected by productivity, path 2 gives 10% stone back as gravel, path 3 refined syngas recipe is now useable) - added creature chamber turd (avalible at py science pack 2) credit: soren - reworked scrondrix turd path 1 & 2 diff --git a/prototypes/upgrades/moondrop.lua b/prototypes/upgrades/moondrop.lua index 60c331a7..b456009e 100644 --- a/prototypes/upgrades/moondrop.lua +++ b/prototypes/upgrades/moondrop.lua @@ -10,7 +10,7 @@ if data and not yafc_turd_integration then }) do recipe.name = recipe.name .. '-cu' FUN.add_ingredient(recipe, {name = 'copper-ore', amount = 10, type = 'item'}) - FUN.multiply_result_amount(recipe, 'moondrop', 1.1) + FUN.multiply_result_amount(recipe, 'moondrop', 1.2) recipe.energy_required = math.ceil(recipe.energy_required * 0.8) data:extend{recipe} end @@ -19,10 +19,10 @@ if data and not yafc_turd_integration then name = 'methane-co2-with-lamp', results = { {type = 'fluid', amount = 60, name = 'methane'}, - {type = 'fluid', amount = 30, name = 'oxygen'}, - {type = 'item', amount = 1, name = 'small-lamp', probability = 0.5}, + {type = 'fluid', amount = 40, name = 'oxygen'}, + {type = 'item', amount = 1, name = 'small-lamp', probability = 0.75}, }, - energy_required = 15, + energy_required = 8, ingredients = { {type = 'item', amount = 1, name = 'small-lamp'}, {type = 'fluid', amount = 100, name = 'water'},