Advertisement
kristi71111

Inventions recipe fixes

Jun 24th, 2016
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. #Made originaly for BacoNetworks by kristi71111 with the help of thombgun and the players who reported the issues
  2. #define vals
  3. val fixsolar = <AdvancedSolarPanel:ultimate_solar_helmet>;
  4. val FixedSolar= fixsolar.withDamage(27);
  5. val assemblingmachine = <techreborn:assemblymachine>;
  6. val electroniccircuit = <IC2:itemPartCircuit>;
  7. val piston = <minecraft:piston>;
  8. val refinedironplate = <IC2:itemPlates:5>;
  9. val aluminumplate = <techreborn:plates>;
  10. val computermonitortechreborn = <techreborn:part:35>;
  11. val aluminiumingot = <techreborn:ingot>;
  12. val limedye = <minecraft:dye:10>;
  13. val rosered = <minecraft:dye:1>;
  14. val lapislazuli = <minecraft:dye:4>;
  15. val glowstonedust = <minecraft:glowstone_dust>;
  16. val glasspane = <minecraft:glass_pane>;
  17. val dataorb = <techreborn:part:6>;
  18. val datastoragecircuit = <techreborn:part:7>;
  19. val datacontrolcircuit = <techreborn:part:5>;
  20. val iaIngot = <techreborn:part:23>;
  21. val irIngot = <AdvancedSolarPanel:asp_crafting_items:10>;
  22. val aAlloy = <IC2:itemPartAlloy>;
  23. val dDust = <techreborn:dust:25>;
  24. val trNeutron = <techreborn:part:38>;
  25. val plCopper = <IC2:itemPlates>;
  26. val thNeutron = <IC2:reactorReflectorThick>;
  27. val advancedcircuit = <IC2:itemPartCircuitAdv>;
  28.  
  29. #Add Fixed Recipe for ultimate solar helmet
  30. recipes.addShaped(FixedSolar, [[null,<AdvancedSolarPanel:BlockAdvSolarPanel:2>,null], [<IC2:itemPartCircuitAdv>,<IC2:itemArmorQuantumHelmet:26>,<IC2:itemPartCircuitAdv>], [<IC2:itemCable:9>,<IC2:blockElectric:5>,<IC2:itemCable:9>]]);
  31. recipes.addShaped(FixedSolar, [[null,<AdvancedSolarPanel:BlockAdvSolarPanel:2>,null], [<IC2:itemPartCircuitAdv>,<IC2:itemArmorQuantumHelmet:27>,<IC2:itemPartCircuitAdv>], [<IC2:itemCable:9>,<IC2:blockElectric:5>,<IC2:itemCable:9>]]);
  32. recipes.addShaped(FixedSolar, [[null,<AdvancedSolarPanel:BlockAdvSolarPanel:2>,null], [<IC2:itemPartCircuitAdv>,<IC2:itemArmorQuantumHelmet:1>,<IC2:itemPartCircuitAdv>], [<IC2:itemCable:9>,<IC2:blockElectric:5>,<IC2:itemCable:9>]]);
  33.  
  34. #Add recipe for Assembling Machine refering to http://ftbwiki.org/Assembling_Machine since conveyor module does not exist in the modpack replace it with refined iron plates or aluminum plates
  35. recipes.addShaped(assemblingmachine, [[electroniccircuit,piston,electroniccircuit], [aluminumplate,aluminumplate,aluminumplate], [electroniccircuit,aluminumplate,electroniccircuit]]);
  36. recipes.addShaped(assemblingmachine, [[electroniccircuit,piston,electroniccircuit], [refinedironplate,refinedironplate,refinedironplate], [electroniccircuit,refinedironplate,electroniccircuit]]);
  37.  
  38. #Add recipe for Computer Monitor refering to http://feed-the-beast.wikia.com/wiki/Computer_Monitor_(Greg-Tech)
  39. recipes.addShaped(computermonitortechreborn, [[aluminiumingot,limedye,aluminiumingot], [rosered,glasspane,lapislazuli], [aluminiumingot,glowstonedust,aluminiumingot]]);
  40.  
  41. #Add recipe for data control circuit refering to http://ftbwiki.org/Data_Control_Circuit the 1st under recipe list
  42. recipes.addShaped(datacontrolcircuit, [[advancedcircuit,datastoragecircuit,advancedcircuit], [datastoragecircuit,iaIngot,datastoragecircuit], [advancedcircuit,datastoragecircuit,advancedcircuit]]);
  43.  
  44. #Add recipe for data orb refering to http://ftbwiki.org/Data_Orb and Tech world recipe.
  45. recipes.addShaped(dataorb * 4, [[datastoragecircuit,datastoragecircuit,datastoragecircuit], [datastoragecircuit,datacontrolcircuit,datastoragecircuit], [datastoragecircuit,datastoragecircuit,datastoragecircuit]]);
  46.  
  47. #Add fixed version for Neutron Reflectors
  48. recipes.addShaped(thNeutron,[[plCopper, trNeutron, plCopper],[trNeutron, plCopper, trNeutron],[plCopper, trNeutron, plCopper]]);
  49.  
  50. #Add fixed version Iridium Allyo Ingot
  51. recipes.addShaped(iaIngot,[[irIngot, aAlloy, irIngot],[aAlloy, dDust, aAlloy],[irIngot, aAlloy, irIngot]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement