CreateTweaker

CreateTweaker

10M Downloads

No sequenced assembly implementation

Yarden-zamir opened this issue ยท 6 comments

commented

Probably planned but wanted to put it as an issue anyways

commented

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);
commented

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

commented

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?

commented

Unfortunately, no, their recipe don't work like that.

commented

I see, well thank you. I'll prob end up generating 10 uniuqe recipes and have the item have only 10 possible durability states