bztungsten2/bztungsten2/tungsten-matter.lua
pla f0061c6a7f Fix K2 matter recipe generation and tech icon (#1)
I found that while cleaning.
![image](/attachments/2f42cfd0-6093-448f-8eb4-82095d0108fb)

Co-authored-by: pla
Reviewed-on: cacklingfiend/bztungsten2#1
Co-authored-by: pla <pla@noreply.example.org>
Co-committed-by: pla <pla@noreply.example.org>
2025-11-03 22:15:49 +01:00

32 lines
833 B
Lua

-- Matter recipes for Krastorio2
if mods["Krastorio2"] then
local util = require("data-util")
util.k2matter({
k2matter = {
material = { type = "item", name = "tungsten-ore", amount = 30 },
item_name = "tungsten-ore",
matter_count = 6,
energy_required = 1,
needs_stabilizer = false,
unlocked_by = "tungsten-matter-processing",
},
icon = {
icon = "__bztungsten2__/graphics/icons/tungsten-ore.png",
icon_size = 64,
scale = 1
},
})
util.k2matter({
k2matter = {
material = { type = "item", name = "tungsten-plate", amount = 10 },
item_name = "tungsten-plate",
matter_count = 10,
energy_required = 2,
only_deconversion = true,
needs_stabilizer = true,
unlocked_by = "tungsten-matter-processing",
},
})
end