Fixed some recipes regarding dirt in the mixer
This commit is contained in:
parent
8741d77147
commit
a9e446d5bb
1 changed files with 15 additions and 35 deletions
|
|
@ -1579,49 +1579,28 @@ const registerTFCRecipes = (event) => {
|
|||
//#region Земля
|
||||
|
||||
// Loam + Silt -> Silty Loam (Миксер)
|
||||
event.recipes.gtceu.mixer('silty_loam_dirt')
|
||||
event.recipes.gtceu.mixer('silty_loam_dirt')
|
||||
.itemInputs('tfc:dirt/loam', 'tfc:dirt/silt')
|
||||
.itemOutputs('tfc:dirt/silty_loam')
|
||||
.duration(1600)
|
||||
.EUt(12)
|
||||
|
||||
// Silty Loam + Sticks -> Rooted Silty Loam (Миксер)
|
||||
event.recipes.gtceu.mixer('rooted_silty_loam_dirt')
|
||||
.itemInputs('tfc:dirt/silty_loam', '#tfc:can_be_lit_on_torch')
|
||||
.itemOutputs('tfc:rooted_dirt/silty_loam')
|
||||
.duration(1600)
|
||||
.EUt(12)
|
||||
.duration(200)
|
||||
.EUt(16)
|
||||
|
||||
// Loam + Sand -> Sandy Loam (Миксер)
|
||||
event.recipes.gtceu.mixer('sandy_loam_dirt')
|
||||
.itemInputs('tfc:dirt/loam', '#forge:sand')
|
||||
.circuit(3)
|
||||
.itemOutputs('tfc:dirt/sandy_loam')
|
||||
.duration(1600)
|
||||
.EUt(12)
|
||||
.duration(200)
|
||||
.EUt(16)
|
||||
|
||||
// Loam + Silt -> Silty Loam (Create Миксер)
|
||||
event.recipes.gtceu.create_mixer('silty_loam_dirt')
|
||||
.itemInputs('tfc:dirt/loam', 'tfc:dirt/silt')
|
||||
.itemOutputs('tfc:dirt/silty_loam')
|
||||
.duration(1600)
|
||||
.EUt(12)
|
||||
.rpm(60)
|
||||
|
||||
// Silty Loam + Sticks -> Rooted Silty Loam (Create Миксер)
|
||||
event.recipes.gtceu.create_mixer('rooted_silty_loam_dirt')
|
||||
.itemInputs('tfc:dirt/silty_loam', '#tfc:can_be_lit_on_torch')
|
||||
.itemOutputs('tfc:rooted_dirt/silty_loam')
|
||||
.duration(1600)
|
||||
.EUt(12)
|
||||
.rpm(60)
|
||||
|
||||
// Loam + Sand -> Sandy Loam (Create Миксер)
|
||||
event.recipes.gtceu.create_mixer('sandy_loam_dirt')
|
||||
.itemInputs('tfc:dirt/loam', '#forge:sand')
|
||||
.itemOutputs('tfc:dirt/sandy_loam')
|
||||
.duration(1600)
|
||||
.EUt(12)
|
||||
.rpm(60)
|
||||
// Dirt + Sticks -> Rooted Dirt
|
||||
global.TFC_MUD_TYPES.forEach(mud => {
|
||||
event.recipes.gtceu.mixer(`${mud}_to_rooted`)
|
||||
.itemInputs(`tfc:dirt/${mud}`, "#tfc:can_be_lit_on_torch")
|
||||
.itemOutputs(`tfc:rooted_dirt/${mud}`)
|
||||
.duration(200)
|
||||
.EUt(16)
|
||||
})
|
||||
|
||||
global.TFC_MUD_TYPES.forEach(mud => {
|
||||
event.smelting(`tfc:dirt/${mud}`, `tfc:mud/${mud}`)
|
||||
|
|
@ -1637,6 +1616,7 @@ const registerTFCRecipes = (event) => {
|
|||
event.recipes.gtceu.mixer(`${mud}_grass_to_mud`)
|
||||
.itemInputs(`tfc:dirt/${mud}`)
|
||||
.inputFluids(Fluid.of('minecraft:water', 100))
|
||||
.circuit(2)
|
||||
.itemOutputs(`tfc:mud/${mud}`)
|
||||
.duration(200)
|
||||
.EUt(16)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue