matter
This commit is contained in:
parent
25f1395e4c
commit
ea0b51054e
4 changed files with 23 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 0.1.2
|
||||||
|
Date: 2023-04-16
|
||||||
|
Features:
|
||||||
|
- K2 matter
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.1.1
|
Version: 0.1.1
|
||||||
Date: 2023-03-28
|
Date: 2023-03-28
|
||||||
Fixes:
|
Fixes:
|
||||||
|
|
2
data.lua
2
data.lua
|
@ -3,6 +3,8 @@ require("prototypes/chlorine")
|
||||||
require("prototypes/epoxy")
|
require("prototypes/epoxy")
|
||||||
require("prototypes/pcb")
|
require("prototypes/pcb")
|
||||||
|
|
||||||
|
require("matter")
|
||||||
|
|
||||||
local util = require("data-util");
|
local util = require("data-util");
|
||||||
|
|
||||||
if util.se6() then
|
if util.se6() then
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bzchlorine",
|
"name": "bzchlorine",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"factorio_version": "1.1",
|
"factorio_version": "1.1",
|
||||||
"title": "Salt & Chlorine",
|
"title": "Salt & Chlorine",
|
||||||
"author": "Brevven",
|
"author": "Brevven",
|
||||||
|
|
15
matter.lua
Normal file
15
matter.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue