Guest User

Computercraft Recipes

a guest
Dec 7th, 2015
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.47 KB | None | 0 0
  1.  
  2. // Flexible Circuits
  3. val circuit1 = <ore:circuit1>;
  4. circuit1.add(<IC2:itemPartCircuit>);
  5. circuit1.add(<StevesCarts:ModuleComponents:9>);
  6. val circuit2 = <ore:circuit2>;
  7. circuit2.add(<IC2:itemPartCircuitAdv>);
  8. circuit2.add(<StevesCarts:ModuleComponents:16>);
  9. val keyboard = <ore:keyboard>;
  10. keyboard.add(<MoarPeripherals:blockKeyboardPc>);
  11. keyboard.add(<MoarPeripherals:blockKeyboardMac>);
  12. val keypart = <MoarPeripherals:itemKeyboardPart>;
  13.  
  14. val plastic = <MineFactoryReloaded:plastic.sheet>;
  15. val cable = <ProjRed|Transmission:projectred.transmission.wire:17>;
  16. val plateIron = <IC2:itemPlates:4>;
  17. val plateGold = <IC2:itemPlates:3>;
  18. val monitor1 = <ComputerCraft:CC-Peripheral:2>;
  19. val monitor2 = <ComputerCraft:CC-Peripheral:4>;
  20. val computer1 = <ComputerCraft:CC-Computer>;
  21. val computer2 = <ComputerCraft:CC-Computer:16384>;
  22. val transmitter = <WR-CBE|Core:wirelessTransceiver>;
  23. val receiver = <WR-CBE|Core:recieverDish>; // That typo is on Chickenbones' end
  24. val blankrecord = <MineFactoryReloaded:record.blank>;
  25. val miniBlackHole = <PortalGun:MiniBlackHole>;
  26. val miningLaser = <IC2:itemToolMiningLaser>;
  27. val advAlloy = <IC2:itemPartAlloy>;
  28. val motor = <IC2:itemRecipePart:1>;
  29. val convexLens = <minechem:minechemOpticalMicroscopeLens:1>;
  30.  
  31.  
  32. // Wireless Remote
  33. recipes.remove(<WR-CBE|Addons:remote>);
  34. recipes.addShaped(<WR-CBE|Addons:remote>,
  35. [[null, transmitter, null],
  36. [plateIron, circuit1, plateIron],
  37. [null, keypart, null]]);
  38.  
  39. /*
  40. // Minechem
  41. recipes.remove(<minechem:minechemAtomicManipulator>);
  42. recipes.addShaped(<minechem:minechemAtomicManipulator>,
  43. [[<minecraft:diamond>, convexLens, miningLaser],
  44. [circuit2, miniBlackHole, circuit2],
  45. [advAlloy, motor, advAlloy]]);
  46. */
  47.  
  48. // Normal Computers
  49. recipes.remove(computer1);
  50. recipes.addShaped(computer1,
  51. [[plastic, monitor1, plastic],
  52. [plastic, circuit1, plastic],
  53. [plastic, keyboard, plastic]]);
  54.  
  55. // Advanced Computers
  56. recipes.remove(computer2);
  57. recipes.addShaped(computer2,
  58. [[plateGold, monitor2, plateGold],
  59. [plateGold, circuit2, plateGold],
  60. [plateGold, keyboard, plateGold]]);
  61.  
  62. // Command Computer
  63. recipes.remove(<ComputerCraft:command_computer>);
  64. recipes.addShaped(<ComputerCraft:command_computer>,
  65. [[<IC2:itemPlates:0>, monitor2, <IC2:itemPlates:0>],
  66. [<IC2:itemPlates:0>, <minecraft:command_block>, <IC2:itemPlates:0>],
  67. [<IC2:itemPlates:0>, keyboard, <IC2:itemPlates:0>]]);
  68.  
  69.  
  70. // Disk Drive
  71. recipes.remove(<ComputerCraft:CC-Peripheral:0>);
  72. recipes.addShaped(<ComputerCraft:CC-Peripheral:0>,
  73. [[plastic, plastic, plastic],
  74. [<minecraft:compass>, circuit1, cable],
  75. [plastic, plastic, plastic]]);
  76.  
  77. // Printer
  78. recipes.remove(<ComputerCraft:CC-Peripheral:3>);
  79. recipes.addShaped(<ComputerCraft:CC-Peripheral:3>,
  80. [[plastic, plastic, plastic],
  81. [<minecraft:dye:0>, circuit1, cable],
  82. [plastic, plastic, plastic]]);
  83.  
  84.  
  85. // Normal Monitors
  86. recipes.remove(monitor1);
  87. recipes.addShaped(monitor1 *4,
  88. [[plastic, plastic, plastic],
  89. [plastic, <IC2:blockLuminatorDark>, plastic],
  90. [plastic, cable, plastic]]);
  91.  
  92. // Advanced Monitors
  93. recipes.remove(monitor2);
  94. recipes.addShaped(monitor2 *4,
  95. [[plateGold, plateGold, plateGold],
  96. [plateGold, <StevesCarts:CartModule:41>, plateGold],
  97. [plateGold, cable, plateGold]]);
  98.  
  99.  
  100. // Wireless Modem
  101. recipes.remove(<ComputerCraft:CC-Peripheral:1>);
  102. recipes.addShaped(<ComputerCraft:CC-Peripheral:1>,
  103. [[transmitter, plastic, receiver],
  104. [plastic, circuit1, plastic],
  105. [plastic, cable, plastic]]);
  106.  
  107. // Wired Modem
  108. recipes.remove(<ComputerCraft:CC-Cable:1>);
  109. recipes.addShaped(<ComputerCraft:CC-Cable:1>,
  110. [[plastic, plastic, plastic],
  111. [cable, circuit1, cable],
  112. [plastic, plastic, plastic]]);
  113.  
  114. // Networking Cable
  115. recipes.remove(<ComputerCraft:CC-Cable:0>);
  116. recipes.addShaped(<ComputerCraft:CC-Cable:0> *4,
  117. [[plastic, plastic, plastic],
  118. [cable, cable, cable],
  119. [plastic, plastic, plastic]]);
  120.  
  121.  
  122. // Iron Turtles
  123. recipes.remove(<ComputerCraft:CC-Turtle>);
  124. recipes.addShaped(<ComputerCraft:CC-Turtle>,
  125. [[plateIron, computer1, plateIron],
  126. [plateIron, <minecraft:chest>, plateIron],
  127. [plateIron, <BuildCraft|Energy:engineBlock:1>, plateIron]]);
  128.  
  129. // Gold Turtles
  130. recipes.remove(<ComputerCraft:CC-TurtleAdvanced>);
  131. recipes.addShaped(<ComputerCraft:CC-TurtleAdvanced>,
  132. [[plateGold, computer2, plateGold],
  133. [plateGold, <minecraft:chest>, plateGold],
  134. [plateGold, <BuildCraft|Energy:engineBlock:1>, plateGold]]);
  135.  
  136.  
  137. // Normal Pocket Computer
  138. recipes.removeShaped(<ComputerCraft:pocketComputer:0>,
  139. [[<minecraft:stone>, <minecraft:stone>, <minecraft:stone>],
  140. [<minecraft:stone>, <minecraft:golden_apple>, <minecraft:stone>],
  141. [<minecraft:stone>, <minecraft:glass_pane>, <minecraft:stone>]]);
  142. recipes.addShaped(<ComputerCraft:pocketComputer:0>,
  143. [[plastic, monitor1, plastic],
  144. [plastic, circuit1, plastic],
  145. [plastic, keypart, plastic]]);
  146.  
  147. // Advanced Pocket Computer
  148. recipes.removeShaped(<ComputerCraft:pocketComputer:1>,
  149. [[<minecraft:gold_ingot>, <minecraft:gold_ingot>, <minecraft:gold_ingot>],
  150. [<minecraft:gold_ingot>, <minecraft:golden_apple>, <minecraft:gold_ingot>],
  151. [<minecraft:gold_ingot>, <minecraft:glass_pane>, <minecraft:gold_ingot>]]);
  152. recipes.addShaped(<ComputerCraft:pocketComputer:1>,
  153. [[plateGold, monitor2, plateGold],
  154. [plateGold, circuit2, plateGold],
  155. [plateGold, keypart, plateGold]]);
  156.  
  157.  
  158. // Floppy Disks
  159. recipes.remove(<ComputerCraft:disk>);
  160. recipes.remove(<ComputerCraft:diskExpanded>);
  161. recipes.addShaped(<ComputerCraft:diskExpanded>,
  162. [[plastic, <ore:nuggetIron>, plastic],
  163. [plastic, blankrecord, plastic],
  164. [plastic, <minecraft:paper>, plastic]]);
Advertisement
Add Comment
Please, Sign In to add comment