Support Recycling (#2211)
Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
This commit is contained in:
parent
9e97f3f25b
commit
b2f70d3f99
5 changed files with 99 additions and 25 deletions
|
|
@ -1,6 +1,10 @@
|
|||
// priority: 0
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {Internal.RecipesEventJS} event
|
||||
*/
|
||||
function registerTFCStoneRecipes(event) {
|
||||
|
||||
global.TFC_STONE_TYPES.forEach(stone => {
|
||||
|
|
@ -561,6 +565,17 @@ function registerTFCStoneRecipes(event) {
|
|||
.EUt(2)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING)
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Recycle beam
|
||||
let dustSmall = ChemicalHelper.get(TagPrefix.dustSmall, stoneMaterial, 1);
|
||||
event.recipes.gtceu.macerator(`${stone}_support_to_dust`)
|
||||
.itemInputs(`tfg:${stone}_support`)
|
||||
.itemOutputs(dustSmall)
|
||||
.duration(150)
|
||||
.EUt(2)
|
||||
.category(GTRecipeCategories.MACERATOR_RECYCLING);
|
||||
|
||||
//#endregion
|
||||
//#endregion
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue