Winemaking Recipes (#1111)
* Winemaking recipes Signed-off-by: Jean Roberto de Souza <81846511+JeanRdSz@users.noreply.github.com> * Update CHANGELOG.md Signed-off-by: Jean Roberto de Souza <81846511+JeanRdSz@users.noreply.github.com> * Update CHANGELOG.md Signed-off-by: Jean Roberto de Souza <81846511+JeanRdSz@users.noreply.github.com> --------- Signed-off-by: Jean Roberto de Souza <81846511+JeanRdSz@users.noreply.github.com>
This commit is contained in:
parent
dcd975a430
commit
a85f4dafe3
2 changed files with 46 additions and 0 deletions
|
|
@ -16,6 +16,7 @@
|
||||||
- Fixed some assembly line recipes that had incorrect stack sizes (#1108) @Pyritie
|
- Fixed some assembly line recipes that had incorrect stack sizes (#1108) @Pyritie
|
||||||
- Fixed being able to dupe materials by crafting tools and then recycling them (#1100) @Pyritie
|
- Fixed being able to dupe materials by crafting tools and then recycling them (#1100) @Pyritie
|
||||||
- Fixed issue where "melts into" tooltips and certain timers on Jade were missing (#1102) @Xikaro
|
- Fixed issue where "melts into" tooltips and certain timers on Jade were missing (#1102) @Xikaro
|
||||||
|
- Added Wine utensils recipes for GT (#1111) @JeanRdS
|
||||||
|
|
||||||
## [0.9.9] - 30.05.2025
|
## [0.9.9] - 30.05.2025
|
||||||
### Changes
|
### Changes
|
||||||
|
|
|
||||||
|
|
@ -119,6 +119,51 @@ const registerFirmaLifeRecipes = (event) => {
|
||||||
.duration(50)
|
.duration(50)
|
||||||
.EUt(7)
|
.EUt(7)
|
||||||
|
|
||||||
|
//#region Wine Working
|
||||||
|
|
||||||
|
event.recipes.gtceu.alloy_smelter('firmalife:empty_olivine_wine_bottle')
|
||||||
|
.itemInputs('tfc:olivine_glass_batch')
|
||||||
|
.notConsumable('gtceu:cylinder_casting_mold')
|
||||||
|
.itemOutputs('firmalife:empty_olivine_wine_bottle')
|
||||||
|
.duration(100)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.alloy_smelter('firmalife:empty_volcanic_wine_bottle')
|
||||||
|
.itemInputs('tfc:volcanic_glass_batch')
|
||||||
|
.notConsumable('gtceu:cylinder_casting_mold')
|
||||||
|
.itemOutputs('firmalife:empty_volcanic_wine_bottle')
|
||||||
|
.duration(100)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.alloy_smelter('firmalife:empty_hematitic_wine_bottle')
|
||||||
|
.itemInputs('tfc:hematitic_glass_batch')
|
||||||
|
.notConsumable('gtceu:cylinder_casting_mold')
|
||||||
|
.itemOutputs('firmalife:empty_hematitic_wine_bottle')
|
||||||
|
.duration(100)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.alloy_smelter('firmalife:wine_glass')
|
||||||
|
.itemInputs('tfc:silica_glass_batch')
|
||||||
|
.notConsumable('gtceu:cylinder_casting_mold')
|
||||||
|
.itemOutputs('2x firmalife:wine_glass')
|
||||||
|
.duration(100)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('firmalife:cork')
|
||||||
|
.itemInputs('firmalife:treated_lumber')
|
||||||
|
.inputFluids(Fluid.of('tfc:limewater',1000))
|
||||||
|
.itemOutputs('8x firmalife:cork')
|
||||||
|
.duration(300)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
|
||||||
|
event.recipes.gtceu.assembler('firmalife:bottle_label')
|
||||||
|
.itemInputs('#forge:wax','minecraft:paper')
|
||||||
|
.itemOutputs('16x firmalife:bottle_label')
|
||||||
|
.duration(30)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
|
||||||
|
//#endregion
|
||||||
|
|
||||||
// TODO: Не работает потому что грегтех
|
// TODO: Не работает потому что грегтех
|
||||||
// Доставание меда из сот
|
// Доставание меда из сот
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue