Advertisement
Guest User

Items

a guest
Jan 18th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. class VirtualShops {
  2. //Virtual Shops
  3. class market {
  4. name = "STR_Shops_Market";
  5. side = "civ";
  6. conditions = "";
  7. items[] = { "waterBottle", "rabbit", "apple", "tbacon", "pickaxe", "toolkit", "fuelFull", "peach", "storagesmall", "storagebig", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw" };
  8. };
  9.  
  10. class med_market {
  11. name = "Feuerwehr Shop";
  12. side = "med";
  13. conditions = "";
  14. items[] = { "waterBottle", "rabbit", "apple", "tbacon", "toolkit", "fuelFull", "peach", "defibrillator" };
  15. };
  16.  
  17. class rebel {
  18. name = "STR_MAR_Rebel_Market";
  19. side = "civ";
  20. conditions = "license_civ_rebel";
  21. items[] = { "waterBottle", "rabbit", "apple", "tbacon", "lockpick", "pickaxe", "toolkit", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  22. };
  23.  
  24. class gang {
  25. name = "STR_Shops_Gang";
  26. side = "civ";
  27. conditions = "";
  28. items[] = { "waterBottle", "rabbit", "apple", "tbacon", "lockpick", "pickaxe", "toolkit", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  29. };
  30.  
  31. class wongs {
  32. name = "STR_Shops_Wongs";
  33. side = "civ";
  34. conditions = "";
  35. items[] = { "turtle_soup", "turtle_raw" };
  36. };
  37.  
  38. class coffee {
  39. name = "STR_Shops_Coffee";
  40. side = "civ";
  41. conditions = "";
  42. items[] = { "coffee", "donuts" };
  43. };
  44.  
  45. class f_station_coffee {
  46. name = "STR_Shop_Station_Coffee";
  47. side = "";
  48. conditions = "";
  49. items[] = { "coffee", "donuts", "toolkit", "fuelFull"};
  50. };
  51.  
  52. class drugdealer {
  53. name = "STR_MAR_Drug_Dealer";
  54. side = "civ";
  55. conditions = "";
  56. items[] = { "cocaine_processed", "heroin_processed", "marijuana" };
  57. };
  58.  
  59. class oil {
  60. name = "STR_MAR_Oil_Trader";
  61. side = "civ";
  62. conditions = "";
  63. items[] = { "oil_processed", "pickaxe", "fuelFull" };
  64. };
  65.  
  66. class fishmarket {
  67. name = "STR_Shops_FishMarket";
  68. side = "civ";
  69. conditions = "";
  70. items[] = { "salema_raw", "salema", "ornate_raw", "ornate", "mackerel_raw", "mackerel", "tuna_raw", "tuna", "mullet_raw", "mullet", "catshark_raw", "catshark" };
  71. };
  72.  
  73. class glass {
  74. name = "STR_Shops_Glass";
  75. side = "civ";
  76. conditions = "";
  77. items[] = { "glass" };
  78. };
  79.  
  80. class iron {
  81. name = "STR_Shops_Minerals";
  82. side = "civ";
  83. conditions = "";
  84. items[] = { "iron_refined", "copper_refined" };
  85. };
  86.  
  87. class diamond {
  88. name = "STR_Shops_Diamond";
  89. side = "civ";
  90. conditions = "";
  91. items[] = { "diamond_uncut", "diamond_cut" };
  92. };
  93.  
  94. class salt {
  95. name = "STR_Shops_Salt";
  96. side = "civ";
  97. conditions = "";
  98. items[] = { "salt_refined" };
  99. };
  100.  
  101. class cement {
  102. name = "STR_Shops_Cement";
  103. side = "civ";
  104. conditions = "";
  105. items[] = { "cement" };
  106. };
  107.  
  108. class gold {
  109. name = "STR_Shops_Gold";
  110. side = "civ";
  111. conditions = "";
  112. items[] = { "goldbar" };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement