This commit is contained in:
Pyritie 2025-05-27 21:08:19 +01:00
parent 5eccb4e4a3
commit d2cc83aeef
2 changed files with 14 additions and 0 deletions

View file

@ -59,6 +59,8 @@ const registerMinecraftItemTags = (event) => {
event.add('tfc:compost_greens_high', 'minecraft:red_mushroom_block')
event.add('tfc:compost_greens_high', 'minecraft:brown_mushroom_block')
event.add('tfc:colored_terracotta', 'minecraft:white_terracotta')
}
const registerMinecraftBlockTags = (event) => {

View file

@ -30,6 +30,18 @@ function registerTFCDyeRecipes(event) {
//#endregion
//#region Terracotta
event.replaceInput({id: 'tfc:barrel/dye/bleach_terracotta'}, '#tfc:colored_terracotta', 'minecraft:terracotta')
event.replaceInput({id: 'gtceu:chemical_bath/decolor_terracotta'}, '#minecraft:terracotta', '#tfc:colored_terracotta')
global.MINECRAFT_DYE_NAMES.forEach(dye => {
event.replaceInput({id: `gtceu:chemical_bath/dye_terracotta_to_${dye}`}, 'minecraft:terracotta', '#minecraft:terracotta')
})
//#endregion
//#region Обычный сосуд
event.recipes.gtceu.chemical_bath(`unfired_vessel_decolor`)