Compare commits
2 Commits
847ca460ff
...
5e816e1a7a
| Author | SHA1 | Date | |
|---|---|---|---|
| 5e816e1a7a | |||
| d2cc179ebd |
@@ -20,14 +20,12 @@ ServerEvents.recipes(event => {
|
||||
// 2 flax pressed -> 1 string. Cheaper than wool->4 string but
|
||||
// requires a Press (kinetic infrastructure) -- balanced.
|
||||
//
|
||||
// KubeJS's event.recipes.create.pressing(out, in) signature
|
||||
// doesn't match Create 6.x's two-arg form, so build the recipe
|
||||
// via custom() with the raw JSON schema.
|
||||
event.custom({
|
||||
type: 'create:pressing',
|
||||
ingredients: [{ item: 'supplementaries:flax' }],
|
||||
results: [{ id: 'minecraft:string', count: 2 }],
|
||||
}).id('bns:press_flax_to_string');
|
||||
// Uses the kubejs_create mod's builder API (added in pack v0.27.0).
|
||||
// Before that, the bare event.recipes.create.pressing() signature
|
||||
// didn't match Create 6.x's recipe shape and we had to use a raw
|
||||
// event.custom({type: 'create:pressing', ...}) call.
|
||||
event.recipes.create.pressing('2x minecraft:string', 'supplementaries:flax')
|
||||
.id('bns:press_flax_to_string');
|
||||
console.info('[bns/supplementaries_bridges] added flax -> string press recipe');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user