Merge branch 'dev' of https://github.com/TerraFirmaGreg-Team/Modpack-Modern into dev
This commit is contained in:
commit
e772cd10ec
1 changed files with 14 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ function registerTFCDyeRecipes(event) {
|
|||
],
|
||||
// input 2
|
||||
[
|
||||
'light_gray', 'gray', 'green',
|
||||
'white', 'gray', 'green',
|
||||
'blue', 'green', 'red',
|
||||
'pink', 'red', 'yellow',
|
||||
'black', 'blue'
|
||||
|
|
@ -188,6 +188,7 @@ function registerTFCDyeRecipes(event) {
|
|||
!Fluid.exists(`tfc:${dyeMixes[2][i]}_dye`)
|
||||
) continue
|
||||
|
||||
// GT mixer recipe
|
||||
event.recipes.gtceu.mixer(`mixer_dye_${dyeMixes[2][i]}`)
|
||||
.inputFluids(
|
||||
Fluid.of(`tfc:${dyeMixes[0][i]}_dye`, 144),
|
||||
|
|
@ -198,6 +199,18 @@ function registerTFCDyeRecipes(event) {
|
|||
)
|
||||
.duration(20)
|
||||
.EUt(8)
|
||||
|
||||
// TFC barrel recipes (2x because 2! = 2)
|
||||
event.recipes.tfc.barrel_instant_fluid(
|
||||
Fluid.of(`tfc:${dyeMixes[2][i]}_dye`, 2),
|
||||
TFC.fluidStackIngredient(Fluid.of(`tfc:${dyeMixes[0][i]}_dye`, 1)),
|
||||
TFC.fluidStackIngredient(Fluid.of(`tfc:${dyeMixes[1][i]}_dye`, 1)),
|
||||
)
|
||||
event.recipes.tfc.barrel_instant_fluid(
|
||||
Fluid.of(`tfc:${dyeMixes[2][i]}_dye`, 2),
|
||||
TFC.fluidStackIngredient(Fluid.of(`tfc:${dyeMixes[1][i]}_dye`, 1)),
|
||||
TFC.fluidStackIngredient(Fluid.of(`tfc:${dyeMixes[0][i]}_dye`, 1)),
|
||||
)
|
||||
}
|
||||
|
||||
//#endregion
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue