//////////////////////////////////////////////////////////////////////////////////////////////////////////////// import crafttweaker.item.IIngredient; var banned_items = [ // Vanilla Tools , , , , , , , , , , , , , , , // , // , // , , // Vanilla Armor , , , , // , // , // , // , // , // , // , // , , , , , // Modded items // No tree punching , , , , , , , , , // Gems don't need smelting // , // , // Thermalcraft gears // , // , , , , , , , , , , , , , , , , , , , , , , // Chisel , , , // Ice and fire , , , , , , , , , , , , ] as IIngredient[]; for item in banned_items { mods.jei.JEI.removeAndHide(item); } //////////////////////////////////////////////////////////////////////////////////////////////////////////////// furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); furnace.remove(, ); //////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////// var stick = ; var paper = ; var _string = ; var wool = ; var iron = ; var redstone = ; var redstone_block = ; var bronze_kblade = .withTag({Material: "bronze"}); var copper_kblade = .withTag({Material: "copper"}); var iron_kblade = .withTag({Material: "iron"}); var steel_kblade = .withTag({Material: "steel"}); var gold_kblade = .withTag({Material: "gold"}); // No tree punching - knives recipes.remove(); recipes.addShaped("ntp_knife_iron", , [ [iron_kblade], [stick], ]); recipes.remove(); recipes.addShaped("ntp_knife_gold", , [ [gold_kblade], [stick], ]); recipes.remove(); recipes.addShaped("ntp_knife_copper", , [ [copper_kblade], [stick], ]); recipes.remove(); recipes.addShaped("ntp_knife_bronze", , [ [bronze_kblade], [stick], ]); recipes.remove(); recipes.addShaped("ntp_knife_steel", , [ [steel_kblade], [stick], ]); // No tree punching - saws recipes.remove(); recipes.addShaped("ntp_saw_iron", , [ [null, null, stick], [null, stick, iron_kblade], [stick, iron_kblade, null], ]); recipes.remove(); recipes.addShaped("ntp_saw_gold", , [ [null, null, stick], [null, stick, gold_kblade], [stick, gold_kblade, null], ]); recipes.remove(); recipes.addShaped("ntp_saw_copper", , [ [null, null, stick], [null, stick, copper_kblade], [stick, copper_kblade, null], ]); recipes.remove(); recipes.addShaped("ntp_saw_bronze", , [ [null, null, stick], [null, stick, bronze_kblade], [stick, bronze_kblade, null], ]); recipes.remove(); recipes.addShaped("ntp_saw_steel", , [ [null, null, stick], [null, stick, steel_kblade], [stick, steel_kblade, null], ]); // First aid recipes.remove(); recipes.addShaped("fa_plaster", , [ [paper, _string] ]); recipes.remove(); recipes.addShaped("fa_bandage", , [ [_string, wool, _string] ]); // Gears mods.tconstruct.Casting.addTableRecipe(, , , 288, true); mods.tconstruct.Casting.addTableRecipe(, , , 288, true); mods.tconstruct.Casting.addTableRecipe(, , , 288, true); mods.tconstruct.Casting.addTableRecipe(, , , 288, true); // TIS-3D recipes.remove(); recipes.addShaped("tis3d_controller", , [ [iron, redstone, iron], [redstone, redstone_block, redstone], [iron, redstone, iron], ]);