stacking
This commit is contained in:
parent
193fac632a
commit
897c2a7383
2 changed files with 24 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
-- require("tin-recipe-final-stacking")
|
require("modules")
|
||||||
-- require("tin-recipe-modules")
|
|
||||||
-- -- require("tin-recipe-final-5d")
|
-- -- require("tin-recipe-final-5d")
|
||||||
-- require("tin-recipe-final-rrr")
|
-- require("tin-recipe-final-rrr")
|
||||||
|
|
||||||
|
|
23
stacking.lua
Normal file
23
stacking.lua
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
-- Deadlock stacking recipes
|
||||||
|
|
||||||
|
local util = require("data-util");
|
||||||
|
|
||||||
|
if deadlock then
|
||||||
|
deadlock.add_stack("salt", nil, "deadlock-stacking-2", 64)
|
||||||
|
deadlock.add_stack("pcb-substrate", nil, "deadlock-stacking-2", 128)
|
||||||
|
deadlock.add_stack("pcb", nil, "deadlock-stacking-2", 128)
|
||||||
|
if data.raw.item["ferric-chloride"] then
|
||||||
|
deadlock.add_stack("ferric-chloride", nil, "deadlock-stacking-2", 128)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Deadlock crating recipes
|
||||||
|
if deadlock_crating then
|
||||||
|
deadlock_crating.add_crate("salt", "deadlock-crating-2")
|
||||||
|
deadlock_crating.add_crate("pcb-substrate", "deadlock-crating-2")
|
||||||
|
deadlock_crating.add_crate("pcb", "deadlock-crating-2")
|
||||||
|
if data.raw.item["ferric-chloride"] then
|
||||||
|
deadlock_crating.add_crate("ferric-chloride", "deadlock-crating-2")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue