Advertisement
DoomRater

Untitled

Jul 14th, 2019
527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. /* Charred grass = smelt grass
  2. charred dirt = smelt dirt
  3. charred gravel = smelt gravel
  4. ash = smelt charcoal (must be charcoal)
  5.  
  6. all charred blocks = craft shapeless blaze powder and uncharred variant
  7.  
  8. Grinder recipe: sand to dust, various stone types to their crushed versions, crushed granite to red sand
  9.  
  10. Sponge recipe: 5 yellow wool in x pattern, 4 string
  11.  
  12. todo:
  13. Rainbow Oak saplings are not fuel- they should be
  14. Torch Lever: fix the torch lever's uneven crafting recipes
  15. remove builder wands, effortless building is better in every way
  16. fix MrCrayFish recipes to use ore dictionary for dyes
  17. */
  18.  
  19. //First we need to make an ore list of all the axes in the game
  20. val axes = <ore:listAllAxe>;
  21. axes.add(<minecraft:iron_axe:*>);
  22. axes.add(<minecraft:wooden_axe:*>);
  23. axes.add(<minecraft:stone_axe:*>);
  24. axes.add(<minecraft:diamond_axe:*>);
  25. axes.add(<minecraft:golden_axe:*>);
  26. axes.add(<botania:manasteelaxe:*>);
  27. axes.add(<botania:elementiumaxe:*>);
  28. axes.add(<iceandfire:silver_axe:*>);
  29. axes.add(<iceandfire:dragonbone_axe:*>);
  30. axes.add(<iceandfire:myrmex_desert_axe:*>);
  31. axes.add(<iceandfire:myrmex_jungle_axe:*>);
  32. axes.add(<immersiveengineering:axe_steel:*>);
  33. axes.add(<thaumcraft:thaumium_axe:*>);
  34. axes.add(<thaumcraft:void_axe:*>);
  35. axes.add(<thaumcraft:elemental_axe:*>);
  36. axes.add(<twilightforest:ironwood_axe:*>);
  37. axes.add(<twilightforest:steeleaf_axe:*>);
  38. axes.add(<twilightforest:minotaur_axe_gold:*>);
  39. axes.add(<twilightforest:minotaur_axe:*>);
  40. axes.add(<twilightforest:knightmetal_axe:*>);
  41.  
  42. //Not sure if we can transform an item that's in an ore dictionary list like this
  43. recipes.remove(<cfm:item_log>);
  44. recipes.addShapeless(<cfm:item_log> * 8, [<ore:listAllAxe>.transformDamage(), <ore:logWood>]);
  45.  
  46.  
  47. recipes.remove(<cfm:item_ink_cartridge>);
  48. recipes.addShaped(<cfm:item_ink_cartridge>, [[<ore:stone>,<ore:stone>,<ore:stone>],
  49. [<ore:stone>,<ore:dyeBlack>,<ore:stone>],
  50. [<ore:stone>,<ore:stone>,<ore:stone>]]);
  51.  
  52.  
  53. recipes.remove(<cfm:item_soap_water>);
  54. recipes.addShapeless(<cfm:item_soap_water>, [<minecraft:water_bucket>.noReturn(),<cfm:item_soap>]);
  55.  
  56. recipes.addShapeless(<iceandfire:chared_cobblestone>, [<minecraft:blaze_powder>, <minecraft:cobblestone>]);
  57. recipes.addShapeless(<iceandfire:chared_dirt>, [<minecraft:blaze_powder>, <minecraft:dirt:*>]);
  58. recipes.addShapeless(<iceandfire:chared_grass>, [<minecraft:blaze_powder>, <minecraft:grass>]);
  59. recipes.addShapeless(<iceandfire:chared_gravel>, [<minecraft:blaze_powder>, <minecraft:gravel>]);
  60. recipes.addShapeless(<iceandfire:chared_stone>, [<minecraft:blaze_powder>, <minecraft:stone>]);
  61.  
  62. recipes.addShaped(<minecraft:sponge>, [[<minecraft:wool:4>,<minecraft:string>,<minecraft:wool:4>],
  63. [<minecraft:string>,<minecraft:wool:4>,<minecraft:string>],
  64. [<minecraft:wool:4>,<minecraft:string>,<minecraft:wool:4>]]);
  65.  
  66. furnace.addRecipe(<iceandfire:chared_dirt>, <minecraft:dirt:0>, 0.7);
  67. furnace.addRecipe(<iceandfire:chared_grass>, <minecraft:grass>, 0.7);
  68. furnace.addRecipe(<iceandfire:chared_gravel>, <minecraft:gravel>, 0.7);
  69. furnace.addRecipe(<iceandfire:ash>, <minecraft:coal:1>, 0.7);
  70.  
  71. furnace.setFuel(<rainboaks:rainboak_sapling>, 100);
  72.  
  73. mods.immersiveengineering.Crusher.addRecipe(<exnihilocreatio:block_dust>, <minecraft:sand>, 1600);
  74. mods.immersiveengineering.Crusher.addRecipe(<exnihilocreatio:block_granite_crushed>, <minecraft:stone:1>, 1600);
  75. mods.immersiveengineering.Crusher.addRecipe(<exnihilocreatio:block_diorite_crushed>, <minecraft:stone:3>, 1600);
  76. mods.immersiveengineering.Crusher.addRecipe(<exnihilocreatio:block_andesite_crushed>, <minecraft:stone:5>, 1600);
  77. mods.immersiveengineering.Crusher.addRecipe(<exnihilocreatio:block_endstone_crushed>, <minecraft:end_stone>, 1600);
  78. mods.immersiveengineering.Crusher.addRecipe(<exnihilocreatio:block_netherrack_crushed>, <minecraft:netherrack>, 1600);
  79. mods.immersiveengineering.Crusher.addRecipe(<minecraft:sand:1>, <exnihilocreatio:block_granite_crushed>, 1600);
  80.  
  81. mods.immersiveengineering.Crusher.addRecipe(<immersiveengineering:metal:18> * 3, <ore:clusterIron>, 4500, <immersiveengineering:metal:13>, 1.0);
  82. mods.immersiveengineering.Crusher.addRecipe(<immersiveengineering:metal:19> * 3, <ore:clusterGold>, 4500, <thaumcraft:nugget:10>, 1.0);
  83. mods.immersiveengineering.Crusher.addRecipe(<immersiveengineering:metal:9> * 3, <ore:clusterCopper>, 4500, <immersiveengineering:metal:19>, 1.0);
  84. mods.immersiveengineering.Crusher.addRecipe(<immersiveengineering:metal:12> * 3, <ore:clusterSilver>, 4500, <immersiveengineering:metal:11>, 1.0);
  85. mods.immersiveengineering.Crusher.addRecipe(<immersiveengineering:metal:11> * 3, <ore:clusterLead>, 4500, <immersiveengineering:metal:12>, 1.0);
  86. mods.immersiveengineering.Crusher.addRecipe(<minecraft:quartz> * 10, <ore:clusterQuartz>, 4500);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement