Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import crafttweaker.api.tag.MCTag;
- import crafttweaker.api.item.IItemStack;
- import crafttweaker.api.ingredient.IIngredient;
- import crafttweaker.api.item.ItemDefinition;
- import stdlib.List;
- import mods.jei.JEI;
- import crafttweaker.api.recipe.BlastFurnaceRecipeManager;
- import crafttweaker.api.recipe.FurnaceRecipeManager;
- // Add tags to Mushroom Colonies for quest purposes
- <tag:items:crafttweaker:mushcolony>.add(<item:farmersdelight:red_mushroom_colony>);
- <tag:items:crafttweaker:mushcolony>.add(<item:farmersdelight:brown_mushroom_colony>);
- <tag:items:crafttweaker:netmushcolony>.add(<item:nethersdelight:crimson_fungus_colony>);
- <tag:items:crafttweaker:netmushcolony>.add(<item:nethersdelight:warped_fungus_colony>);
- // Adds a recipe for the Mimicarnation
- craftingTable.addShapeless("mimicarnacream", <item:alexsmobs:mimicream>, [<item:nethersdelight:mimicarnation>, <item:nethersdelight:mimicarnation>, <item:nethersdelight:mimicarnation>, <item:nethersdelight:mimicarnation>]);
- // Adds tags to Brooms
- <tag:items:crafttweaker:brooms>.add(<item:hexerei:mahogany_broom>);
- <tag:items:crafttweaker:brooms>.add(<item:hexerei:willow_broom>);
- // Adds compostable tag to make things able to be made into Compost
- <tag:items:crafttweaker:compostable>.add(
- <item:hexerei:mugwort_flowers>,
- <item:hexerei:mugwort_leaves>,
- <item:hexerei:yellow_dock_flowers>,
- <item:hexerei:yellow_dock_leaves>,
- <item:hexerei:belladonna_flowers>,
- <item:hexerei:belladonna_berries>,
- <item:hexerei:mandrake_root>,
- <item:hexerei:mandrake_flowers>,
- <item:hexerei:dried_sage>,
- <item:hexerei:dried_belladonna_flowers>,
- <item:hexerei:dried_mandrake_flowers>,
- <item:hexerei:dried_mugwort_flowers>,
- <item:hexerei:dried_mugwort_leaves>,
- <item:hexerei:dried_yellow_dock_flowers>,
- <item:hexerei:dried_yellow_dock_leaves>,
- <item:farmersdelight:tree_bark>,
- <item:minecraft:rotten_flesh>
- );
- // Adds dirt tag to a bunch of dirt
- <tag:items:crafttweaker:dirts>.add(
- <item:minecraft:dirt>,
- <item:minecraft:coarse_dirt>,
- <item:minecraft:rooted_dirt>,
- <item:verdure:smooth_dirt>,
- <item:byg:lush_dirt>,
- <item:twilightforest:uberous_soil>,
- <item:verdure:humus>,
- <item:minecraft:podzol>
- );
- // Change Compost recipe
- craftingTable.remove(<item:farmersdelight:organic_compost>);
- craftingTable.addShapeless("witchycompost", <item:farmersdelight:organic_compost> * 2, [<tag:items:crafttweaker:dirts>, <tag:items:supplementaries:straw>, <tag:items:supplementaries:straw>, <item:minecraft:bone_meal>, <item:minecraft:bone_meal>, <tag:items:crafttweaker:compostable>, <tag:items:crafttweaker:compostable>, <tag:items:crafttweaker:compostable>, <tag:items:crafttweaker:compostable>]);
- // Remove Cactus Tools and Dusts from Mystical World
- craftingTable.remove(
- <item:mysticalworld:cactus_axe>,
- <item:mysticalworld:cactus_hoe>,
- <item:mysticalworld:cactus_knife>,
- <item:mysticalworld:cactus_pickaxe>,
- <item:mysticalworld:cactus_shovel>,
- <item:mysticalworld:cactus_sword>,
- <item:mysticalworld:copper_dust>,
- <item:mysticalworld:tin_dust>,
- <item:mysticalworld:iron_dust>,
- <item:mysticalworld:lead_dust>,
- <item:mysticalworld:silver_dust>,
- <item:mysticalworld:gold_dust>,
- <item:mysticalworld:orichalcum_dust>
- );
- blastFurnace.remove(
- <item:mysticalworld:copper_dust>,
- <item:mysticalworld:tin_dust>,
- <item:mysticalworld:iron_dust>,
- <item:mysticalworld:lead_dust>,
- <item:mysticalworld:silver_dust>,
- <item:mysticalworld:gold_dust>,
- <item:mysticalworld:orichalcum_dust>
- );
- furnace.remove(
- <item:mysticalworld:copper_dust>,
- <item:mysticalworld:tin_dust>,
- <item:mysticalworld:iron_dust>,
- <item:mysticalworld:lead_dust>,
- <item:mysticalworld:silver_dust>,
- <item:mysticalworld:gold_dust>,
- <item:mysticalworld:orichalcum_dust>
- );
- JEI.hideIngredient(
- <item:mysticalworld:cactus_axe>,
- <item:mysticalworld:cactus_hoe>,
- <item:mysticalworld:cactus_knife>,
- <item:mysticalworld:cactus_pickaxe>,
- <item:mysticalworld:cactus_shovel>,
- <item:mysticalworld:cactus_sword>,
- <item:mysticalworld:copper_dust>,
- <item:mysticalworld:tin_dust>,
- <item:mysticalworld:iron_dust>,
- <item:mysticalworld:lead_dust>,
- <item:mysticalworld:silver_dust>,
- <item:mysticalworld:gold_dust>,
- <item:mysticalworld:orichalcum_dust>
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement