LTDV10/packet/kubejs/server_scripts/Ecliptic Seasons/recipes.js
2026-04-14 18:20:56 +08:00

55 lines
2.0 KiB
JavaScript

ServerEvents.recipes(e => {
const{create} = e.recipes
{
let iner = 'eclipticseasons:spring_greenhouse_essence'
create.sequenced_assembly('2x eclipticseasons:spring_greenhouse_essence', 'eclipticseasons:spring_greenhouse_essence',
[
create.deploying(iner, [iner, 'create:blaze_burner']),
create.deploying(iner, [iner, 'cmr:snowman_cooler']),
create.filling(iner, [iner, Fluid.of("create_enchantment_industry:experience", 250)])
]
)
.loops(1)
.transitionalItem(iner)
.id("eclipticseasons:spring_greenhouse_essence")
}
{
let iner = 'eclipticseasons:summer_greenhouse_essence'
create.sequenced_assembly('2x eclipticseasons:summer_greenhouse_essence', 'eclipticseasons:summer_greenhouse_essence',
[
create.deploying(iner, [iner, 'create:blaze_burner']),
create.deploying(iner, [iner, 'cmr:snowman_cooler']),
create.filling(iner, [iner, Fluid.of("create_enchantment_industry:experience", 250)])
]
)
.loops(1)
.transitionalItem(iner)
.id("eclipticseasons:summer_greenhouse_essence")
}
{
let iner = 'eclipticseasons:autumn_greenhouse_essence'
create.sequenced_assembly('2x eclipticseasons:autumn_greenhouse_essence', 'eclipticseasons:autumn_greenhouse_essence',
[
create.deploying(iner, [iner, 'create:blaze_burner']),
create.deploying(iner, [iner, 'cmr:snowman_cooler']),
create.filling(iner, [iner, Fluid.of("create_enchantment_industry:experience", 250)])
]
)
.loops(1)
.transitionalItem(iner)
.id("eclipticseasons:autumn_greenhouse_essence")
}
{
let iner = 'eclipticseasons:winter_greenhouse_essence'
create.sequenced_assembly('2x eclipticseasons:winter_greenhouse_essence', 'eclipticseasons:winter_greenhouse_essence',
[
create.deploying(iner, [iner, 'create:blaze_burner']),
create.deploying(iner, [iner, 'cmr:snowman_cooler']),
create.filling(iner, [iner, Fluid.of("create_enchantment_industry:experience", 250)])
]
)
.loops(1)
.transitionalItem(iner)
.id("eclipticseasons:winter_greenhouse_essence")
}
})