This commit is contained in:
Brevven 2023-04-16 01:43:41 -07:00
parent 25f1395e4c
commit ea0b51054e
4 changed files with 23 additions and 1 deletions

View file

@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.1.2
Date: 2023-04-16
Features:
- K2 matter
---------------------------------------------------------------------------------------------------
Version: 0.1.1
Date: 2023-03-28
Fixes:

View file

@ -3,6 +3,8 @@ require("prototypes/chlorine")
require("prototypes/epoxy")
require("prototypes/pcb")
require("matter")
local util = require("data-util");
if util.se6() then

View file

@ -1,6 +1,6 @@
{
"name": "bzchlorine",
"version": "0.1.1",
"version": "0.1.2",
"factorio_version": "1.1",
"title": "Salt & Chlorine",
"author": "Brevven",

15
matter.lua Normal file
View file

@ -0,0 +1,15 @@
-- Matter recipes for Krastorio2
if mods["Krastorio2"] then
local util = require("data-util");
util.k2matter({
k2matter = {
item_name = "salt",
matter_value = 2,
energy_required = 1,
need_stabilizer = false,
unlocked_by_technology = "salt-matter-processing",
},
icon = {icon = "__bzchlorine__/graphics/icons/salt.png", icon_size = 128, scale = 1}
})
end