Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class methmedic {
  2. variable = "methmedic";
  3. displayName = "STR_METH_MEDIC";
  4. weight = 6;
  5. buyPrice = 750;
  6. sellPrice = -1;
  7. illegal = false;
  8. edible = -1;
  9. icon = "icons\methmedic.paa";
  10. };
  11.  
  12. class amphetamine {
  13. variable = "amphetamine";
  14. displayName = "STR_AMPHETAMINE";
  15. weight = 7;
  16. buyPrice = -1;
  17. sellPrice = -1;
  18. illegal = true;
  19. edible = -1;
  20. icon = "icons\amphetamine.paa";
  21. };
  22.  
  23. class poudrecristalline {
  24. variable = "poudrecristalline";
  25. displayName = "STR_POUDRE_CRISTALLINE";
  26. weight = 7;
  27. buyPrice = -1;
  28. sellPrice = -1;
  29. illegal = true;
  30. edible = -1;
  31. icon = "icons\poudrecristalline.paa";
  32. };
  33.  
  34. class crystalmeth {
  35. variable = "crystalmeth";
  36. displayName = "STR_CRYSTAL_METH";
  37. weight = 7;
  38. buyPrice = -1;
  39. sellPrice = 23000;
  40. illegal = true;
  41. edible = -1;
  42. icon = "icons\crystalmeth.paa";
  43. };
  44.  
  45. class mineraiuranium {
  46. variable = "mineraiuranium";
  47. displayName = "STR_MINERAI_URANIUM";
  48. weight = 5;
  49. buyPrice = -1;
  50. sellPrice = -1;
  51. illegal = false;
  52. edible = -1;
  53. icon = "icons\mineraiuranium.paa";
  54. };
  55.  
  56. class uranium235 {
  57. variable = "uranium235";
  58. displayName = "STR_URANIUM235";
  59. weight = 4;
  60. buyPrice = -1;
  61. sellPrice = A_DÉTERMINER;
  62. illegal = false;
  63. edible = -1;
  64. icon = "icons\uranium235.paa";
  65. };
  66.  
  67. class uraniumbroye {
  68. variable = "uraniumbroye";
  69. displayName = "STR_URANIUM_BROYE";
  70. weight = 6;
  71. buyPrice = -1;
  72. sellPrice = -1;
  73. illegal = true;
  74. edible = -1;
  75. icon = "icons\uraniumbroye.paa";
  76. };
  77.  
  78. class uraniumuse {
  79. variable = "uraniumuse";
  80. displayName = "STR_URANIUM_USE";
  81. weight = 6;
  82. buyPrice = -1;
  83. sellPrice = -1;
  84. illegal = true;
  85. edible = -1;
  86. icon = "icons\uraniumuse.paa";
  87. };
  88.  
  89. class uraniumappauvri {
  90. variable = "uraniumappauvri";
  91. displayName = "STR_URANIUM_APPAUVRI";
  92. weight = 6;
  93. buyPrice = -1;
  94. sellPrice = A_DETERMINER;
  95. illegal = true;
  96. edible = -1;
  97. icon = "icons\uraniumappauvri.paa";
  98. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement