Advertisement
thatparadox

Modular Power Suits Pneumaticcraft Recipes

Dec 2nd, 2014
813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. // Modular power suits recipes with tons of mod intergration! Thermal Expansion, EnderIO, IC2, Pneumaticraft, Railcraft, Thaum- wait... no...
  2.  
  3.  
  4.  
  5. // Tinker Table
  6.  
  7. mods.pneumaticcraft.Assembly.addDrillRecipe(<minecraft:crafting_table> *1, <powersuits:tile.tinkerTable>); //Tinker Table
  8.  
  9. // Basic components
  10.  
  11. recipes.addShaped(<powersuits:item.null> * 1,
  12. [
  13. [null, null, null],
  14. [<ore:nuggetGold>, <ore:dustRedstone>, <ore:nuggetGold>],
  15. [null, null, null]]); // Basic Wiring
  16.  
  17. recipes.addShaped(<powersuits:item.null:12> * 1,
  18. [
  19. [null, null, null],
  20. [null, <minecraft:dye:2>, null],
  21. [<minecraft:dye:1>, <minecraft:redstone_lamp>, <minecraft:dye:4>]]); // Hologram Emitter
  22.  
  23. mods.pneumaticcraft.Assembly.addDrillRecipe(<powersuits:item.null> * 4, <powersuits:item.null:1>); // Solenoid
  24.  
  25. mods.pneumaticcraft.Assembly.addLaserRecipe(<PneumaticCraft:advancedPCB> * 1, <powersuits:item.null:14>); // Control Circuit
  26.  
  27. mods.pneumaticcraft.Assembly.addLaserRecipe(<minecraft:nether_star> * 1, <powersuits:item.null:11>); // Force Field Emitter
  28.  
  29. mods.pneumaticcraft.Assembly.addLaserRecipe(<EnderIO:itemBasicCapacitor> * 4, <powersuits:item.null:5>); // LV Capacitor
  30.  
  31. mods.pneumaticcraft.Assembly.addLaserRecipe(<EnderIO:itemBasicCapacitor:1> * 8, <powersuits:item.null:6>); // MV Capacitor
  32.  
  33. mods.pneumaticcraft.Assembly.addLaserRecipe(<EnderIO:itemBasicCapacitor:2> * 16, <powersuits:item.null:7>); // HV Capacitor
  34.  
  35. // Armour
  36.  
  37. mods.pneumaticcraft.Assembly.addDrillRecipe(<minecraft:iron_helmet> *1, <powersuits:item.powerArmorHelmet>); // Helmet
  38.  
  39. mods.pneumaticcraft.Assembly.addDrillRecipe(<minecraft:iron_chestplate> * 1, <powersuits:item.powerArmorChestplate>); // Chest Plate
  40.  
  41. mods.pneumaticcraft.Assembly.addDrillRecipe(<minecraft:iron_leggings> * 1, <powersuits:item.powerArmorLeggings>); // Leggings
  42.  
  43. mods.pneumaticcraft.Assembly.addDrillRecipe(<minecraft:iron_boots> * 1, <powersuits:item.powerArmorBoots>); // Boots
  44.  
  45. //PowerFist
  46.  
  47. mods.pneumaticcraft.Assembly.addDrillRecipe(<minecraft:iron_block> * 1, <powersuits:item.powerFist>);
  48.  
  49. // Upgrades
  50.  
  51. recipes.addShaped(<powersuits:item.null:8> *1,
  52. [
  53. [<ore:blockCloth>, <ore:blockCloth>, <ore:blockCloth>],
  54. [<minecraft:string>, null, <minecraft:string>],
  55. [null, <ThermalExpansion:material>, null]]); // Parachute
  56.  
  57. mods.railcraft.Rolling.addShaped(<powersuits:item.null:3> *1,
  58. [
  59. [null, null, null],
  60. [<IC2:itemPartCarbonPlate>, <IC2:itemPartCarbonPlate>, <IC2:itemPartCarbonPlate>],
  61. [null, null, null]]); // Glider Wing
  62.  
  63. mods.railcraft.Rolling.addShaped(<powersuits:item.null:9>, [[<minecraft:iron_ingot>, <minecraft:iron_ingot>], [<minecraft:iron_ingot>,
  64. <minecraft:iron_ingot>]]); // Basic Plating
  65.  
  66. mods.pneumaticcraft.Pressure.addRecipe([<minecraft:diamond> * 4], 4.9, [<powersuits:item.null:10> * 1], false); // Advanced Plating
  67.  
  68. mods.pneumaticcraft.Pressure.addRecipe([<simplyjetpacks:components:25>*1, <minecraft:ghast_tear>*4], 4.9, [<powersuits:item.null:4> * 1], false); // Ion Thruster
  69.  
  70.  
  71. recipes.addShaped(<powersuits:item.null:2> *1,
  72. [
  73. [null, <ore:componentSolenoid>, null],
  74. [<ore:componentWiring>, <ThermalExpansion:material>, <ore:componentWiring>],
  75. [null, <ore:componentSolenoid>, null]]); // Servo Motor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement