Fix K2 matter recipe generation and tech icon

This commit is contained in:
pla 2025-10-26 10:11:52 +01:00
parent cd6f596dca
commit b7bafa68d6
No known key found for this signature in database

View file

@ -10,15 +10,16 @@ data:extend(
icons = icons =
{ {
{ {
icon = "__Krastorio2Assets__/technologies/matter-coal.png", icon = "__Krastorio2Assets__/technologies/backgrounds/matter.png",
icon_size = 256, icon_size = 256,
}, },
{ {
icon = "__Indium2__/graphics/icons/indite-ore.png", icon = "__Indium2__/graphics/icons/indite-ore.png",
icon_size = 64, icon_size = 64,
scale = 1.4, scale = 1,
} }
}, },
effects = {},
prerequisites = {"kr-matter-processing"}, prerequisites = {"kr-matter-processing"},
unit = unit =
{ {
@ -38,8 +39,8 @@ matter.make_recipes({
material = { type = "item", name = "indite-ore", amount = 10 }, material = { type = "item", name = "indite-ore", amount = 10 },
matter_count = 5, matter_count = 5,
energy_required = 1, energy_required = 1,
need_stabilizer = false, needs_stabilizer = false,
unlocked_by_technology = "indium-matter-processing" unlocked_by = "indium-matter-processing"
}) })
matter.make_recipes({ matter.make_recipes({
@ -47,7 +48,7 @@ matter.make_recipes({
matter_count = 10, matter_count = 10,
energy_required = 3, energy_required = 3,
only_deconversion = true, only_deconversion = true,
need_stabilizer = true, needs_stabilizer = true,
unlocked_by_technology = "indium-matter-processing" unlocked_by = "indium-matter-processing"
}) })
end end