1
0
Fork 0
mirror of https://github.com/xHyroM/aetheria.git synced 2024-09-20 05:13:20 +02:00
aetheria/packwiz/1.20.1/kubejs/server_scripts/thermal_gtc_integration.js

62 lines
1.1 KiB
JavaScript
Executable file

const THERMAL_REMOVED_PLATE_RECIPES = [
"tin",
"lead",
"silver",
"nickel",
"bronze",
"invar",
"iron",
"gold",
"copper",
"electrum",
];
const THERMAL_REMOVED_GEAR_RECIPES = [
"tin",
"lead",
"silver",
"nickel",
"bronze",
"invar",
"iron",
"gold",
"copper",
"electrum",
"lapis",
"emerald",
//"quartz"
];
const THERMAL_REMOVED_NUGGET_RECIPES = [
"tin",
"lead",
"silver",
"nickel",
"bronze",
"electrum",
"invar",
"copper",
];
ServerEvents.recipes((event) => {
// Remove Thermal Foundation recipes for plates
THERMAL_REMOVED_PLATE_RECIPES.forEach((metal) => {
event.remove({
id: `thermal:machines/press/press_${metal}_ingot_to_plate`,
});
});
// Remove Thermal Foundation recipes for gears
THERMAL_REMOVED_GEAR_RECIPES.forEach((metal) => {
event.remove({
id: `thermal:parts/${metal}_gear`,
});
});
// Remove Thermal Foundation recipes for nuggets
THERMAL_REMOVED_NUGGET_RECIPES.forEach((metal) => {
event.remove({
id: `thermal:storage/${metal}_nugget_from_ingot`,
});
});
});