k2 matter
This commit is contained in:
parent
ae0686c914
commit
878a316e8d
2 changed files with 49 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
require("recipe-updates")
|
require("recipe-updates")
|
||||||
-- require("tin-matter")
|
require("matter")
|
||||||
-- require("omni")
|
-- require("omni")
|
||||||
require("map-gen-preset-updates")
|
require("map-gen-preset-updates")
|
||||||
-- require("strange-matter")
|
-- require("strange-matter")
|
||||||
|
|
48
matter.lua
Normal file
48
matter.lua
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
-- Matter recipes for Krastorio2
|
||||||
|
if mods["Krastorio2"] then
|
||||||
|
local util = require("data-util");
|
||||||
|
local matter = require("__Krastorio2__/lib/public/data-stages/matter-util")
|
||||||
|
|
||||||
|
data:extend(
|
||||||
|
{
|
||||||
|
{
|
||||||
|
type = "technology",
|
||||||
|
name = "gas-matter-processing",
|
||||||
|
icons =
|
||||||
|
{
|
||||||
|
{
|
||||||
|
icon = util.k2assets().."/technologies/matter-oil.png",
|
||||||
|
icon_size = 256,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon = "__bzgas__/graphics/icons/gas.png",
|
||||||
|
icon_size = 128,
|
||||||
|
scale = 1.4,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
prerequisites = {"kr-matter-processing"},
|
||||||
|
unit =
|
||||||
|
{
|
||||||
|
count = 350,
|
||||||
|
ingredients =
|
||||||
|
{
|
||||||
|
{"production-science-pack", 1},
|
||||||
|
{"utility-science-pack", 1},
|
||||||
|
{"matter-tech-card", 1}
|
||||||
|
},
|
||||||
|
time = 45
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
local gas_ore_matter =
|
||||||
|
{
|
||||||
|
item_name = "gas",
|
||||||
|
minimum_conversion_quantity = 100,
|
||||||
|
matter_value = 5,
|
||||||
|
energy_required = 1,
|
||||||
|
need_stabilizer = false,
|
||||||
|
unlocked_by_technology = "gas-matter-processing"
|
||||||
|
}
|
||||||
|
matter.createMatterRecipe(gas_ore_matter)
|
||||||
|
end
|
Loading…
Add table
Add a link
Reference in a new issue