soy mixture recipes with salt water (#2984)
This commit is contained in:
parent
ecbb476d5d
commit
684e554ee4
2 changed files with 32 additions and 16 deletions
|
|
@ -1,17 +1,17 @@
|
|||
"use strict";
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {Internal.TFCDataEventJS} evt
|
||||
*/
|
||||
|
||||
const registerTFCDataForChimes = (evt) => {
|
||||
if (Platform.isLoaded("chimes")) {
|
||||
evt.itemSize('chimes:bamboo_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:carved_bamboo_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:copper_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:iron_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:amethyst_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:glass_bells', 'normal', 'medium');
|
||||
}
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {Internal.TFCDataEventJS} evt
|
||||
*/
|
||||
|
||||
const registerTFCDataForChimes = (evt) => {
|
||||
if (Platform.isLoaded("chimes")) {
|
||||
evt.itemSize('chimes:bamboo_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:carved_bamboo_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:copper_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:iron_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:amethyst_chimes', 'large', 'heavy');
|
||||
evt.itemSize('chimes:glass_bells', 'normal', 'medium');
|
||||
}
|
||||
}
|
||||
|
|
@ -894,6 +894,22 @@ function registerTFGFoodRecipes(event) {
|
|||
itemOutputProvider: TFC.isp.of('firmalife:food/soy_mixture').copyFood()
|
||||
})
|
||||
|
||||
global.processorRecipe(event, 'soy_mixture_sea_water', 300, 8, {
|
||||
circuit: 1,
|
||||
itemInputs: ['tfc:food/soybean'],
|
||||
fluidInputs: ['tfc:salt_water 50'],
|
||||
itemOutputs: ['firmalife:food/soy_mixture'],
|
||||
itemOutputProvider: TFC.isp.of('firmalife:food/soy_mixture').copyFood()
|
||||
})
|
||||
|
||||
global.processorRecipe(event, 'soy_mixture_salt_water', 300, 8, {
|
||||
circuit: 1,
|
||||
itemInputs: ['tfc:food/soybean'],
|
||||
fluidInputs: ['gtceu:salt_water 25'],
|
||||
itemOutputs: ['firmalife:food/soy_mixture'],
|
||||
itemOutputProvider: TFC.isp.of('firmalife:food/soy_mixture').copyFood()
|
||||
})
|
||||
|
||||
global.processorRecipe(event, "brown_mushroom", 100, 8, {
|
||||
circuit: 30,
|
||||
itemInputs: ["minecraft:brown_mushroom_block"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue