
No sequenced assembly implementation
Yarden-zamir opened this issue ยท 6 comments
Already supported, just not documented.
<recipetype:create:deploying>.registerRecipe("dep_test", (rb) => {
rb.output(<item:minecraft:dirt>);
rb.output(<item:minecraft:diamond>);
rb.output(<item:minecraft:glass>);
rb.require(<item:minecraft:stick>);
rb.require(<item:minecraft:apple>);
});
<recipetype:create:deploying>.addRecipe("deploy_test", <item:minecraft:glass>, <item:minecraft:air>, [<item:minecraft:dirt>]);
var builder = <recipetype:create:sequenced_assembly>.builder("seq_test")
.transitionTo(<item:minecraft:glass>)
.require(<item:minecraft:arrow>)
.loops(2)
.addOutput(<item:minecraft:diamond>, 1)
.addOutput(<item:minecraft:apple>, 1)
.addStep(<recipetype:create:cutting>.factory(), (rb) => rb.duration(50))
.addStep(<recipetype:create:pressing>.factory(), (rb) => rb.duration(500))
.addStep(<recipetype:create:deploying>.factory(), (rb) => rb.require(<item:minecraft:dirt>));
<recipetype:create:sequenced_assembly>.addRecipe(builder);
Oh I see, thank you! I really assumed recipetype:create:deploying is for the "one deplorer" type recipes only as they show as seperate JEI categories
Is there any way that I can use the input item's data for setting the weight of the output?
.addOutput(<item:minecraft:diamond>, X)
where X is durbility of a sword or text in book with condition or something like that?
I see, well thank you. I'll prob end up generating 10 uniuqe recipes and have the item have only 10 possible durability states
For future searchers, there is documentation now
https://docs.blamejared.com/1.16/en/mods/Create/util/SequencedAssemblyRecipeBuilder/
https://docs.blamejared.com/1.16/en/mods/Create/util/ProcessingRecipeBuilder/