added recipes for middle tier compost in mixer, added compostable tag to vanilla moss

This commit is contained in:
Pyritie 2025-07-26 12:48:43 +01:00
parent 0ca052548c
commit d451d49800
2 changed files with 8 additions and 5 deletions

View file

@ -63,12 +63,15 @@ const registerMinecraftItemTags = (event) => {
event.remove('forge:gems', 'minecraft:coal')
event.remove('forge:gems', 'minecraft:flint')
event.add('tfc:compost_greens_high', 'minecraft:red_mushroom_block')
event.add('tfc:compost_greens_high', 'minecraft:brown_mushroom_block')
event.add('tfc:compost_greens_high', 'minecraft:twisting_vines')
event.add('tfc:compost_greens', 'minecraft:red_mushroom_block')
event.add('tfc:compost_greens', 'minecraft:brown_mushroom_block')
event.add('tfc:compost_greens', 'minecraft:moss_block')
event.add('tfc:compost_greens_low', 'minecraft:moss_carpet')
event.add('tfc:compost_greens_low', 'minecraft:twisting_vines')
event.add('tfc:compost_greens_high', 'minecraft:pearlescent_froglight')
event.add('tfc:compost_greens_high', 'minecraft:verdant_froglight')
event.add('tfc:compost_greens_high', 'minecraft:ochre_froglight')
event.add('tfc:moss', 'minecraft:moss_carpet')
event.add('tfc:colored_terracotta', 'minecraft:white_terracotta')

View file

@ -371,8 +371,8 @@ function registerTFCMachineRecipes(event) {
.duration(1200)
.EUt(2)
const BROWNS = [ '16x #tfc:compost_browns_low', '4x #tfc:compost_browns_high' ];
const GREENS = [ '16x #tfc:compost_greens_low', '4x #tfc:compost_greens_high' ];
const BROWNS = [ '16x #tfc:compost_browns_low', '8x #tfc:compost_browns', '4x #tfc:compost_browns_high' ];
const GREENS = [ '16x #tfc:compost_greens_low', '8x #tfc:compost_greens', '4x #tfc:compost_greens_high' ];
let i = 0;
BROWNS.forEach(brown => {