/** * ------------------------------------------------------------ * * This file is part of the FTB Presents Direwolf20 1.12 Modpack for Minecraft * Copyright (c) 2019 Feed The Beast LLC. * * All Rights Reserved unless otherwise explicitly stated. * * ------------------------------------------------------------ */ import crafttweaker.item.IItemStack; import mods.jei.JEI; /* Declare as Variable - Makes referencing for tooltips easier. */ var stoneFacade = .withTag({damage: 0, item: "minecraft:stone"}) as IItemStack; /* Hide all AE2 Facades, Re-Add Stone Facade and add information to it. */ JEI.hide(.withTag({ damage: 0, item: ""}, false)); JEI.addItem(stoneFacade); JEI.addDescription(stoneFacade, "Facades are not disabled in this pack; just hidden in JEI. To craft facades, place the block you want to create a facade out of in the centre of the crafting grid (3x3) and four AE2 cable anchors on all adjacent sides of that block. If no output appears then you cannot create a facade with that block."); /* Tooltip for Facade - Tells user to look at JEI Information Page for the Item */ stoneFacade.addTooltip("Check item description using JEI recipe lookup for information on crafting."); /* Hide ores not currently generated in world generation */ JEI.removeAndHide(); /* Copper Ore */ JEI.removeAndHide(); /* Tin Ore */ JEI.removeAndHide(); /* Copper Ore */ JEI.removeAndHide(); /* Tin Ore */ JEI.removeAndHide(); /* Lead Ore */ JEI.removeAndHide(); /* All IE Ores */ /* MeeCreeps */ JEI.removeAndHide(); JEI.removeAndHide(); /* Monk Mod */ JEI.removeAndHide(); /* Mob Grinding Utils - Mob Swab */ JEI.removeAndHide();