/* SkyFactory 4 Remove and Hide Script This script handles the removal and hiding of IIngredients. */ import crafttweaker.item.IIngredient; import mods.jei.JEI; static removeAndHideIngredients as IIngredient[] = [ // Creative , , , , , , , , , , , , , // Misc , , , , , , .withTag({HeldBiome: 0}), .withTag({HeldBiome: 2}), .withTag({HeldBiome: 3}), .withTag({HeldBiome: 4}), .withTag({HeldBiome: 5}), .withTag({HeldBiome: 6}), .withTag({HeldBiome: 7}), .withTag({HeldBiome: 8}), .withTag({HeldBiome: 9}), .withTag({HeldBiome: 10}), .withTag({HeldBiome: 11}), .withTag({HeldBiome: 12}), .withTag({HeldBiome: 13}), .withTag({HeldBiome: 14}), .withTag({HeldBiome: 15}), .withTag({HeldBiome: 16}), .withTag({HeldBiome: 17}), .withTag({HeldBiome: 18}), .withTag({HeldBiome: 19}), .withTag({HeldBiome: 20}), .withTag({HeldBiome: 21}), .withTag({HeldBiome: 22}), .withTag({HeldBiome: 23}), .withTag({HeldBiome: 24}), .withTag({HeldBiome: 25}), .withTag({HeldBiome: 26}), .withTag({HeldBiome: 27}), .withTag({HeldBiome: 28}), .withTag({HeldBiome: 29}), .withTag({HeldBiome: 30}), .withTag({HeldBiome: 31}), .withTag({HeldBiome: 32}), .withTag({HeldBiome: 33}), .withTag({HeldBiome: 34}), .withTag({HeldBiome: 35}), .withTag({HeldBiome: 36}), .withTag({HeldBiome: 37}), .withTag({HeldBiome: 38}), .withTag({HeldBiome: 39}), .withTag({HeldBiome: 40}), .withTag({HeldBiome: 41}), .withTag({HeldBiome: 42}), .withTag({HeldBiome: 43}), .withTag({HeldBiome: 44}), .withTag({HeldBiome: 45}), .withTag({HeldBiome: 46}), .withTag({HeldBiome: 47}), .withTag({HeldBiome: 48}), .withTag({HeldBiome: 49}), .withTag({HeldBiome: 50}), .withTag({HeldBiome: 51}), .withTag({HeldBiome: 52}), .withTag({HeldBiome: 53}), .withTag({HeldBiome: 54}), .withTag({HeldBiome: 55}), .withTag({HeldBiome: 56}), .withTag({HeldBiome: 57}), .withTag({HeldBiome: 58}), .withTag({HeldBiome: 59}), .withTag({HeldBiome: 127}), , .withTag({tier: 0}), .withTag({tier: 1}), .withTag({tier: 2}), .withTag({tier: 3}), .withTag({tier: 0}), .withTag({tier: 1}), .withTag({tier: 2}), .withTag({tier: 3}), .withTag({tier: 0}), .withTag({tier: 0}), .withTag({tier: 0}), .withTag({tier: 1}), .withTag({tier: 2}), .withTag({tier: 3}), , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , //Na na na na na na na na HEY HEY HEY GOODBYE ... to certus quartz , , .withTag({progress: 0}), .withTag({progress: 200}), .withTag({progress: 400}), , , , , //Removing deprecated Extra Cells Fluid items , , , , , , , , , , , , , , , , , //Why doesn't my drying rack work? Because you're not using the drying rack. You're using the display rack , //Hiding extras //These are extra items that either have a duplicate in another mod //or have no use , , , , , , , // Remove Iridium , , , , , , // Remove Constantan .withTag({textureBlock: {id: "thermalfoundation:storage_alloy", Count: 1 as byte, Damage: 4 as short}}), .withTag({textureBlock: {id: "thermalfoundation:storage_alloy", Count: 1 as byte, Damage: 4 as short}}), , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , //No. , , //Not needed , , , , , , , , , , , , //Not configurable and allows for exploits , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , // AE Lumen Paintballs , , , , , , , , , , , , , , , , ]; function init() { for ingredient in removeAndHideIngredients { JEI.removeAndHide(ingredient); } }