kubejs: use kubejs-create builder API for flax press recipe #45

Merged
Matt merged 1 commits from refactor/supplementaries-bridges-kubejs-create-api into main 2026-05-28 19:08:43 +00:00
@@ -20,14 +20,12 @@ ServerEvents.recipes(event => {
// 2 flax pressed -> 1 string. Cheaper than wool->4 string but // 2 flax pressed -> 1 string. Cheaper than wool->4 string but
// requires a Press (kinetic infrastructure) -- balanced. // requires a Press (kinetic infrastructure) -- balanced.
// //
// KubeJS's event.recipes.create.pressing(out, in) signature // Uses the kubejs_create mod's builder API (added in pack v0.27.0).
// doesn't match Create 6.x's two-arg form, so build the recipe // Before that, the bare event.recipes.create.pressing() signature
// via custom() with the raw JSON schema. // didn't match Create 6.x's recipe shape and we had to use a raw
event.custom({ // event.custom({type: 'create:pressing', ...}) call.
type: 'create:pressing', event.recipes.create.pressing('2x minecraft:string', 'supplementaries:flax')
ingredients: [{ item: 'supplementaries:flax' }], .id('bns:press_flax_to_string');
results: [{ id: 'minecraft:string', count: 2 }],
}).id('bns:press_flax_to_string');
console.info('[bns/supplementaries_bridges] added flax -> string press recipe'); console.info('[bns/supplementaries_bridges] added flax -> string press recipe');
}); });