Advertisement
NolanSyKinsley

minechem.zs

Oct 1st, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. import mods.minechem.Decomposer;
  2. import mods.minechem.Synthesiser;
  3. import mods.minechem.Chemicals;
  4. import mods.minechem.Fuels;
  5.  
  6. val O = <minechem:minechemElement:8>;
  7. val Na = <minechem:minechemElement:11>;
  8. val Mg = <minechem:minechemElement:12>;
  9. val Si = <minechem:minechemElement:14>;
  10. val Cl = <minechem:minechemElement:17>;
  11. val Ti = <minechem:minechemElement:22>;
  12. val Fe = <minechem:minechemElement:26>;
  13. val Pb = <minechem:minechemElement:82>;
  14. val cobble1x = <ExtraUtilities:cobblestone_compressed>;
  15. val cobble2x = <ExtraUtilities:cobblestone_compressed:1>;
  16. val cobble3x = <ExtraUtilities:cobblestone_compressed:2>;
  17. val cobble4x = <ExtraUtilities:cobblestone_compressed:3>;
  18.  
  19. Chemicals.addElement(198,"MyM","Mymlenium","Metalloid","Liquid","Stable");
  20. Chemicals.addElement(396,"CwY","Chetwynium","Metalloid","Liquid","Stable");
  21. Chemicals.addElement(792,"SW","Willithium","Metalloid","Liquid","Stable");
  22. Chemicals.addElement(891,"CL","Caithleenium","Metalloid","Liquid","Stable");
  23. Chemicals.addElement(495,"RtC","Raetacium","Metalloid","Liquid","Stable");
  24. Chemicals.addElement(256,"SLI","Slindum","Metalloid","Liquid","Stable");
  25. Chemicals.addElement(693,"GB","GenerikBidium","Metalloid","Liquid","Stable");
  26. //Math
  27. // MyM = 2 enderpeals
  28. // CwY = 4
  29. // SW = 8
  30. // CL = 9
  31.  
  32. Synthesiser.addRecipe([<minechem:minechemElement:891>,<minechem:minechemElement:256>],<SpaceVenus:null:4>,true,50000);
  33. Synthesiser.addRecipe([<minechem:minechemElement:792>],<SpacePluto:null:1>,true,50000);
  34. Synthesiser.addRecipe([<minechem:minechemElement:396>],<SpacePluto:null>,true,50000);
  35. Synthesiser.addRecipe([<minechem:minechemElement:198>],<SpacePluto:null:2>,true,50000);
  36. Synthesiser.addRecipe([<minechem:minechemElement:693>],<ExtraUtilities:unstableingot:1>,true,50000);
  37.  
  38. Decomposer.removeRecipe(cobble1x);
  39. Decomposer.addRecipe(cobble1x,1,[[Na,Cl],[Si,O],[Mg,O],[Ti,O],[Fe,O],[Pb,O]]);
  40. Decomposer.addRecipe(cobble2x,1,[[Na*9,Cl*9],[Si*9,O*9],[Mg*9,O*9],[Ti*9,O*9],[Fe*9,O*9],[Pb*9,O*9]]);
  41. Decomposer.addRecipe(cobble3x,1,[[Na*13,Cl*13,Si*13,Mg*13,Ti*13,Fe*13,Pb*13,O*65]]);
  42. Decomposer.addRecipe(cobble4x,1,[[Na*117,Cl*117,Si*117,Mg*117,Ti*117,Fe*117,Pb*117,O*585]]);
  43.  
  44. //per SG block 9*2*3 CL for NQ =54
  45. // 6*T6 plate= 2*MYM 2*SW 2* CwY = 2*2 + 2*4 + 2*8 = 4+8+16=28
  46. // 82 pearls in total
  47.  
  48. // 64 SG blocks = 5248 pearls and a ton of power
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement