work
This commit is contained in:
parent
d793be5f81
commit
2012904ccf
5 changed files with 89 additions and 28 deletions
|
|
@ -1034,12 +1034,6 @@ const registerMinecraftRecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Плот с сундуком
|
||||
|
||||
event.remove({ id: 'minecraft:bamboo_chest_raft' })
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Бамбуковые доски
|
||||
|
||||
event.shapeless('2x minecraft:bamboo_planks', [
|
||||
|
|
@ -1049,6 +1043,12 @@ const registerMinecraftRecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Плот с сундуком
|
||||
|
||||
event.remove({ id: 'minecraft:bamboo_chest_raft' })
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Красители
|
||||
|
||||
// White
|
||||
|
|
@ -1629,6 +1629,14 @@ const registerMinecraftRecipes = (event) => {
|
|||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Сухая губка
|
||||
|
||||
event.recipes.tfc.heating('minecraft:wet_sponge', 790)
|
||||
.resultItem('minecraft:sponge')
|
||||
.id('tfg:minecraft/heating/sponge')
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Выход: Прожаренный фрукт хоруса
|
||||
|
||||
event.remove({ id: 'minecraft:popped_chorus_fruit' })
|
||||
|
|
@ -2447,8 +2455,12 @@ const registerMinecraftRecipes = (event) => {
|
|||
|
||||
event.remove({ id: `minecraft:dye_${dye}_carpet` })
|
||||
|
||||
if (dye != 'white')
|
||||
{
|
||||
event.shapeless(`2x minecraft:${dye}_carpet`, [
|
||||
'#tfc:saws',
|
||||
`minecraft:${dye}_wool`
|
||||
]).id(`minecraft:${dye}_carpet`)
|
||||
|
||||
if (dye != 'white') {
|
||||
event.recipes.gtceu.chemical_bath(`tfg:${dye}_carpet`)
|
||||
.itemInputs(`minecraft:white_carpet`)
|
||||
.inputFluids(Fluid.of(`gtceu:${dye}_dye`, 72))
|
||||
|
|
|
|||
|
|
@ -2086,6 +2086,8 @@ const registerTFCRecipes = (event) => {
|
|||
//#region Песок
|
||||
|
||||
// Песок душ -> Желтый песок
|
||||
// TODO: Включить после добавления ада
|
||||
/*
|
||||
event.recipes.gtceu.centrifuge('soul_sand_separation')
|
||||
.itemInputs('minecraft:soul_sand')
|
||||
.chancedOutput('tfc:sand/yellow', 9000, 130)
|
||||
|
|
@ -2093,7 +2095,7 @@ const registerTFCRecipes = (event) => {
|
|||
.chancedOutput('gtceu:tiny_coal_dust', 2000, 340)
|
||||
.outputFluids(Fluid.of('gtceu:oil', 80))
|
||||
.duration(200)
|
||||
.EUt(80)
|
||||
.EUt(80)*/
|
||||
|
||||
// Нефтеносный -> Желтый песок
|
||||
event.recipes.gtceu.centrifuge('oilsands_ore_separation')
|
||||
|
|
|
|||
|
|
@ -17,5 +17,40 @@ const registerWaterFlasksRecipes = (event) => {
|
|||
.resultFluid(Fluid.of('gtceu:iron', 144))
|
||||
.useDurability(true)
|
||||
.id(`waterflasks:heating/wrought_iron_iron_flask`)
|
||||
|
||||
|
||||
//#region Кожанная фласка
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:water_flasks/leather_flask')
|
||||
.itemInputs('3x #forge:leather', '2x #forge:string')
|
||||
.circuit(1)
|
||||
.itemOutputs('waterflasks:leather_flask')
|
||||
.duration(250)
|
||||
.EUt(16)
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:water_flasks/leather_flask_repair')
|
||||
.itemInputs('waterflasks:broken_leather_flask', '#forge:leather', '2x #forge:string')
|
||||
.circuit(2)
|
||||
.itemOutputs('waterflasks:leather_flask')
|
||||
.duration(250)
|
||||
.EUt(16)
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Железная фласка
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:water_flasks/iron_flask')
|
||||
.itemInputs('tfc:burlap_cloth', '#forge:string', '#forge:leather', '#forge:plates/wrought_iron')
|
||||
.circuit(1)
|
||||
.itemOutputs('waterflasks:iron_flask')
|
||||
.duration(250)
|
||||
.EUt(16)
|
||||
|
||||
event.recipes.gtceu.assembler('tfg:water_flasks/iron_flask_repair')
|
||||
.itemInputs('waterflasks:broken_iron_flask', 'tfc:burlap_cloth', '#forge:string', '#forge:leather')
|
||||
.circuit(2)
|
||||
.itemOutputs('waterflasks:iron_flask')
|
||||
.duration(250)
|
||||
.EUt(16)
|
||||
|
||||
//#endregion
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue