concrete dyes

This commit is contained in:
Pyritie 2025-12-15 17:50:03 +00:00
parent a807d2694f
commit 404d2f3cd0
4 changed files with 9 additions and 5 deletions

View file

@ -33,6 +33,8 @@
- Added some resource packs for TFC, disabled by default
- Lenses are now allowed on tool racks (#2434) @thederpysockdude123
- The Active Transformer multiblock is now craftable at EV, with a new texture and casings. (#2424) @BlueBoat29
- Renamed AE2 Sky Stone to Suevite @Pyritie
- Removed the shapeless crafting recipe for colored concrete powder, added an instant barrel recipe to turn it into solid concrete @Pyritie
### Bug fixes
- Fixed aged sake, vodka, and whiskey losing their buff effects, but for real this time @Pyritie
- Fixed fries and cheese curds not being able to be put on burgers. @Redeix

View file

@ -8,7 +8,6 @@
const registerMinecraftRecipes = (event) => {
removeMinecraftRecipes(event)
registerMinecraftDyeRecipes(event)
//#region Добавление, copper

View file

@ -1,7 +1,7 @@
// priority: 0
"use strict";
function registerMinecraftDyeRecipes(event) {
function registerTFGDyeRecipes(event) {
global.MINECRAFT_DYE_NAMES.forEach(dye => {
event.remove({ id: `minecraft:dye_${dye}_wool` })
@ -9,8 +9,7 @@ function registerMinecraftDyeRecipes(event) {
event.remove({ id: `minecraft:dye_${dye}_carpet` })
event.remove({ id: `minecraft:${dye}_bed` })
event.remove({ id: `minecraft:dye_${dye}_bed` })
//#region Выход: Ковры, Кровати
event.remove({ id: `tfc:crafting/vanilla/color/${dye}_concrete_powder` })
event.shapeless(`2x minecraft:${dye}_carpet`, [
'#tfc:saws',
@ -27,7 +26,10 @@ function registerMinecraftDyeRecipes(event) {
.category(GTRecipeCategories.CHEM_DYES)
}
//#endregion
event.recipes.tfc.barrel_instant()
.inputs(`minecraft:${dye}_concrete_powder`, TFC.fluidStackIngredient('minecraft:water', 100))
.outputItem(`minecraft:${dye}_concrete`)
.id(`tfg:barrel/dye/${dye}_concrete`);
})
// White

View file

@ -44,6 +44,7 @@ const registerTFGRecipes = (event) => {
registerTFGLeatherRecipes(event)
registerTFGClayRecipes(event)
registerTFGEquipmentRecipes(event)
registerTFGDyeRecipes(event)
registerTFGCasingRecipes(event)
registerTFGEnderPearlRecipes(event)