Fix K2 matter recipe generation and tech icon (#1)
 Co-authored-by: pla Reviewed-on: #1 Co-authored-by: pla <pla@noreply.example.org> Co-committed-by: pla <pla@noreply.example.org>
This commit is contained in:
parent
6e8406c86a
commit
41856e5e17
2 changed files with 10 additions and 8 deletions
|
|
@ -3,6 +3,7 @@ cobalt-refining=Cobalt refining
|
||||||
cobalt-carbide=Cobalt carbide
|
cobalt-carbide=Cobalt carbide
|
||||||
cobalt-electromagnet=Cobalt electromagnet
|
cobalt-electromagnet=Cobalt electromagnet
|
||||||
cobalt-substrates=Cobalt substrates
|
cobalt-substrates=Cobalt substrates
|
||||||
|
cobalt-matter-processing=Cobalt conversion
|
||||||
|
|
||||||
[technology-description]
|
[technology-description]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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 = "__Cobalt2__/graphics/icons/cobaltite-ore.png",
|
icon = "__Cobalt2__/graphics/icons/cobaltite-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,16 +39,16 @@ matter.make_recipes({
|
||||||
material = { type = "item", name = "cobaltite-ore", amount = 10 },
|
material = { type = "item", name = "cobaltite-ore", amount = 10 },
|
||||||
matter_count = 5,
|
matter_count = 5,
|
||||||
energy_required = 1,
|
energy_required = 1,
|
||||||
need_stabilizer = false,
|
needs_stabilizer = false,
|
||||||
unlocked_by_technology = "cobalt-matter-processing"
|
unlocked_by = "cobalt-matter-processing"
|
||||||
})
|
})
|
||||||
|
|
||||||
matter.make_recipes({
|
matter.make_deconversion_recipe({
|
||||||
material = { type = "item", name = "cobalt-plate", amount = 10 },
|
material = { type = "item", name = "cobalt-plate", amount = 10 },
|
||||||
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 = "cobalt-matter-processing"
|
unlocked_by = "cobalt-matter-processing"
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
Loading…
Add table
Add a link
Reference in a new issue