Advertisement
Guest User

Inspiration Script

a guest
Sep 14th, 2014
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. ##Recipe adding script for Inspiration modpack
  2.  
  3. ##Botania
  4. val flightTiara = <Botania:flightTiara>;
  5. val waterRing = <Botania:waterRing>;
  6. val terraPick = <Botania:terraPick>;
  7.  
  8. ##CrayfishFurniture
  9. val itemComputer = <cfm:ItemComputer>;
  10. val itemPrinter = <cfm:ItemPrinter>;
  11. val itemOven = <cfm:ItemOven>;
  12. val itemStereo = <cfm:ItemStereo>;
  13. val itemZapFence = <cfm:ItemElectricFence>;
  14.  
  15. ##Ores
  16. val gcCopperMain = <GalacticraftCore:tile.gcBlockCore:5>;
  17. val gcTinMain = <GalacticraftCore:tile.gcBlockCore:6>;
  18. val gcAluminumMain = <GalacticraftCore:tile.gcBlockCore:7>;
  19. val gcCopperMoon = <GalacticraftCore:tile.moonBlock>;
  20. val gcTinMoon = <GalacticraftCore:tile.moonBlock:1>;
  21. val gcCopperMars = <GalacticraftMars:tile.mars>;
  22. val gcTinMars = <GalacticraftMars:tile.mars:1>;
  23. val gcIronMars = <GalacticraftMars:tile.mars:3>;
  24. val gcAluminumAsteroid = <GalacticraftMars:tile.asteroidsBlock:3>;
  25. val gcIronAsteroid = <GalacticraftMars:tile.asteroidsBlock:5>;
  26. val steamCopper = <Steamcraft:steamcraftOre>;
  27. val elnCopper = <Eln:Eln.Ore:1>;
  28. val elnLead = <Eln:Eln.Ore:4>;
  29. val mariBaux = <Mariculture:rocks:2>;
  30. val mariCopper = <Mariculture:rocks:1>;
  31. val factorSilver = <factorization:ResourceBlock>;
  32.  
  33. ##Misc
  34. val relocator = <RefinedRelocation:relocator>;
  35. val inkMixer = <Mystcraft:BlockInkMixer>;
  36. val glowCrumb = <RPGAdvMod:glowcrumb>;
  37. val lettuce = <harvestcraft:lettuceItem>;
  38. val knife = <kitchen:knife>;
  39. val lettuceLeaf = <kitchen:lettuce_leaf>;
  40.  
  41. //Recipe Removals
  42. recipes.remove(flightTiara);
  43. recipes.remove(waterRing);
  44. recipes.remove(terraPick);
  45. recipes.remove(itemComputer);
  46. recipes.remove(itemPrinter);
  47. recipes.remove(itemOven);
  48. recipes.remove(itemStereo);
  49. recipes.remove(itemZapFence);
  50. recipes.remove(relocator);
  51. recipes.remove(inkMixer);
  52. recipes.remove(glowCrumb);
  53.  
  54. //Crucible Furnace Change
  55. mods.mariculture.Crucible.removeRecipe(<minecraft:iron_ore>);
  56. mods.mariculture.Crucible.removeRecipe(<minecraft:gold_ore>);
  57. mods.mariculture.Crucible.removeRecipe(gcCopperMain);
  58. mods.mariculture.Crucible.removeRecipe(gcTinMain);
  59. mods.mariculture.Crucible.removeRecipe(gcAluminumMain);
  60. mods.mariculture.Crucible.removeRecipe(gcCopperMoon);
  61. mods.mariculture.Crucible.removeRecipe(gcTinMoon);
  62. mods.mariculture.Crucible.removeRecipe(gcCopperMars);
  63. mods.mariculture.Crucible.removeRecipe(gcTinMars);
  64. mods.mariculture.Crucible.removeRecipe(gcIronMars);
  65. mods.mariculture.Crucible.removeRecipe(gcAluminumAsteroid);
  66. mods.mariculture.Crucible.removeRecipe(gcIronAsteroid);
  67. mods.mariculture.Crucible.removeRecipe(steamCopper);
  68. mods.mariculture.Crucible.removeRecipe(elnCopper);
  69. mods.mariculture.Crucible.removeRecipe(elnLead);
  70. mods.mariculture.Crucible.removeRecipe(mariBaux);
  71. mods.mariculture.Crucible.removeRecipe(mariCopper);
  72. mods.mariculture.Crucible.removeRecipe(factorSilver);
  73.  
  74. //Recipe Changes
  75.  
  76. //Recipe Additions
  77. recipes.addShapeless(lettuceLeaf * 2, [knife, lettuce]);
  78.  
  79. //Keep this at the bottom
  80. print("Inspiration Master Script successfully loaded, Sir!");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement