Advertisement
DoomRater

Untitled

Jul 19th, 2019
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. //This script fixes the broken recipes for MrCrayFish's Furniture Mod that duplicate items
  2.  
  3. //First we need to make an ore list of all the axes in the game
  4. val axes = <ore:listAllAxe>;
  5. axes.add(<minecraft:iron_axe:*>);
  6. axes.add(<minecraft:wooden_axe:*>);
  7. axes.add(<minecraft:stone_axe:*>);
  8. axes.add(<minecraft:diamond_axe:*>);
  9. axes.add(<minecraft:golden_axe:*>);
  10. axes.add(<botania:manasteelaxe:*>);
  11. axes.add(<botania:elementiumaxe:*>);
  12. axes.add(<iceandfire:silver_axe:*>);
  13. axes.add(<iceandfire:dragonbone_axe:*>);
  14. axes.add(<iceandfire:myrmex_desert_axe:*>);
  15. axes.add(<iceandfire:myrmex_jungle_axe:*>);
  16. axes.add(<immersiveengineering:axe_steel:*>);
  17. axes.add(<thaumcraft:thaumium_axe:*>);
  18. axes.add(<thaumcraft:void_axe:*>);
  19. axes.add(<thaumcraft:elemental_axe:*>);
  20. axes.add(<twilightforest:ironwood_axe:*>);
  21. axes.add(<twilightforest:steeleaf_axe:*>);
  22. axes.add(<twilightforest:minotaur_axe_gold:*>);
  23. axes.add(<twilightforest:minotaur_axe:*>);
  24. axes.add(<twilightforest:knightmetal_axe:*>);
  25.  
  26. recipes.removeShapeless(<cfm:item_log>);
  27. recipes.removeShaped(<cfm:item_log>);
  28. recipes.addShapeless(<cfm:item_log> * 8, [<ore:listAllAxe>.transformDamage(), <ore:logWood>]);
  29.  
  30. recipes.remove(<cfm:item_ink_cartridge>);
  31. recipes.addShaped(<cfm:item_ink_cartridge>, [[<ore:stone>,<ore:stone>,<ore:stone>],
  32. [<ore:stone>,<ore:dyeBlack>,<ore:stone>],
  33. [<ore:stone>,<ore:stone>,<ore:stone>]]);
  34.  
  35.  
  36. recipes.remove(<cfm:item_soap_water>);
  37. recipes.addShapeless(<cfm:item_soap_water>, [<minecraft:water_bucket>.noReturn(),<cfm:item_soap>]);
  38. recipes.remove(<cfm:item_super_soap_water>);
  39. recipes.addShaped(<cfm:item_super_soap_water>, [[<ore:ingotGold>,<ore:ingotGold>,<ore:ingotGold>],
  40. [<ore:ingotGold>,<cfm:item_soap_water>.noReturn(),<ore:ingotGold>],
  41. [<ore:ingotGold>,<ore:ingotGold>,<ore:ingotGold>]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement