From d85ded6ddd602306d064fc1373566de420589102 Mon Sep 17 00:00:00 2001 From: PreLeyZero Date: Thu, 19 May 2022 16:32:04 +0200 Subject: [PATCH] changed rare metal cost --- changelog.txt | 2 ++ prototypes/248k_techs.lua | 2 +- prototypes/fi_recipes.lua | 16 ++++++++-------- prototypes/fu_recipes.lua | 4 ++-- 4 files changed, 13 insertions(+), 11 deletions(-) diff --git a/changelog.txt b/changelog.txt index ce6b352..5c96771 100644 --- a/changelog.txt +++ b/changelog.txt @@ -8,6 +8,8 @@ Date: 19.5.2022 - added module slots for laser/plasma/magnet facility, decreased their lead usage - added module slots to fusor, improves yield of fusor recipes - increased yield of lithium to lithium[6] + - made all rare metals cheaper + - removed KIX dependency from max beacon support tech --------------------------------------------------------------------------------------------------- Version: 1.0.21 Date: 13.5.2022 diff --git a/prototypes/248k_techs.lua b/prototypes/248k_techs.lua index 5547f58..29e3479 100644 --- a/prototypes/248k_techs.lua +++ b/prototypes/248k_techs.lua @@ -890,7 +890,7 @@ data:extend({ type = 'technology', icon = sprite('el_ki_sup_4_tech.png'), icon_size = 128, - prerequisites = {'el_ki_sup_3_tech','fu_ki_eff_3_tech','fu_ki_plus_1_tech'}, + prerequisites = {'el_ki_sup_3_tech','fu_ki_eff_3_tech'}, effects = { { type = 'nothing', diff --git a/prototypes/fi_recipes.lua b/prototypes/fi_recipes.lua index 936656d..b55d3a8 100644 --- a/prototypes/fi_recipes.lua +++ b/prototypes/fi_recipes.lua @@ -1063,12 +1063,12 @@ data:extend({ category = 'crafting-with-fluid', main_product = 'fi_materials_pure_neodym', ingredients = { - {type="fluid", name="fi_dirty_water", amount=200}, + {type="fluid", name="fi_dirty_water", amount=100}, }, results = { - {type="fluid", name="water", amount=200}, + {type="fluid", name="water", amount=100}, --{type="item", name="fi_materials_pure_gold", amount=2}, - {type="item", name="fi_materials_pure_neodym", amount=1}, + {type="item", name="fi_materials_pure_neodym", amount=2}, --{type="item", name="fi_materials_pure_titan", amount=2}, }, energy_required = 0.2, @@ -1081,10 +1081,10 @@ data:extend({ category = 'crafting-with-fluid', main_product = 'fi_materials_pure_gold', ingredients = { - {type="fluid", name="fi_dirty_water", amount=200}, + {type="fluid", name="fi_dirty_water", amount=100}, }, results = { - {type="fluid", name="water", amount=200}, + {type="fluid", name="water", amount=100}, {type="item", name="fi_materials_pure_gold", amount=2}, --{type="item", name="fi_materials_pure_neodym", amount=4}, --{type="item", name="fi_materials_pure_titan", amount=2}, @@ -1099,13 +1099,13 @@ data:extend({ category = 'crafting-with-fluid', main_product = 'fi_materials_pure_titan', ingredients = { - {type="fluid", name="fi_dirty_water", amount=200}, + {type="fluid", name="fi_dirty_water", amount=100}, }, results = { - {type="fluid", name="water", amount=200}, + {type="fluid", name="water", amount=100}, --{type="item", name="fi_materials_pure_gold", amount=2}, --{type="item", name="fi_materials_pure_neodym", amount=4}, - {type="item", name="fi_materials_pure_titan", amount=1}, + {type="item", name="fi_materials_pure_titan", amount=2}, }, energy_required = 0.2, order = 'a-b', diff --git a/prototypes/fu_recipes.lua b/prototypes/fu_recipes.lua index 0fecd1d..81fdffc 100644 --- a/prototypes/fu_recipes.lua +++ b/prototypes/fu_recipes.lua @@ -305,7 +305,7 @@ data:extend({ category = 'crafting-with-fluid', enabled = 'false', ingredients = { - {type="item", name="fu_crushed_lead_item", amount=5}, + {type="item", name="fu_crushed_lead_item", amount=1}, }, results = { {type="fluid", name="fu_lead_fluid_cold", amount=100}, @@ -1401,7 +1401,7 @@ data:extend({ --{type="item", name="fi_materials_pure_gold", amount=2}, --{type="item", name="fi_materials_pure_neodym", amount=2}, --{type="item", name="fi_materials_pure_titan", amount=2}, - {type="item", name="fu_materials_pure_lead", amount=6}, + {type="item", name="fu_materials_pure_lead", amount=5}, }, energy_required = 0.2, order = 'a-b',