neuralgia/kubejs/server_scripts/beneath/recipes.js
2025-07-21 13:52:18 +10:00

56 lines
No EOL
1.6 KiB
JavaScript

// priority: 0
"use strict";
const registerBeneathRecipes = (event) => {
global.BENEATH_DISABLED_ITEMS.forEach(item => {
event.remove({ input: item })
event.remove({ output: item })
})
event.remove({ id: 'beneath:collapse/basalt' })
event.remove({ id: 'beneath:collapse/nether_bricks' })
event.remove({ id: 'beneath:crafting/ancient_altar' })
event.remove({ id: 'beneath:crafting/blackstone' })
event.remove({ id: 'beneath:crafting/blackstone_uncraft' })
event.remove({ id: 'beneath:crafting/blackstone_bricks_from_soot' })
event.remove({ id: 'beneath:crafting/blackstone_from_soot' })
event.remove({ id: 'beneath:crafting/blackstone_plate' })
event.remove({ id: 'beneath:crafting/blackstone_button' })
event.remove({ id: 'beneath:crafting/hellbricks' })
event.remove({ id: 'beneath:crafting/nether_brick' })
event.remove({ id: 'beneath:quern/slime' })
event.shaped('beneath:unposter', [
'ABA',
'AAA',
'CCC'
], {
A: '#tfc:lumber',
B: 'tfc:composter',
C: '#tfc:mud'
}).id('beneath:crafting/unposter')
event.shapeless('beneath:hellbricks', [
'#forge:stone_bricks',
'minecraft:magma_cream',
'tfc:powder/sulfur',
'tfc:soot'
]).id('tfg:shapeless/hellbricks_from_soot')
event.shapeless('beneath:hellbricks', [
'#forge:stone_bricks',
'minecraft:magma_cream',
'tfc:powder/sulfur',
'tfc:powder/wood_ash'
]).id('tfg:shapeless/hellbricks_from_wood_ash')
event.recipes.gtceu.assembler("loose_blackstone_to_bricks")
.itemInputs('beneath:blackstone_pebble')
.itemOutputs('beneath:blackstone_brick')
.circuit(1)
.duration(40)
.EUt(8)
event.recipes.tfc.landslide('beneath:soul_clay', 'beneath:soul_clay')
}