Alpha Release: 0.9.0 (#849)

Signed-off-by: Pyritie <pyritie@gmail.com>
Signed-off-by: TomPlop <tomdidome@gmail.com>
Co-authored-by: Xikaro <os.valerievich@ya.ru>
Co-authored-by: Nebby <78170922+Nebby1999@users.noreply.github.com>
Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
Co-authored-by: TomPlop <tomdidome@gmail.com>
Co-authored-by: aidie8 <aidenvanzuilen@gmail.com>
Co-authored-by: Xikaro <55663835+Xikaro@users.noreply.github.com>
Co-authored-by: Zleub <debray.arnaud@gmail.com>
This commit is contained in:
Pyritie 2025-04-15 19:27:17 +01:00 committed by GitHub
parent d344316e5a
commit ec2e3cd3c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2193 changed files with 104602 additions and 53195 deletions

View file

@ -0,0 +1,54 @@
// priority: 0
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: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')
}

View file

@ -0,0 +1,33 @@
const registerBeneathBlockTags = (event) => {
global.BENEATH_DISABLED_ITEMS.forEach(item => {
event.removeAllTagsFrom(item)
event.add('c:hidden_from_recipe_viewers', item)
})
event.add('forge:ores', 'beneath:ore/nether_cursecoal')
event.add('forge:ores', 'beneath:ore/blackstone_sylvite')
event.add('beneath:mushrooms', 'minecraft:red_mushroom')
event.add('beneath:mushrooms', 'minecraft:brown_mushroom')
event.add('beneath:poisonous_mushrooms', 'minecraft:red_mushroom')
event.add('tfc:can_landslide', 'beneath:soul_clay')
event.remove('beneath:sparks_on_sulfur')
event.add('beneath:blackstone_decor', 'minecraft:blackstone');
event.remove('beneath:blackstone')
}
const registerBeneathItemTags = (event) => {
global.BENEATH_DISABLED_ITEMS.forEach(item => {
event.removeAllTagsFrom(item)
event.add('c:hidden_from_recipe_viewers', item)
})
event.add('forge:ores', 'beneath:ore/nether_cursecoal')
event.add('forge:ores', 'beneath:ore/blackstone_sylvite')
}