diff --git a/IntermediatesForYou2/changelog.txt b/IntermediatesForYou2/changelog.txt index ae96e74..6c51ca7 100644 --- a/IntermediatesForYou2/changelog.txt +++ b/IntermediatesForYou2/changelog.txt @@ -1,10 +1,66 @@ --------------------------------------------------------------------------------------------------- -Version: 2.0.1 -Date: 11.10.2025 - Bug Fixes: - - Increase mod compatibility ---------------------------------------------------------------------------------------------------- -Version: 2.0.0 -Date: 10.10.2025 +Version: 0.6.1 +Date: 2024-07-30 Features: - - Update to Factorio 2.0 \ No newline at end of file + - Increased elementite smelting from 2 -> 4 +--------------------------------------------------------------------------------------------------- +Version: 0.6.0 +Date: 2024-07-16 + Features: + - Added K2 imersite powder recipe if 248k is installed. + - Updated elementite production chain. + - Updated compatibility with Tantalite. + - Fixed missing locale for elementite processing. +--------------------------------------------------------------------------------------------------- +Version: 0.5.0 +Date: 2024-06-29 + Features: + - Added slag from sand if K2 or AAI is installed. + - Added elementite if SE is installed. +--------------------------------------------------------------------------------------------------- +Version: 0.4.2 +Date: 2024-01-21 + Features: + - Removed old unused files. +--------------------------------------------------------------------------------------------------- +Version: 0.4.1 +Date: 2024-01-06 + Features: + - Moved silver pyrometallurgi to ChemistryForYou2 mod. +--------------------------------------------------------------------------------------------------- +Version: 0.4.0 +Date: 2023-12-28 + Features: + - Added SE recycling recipe for long handed inserter. + - Added inserter parts to stack filter inserter. + - Added silver as a byproduct to zinc. (I need more silver) + - Added silver pyrometallurgi recipe to convert zinc and lead ore to silver. (I need even more silver!) + - Added low quality advanced circuit recipe if ThemTharHills is installed. (ThemTharHills needs too much gold when you have many mods and SE) + - Changed stack filter inserter to use filter inserter instead of stack inserter. +--------------------------------------------------------------------------------------------------- +Version: 0.3.1 +Date: 2023-12-24 + Features: + - Changed modules 2 and 3 recipes to be more balanced if SE is installed. +--------------------------------------------------------------------------------------------------- +Version: 0.3.0 +Date: 2023-12-19 + Features: + - Added springs. + - Added shock absorber. +--------------------------------------------------------------------------------------------------- +Version: 0.2.0 +Date: 2023-12-04 + Features: + - Added large turret base. + - Added large turret base to some rampant arsenal and K2 turrets. +--------------------------------------------------------------------------------------------------- +Version: 0.1.1 +Date: 2023-12-04 + Features: + - Fixed startup error when not playing If I Had a Nickel hardmode. +--------------------------------------------------------------------------------------------------- +Version: 0.1.0 +Date: 2023-12-03 + Features: + - Alpha release. \ No newline at end of file diff --git a/IntermediatesForYou2/data-util.lua b/IntermediatesForYou2/data-util.lua index 81def01..4b2d096 100644 --- a/IntermediatesForYou2/data-util.lua +++ b/IntermediatesForYou2/data-util.lua @@ -129,7 +129,7 @@ function util.se_matter(params) {"se-astronomic-science-pack-4", 1}, {"se-energy-science-pack-4", 1}, {"se-material-science-pack-4", 1}, - {"kr-matter-tech-card", 1}, + {"matter-tech-card", 1}, {"se-deep-space-science-pack-1", 1}, } }, diff --git a/IntermediatesForYou2/info.json b/IntermediatesForYou2/info.json index dabab1f..a25235c 100644 --- a/IntermediatesForYou2/info.json +++ b/IntermediatesForYou2/info.json @@ -1,6 +1,6 @@ { "name": "IntermediatesForYou2", - "version": "2.0.1", + "version": "2.0.0", "factorio_version": "2.0", "title": "IntermediatesForYou", "author": "Timeken, cackling fiend", diff --git a/IntermediatesForYou2/prototypes/recipes.lua b/IntermediatesForYou2/prototypes/recipes.lua index 0dfc2e7..a1d27bd 100644 --- a/IntermediatesForYou2/prototypes/recipes.lua +++ b/IntermediatesForYou2/prototypes/recipes.lua @@ -41,15 +41,15 @@ if mods["248k-Redux"] then name = "charged-crystal-imersite-powder", icons = { - { icon = "__Krastorio2Assets__/icons/items/imersite-powder.png", icon_size = 64}, - { icon = "__248k-Redux-graphics__/ressources/fusion/fu_materials/fu_materials_energy_crystal_charged.png", icon_size = 64, scale=0.3, shift= {-8, -8}}, + { icon = "__Krastorio2Assets__/icons/items-with-variations/imersite-powder/imersite-powder.png", icon_size = 64}, + { icon = "__248k-Redux__/ressources/fusion/fu_materials/fu_materials_energy_crystal_charged.png", icon_size = 64, scale=0.3, shift= {-8, -8}}, }, - category = "kr-crushing", + category = "crushing", order = "a-a-a-1", enabled = false, energy_required = 4, ingredients = {{type="item", name="fu_materials_energy_charged_crystal", amount=1}}, - results = {{type="item", name="kr-imersite-powder", amount=2}}, + results = {{type="item", name="imersite-powder", amount=2}}, } }) util.add_unlock("kr-imersium-processing", "charged-crystal-imersite-powder") @@ -291,7 +291,7 @@ if mods["space-exploration"] then if data.raw.item["cobalt-electromagnet"] then table.insert(trace_rare_ore_extraction_ingredients, {type="item", name="cobalt-electromagnet", amount=1}) end - local trace_rare_ore_extraction_results = {{type="item", name=mods["Krastorio2"] and "kr-sand" or "sand", amount=1}, {type="item", name="se-iridium-powder", amount=1, probability=0.1}, {type="item", name="se-holmium-powder", amount=1, probability=0.1}, {type="item", name="se-beryllium-powder", amount=1, probability=0.1}} + local trace_rare_ore_extraction_results = {{type="item", name="sand", amount=1}, {type="item", name="se-iridium-powder", amount=1, probability=0.1}, {type="item", name="se-holmium-powder", amount=1, probability=0.1}, {type="item", name="se-beryllium-powder", amount=1, probability=0.1}} if data.raw.item["cobalt-electromagnet"] then table.insert(trace_rare_ore_extraction_results, {type="item", name="cobalt-electromagnet", amount=1, probability=0.95}) end diff --git a/IntermediatesForYou2/recipe-modify.lua b/IntermediatesForYou2/recipe-modify.lua index 53a1ec5..a7fa38a 100644 --- a/IntermediatesForYou2/recipe-modify.lua +++ b/IntermediatesForYou2/recipe-modify.lua @@ -171,7 +171,7 @@ if (mods["MDbobelectronics2"] and mods["Krastorio2"]) or false then end if mods["Krastorio2"] then - util.add_ingredient("stack-filter-inserter", "kr-inserter-parts", 4) + util.add_ingredient("stack-filter-inserter", "inserter-parts", 4) if mods["ThemTharHills-Updated"] then util.remove_ingredient("processing-unit", "integrated-circuit")