Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. print("Script starting!");
  2.  
  3. import crafttweaker.item.IItemStack;
  4. import crafttweaker.item.IIngredient;
  5. import crafttweaker.oredict.IOreDict;
  6.  
  7. <ore:toolAxe>.add(<iceandfire:silver_axe:*>);
  8. <ore:toolAxe>.add(<iceandfire:dragonbone_axe:*>);
  9.  
  10. //quality tools
  11.  
  12. recipes.remove(<qualitytools:emerald_ring>);
  13. recipes.remove(<qualitytools:emerald_amulet>);
  14.  
  15. recipes.addShaped("emeraldringNew",<qualitytools:emerald_ring>,
  16. [[null,<minecraft:emerald>,null],
  17. [<minecraft:gold_ingot>,null,<minecraft:gold_ingot>],
  18. [null,<minecraft:gold_ingot>,null]]);
  19.  
  20. recipes.addShaped("emeraldamuletNew",<qualitytools:emerald_amulet>,
  21. [[<minecraft:gold_ingot>,<minecraft:gold_ingot>,<minecraft:gold_ingot>],
  22. [<minecraft:gold_ingot>,null,<minecraft:gold_ingot>],
  23. [null,<minecraft:emerald>,null]]);
  24.  
  25. //first aid
  26.  
  27. recipes.remove(<firstaid:plaster>);
  28. recipes.remove(<firstaid:bandage>);
  29.  
  30. recipes.addShapeless("MyPlaster", <firstaid:plaster>, [<ore:string>, <ore:string>, <ore:wool>]);
  31.  
  32. //rough tweaks
  33.  
  34. val roughtweaks = [
  35. <roughtweaks:salve>,
  36. <roughtweaks:plaster>,
  37. <roughtweaks:bandage>,
  38. <roughtweaks:medikit>,
  39. <roughtweaks:medikitenchanted>
  40. ] as IItemStack[];
  41.  
  42. for item in roughtweaks {
  43. mods.jei.JEI.removeAndHide(item);
  44. recipes.remove(item);
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement