Add Blaze Cake basin production chain
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
-- ATM10 Create factory scheduler V1
|
||||
-- Persistent jobs, dependency planning, progress-aware retries and diagnostics.
|
||||
|
||||
local VERSION = "1.5.0"
|
||||
local VERSION = "1.6.0"
|
||||
local REFRESH_SECONDS = 1
|
||||
local CONFIRM_SECONDS = 6
|
||||
local DRAIN_SECONDS = 60
|
||||
@@ -27,6 +27,13 @@ local RECIPES = {
|
||||
input = "create:crimsite", inputCount = 64,
|
||||
outputs = { "alltheores:iron_clump", "minecraft:iron_nugget" }, completion = "activity",
|
||||
},
|
||||
crush_netherrack = {
|
||||
label = "64 CINDER FLOUR", station = "crushing", address = "crushing",
|
||||
input = "minecraft:netherrack", inputCount = 64,
|
||||
-- One Cinder Flour is guaranteed per Netherrack; the second output has
|
||||
-- a 50% chance and is deliberately treated as a harmless bonus.
|
||||
output = "create:cinder_flour", outputCount = 64, targetCount = 64,
|
||||
},
|
||||
strip_oak = {
|
||||
label = "64 STRIPPED OAK", station = "saw:2", address = "saw:2",
|
||||
input = "minecraft:oak_log", inputCount = 64,
|
||||
@@ -133,6 +140,15 @@ local RECIPES = {
|
||||
input = "alltheores:steel_ingot", inputCount = 64,
|
||||
output = "alltheores:steel_plate", outputCount = 64, targetCount = 64,
|
||||
},
|
||||
press_blaze_cake_base = {
|
||||
label = "64 BLAZE CAKE BASES", station = "presse:7", address = "presse:7",
|
||||
inputs = {
|
||||
{ item = "minecraft:egg", count = 64 },
|
||||
{ item = "minecraft:sugar", count = 64 },
|
||||
{ item = "create:cinder_flour", count = 64 },
|
||||
},
|
||||
output = "create:blaze_cake_base", outputCount = 64, targetCount = 64,
|
||||
},
|
||||
zinc_nuggets = {
|
||||
label = "576 ZINC NUGGETS", planner = "zinc_nuggets",
|
||||
output = "alltheores:zinc_nugget", targetCount = 576,
|
||||
@@ -144,11 +160,12 @@ local RECIPES = {
|
||||
}
|
||||
|
||||
local ACTION_ORDER = {
|
||||
"crush_asurine", "crush_crimsite", "strip_oak", "planks_oak", "shafts", "zinc_nuggets",
|
||||
"crush_asurine", "crush_crimsite", "crush_netherrack", "strip_oak", "planks_oak", "shafts", "zinc_nuggets",
|
||||
"iron_nuggets",
|
||||
"mixer_alloy", "mixer_cogwheel", "mixer_large_cogwheel",
|
||||
"casing_andesite", "casing_copper", "casing_brass", "casing_railway", "precision_mechanism",
|
||||
"press_gold", "press_iron", "press_copper", "press_brass", "press_zinc", "press_steel",
|
||||
"press_blaze_cake_base",
|
||||
}
|
||||
|
||||
local KEEP_STOCK = {
|
||||
@@ -187,6 +204,8 @@ local PRODUCER_BY_ITEM = {
|
||||
["alltheores:brass_plate"] = "press_brass",
|
||||
["alltheores:zinc_plate"] = "press_zinc",
|
||||
["alltheores:steel_plate"] = "press_steel",
|
||||
["create:cinder_flour"] = "crush_netherrack",
|
||||
["create:blaze_cake_base"] = "press_blaze_cake_base",
|
||||
}
|
||||
|
||||
local function epoch()
|
||||
|
||||
Reference in New Issue
Block a user