144mb Chocolate Melting (#1977)
* oops I might've hit space and made linux upset mb gang * > metal bar > look inside > not a metal bar * sns is a mess huh * sns is a mess huh (fixed sns and sophisticated backpack stuff) * hot potato (pun intended) * made bulbkin pie not allergic to firmalife ovens * flax cutter recipe * chocolate is now 144mb yay * accident * no more chocolate dupe --------- Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
This commit is contained in:
parent
774a104b77
commit
f6e4935488
2 changed files with 25 additions and 2 deletions
|
|
@ -761,4 +761,28 @@ const registerFirmaLifeRecipes = (event) => {
|
|||
Fluid.of('tfcchannelcasting:milk_chocolate', 100))
|
||||
.outputItem(TFC.isp.of('firmalife:food/chocolate_ice_cream').copyFood())
|
||||
.id('tfg:mixing_bowl/chocolate_ice_cream')
|
||||
|
||||
// Chocolate Melting
|
||||
const setChocolateHeating = (variant) => {
|
||||
const itemID = `firmalife:food/${variant}_chocolate`
|
||||
const fluidID = `tfcchannelcasting:${variant}_chocolate`
|
||||
const recipeID = `firmalife:heating/${variant}_chocolate`
|
||||
const castingRecipeID = `tfcchannelcasting:casting/${variant}_chocolate`
|
||||
|
||||
event.remove({ id: recipeID })
|
||||
event.remove({ id: castingRecipeID })
|
||||
event.remove({ id: `${castingRecipeID}_fire_ingot` })
|
||||
event.remove({ type: 'tfc:heating', ingredient: { item: itemID } })
|
||||
|
||||
event.recipes.tfc.heating(itemID, 200)
|
||||
.resultFluid(Fluid.of(fluidID, 144))
|
||||
.id(recipeID)
|
||||
|
||||
event.recipes.tfc.casting(`${itemID}`, 'tfc:ceramic/ingot_mold', TFC.fluidStackIngredient(`${fluidID}`, 144), 0)
|
||||
event.recipes.tfc.casting(`${itemID}`, 'tfc:ceramic/fire_ingot_mold', TFC.fluidStackIngredient(`${fluidID}`, 144), 0)
|
||||
}
|
||||
|
||||
setChocolateHeating('white')
|
||||
setChocolateHeating('milk')
|
||||
setChocolateHeating('dark')
|
||||
}
|
||||
|
|
|
|||
|
|
@ -285,7 +285,7 @@ function registerTFGFoodRecipes(event) {
|
|||
})
|
||||
|
||||
})
|
||||
|
||||
|
||||
// Milks
|
||||
|
||||
processorRecipe(`white_chocolate_blend`, 300, 16, {
|
||||
|
|
@ -912,7 +912,6 @@ function registerTFGFoodRecipes(event) {
|
|||
itemOutputs: ["species:birtday_cake"]
|
||||
})
|
||||
|
||||
|
||||
// These don't need the ISP handling, they're just here to keep all the food recipes together
|
||||
|
||||
event.recipes.gtceu.mixer('tfg:tfc/olive_oil_water')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue