Skip to content

Commit

Permalink
feat(recipes): the fiend has found its way into the code (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotStargazer authored Sep 4, 2024
1 parent 1909c70 commit 3e8249f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion kubejs/server_scripts/create-recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,16 @@ ServerEvents.recipes((event) => {
Item.of("create:experience_nugget").withChance(0.1),
],
Item.of(`persistent_ores:${material}_cluster`)
);
).id(`grand_expanse:${material}_cluster_crushing`);

const impureModule = `persistent_ores:${material}_module_impure`
event.recipes.create.sequenced_assembly([impureModule], "scannable:blank_module",
[
event.recipes.create.deploying("scannable:blank_module",
["scannable:blank_module", "#forge:raw_materials/"+material]),
event.recipes.create.filling("scannable:blank_module",
["scannable:blank_module", Fluid.of(`tconstruct:molten_${material}`, FluidAmounts.INGOT)]),
], "scannable:blank_module", 16).id(`grand_expanse:${material}_impure_module_assembly`);
}
});

Expand Down

0 comments on commit 3e8249f

Please sign in to comment.