DolphinsInMechs

Untitled

Jul 20th, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. import crafttweaker.item.IItemStack;
  2. import crafttweaker.item.IItemTransformer;
  3.  
  4. val itemsToDisable =[
  5. // Ruby Tools
  6. <projectred-exploration:ruby_axe>,
  7. <projectred-exploration:ruby_pickaxe>,
  8. <projectred-exploration:ruby_shovel>,
  9. <projectred-exploration:ruby_hoe>,
  10. <projectred-exploration:ruby_sword>,
  11. <projectred-exploration:ruby_saw>,
  12. // Sapphire Tools
  13. <projectred-exploration:sapphire_axe>,
  14. <projectred-exploration:sapphire_pickaxe>,
  15. <projectred-exploration:sapphire_shovel>,
  16. <projectred-exploration:sapphire_hoe>,
  17. <projectred-exploration:sapphire_sword>,
  18. <projectred-exploration:sapphire_saw>,
  19. // Peridot Tools
  20. <projectred-exploration:peridot_axe>,
  21. <projectred-exploration:peridot_pickaxe>,
  22. <projectred-exploration:peridot_shovel>,
  23. <projectred-exploration:peridot_hoe>,
  24. <projectred-exploration:peridot_sword>,
  25. <projectred-exploration:peridot_saw>,
  26. // Sickles
  27. <projectred-exploration:wooden_sickle>,
  28. <projectred-exploration:stone_sickle>,
  29. <projectred-exploration:iron_sickle>,
  30. <projectred-exploration:golden_sickle>,
  31. <projectred-exploration:ruby_sickle>,
  32. <projectred-exploration:sapphire_sickle>,
  33. <projectred-exploration:peridot_sickle>,
  34. <projectred-exploration:diamond_sickle>,
  35. // Electric Screwdriver
  36. <projectred-expansion:electric_screwdriver>,
  37. // Golden Saw
  38. <projectred-exploration:golden_saw>,
  39. // Ruby Armor
  40. <projectred-exploration:ruby_helmet>,
  41. <projectred-exploration:ruby_chestplate>,
  42. <projectred-exploration:ruby_leggings>,
  43. <projectred-exploration:ruby_boots>,
  44. // Sapphire Armor
  45. <projectred-exploration:sapphire_helmet>,
  46. <projectred-exploration:sapphire_chestplate>,
  47. <projectred-exploration:sapphire_leggings>,
  48. <projectred-exploration:sapphire_boots>,
  49. // Peridot Armor
  50. <projectred-exploration:peridot_helmet>,
  51. <projectred-exploration:peridot_chestplate>,
  52. <projectred-exploration:peridot_leggings>,
  53. <projectred-exploration:peridot_boots>
  54. ] as IItemStack[];
  55. scripts.functions.disableItems(itemsToDisable);
  56.  
  57.  
  58. // Screwdriver recipe removal
  59. recipes.remove(<projectred-core:screwdriver>);
  60.  
  61. // Screwdriver Unbreakable recipe
  62. recipes.addShaped(<projectred-core:screwdriver>.withTag({ench: [{lvl: 10, id: 34}]}),
  63. [[<minecraft:iron_ingot>, null, null],
  64. [null, <minecraft:iron_ingot>, <ore:dyeBlue>],
  65. [null, <ore:dyeBlue>, <minecraft:iron_ingot>]]);
  66.  
  67. // Furnace: Grass (Item) -> Dead Grass
  68. furnace.addRecipe(<minecraft:tallgrass:1>, <traverse:dead_grass>);
  69.  
  70. // Cold Grass recipe (Grass (Item) + Ice)
  71. recipes.addShapeless(<traverse:cold_grass>,
  72. [<minecraft:tallgrass:1>,<minecraft:ice>]);
  73.  
  74.  
  75. // Crusher: Log -> 4 Saw Dust
  76. mods.immersiveengineering.Crusher.addRecipe(<thermalfoundation:material:800>, <ore:logWood>, 2048);
  77.  
  78. // Saw Dust recipe (Log + Engineer's Hammer)
  79. recipes.addShapeless(<thermalfoundation:material:800>,
  80. [<ore:logWood>,<immersiveengineering:tool>]);
Add Comment
Please, Sign In to add comment