Advertisement
katubug

no compatible methods found

Oct 15th, 2022
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. import crafttweaker.api.tag.MCTag;
  2. import crafttweaker.api.item.IItemStack;
  3. import crafttweaker.api.ingredient.IIngredient;
  4. import crafttweaker.api.item.ItemDefinition;
  5. import stdlib.List;
  6. import mods.jei.JEI;
  7. import crafttweaker.api.recipe.BlastFurnaceRecipeManager;
  8. import crafttweaker.api.recipe.FurnaceRecipeManager;
  9.  
  10. // Add tags to Mushroom Colonies for quest purposes
  11. <tag:items:crafttweaker:mushcolony>.add(<item:farmersdelight:red_mushroom_colony>);
  12. <tag:items:crafttweaker:mushcolony>.add(<item:farmersdelight:brown_mushroom_colony>);
  13.  
  14. <tag:items:crafttweaker:netmushcolony>.add(<item:nethersdelight:crimson_fungus_colony>);
  15. <tag:items:crafttweaker:netmushcolony>.add(<item:nethersdelight:warped_fungus_colony>);
  16.  
  17. // Adds a recipe for the Mimicarnation
  18. craftingTable.addShapeless("mimicarnacream", <item:alexsmobs:mimicream>, [<item:nethersdelight:mimicarnation>, <item:nethersdelight:mimicarnation>, <item:nethersdelight:mimicarnation>, <item:nethersdelight:mimicarnation>]);
  19.  
  20. // Adds tags to Brooms
  21. <tag:items:crafttweaker:brooms>.add(<item:hexerei:mahogany_broom>);
  22. <tag:items:crafttweaker:brooms>.add(<item:hexerei:willow_broom>);
  23.  
  24. // Adds compostable tag to make things able to be made into Compost
  25.  
  26. <tag:items:crafttweaker:compostable>.add(
  27. <item:hexerei:mugwort_flowers>,
  28. <item:hexerei:mugwort_leaves>,
  29. <item:hexerei:yellow_dock_flowers>,
  30. <item:hexerei:yellow_dock_leaves>,
  31. <item:hexerei:belladonna_flowers>,
  32. <item:hexerei:belladonna_berries>,
  33. <item:hexerei:mandrake_root>,
  34. <item:hexerei:mandrake_flowers>,
  35. <item:hexerei:dried_sage>,
  36. <item:hexerei:dried_belladonna_flowers>,
  37. <item:hexerei:dried_mandrake_flowers>,
  38. <item:hexerei:dried_mugwort_flowers>,
  39. <item:hexerei:dried_mugwort_leaves>,
  40. <item:hexerei:dried_yellow_dock_flowers>,
  41. <item:hexerei:dried_yellow_dock_leaves>,
  42. <item:farmersdelight:tree_bark>,
  43. <item:minecraft:rotten_flesh>
  44. );
  45.  
  46. // Adds dirt tag to a bunch of dirt
  47. <tag:items:crafttweaker:dirts>.add(
  48. <item:minecraft:dirt>,
  49. <item:minecraft:coarse_dirt>,
  50. <item:minecraft:rooted_dirt>,
  51. <item:verdure:smooth_dirt>,
  52. <item:byg:lush_dirt>,
  53. <item:twilightforest:uberous_soil>,
  54. <item:verdure:humus>,
  55. <item:minecraft:podzol>
  56. );
  57.  
  58. // Change Compost recipe
  59. craftingTable.remove(<item:farmersdelight:organic_compost>);
  60. 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>]);
  61.  
  62. // Remove Cactus Tools and Dusts from Mystical World
  63.  
  64. craftingTable.remove(
  65. <item:mysticalworld:cactus_axe>,
  66. <item:mysticalworld:cactus_hoe>,
  67. <item:mysticalworld:cactus_knife>,
  68. <item:mysticalworld:cactus_pickaxe>,
  69. <item:mysticalworld:cactus_shovel>,
  70. <item:mysticalworld:cactus_sword>,
  71. <item:mysticalworld:copper_dust>,
  72. <item:mysticalworld:tin_dust>,
  73. <item:mysticalworld:iron_dust>,
  74. <item:mysticalworld:lead_dust>,
  75. <item:mysticalworld:silver_dust>,
  76. <item:mysticalworld:gold_dust>,
  77. <item:mysticalworld:orichalcum_dust>
  78. );
  79.  
  80. blastFurnace.remove(
  81. <item:mysticalworld:copper_dust>,
  82. <item:mysticalworld:tin_dust>,
  83. <item:mysticalworld:iron_dust>,
  84. <item:mysticalworld:lead_dust>,
  85. <item:mysticalworld:silver_dust>,
  86. <item:mysticalworld:gold_dust>,
  87. <item:mysticalworld:orichalcum_dust>
  88. );
  89.  
  90. furnace.remove(
  91. <item:mysticalworld:copper_dust>,
  92. <item:mysticalworld:tin_dust>,
  93. <item:mysticalworld:iron_dust>,
  94. <item:mysticalworld:lead_dust>,
  95. <item:mysticalworld:silver_dust>,
  96. <item:mysticalworld:gold_dust>,
  97. <item:mysticalworld:orichalcum_dust>
  98. );
  99.  
  100. JEI.hideIngredient(
  101. <item:mysticalworld:cactus_axe>,
  102. <item:mysticalworld:cactus_hoe>,
  103. <item:mysticalworld:cactus_knife>,
  104. <item:mysticalworld:cactus_pickaxe>,
  105. <item:mysticalworld:cactus_shovel>,
  106. <item:mysticalworld:cactus_sword>,
  107. <item:mysticalworld:copper_dust>,
  108. <item:mysticalworld:tin_dust>,
  109. <item:mysticalworld:iron_dust>,
  110. <item:mysticalworld:lead_dust>,
  111. <item:mysticalworld:silver_dust>,
  112. <item:mysticalworld:gold_dust>,
  113. <item:mysticalworld:orichalcum_dust>
  114. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement