Правильные рецепты покраски шерсти

This commit is contained in:
Dmitry 2023-12-30 20:21:32 +07:00
parent 5978c3504f
commit 25f547ac91
3 changed files with 13 additions and 3 deletions

View file

@ -3,6 +3,7 @@
const registerCreateRecipes = (event) => {
// Удаление рецептов мода create
/*
event.remove({ not: [
{ id: 'create:crafting/kinetics/gearboxfrom_conversion' },
{ id: 'create:crafting/kinetics/gearbox' },
@ -89,7 +90,7 @@ const registerCreateRecipes = (event) => {
{ id: 'create:crafting/kinetics/green_seat' },
{ id: 'create:crafting/kinetics/red_seat' },
{ id: 'create:crafting/kinetics/black_seat' },
], mod: 'create' })
], mod: 'create' })*/
// Пушка для постройки схематик
event.shaped('create:schematicannon', [

View file

@ -2375,7 +2375,14 @@ const registerMinecraftRecipes = (event) => {
global.MINECRAFT_DYE_NAMES.forEach(dye => {
if (dye != "white")
event.remove({ id: `minecraft:dye_${dye}_wool` })
event.shapeless(`minecraft:${dye}_wool`, [
'minecraft:white_wool',
`#forge:dyes/${dye}`
]).id(`tfg:create/shapeless/${dye}_wool`)
if (dye != 'white')
event.recipes.gtceu.chemical_bath(`${dye}_wool`)
.itemInputs(`minecraft:white_wool`)
.inputFluids(Fluid.of(`gtceu:${dye}_dye`, 72))

View file

@ -462,5 +462,7 @@ global.CREATE_DISABLED_ITEMS = [
'create:refined_radiance_casing',
'create:shadow_steel_casing',
'create:wooden_bracket',
'create:blaze_burner'
'create:blaze_burner',
'create:sand_paper',
'create:red_sand_paper'
];