Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import crafttweaker.item.IItemStack;
- //==Adds recipe for Pyrotech Dirt Clumps==
- recipes.addShapeless("dirt_conversion", <pyrotech:rock:4> * 2, [<betterwithmods:dirt_pile>]);
- //Changes Potash Mulch recipe to require Compost instead of "mulchNitrogen," and also to use either type of ash.
- <ore:listAllash>.add(<pyrotech:material>);
- <ore:listAllash>.add(<betterwithmods:material:21>);
- recipes.remove(<pyrotech:mulch>); //Note: this line correctly removes the recipe in all categories
- recipes.addShaped(<pyrotech:mulch> * 4, [[<ore:listAllash>, <pyrotech:rock:7>, <ore:listAllash>],[<pyrotech:rock:7>, <composter:compost>, <pyrotech:rock:7>], [<ore:listAllash>, <pyrotech:rock:7>, <ore:listAllash>]]);
- //Make PVJ basalt and marble recipes use Quark's blocks
- recipes.replaceAllOccurences(<pvj:basalt>, <quark:basalt>);
- recipes.replaceAllOccurences(<pvj:marble>, <quark:marble>);
- recipes.replaceAllOccurences(<pvj:basalt_brick>, <quark:world_stone_bricks:3>);
- recipes.replaceAllOccurences(<pvj:marble_brick>, <quark:world_stone_bricks:4>);
- //====Adds recipes for Diamond Ingots====
- //Diamond Leggings
- recipes.remove(<minecraft:diamond_leggings>);
- recipes.addShaped("diamond_ingot_leggings", <minecraft:diamond_leggings>, [[<betterwithmods:material:45>, <minecraft:diamond>, <betterwithmods:material:45>],[<minecraft:diamond>, null, <minecraft:diamond>], [<minecraft:diamond>, null, <minecraft:diamond>]]);
- //Diamond Helmet
- recipes.remove(<minecraft:diamond_helmet>);
- recipes.addShaped("diamond_ingot_helmet", <minecraft:diamond_helmet>, [[<betterwithmods:material:45>, <minecraft:diamond>, <betterwithmods:material:45>],[<minecraft:diamond>, null, <minecraft:diamond>]]);
Advertisement
Add Comment
Please, Sign In to add comment