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/client_scripts/thermal_gtc_integration_client.js

54 lines
763 B
JavaScript
Raw Normal View History

const THERMAL_REMOVED_PLATES = [
2024-06-14 19:06:44 +02:00
"tin",
"lead",
"silver",
"nickel",
"bronze",
"invar",
"iron",
"gold",
"copper",
"electrum",
];
const THERMAL_REMOVED_GEARS = [
2024-06-14 19:06:44 +02:00
"tin",
"lead",
"silver",
//"nickel",
"bronze",
"invar",
"iron",
"gold",
"copper",
"electrum",
"lapis",
"emerald",
//"quartz"
];
const THERMAL_REMOVED_NUGGETS = [
2024-06-14 19:06:44 +02:00
"tin",
"lead",
"silver",
"nickel",
"bronze",
"electrum",
"invar",
"copper",
];
JEIEvents.hideItems((event) => {
REMOVED_PLATES.forEach((metal) => {
event.hide(`thermal:${metal}_plate`);
});
REMOVED_GEARS.forEach((metal) => {
event.hide(`thermal:${metal}_gear`);
});
REMOVED_NUGGETS.forEach((metal) => {
event.hide(`thermal:${metal}_nugget`);
});
});