Advertisement
MigukNamja

bigreactors.zs

Oct 6th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. # Aliases we're using as read-only (not changing)
  2. var plateSteel = <ore:plateSteel>;
  3. var plateStainlessSteel = <ore:plateStainlessSteel>;
  4. var plateTungstenSteel = <ore:plateTungstenSteel>;
  5. var glass = <minecraft:glass>;
  6. var itemDiamond = <minecraft:diamond>;
  7. var gearDiamond = <ore:gearDiamond>;
  8. var itemPiston = <ore:craftingPiston>;
  9. var dustRedstone = <ore:dustRedstone>;
  10. var itemQuartzNether = <ore:craftingQuartz>;
  11. var bucketEmpty = <ore:bucketEmpty>;
  12. var ingotGraphite = <ore:ingotGraphite>;
  13. var ingotYellorium = <ore:ingotYellorium>;
  14. var ingotCyanite = <ore:ingotCyanite>;
  15.  
  16. # BigReactors recipes we're changing
  17. var itemFuelRodYellorium = <BigReactors:YelloriumFuelRod>;
  18. var itemReactorCasing = <BigReactors:BRReactorPart>;
  19. var itemReactorGlass = <BigReactors:BRMultiblockGlass>;
  20. var itemReactorController = <BigReactors:BRReactorPart:1>;
  21. var itemReprocessorCyanite = <BigReactors:BRDevice>;
  22. var itemTurbineHousing = <BigReactors:BRTurbinePart>;
  23. var itemTurbineGlass = <BigReactors:BRMultiblockGlass:1>;
  24. var itemTurbineController = <BigReactors:BRTurbinePart:1>;
  25. var itemPortTurbineFluid = <BigReactors:BRTurbinePart:3>;
  26. var itemTurbineRotorBearing = <BigReactors:BRTurbinePart:4>;
  27. var itemTurbineRotorShaft = <BigReactors:BRTurbineRotorPart>;
  28. var itemTurbineRotorBlade = <BigReactors:BRTurbineRotorPart:1>;
  29.  
  30. ###############################
  31.  
  32. # Yellowrium Fuel Rod
  33. recipes.remove(itemFuelRodYellorium);
  34. recipes.addShaped(itemFuelRodYellorium, [
  35. [plateSteel, ingotGraphite, plateSteel],
  36. [plateTungstenSteel, ingotYellorium, plateTungstenSteel],
  37. [plateSteel, ingotGraphite, plateSteel]]);
  38.  
  39. # Reactor Casing
  40. recipes.remove(itemReactorCasing);
  41. recipes.addShaped(itemReactorCasing * 4, [
  42. [plateSteel, ingotGraphite, plateSteel],
  43. [ingotGraphite, ingotYellorium, ingotGraphite],
  44. [plateSteel, ingotGraphite, plateSteel]]);
  45.  
  46. # Reactor Glass
  47. recipes.remove(itemReactorGlass);
  48. recipes.addShaped(itemReactorGlass, [
  49. [glass, itemReactorCasing, glass]]);
  50.  
  51. # Reactor Controller
  52. recipes.remove(itemReactorController);
  53. recipes.addShaped(itemReactorController, [
  54. [itemReactorCasing, plateStainlessSteel, itemReactorCasing],
  55. [ingotYellorium, itemDiamond, ingotYellorium],
  56. [itemReactorCasing, plateStainlessSteel, itemReactorCasing]]);
  57.  
  58. # Cyanite Rercprocessor
  59. recipes.remove(itemReprocessorCyanite);
  60. recipes.addShaped(itemReprocessorCyanite, [
  61. [itemReactorCasing, plateStainlessSteel, itemReactorCasing],
  62. [itemPiston, itemFuelRodYellorium, itemPiston],
  63. [itemReactorCasing, dustRedstone, itemReactorCasing]]);
  64.  
  65. # Turbine Housing
  66. recipes.remove(itemTurbineHousing);
  67. recipes.addShaped(itemTurbineHousing * 4, [
  68. [plateSteel, ingotGraphite, plateSteel],
  69. [itemQuartzNether, ingotCyanite, itemQuartzNether],
  70. [plateSteel, ingotGraphite, plateSteel]]);
  71.  
  72. # Turbine Glass
  73. recipes.remove(itemTurbineGlass);
  74. recipes.addShaped(itemTurbineGlass, [
  75. [glass, itemTurbineHousing, glass]]);
  76.  
  77. # Turbine Controller
  78. recipes.remove(itemTurbineController);
  79. recipes.addShaped(itemTurbineController, [
  80. [itemTurbineHousing, plateStainlessSteel, itemTurbineHousing],
  81. [ingotCyanite, itemDiamond, ingotCyanite],
  82. [itemTurbineHousing, plateStainlessSteel, itemTurbineHousing]]);
  83.  
  84. # Turbine Fluid Port
  85. recipes.remove(itemPortTurbineFluid);
  86. recipes.addShaped(itemPortTurbineFluid, [
  87. [itemTurbineHousing, null, itemTurbineHousing],
  88. [plateStainlessSteel, bucketEmpty, plateStainlessSteel],
  89. [itemTurbineHousing, itemPiston, itemTurbineHousing]]);
  90.  
  91. # Turbine Rotor Shaft
  92. recipes.remove(itemTurbineRotorShaft);
  93. recipes.addShaped(itemTurbineRotorShaft, [
  94. [plateSteel, ingotCyanite, plateSteel]]);
  95.  
  96. # Turbine Rotor Blade
  97. recipes.remove(itemTurbineRotorBlade);
  98. recipes.addShaped(itemTurbineRotorBlade, [
  99. [ingotCyanite, plateSteel, plateSteel]]);
  100.  
  101. # Turbine Rotor Bearing
  102. recipes.remove(itemTurbineRotorBearing);
  103. recipes.addShaped(itemTurbineRotorBearing, [
  104. [itemTurbineHousing, itemTurbineRotorShaft, itemTurbineHousing],
  105. [itemDiamond, gearDiamond, itemDiamond],
  106. [itemTurbineHousing, itemTurbineRotorShaft, itemTurbineHousing]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement