From f01cc470f23ba8132055e9a64afd7e01e1f3c06f Mon Sep 17 00:00:00 2001 From: Mqrius Date: Mon, 17 Nov 2025 18:26:03 +0100 Subject: [PATCH] Add platinum group ore and fluid tags (#2230) Allow easy filtering of platinum-containing ores Signed-off-by: Mqrius Co-authored-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> --- kubejs/server_scripts/tfg/tags.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 25202c8c5..c00e49499 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -69,6 +69,14 @@ const registerTFGItemTags = (event) => { event.add('deafission:fuels', 'tfg:plutonium_rod') event.add('tfg:fission_rods', '#deafission:fuels') + // Platline + event.add('tfg:platinum_ore_group', 'gtceu:purified_pentlandite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_chalcopyrite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_tetrahedrite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_bornite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_cooperite_ore') + event.add('tfg:platinum_ore_group', 'gtceu:purified_chalcocite_ore') + //#region Tools & Armor event.add('forge:tools/fishing_nets', 'tfg:fishing_net/wood') event.add('forge:tools/fishing_nets', 'tfg:fishing_net/brass') @@ -880,6 +888,10 @@ const registerTFGFluidTags = (event) => { global.BREATHABLE_COMPRESSED_AIRS.forEach(x => { event.add('tfg:breathable_compressed_air', x) }) + + // Platline tags + event.add('tfg:sulfuric_metal_solution', 'gtceu:sulfuric_copper_solution') + event.add('tfg:sulfuric_metal_solution', 'gtceu:sulfuric_nickel_solution') } //#endregion @@ -972,4 +984,4 @@ const registerTFGPlacedFeatures = (event) => { // #endregion -} \ No newline at end of file +}