forked from cacklingfiend/bztungsten2
32 lines
833 B
Lua
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
|