17 lines
391 B
Lua
17 lines
391 B
Lua
if mods["Krastorio2"] then
|
|
local util = require("data-util");
|
|
util.k2matter({
|
|
k2matter = {
|
|
material = {
|
|
name = "silica",
|
|
type = "item",
|
|
amount = 20
|
|
},
|
|
matter_count = .65,
|
|
energy_required = 2,
|
|
needs_stabilizer = false,
|
|
allow_productivity = true,
|
|
unlocked_by = "kr-matter-stone-processing"
|
|
},
|
|
}, false)
|
|
end
|