Support Recycling (#2211)

Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
This commit is contained in:
Nebby 2025-11-17 15:53:16 -03:00 committed by GitHub
parent 9e97f3f25b
commit b2f70d3f99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 99 additions and 25 deletions

View file

@ -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