This commit is contained in:
Brevven 2022-07-17 05:43:46 -07:00
parent a34e7a0b09
commit 6c2f501c79
2 changed files with 20 additions and 1 deletions

View file

@ -1,4 +1,4 @@
require("tin-recipe-final-stacking")
require("stacking")
require("modules")
-- require("tin-recipe-final-5d")

19
stacking.lua Normal file
View file

@ -0,0 +1,19 @@
-- Deadlock stacking recipes
local util = require("data-util");
if deadlock then
deadlock.add_stack("bakelite", "__bzgas__/graphics/icons/stacked/bakelite.png", "deadlock-stacking-1", 128)
if data.raw.item["phenol"] then
deadlock.add_stack("phenol", "__bzgas__/graphics/icons/stacked/phenol.png", "deadlock-stacking-1", 128)
end
end
-- Deadlock crating recipes
if deadlock_crating then
deadlock_crating.add_crate("bakelite", "deadlock-crating-1")
if data.raw.item["phenol"] then
deadlock_crating.add_crate("phenol", "deadlock-crating-1")
end
end