Advertisement
pakos2835

Untitled

Mar 23rd, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. furnace.remove(<craft++:cooked_mutton>);
  2. furnace.remove(<craft++:calamari>);
  3.  
  4. furnace.remove(<minecraft:leather>);
  5. recipes.remove(<minecraft:wool>);
  6.  
  7. recipes.addShaped(<EasyCrafting:table>, [[<ore:plankWood>, <ore:plankWood>], [<minecraft:dirt>, <minecraft:dirt>]]);
  8. recipes.addShapeless(<minecraft:stone_button>,[<minecraft:stone>]);
  9.  
  10.  
  11.  
  12. recipes.remove(<minecraft:stone_pickaxe>);
  13. recipes.addShaped(<minecraft:stone_pickaxe>,[
  14. [<ore:stone>,<ore:stone>,<ore:stone>],
  15. [null,<ore:stickWood>,null],
  16. [null,<ore:stickWood>,null]
  17. ]);
  18.  
  19. recipes.remove(<minecraft:stone_axe>);
  20. recipes.addShaped(<minecraft:stone_axe>,[
  21. [<ore:stone>,<ore:stone>,null],
  22. [<ore:stone>,<ore:stickWood>,null],
  23. [null,<ore:stickWood>,null]
  24. ]);
  25.  
  26. recipes.remove(<minecraft:stone_shovel>);
  27. recipes.addShaped(<minecraft:stone_shovel>,[
  28. [null,<ore:stone>,null],
  29. [null,<ore:stickWood>,null],
  30. [null,<ore:stickWood>,null]
  31. ]);
  32.  
  33. recipes.remove(<minecraft:stone_sword>);
  34. recipes.addShaped(<minecraft:stone_sword>,[
  35. [null,<ore:stone>,null],
  36. [null,<ore:stone>,null],
  37. [null,<ore:stickWood>,null]
  38. ]);
  39.  
  40. recipes.remove(<minecraft:stone_hoe>);
  41. recipes.addShaped(<minecraft:stone_hoe>,[
  42. [<ore:stone>,<ore:stone>,null],
  43. [null,<ore:stickWood>,null],
  44. [null,<ore:stickWood>,null]
  45. ]);
  46.  
  47. #add overriden recipe
  48. recipes.remove(<Railcraft:tool.steel.sword>);
  49. recipes.remove(<Railcraft:tool.steel.shovel>);
  50. recipes.remove(<Railcraft:tool.steel.axe>);
  51. recipes.remove(<Railcraft:tool.steel.pickaxe>);
  52. recipes.remove(<Railcraft:tool.steel.hoe>);
  53. recipes.remove(<OpenBlocks:hangglider>);
  54. recipes.remove(<Metallurgy:base.dust:4>);
  55. recipes.remove(<Metallurgy:base.dust:5>);
  56. recipes.remove(<Metallurgy:base.dust:6>);
  57. recipes.remove(<Metallurgy:base.dust:7>);
  58.  
  59. #steel gold+manganese
  60. recipes.addShapeless(<Metallurgy:base.dust:7>,
  61. [<Metallurgy:vanilla.dust>, <Metallurgy:base.dust:2>]);
  62. #damascus iron+tin
  63. recipes.addShapeless(<Metallurgy:base.dust:5>,
  64. [<Metallurgy:vanilla.dust:1>, <Metallurgy:base.dust:1>]);
  65. #angmallen tin+gold
  66. recipes.addShapeless(<Metallurgy:base.dust:6>,
  67. [<Metallurgy:vanilla.dust>, <Metallurgy:base.dust:1>]);
  68. #hepatizon iron+copper
  69. recipes.addShapeless(<Metallurgy:base.dust:4>,
  70. [<Metallurgy:vanilla.dust:1>, <Metallurgy:base.dust>]);
  71. recipes.remove(<Metallurgy:alloyer>);
  72. recipes.remove(<Metallurgy:forge>);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement