Compare commits

..

1 commit
main ... main

Author SHA1 Message Date
Morganite
acec79be3d 248k update fixes 2026-02-23 22:26:45 -06:00
2 changed files with 3 additions and 3 deletions

View file

@ -177,9 +177,9 @@ if mods["BrassTacks-Updated"] and data.raw.item["airtight-seal"]then
util.add_productivity("indium-airtight-seal") util.add_productivity("indium-airtight-seal")
end end
local blank_advanced_tech_card_ingredients = {(data.raw.item["kr-blank-tech-card"] and {type="item", name="kr-blank-tech-card", amount=2}) or {type="item", name="steel-plate", amount=2},(data.raw.item[mods["Krastorio2"] and "kr-glass" or "glass"] and {type="item", name=mods["Krastorio2"] and "kr-glass" or "glass", amount=5}) or {type="item", name="copper-cable", amount=5}, {type="item", name="indium-solder", amount=2}, (data.raw.item["el_energy_crystal_item"] and {type="item", name="el_energy_crystal_item", amount=1}) or {type="item", name="battery", amount=1}} local blank_advanced_tech_card_ingredients = {(data.raw.item["kr-blank-tech-card"] and {type="item", name="kr-blank-tech-card", amount=2}) or {type="item", name="steel-plate", amount=2},(data.raw.item[mods["Krastorio2"] and "kr-glass" or "glass"] and {type="item", name=mods["Krastorio2"] and "kr-glass" or "glass", amount=5}) or {type="item", name="copper-cable", amount=5}, {type="item", name="indium-solder", amount=2}, (data.raw.item["el_energy_crystal"] and {type="item", name="el_energy_crystal", amount=1}) or {type="item", name="battery", amount=1}}
if mods["bismuth"] then if mods["bismuth"] then
blank_advanced_tech_card_ingredients = {(data.raw.item["kr-blank-tech-card"] and {type="item", name="kr-blank-tech-card", amount=2}) or {type="item", name="steel-plate", amount=2}, {type="item", name="bismuth-glass", amount=4}, {type="item", name="indium-solder", amount=2}, (data.raw.item["el_energy_crystal_item"] and {type="item", name="el_energy_crystal_item", amount=1}) or {type="item", name="battery", amount=1}} blank_advanced_tech_card_ingredients = {(data.raw.item["kr-blank-tech-card"] and {type="item", name="kr-blank-tech-card", amount=2}) or {type="item", name="steel-plate", amount=2}, {type="item", name="bismuth-glass", amount=4}, {type="item", name="indium-solder", amount=2}, (data.raw.item["el_energy_crystal"] and {type="item", name="el_energy_crystal", amount=1}) or {type="item", name="battery", amount=1}}
end end
data:extend({ data:extend({

View file

@ -2,7 +2,7 @@ local util = require("data-util")
util.remove_ingredient("chemical-science-pack", "kr-blank-tech-card") util.remove_ingredient("chemical-science-pack", "kr-blank-tech-card")
util.remove_ingredient("chemical-science-pack", "bismuth-glass") util.remove_ingredient("chemical-science-pack", "bismuth-glass")
util.remove_ingredient("chemical-science-pack", "el_energy_crystal_item") util.remove_ingredient("chemical-science-pack", "el_energy_crystal")
util.add_ingredient("chemical-science-pack", "blank-advanced-tech-card", 5) util.add_ingredient("chemical-science-pack", "blank-advanced-tech-card", 5)
if mods["space-exploration"] then if mods["space-exploration"] then