Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.63 KB | None | 0 0
  1. /*
  2. * FORMAT:
  3. * STRING (Conditions) - Must return boolean :
  4. * String can contain any amount of conditions, aslong as the entire
  5. * string returns a boolean. This allows you to check any levels, licenses etc,
  6. * in any combination. For example:
  7. * "call life_coplevel && license_civ_someLicense"
  8. * This will also let you call any other function.
  9. */
  10. class VirtualShops {
  11. //Virtual Shops
  12. class market {
  13. name = "STR_Shops_Market";
  14. side = "civ";
  15. conditions = "";
  16. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "fuelFull", "peach", "storagesmall", "storagebig", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw", "biere", "Snake_raw" };
  17. };
  18.  
  19. class dir {
  20. name = "STR_Shops_Market";
  21. side = "civ";
  22. conditions = "license_civ_dep";
  23. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "fuelFull", "peach", "storagesmall", "storagebig", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw", "biere", "lockpick" };
  24. };
  25.  
  26. class med_market {
  27. name = "STR_Shops_Market";
  28. side = "med";
  29. conditions = "";
  30. items[] = { "boltcutter", "lockpick", "waterBottle", "rabbit", "apple", "redgull", "tbacon", "fuelFull", "peach", "defibrillator" };
  31. };
  32.  
  33. class rebel {
  34. name = "STR_Shops_Rebel";
  35. side = "civ";
  36. conditions = "license_civ_rebel";
  37. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "fuelFull", "peach", "boltcutter", "blastingcharge", "usb", "dentCyanure", "fakeidcard", "ziptie", "blindfold" };
  38. };
  39.  
  40. class a3ob {
  41. name = "STR_Shops_Rebel";
  42. side = "civ";
  43. conditions = "license_civ_A3OB";
  44. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "fuelFull", "peach", "boltcutter", "blastingcharge", "usb", "dentCyanure", "fakeidcard", "ziptie", "blindfold" };
  45. };
  46.  
  47. class krov {
  48. name = "STR_Shops_Rebel";
  49. side = "civ";
  50. conditions = "license_civ_krov";
  51. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "fuelFull", "peach", "boltcutter", "blastingcharge", "usb", "dentCyanure", "fakeidcard", "ziptie", "blindfold" };
  52. };
  53.  
  54. class bandit {
  55. name = "STR_Shops_bandit";
  56. side = "civ";
  57. conditions = "license_civ_bandit";
  58. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "fuelFull", "peach", "usb", "dentCyanure", "fakeidcard", "ziptie", "blindfold" };
  59. };
  60.  
  61. class blackthorns {
  62. name = "STR_Shops_blackthorns";
  63. side = "civ";
  64. conditions = "license_civ_blackthorns";
  65. items[] = { "waterBottle", "tbacon", "redgull", "lockpick", "fuelFull" };
  66. };
  67.  
  68. class gang {
  69. name = "STR_Shops_Gang";
  70. side = "civ";
  71. conditions = "";
  72. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  73. };
  74.  
  75. class wongs {
  76. name = "STR_Shops_Wongs";
  77. side = "civ";
  78. conditions = "";
  79. items[] = { "turtle_soup", "turtle_raw" };
  80. };
  81.  
  82. class coffee {
  83. name = "STR_Shops_Coffee";
  84. side = "civ";
  85. conditions = "";
  86. items[] = { "coffee", "donuts" };
  87. };
  88.  
  89. class f_station_coffee {
  90. name = "STR_Shop_Station_Coffee";
  91. side = "";
  92. conditions = "";
  93. items[] = { "coffee", "donuts", "redgull", "fuelFull"};
  94. };
  95.  
  96. class drugdealer {
  97. name = "STR_Shops_DrugDealer";
  98. side = "civ";
  99. conditions = "license_civ_infoDealer";
  100. items[] = { "cocaine_processed", "heroin_processed", "marijuana" };
  101. };
  102.  
  103. class oil {
  104. name = "STR_Shops_Oil";
  105. side = "civ";
  106. conditions = "";
  107. items[] = { "oil_processed", "fuelFull", "charbon2", "gazole", "sp95", "sp98", "gpl", "bio", "kerosene" };
  108. };
  109.  
  110. class pet_or {
  111. name = "STR_Shops_pet_or";
  112. side = "civ";
  113. conditions = "";
  114. items[] = { "minerai_pepite_or2" };
  115. };
  116.  
  117. class wood {
  118. name = "STR_Shops_wood";
  119. side = "civ";
  120. conditions = "";
  121. items[] = { "planche" };
  122. };
  123.  
  124. class fishmarket {
  125. name = "STR_Shops_FishMarket";
  126. side = "civ";
  127. conditions = "";
  128. items[] = { "salema_raw", "salema", "ornate_raw", "ornate", "mackerel_raw", "mackerel", "tuna_raw", "tuna", "mullet_raw", "mullet", "catshark_raw", "catshark" };
  129. };
  130.  
  131. class glass {
  132. name = "STR_Shops_Glass";
  133. side = "civ";
  134. conditions = "";
  135. items[] = { "glass" };
  136. };
  137.  
  138. class iron {
  139. name = "STR_Shops_Minerals";
  140. side = "civ";
  141. conditions = "";
  142. items[] = { "iron_refined", "copper_refined", "steel", "bronze" };
  143. };
  144.  
  145. class diamond {
  146. name = "STR_Shops_Diamond";
  147. side = "civ";
  148. conditions = "";
  149. items[] = { "diamond_uncut", "diamond_cut", "Ruby2" };
  150. };
  151.  
  152. class salt {
  153. name = "STR_Shops_Salt";
  154. side = "civ";
  155. conditions = "";
  156. items[] = { "salt_refined" };
  157. };
  158.  
  159. class cement {
  160. name = "STR_Shops_Cement";
  161. side = "civ";
  162. conditions = "";
  163. items[] = { "cement" };
  164. };
  165.  
  166. class gold {
  167. name = "STR_Shops_Gold";
  168. side = "civ";
  169. conditions = "";
  170. items[] = { "goldbar" };
  171. };
  172.  
  173. class cop {
  174. name = "STR_Shops_Cop";
  175. side = "cop";
  176. conditions = "";
  177. items[] = { "speedcam", "lockpick", "boltcutter", "donuts", "coffee", "spikeStrip", "waterBottle", "tbacon", "redgull", "fuelFull", "defusekit", "defibrillator", "desherbant", "Alcootest", "Test_drugs" };
  178. };
  179.  
  180. class jardin {
  181. name = "STR_Shops_jardin";
  182. side = "civ";
  183. conditions = "";
  184. items[] = { "arrosoir", "desherbant" };
  185. };
  186.  
  187. class graine {
  188. name = "STR_Shops_graine";
  189. side = "civ";
  190. conditions = "";
  191. items[] = { "graine_mais", "graine_ble", "graine_fraisier", "graine_tournesol", "mais", "ble", "fraisier", "tournesol" };
  192. };
  193.  
  194. class graineill {
  195. name = "STR_Shops_graineill";
  196. side = "civ";
  197. conditions = "";
  198. items[] = { "graine_cocaine", "graine_cannabis", "arrosoir", "desherbant" };
  199. };
  200.  
  201. class charbonven {
  202. name = "STR_Shops_charbonfds";
  203. side = "civ";
  204. conditions = "";
  205. items[] = { "charbon2" };
  206. };
  207.  
  208. class bar {
  209. name = "STR_Shops_bar";
  210. side = "";
  211. conditions = "";
  212. items[] = { "biere", "vin", "champagne", "whisky", "vodka", "vinf"};
  213. }
  214.  
  215. class artefact {
  216. name = "STR_Shops_artefact";
  217. side = "";
  218. conditions = "";
  219. items[] = { "artefact1", "artefact2", "artefact3", "conserve"};
  220. }
  221.  
  222. class vendeur_duranium {
  223. name = "STR_Shops_Uranium";
  224. side = "civ";
  225. conditions = "license_civ_uranium";
  226. items[] = { "uranium_refined" };
  227. };
  228.  
  229. class vigneron {
  230. name = "STR_Shops_vigneron";
  231. side = "civ";
  232. conditions = "license_civ_Vigneron";
  233. items[] = { "graine_vigne" };
  234. };
  235.  
  236. class vigneron2 {
  237. name = "STR_Shops_vigneron";
  238. side = "civ";
  239. conditions = "license_civ_Vigneron_graine";
  240. items[] = { "graine_vigne" };
  241. };
  242.  
  243.  
  244. class biolab {
  245. name = "STR_Shops_vbiolab";
  246. side = "civ";
  247. conditions = "license_civ_BioLab";
  248. items[] = { "graine_Cytokine", "graine_Acide_Nucleique" };
  249. };
  250.  
  251. class Vendeur_biolab {
  252. name = "STR_Shops_biolabduck";
  253. side = "civ";
  254. conditions = "";
  255. items[] = { "medoc" };
  256. };
  257.  
  258. class cigar_entreprise {
  259. name = "STR_Shops_cigar";
  260. side = "civ";
  261. conditions = "license_civ_cigar";
  262. items[] = { "arrosoir", "tabac", "cigar" };
  263. };
  264.  
  265. class petrol {
  266. name = "STR_Shops_Oil";
  267. side = "civ";
  268. conditions = "";
  269. items[] = { "oil_unprocessed" };
  270. };
  271.  
  272. class mcdo {
  273. name = "STR_Shops_mcdo";
  274. side = "civ";
  275. conditions = "";
  276. items[] = { "coca", "frite", "nuggets", "hamburger", "menu" };
  277. };
  278. };
  279.  
  280. /*
  281. * CLASS:
  282. * variable = Variable Name
  283. * displayName = Item Name
  284. * weight = Item Weight
  285. * buyPrice = Item Buy Price
  286. * sellPrice = Item Sell Price
  287. * illegal = Illegal Item
  288. * edible = Item Edible (-1 = Disabled)
  289. * icon = Item Icon
  290. * processedItem = Processed Item
  291. */
  292. class VirtualItems {
  293. //Virtual Items
  294. //Consumable
  295. //Illegal
  296.  
  297. class fakeidcard {
  298. variable = "fakeidcard";
  299. displayName = "STR_Item_fakeidcard";
  300. weight = 1;
  301. buyPrice = 50000;
  302. sellPrice = 25000;
  303. illegal = false;
  304. edible = -1;
  305. icon = "a3\3den\data\cfg3den\history\pasteitems_ca.paa";
  306. };
  307.  
  308. class dentCyanure {
  309. variable = "dentCyanure";
  310. displayName = "STR_Item_dentCyanure";
  311. weight = 1;
  312. buyPrice = 100000;
  313. sellPrice = 50000;
  314. illegal = true;
  315. edible = -1;
  316. icon = "iconsDucky\dent.paa";
  317. };
  318.  
  319. class ziptie {
  320. variable = "ziptie";
  321. displayName = "STR_Item_ZipTies";
  322. weight = 0;
  323. buyPrice = 5000;
  324. sellPrice = 2500;
  325. illegal = true;
  326. edible = -1;
  327. icon = "icons\ziptie.paa";
  328. };
  329.  
  330. class blindfold {
  331. variable = "blindfold";
  332. displayName = "STR_Item_Blindfold";
  333. weight = 1;
  334. buyPrice = 600;
  335. sellPrice = 300;
  336. illegal = true;
  337. edible = -1;
  338. icon = "icons\blindfold.paa";
  339. };
  340. class usb {
  341. variable = "usb";
  342. displayName = "STR_Item_USB";
  343. weight = 1;
  344. buyPrice = 750;
  345. sellPrice = 350;
  346. illegal = false;
  347. edible = -1;
  348. icon = "iconsDucky\usb.paa";
  349. };
  350.  
  351. class lockpick {
  352. variable = "lockpick";
  353. displayName = "STR_Item_Lockpick";
  354. weight = 1;
  355. buyPrice = 150;
  356. sellPrice = 75;
  357. illegal = true;
  358. edible = -1;
  359. icon = "icons\ico_lockpick.paa";
  360. };
  361.  
  362. class blastingcharge {
  363. variable = "blastingCharge";
  364. displayName = "STR_Item_BCharge";
  365. weight = 15;
  366. buyPrice = 35000;
  367. sellPrice = 10000;
  368. illegal = true;
  369. edible = -1;
  370. icon = "icons\ico_blastingCharge.paa";
  371. };
  372.  
  373. class boltcutter {
  374. variable = "boltCutter";
  375. displayName = "STR_Item_BCutter";
  376. weight = 5;
  377. buyPrice = 7500;
  378. sellPrice = 1000;
  379. illegal = true;
  380. edible = -1;
  381. icon = "icons\ico_boltCutter.paa";
  382. };
  383.  
  384. //Flic
  385. class speedcam {
  386. variable = "speedcam";
  387. displayName = "STR_Item_speedcam";
  388. weight = 2;
  389. buyPrice = 200;
  390. sellPrice = 150;
  391. illegal = false;
  392. edible = -1;
  393. icon = "";
  394. };
  395.  
  396. class spikeStrip {
  397. variable = "spikeStrip";
  398. displayName = "STR_Item_SpikeStrip";
  399. weight = 1;
  400. buyPrice = 20;
  401. sellPrice = 10;
  402. illegal = true;
  403. edible = -1;
  404. icon = "icons\ico_spikeStrip.paa";
  405. };
  406.  
  407. class defusekit {
  408. variable = "defuseKit";
  409. displayName = "STR_Item_DefuseKit";
  410. weight = 2;
  411. buyPrice = 2500;
  412. sellPrice = 2000;
  413. illegal = true;
  414. edible = -1;
  415. icon = "icons\ico_defuseKit.paa";
  416. };
  417.  
  418. class Alcootest {
  419. variable = "Alcootest";
  420. displayName = "STR_Item_Alcootest";
  421. weight = 1;
  422. buyPrice = 0;
  423. sellPrice = 0;
  424. illegal = false;
  425. edible = -1;
  426. icon = "icons\alcotestpng.paa";
  427. };
  428.  
  429. class Test_drugs {
  430. variable = "Test_drugs";
  431. displayName = "STR_Item_Test_drugs";
  432. weight = 1;
  433. buyPrice = 0;
  434. sellPrice = 0;
  435. illegal = false;
  436. edible = -1;
  437. icon = "icons\trugtestpnng.paa";
  438. };
  439.  
  440. //Pompier
  441.  
  442. //Drink
  443. class redgull {
  444. variable = "redgull";
  445. displayName = "STR_Item_RedGull";
  446. weight = 1;
  447. buyPrice = 250;
  448. sellPrice = 125;
  449. illegal = false;
  450. edible = 100;
  451. icon = "icons\ico_redgull.paa";
  452. };
  453.  
  454. class coffee {
  455. variable = "coffee";
  456. displayName = "STR_Item_Coffee";
  457. weight = 1;
  458. buyPrice = 10;
  459. sellPrice = 5;
  460. illegal = false;
  461. edible = 100;
  462. icon = "icons\ico_coffee.paa";
  463. };
  464.  
  465. class waterBottle {
  466. variable = "waterBottle";
  467. displayName = "STR_Item_WaterBottle";
  468. weight = 1;
  469. buyPrice = 10;
  470. sellPrice = 5;
  471. illegal = false;
  472. edible = 100;
  473. icon = "icons\ico_waterBottle.paa";
  474. };
  475.  
  476. class coca {
  477. variable = "coca";
  478. displayName = "STR_Item_coca";
  479. weight = 1;
  480. buyPrice = 10;
  481. sellPrice = 5;
  482. illegal = false;
  483. edible = 100;
  484. icon = "icons\ico_coca.paa";
  485. };
  486.  
  487. //Food
  488. class apple {
  489. variable = "apple";
  490. displayName = "STR_Item_Apple";
  491. weight = 1;
  492. buyPrice = 65;
  493. sellPrice = 50;
  494. illegal = false;
  495. edible = 10;
  496. icon = "icons\ico_apple.paa";
  497. };
  498.  
  499. class peach {
  500. variable = "peach";
  501. displayName = "STR_Item_Peach";
  502. weight = 1;
  503. buyPrice = 68;
  504. sellPrice = 55;
  505. illegal = false;
  506. edible = 10;
  507. icon = "icons\ico_peach.paa";
  508. };
  509.  
  510. class hamburger {
  511. variable = "hamburger";
  512. displayName = "STR_Item_hamburger";
  513. weight = 1;
  514. buyPrice = 75;
  515. sellPrice = 25;
  516. illegal = false;
  517. edible = 40;
  518. icon = "icons\ico_hamburger.paa";
  519. };
  520.  
  521. class nuggets {
  522. variable = "nuggets";
  523. displayName = "STR_Item_nuggets";
  524. weight = 1;
  525. buyPrice = 75;
  526. sellPrice = 25;
  527. illegal = false;
  528. edible = 40;
  529. icon = "icons\ico_nuggets.paa";
  530. };
  531.  
  532. class frite {
  533. variable = "frite";
  534. displayName = "STR_Item_frite";
  535. weight = 1;
  536. buyPrice = 50;
  537. sellPrice = 25;
  538. illegal = false;
  539. edible = 20;
  540. icon = "icons\ico_frite.paa";
  541. };
  542.  
  543. class menu {
  544. variable = "menu";
  545. displayName = "STR_Item_menu";
  546. weight = 1;
  547. buyPrice = 100;
  548. sellPrice = 50;
  549. illegal = false;
  550. edible = 80;
  551. icon = "icons\ico_menu.paa";
  552. };
  553.  
  554. class tbacon {
  555. variable = "tbacon";
  556. displayName = "STR_Item_TBacon";
  557. weight = 1;
  558. buyPrice = 75;
  559. sellPrice = 25;
  560. illegal = false;
  561. edible = 40;
  562. icon = "icons\ico_tBacon.paa";
  563. };
  564.  
  565. class donuts {
  566. variable = "donuts";
  567. displayName = "STR_Item_Donuts";
  568. weight = 1;
  569. buyPrice = 120;
  570. sellPrice = 60;
  571. illegal = false;
  572. edible = 30;
  573. icon = "icons\ico_donuts.paa";
  574. };
  575.  
  576. class rabbit_raw {
  577. variable = "rabbitRaw";
  578. displayName = "STR_Item_RabbitRaw";
  579. weight = 2;
  580. buyPrice = -1;
  581. sellPrice = 95;
  582. illegal = false;
  583. edible = -1;
  584. icon = "icons\ico_rabbitRaw.paa";
  585. };
  586.  
  587. class rabbit {
  588. variable = "rabbit";
  589. displayName = "STR_Item_Rabbit";
  590. weight = 1;
  591. buyPrice = 150;
  592. sellPrice = 115;
  593. illegal = false;
  594. edible = 20;
  595. icon = "icons\ico_rabbit.paa";
  596. };
  597.  
  598. class salema_raw {
  599. variable = "salemaRaw";
  600. displayName = "STR_Item_SalemaRaw";
  601. weight = 2;
  602. buyPrice = -1;
  603. sellPrice = 45;
  604. illegal = false;
  605. edible = -1;
  606. icon = "icons\ico_salemaRaw.paa";
  607. };
  608.  
  609. class salema {
  610. variable = "salema";
  611. displayName = "STR_Item_Salema";
  612. weight = 1;
  613. buyPrice = 75;
  614. sellPrice = 55;
  615. illegal = false;
  616. edible = 30;
  617. icon = "icons\ico_cookedFish.paa";
  618. };
  619.  
  620. class ornate_raw {
  621. variable = "ornateRaw";
  622. displayName = "STR_Item_OrnateRaw";
  623. weight = 2;
  624. buyPrice = -1;
  625. sellPrice = 40;
  626. illegal = false;
  627. edible = -1;
  628. icon = "icons\ico_ornateRaw.paa";
  629. };
  630.  
  631. class ornate {
  632. variable = "ornate";
  633. displayName = "STR_Item_Ornate";
  634. weight = 1;
  635. buyPrice = 175;
  636. sellPrice = 150;
  637. illegal = false;
  638. edible = 25;
  639. icon = "icons\ico_cookedFish.paa";
  640. };
  641.  
  642. class mackerel_raw {
  643. variable = "mackerelRaw";
  644. displayName = "STR_Item_MackerelRaw";
  645. weight = 4;
  646. buyPrice = -1;
  647. sellPrice = 175;
  648. illegal = false;
  649. edible = -1;
  650. icon = "icons\ico_mackerelRaw.paa";
  651. };
  652.  
  653. class mackerel {
  654. variable = "mackerel";
  655. displayName = "STR_Item_Mackerel";
  656. weight = 2;
  657. buyPrice = 250;
  658. sellPrice = 200;
  659. illegal = false;
  660. edible = 30;
  661. icon = "icons\ico_cookedFish.paa";
  662. };
  663.  
  664. class tuna_raw {
  665. variable = "tunaRaw";
  666. displayName = "STR_Item_TunaRaw";
  667. weight = 6;
  668. buyPrice = -1;
  669. sellPrice = 700;
  670. illegal = false;
  671. edible = -1;
  672. icon = "icons\ico_tunaRaw.paa";
  673. };
  674.  
  675. class tuna {
  676. variable = "tuna";
  677. displayName = "STR_Item_Tuna";
  678. weight = 3;
  679. buyPrice = 1250;
  680. sellPrice = 1000;
  681. illegal = false;
  682. edible = 100;
  683. icon = "icons\ico_cookedFish.paa";
  684. };
  685.  
  686. class mullet_raw {
  687. variable = "mulletRaw";
  688. displayName = "STR_Item_MulletRaw";
  689. weight = 4;
  690. buyPrice = -1;
  691. sellPrice = 250;
  692. illegal = false;
  693. edible = -1;
  694. icon = "icons\ico_mulletRaw.paa";
  695. };
  696.  
  697. class mullet {
  698. variable = "mullet";
  699. displayName = "STR_Item_Mullet";
  700. weight = 2;
  701. buyPrice = 600;
  702. sellPrice = 400;
  703. illegal = false;
  704. edible = 80;
  705. icon = "icons\ico_cookedFish.paa";
  706. };
  707.  
  708. class catshark_raw {
  709. variable = "catsharkRaw";
  710. displayName = "STR_Item_CatSharkRaw";
  711. weight = 6;
  712. buyPrice = -1;
  713. sellPrice = 300;
  714. illegal = false;
  715. edible = -1;
  716. icon = "icons\ico_catsharkRaw.paa";
  717. };
  718.  
  719. class catshark {
  720. variable = "catshark";
  721. displayName = "STR_Item_CatShark";
  722. weight = 3;
  723. buyPrice = 750;
  724. sellPrice = 500;
  725. illegal = false;
  726. edible = 100;
  727. icon = "icons\ico_cookedFish.paa";
  728. };
  729.  
  730. class turtle_raw {
  731. variable = "turtleRaw";
  732. displayName = "STR_Item_TurtleRaw";
  733. weight = 6;
  734. buyPrice = -1;
  735. sellPrice = 3000;
  736. illegal = true;
  737. edible = -1;
  738. icon = "icons\ico_turtleRaw.paa";
  739. };
  740.  
  741. class turtle_soup {
  742. variable = "turtleSoup";
  743. displayName = "STR_Item_TurtleSoup";
  744. weight = 2;
  745. buyPrice = 1000;
  746. sellPrice = 750;
  747. illegal = false;
  748. edible = 100;
  749. icon = "icons\ico_turtleSoup.paa";
  750. };
  751.  
  752. class hen_raw {
  753. variable = "henRaw";
  754. displayName = "STR_Item_HenRaw";
  755. weight = 1;
  756. buyPrice = -1;
  757. sellPrice = 65;
  758. illegal = false;
  759. edible = -1;
  760. icon = "icons\ico_wholeChickenRaw.paa";
  761. };
  762.  
  763. class hen {
  764. variable = "hen";
  765. displayName = "STR_Item_Hen";
  766. weight = 1;
  767. buyPrice = 115;
  768. sellPrice = 85;
  769. illegal = false;
  770. edible = 65;
  771. icon = "icons\ico_wholeChicken.paa";
  772. };
  773.  
  774. class rooster_raw {
  775. variable = "roosterRaw";
  776. displayName = "STR_Item_RoosterRaw";
  777. weight = 1;
  778. buyPrice = -1;
  779. sellPrice = 65;
  780. illegal = false;
  781. edible = -1;
  782. icon = "icons\ico_chickenDrumstickRaw.paa";
  783. };
  784.  
  785. class rooster {
  786. variable = "rooster";
  787. displayName = "STR_Item_Rooster";
  788. weight = 115;
  789. buyPrice = 90;
  790. sellPrice = 85;
  791. illegal = false;
  792. edible = 45;
  793. icon = "icons\ico_chickenDrumstick.paa";
  794. };
  795.  
  796. class sheep_raw {
  797. variable = "sheepRaw";
  798. displayName = "STR_Item_SheepRaw";
  799. weight = 2;
  800. buyPrice = -1;
  801. sellPrice = 95;
  802. illegal = false;
  803. edible = -1;
  804. icon = "icons\ico_lambChopRaw.paa";
  805. };
  806.  
  807. class sheep {
  808. variable = "sheep";
  809. displayName = "STR_Item_Sheep";
  810. weight = 2;
  811. buyPrice = 155;
  812. sellPrice = 115;
  813. illegal = false;
  814. edible = 100;
  815. icon = "icons\ico_lambChop.paa";
  816. };
  817.  
  818. class goat_raw {
  819. variable = "goatRaw";
  820. displayName = "STR_Item_GoatRaw";
  821. weight = 2;
  822. buyPrice = -1;
  823. sellPrice = 115;
  824. illegal = false;
  825. edible = -1;
  826. icon = "icons\ico_muttonLegRaw.paa";
  827. };
  828.  
  829. class goat {
  830. variable = "goat";
  831. displayName = "STR_Item_Goat";
  832. weight = 2;
  833. buyPrice = 175;
  834. sellPrice = 135;
  835. illegal = false;
  836. edible = 100;
  837. icon = "icons\ico_muttonLeg.paa";
  838. };
  839.  
  840. //Alcool
  841. class biere {
  842. variable = "biere";
  843. displayName = "STR_Item_biere";
  844. weight = 1;
  845. buyPrice = 50;
  846. sellPrice = 25;
  847. illegal = false;
  848. edible = -1;
  849. icon = "icons\alcool\ico_beerBottle.paa";
  850. };
  851.  
  852. class vin {
  853. variable = "vin";
  854. displayName = "STR_Item_vin";
  855. weight = 1;
  856. buyPrice = 50;
  857. sellPrice = 25;
  858. illegal = false;
  859. edible = -1;
  860. icon = "icons\vin.paa"; //ICON
  861. };
  862.  
  863. class champagne {
  864. variable = "champagne";
  865. displayName = "STR_Item_champagne";
  866. weight = 1;
  867. buyPrice = 150;
  868. sellPrice = 75;
  869. illegal = false;
  870. edible = -1;
  871. icon = "iconsDucky\champagne.paa";
  872. };
  873.  
  874. class whisky {
  875. variable = "whisky";
  876. displayName = "STR_Item_whisky";
  877. weight = 1;
  878. buyPrice = 75;
  879. sellPrice = 35;
  880. illegal = false;
  881. edible = -1;
  882. icon = "iconsDucky\wisky.paa";
  883. };
  884.  
  885. class vodka {
  886. variable = "vodka";
  887. displayName = "STR_Item_vodka";
  888. weight = 1;
  889. buyPrice = 75;
  890. sellPrice = 35;
  891. illegal = false;
  892. edible = -1;
  893. icon = "iconsDucky\vodka.paa";
  894. };
  895.  
  896. //Legal
  897. class pickaxe {
  898. variable = "pickaxe";
  899. displayName = "STR_Item_Pickaxe";
  900. weight = 2;
  901. buyPrice = 750;
  902. sellPrice = 350;
  903. illegal = false;
  904. edible = -1;
  905. icon = "icons\ico_pickaxe.paa";
  906. };
  907.  
  908. class defibrillator {
  909. variable = "defibrillator";
  910. displayName = "STR_Item_Defibrillator";
  911. weight = 4;
  912. buyPrice = 900;
  913. sellPrice = 450;
  914. illegal = false;
  915. edible = -1;
  916. icon = "icons\ico_defibrillator.paa";
  917. };
  918.  
  919. class arrosoir {
  920. variable = "arrosoir";
  921. displayName = "STR_Item_arrosoir";
  922. weight = 4;
  923. buyPrice = 100;
  924. sellPrice = 50;
  925. illegal = false;
  926. edible = -1;
  927. icon = "";
  928. };
  929.  
  930. class desherbant {
  931. variable = "desherbant";
  932. displayName = "STR_Item_desherbant";
  933. weight = 4;
  934. buyPrice = 900;
  935. sellPrice = 450;
  936. illegal = false;
  937. edible = -1;
  938. icon = "iconsDucky\desherbant.paa";
  939. };
  940.  
  941. class fuelEmpty {
  942. variable = "fuelEmpty";
  943. displayName = "STR_Item_FuelE";
  944. weight = 2;
  945. buyPrice = -1;
  946. sellPrice = 10;
  947. illegal = false;
  948. edible = -1;
  949. icon = "icons\ico_fuelEmpty.paa";
  950. };
  951.  
  952. class fuelFull {
  953. variable = "fuelFull";
  954. displayName = "STR_Item_FuelF";
  955. weight = 5;
  956. buyPrice = 850;
  957. sellPrice = 400;
  958. illegal = false;
  959. edible = -1;
  960. icon = "icons\ico_fuel.paa";
  961. };
  962.  
  963. class storagesmall {
  964. variable = "storageSmall";
  965. displayName = "STR_Item_StorageBS";
  966. weight = 5;
  967. buyPrice = 75000;
  968. sellPrice = 50000;
  969. illegal = false;
  970. edible = -1;
  971. icon = "icons\ico_storageSmall.paa";
  972. };
  973.  
  974. class storagebig {
  975. variable = "storageBig";
  976. displayName = "STR_Item_StorageBL";
  977. weight = 10;
  978. buyPrice = 150000;
  979. sellPrice = 125000;
  980. illegal = false;
  981. edible = -1;
  982. icon = "icons\ico_storageBig.paa";
  983. };
  984.  
  985. //Legal
  986. //Entreprise
  987. //BioLab
  988. class graine_Cytokine {
  989. variable = "graine_Cytokine";
  990. displayName = "STR_Item_graine_Cytokine";
  991. weight = 2;
  992. buyPrice = 10;
  993. sellPrice = -1;
  994. illegal = true;
  995. edible = -1;
  996. icon = "iconsDucky\graine.paa";
  997. };
  998.  
  999. class Cytokine {
  1000. variable = "Cytokine";
  1001. displayName = "STR_Item_Cytokine";
  1002. weight = 2;
  1003. buyPrice = 50;
  1004. sellPrice = -1;
  1005. illegal = true;
  1006. edible = -1;
  1007. icon = "iconsDucky\cytokine.paa";
  1008. };
  1009.  
  1010. class graine_Acide_Nucleique {
  1011. variable = "graine_Acide_Nucleique";
  1012. displayName = "STR_Item_graine_Acide_Nucleiquee";
  1013. weight = 2;
  1014. buyPrice = 10;
  1015. sellPrice = -1;
  1016. illegal = false;
  1017. edible = -1;
  1018. icon = "iconsDucky\graine.paa";
  1019. };
  1020. class Acide_Nucleique {
  1021. variable = "Acide_Nucleique";
  1022. displayName = "STR_Item_Acide_Nucleique";
  1023. weight = 2;
  1024. buyPrice = 50;
  1025. sellPrice = -1;
  1026. illegal = false;
  1027. edible = -1;
  1028. icon = "iconsDucky\acide_nucleique.paa";
  1029. };
  1030.  
  1031.  
  1032. class medoc {
  1033. variable = "medoc";
  1034. displayName = "STR_Item_medoc";
  1035. weight = 2;
  1036. buyPrice = 800;
  1037. sellPrice = 400;
  1038. illegal = false;
  1039. edible = -1;
  1040. icon = "iconsDucky\medoc.paa";
  1041. };
  1042.  
  1043. //CavOska
  1044. class graine_vigne {
  1045. variable = "graine_vigne";
  1046. displayName = "STR_Item_graine_vigne";
  1047. weight = 2;
  1048. buyPrice = 20;
  1049. sellPrice = -1;
  1050. illegal = false;
  1051. edible = -1;
  1052. icon = "iconsDucky\graine.paa";
  1053. };
  1054.  
  1055. class raisin {
  1056. variable = "raisin";
  1057. displayName = "STR_Item_raisin";
  1058. weight = 2;
  1059. buyPrice = -1;
  1060. sellPrice = -1;
  1061. illegal = false;
  1062. edible = -1;
  1063. icon = "icons\grappe.paa";
  1064. };
  1065.  
  1066. class vinf {
  1067. variable = "vinf";
  1068. displayName = "STR_Item_vin";
  1069. weight = 2;
  1070. buyPrice = -1;
  1071. sellPrice = 400;
  1072. illegal = false;
  1073. edible = -1;
  1074. icon = "icons\vin.paa";
  1075. };
  1076.  
  1077. //ICC
  1078. class bronze {
  1079. variable = "bronze";
  1080. displayName = "STR_Item_bronze";
  1081. weight = 2;
  1082. buyPrice = -1;
  1083. sellPrice = 500;
  1084. illegal = false;
  1085. edible = -1;
  1086. icon = "iconsDucky\bronze.paa";
  1087. };
  1088.  
  1089. //Cigar
  1090. class cigar {
  1091. variable = "cigar";
  1092. displayName = "STR_Item_cigar";
  1093. weight = 1;
  1094. buyPrice = 800;
  1095. sellPrice = 400;
  1096. illegal = false;
  1097. edible = -1;
  1098. icon = "";
  1099. };
  1100.  
  1101. class feuille_cigar {
  1102. variable = "feuille_cigar";
  1103. displayName = "STR_Item_feuille_cigar";
  1104. weight = 1;
  1105. buyPrice = -1;
  1106. sellPrice = -1;
  1107. illegal = false;
  1108. edible = -1;
  1109. icon = "";
  1110. };
  1111.  
  1112. class tabac {
  1113. variable = "tabac";
  1114. displayName = "STR_Item_tabac";
  1115. weight = 1;
  1116. buyPrice = 50;
  1117. sellPrice = 25;
  1118. illegal = false;
  1119. edible = -1;
  1120. icon = "";
  1121. };
  1122.  
  1123. //Mined item
  1124. class oil_unprocessed {
  1125. variable = "oilUnprocessed";
  1126. displayName = "STR_Item_OilU";
  1127. weight = 7;
  1128. buyPrice = 0;
  1129. sellPrice = -1;
  1130. illegal = false;
  1131. edible = -1;
  1132. icon = "icons\ico_oilUnprocessed.paa";
  1133. };
  1134.  
  1135. class oil_processed {
  1136. variable = "oilProcessed";
  1137. displayName = "STR_Item_OilP";
  1138. weight = 6;
  1139. buyPrice = -1;
  1140. sellPrice = 890;
  1141. illegal = false;
  1142. edible = -1;
  1143. icon = "icons\ico_oilProcessed.paa";
  1144. };
  1145.  
  1146. class Ruby {
  1147. variable = "Ruby";
  1148. displayName = "STR_Item_Ruby";
  1149. weight = 7;
  1150. buyPrice = -1;
  1151. sellPrice = -1;
  1152. illegal = false;
  1153. edible = -1;
  1154. icon = "icons\ruby.paa";
  1155. };
  1156.  
  1157. class Ruby2 {
  1158. variable = "Ruby2";
  1159. displayName = "STR_Item_Ruby2";
  1160. weight = 4;
  1161. buyPrice = -1;
  1162. sellPrice = 920;
  1163. illegal = false;
  1164. edible = -1;
  1165. icon = "icons\ruby2.paa";
  1166. };
  1167.  
  1168. class planche {
  1169. variable = "planche";
  1170. displayName = "STR_Item_planche2";
  1171. weight = 7;
  1172. buyPrice = -1;
  1173. sellPrice = 600;
  1174. illegal = false;
  1175. edible = -1;
  1176. icon = "icons\planche.paa";
  1177. };
  1178.  
  1179. class charbon {
  1180. variable = "charbon";
  1181. displayName = "STR_Item_charbon";
  1182. weight = 7;
  1183. buyPrice = -1;
  1184. sellPrice = -1;
  1185. illegal = false;
  1186. edible = -1;
  1187. icon = "icons\charbon_minerai.paa";
  1188. };
  1189.  
  1190. class charbon2 {
  1191. variable = "charbon2";
  1192. displayName = "STR_Item_charbon2";
  1193. weight = 5;
  1194. buyPrice = -1;
  1195. sellPrice = 370;
  1196. illegal = false;
  1197. edible = -1;
  1198. icon = "icons\galet_charbon.paa";
  1199. };
  1200.  
  1201. class copper_unrefined {
  1202. variable = "copperUnrefined";
  1203. displayName = "STR_Item_CopperOre";
  1204. weight = 4;
  1205. buyPrice = -1;
  1206. sellPrice = -1;
  1207. illegal = false;
  1208. edible = -1;
  1209. icon = "icons\ico_copperOre.paa";
  1210. };
  1211.  
  1212. class copper_refined {
  1213. variable = "copperRefined";
  1214. displayName = "STR_Item_CopperIngot";
  1215. weight = 3;
  1216. buyPrice = -1;
  1217. sellPrice = 420;
  1218. illegal = false;
  1219. edible = -1;
  1220. icon = "icons\ico_copper.paa";
  1221. };
  1222.  
  1223. class iron_unrefined {
  1224. variable = "ironUnrefined";
  1225. displayName = "STR_Item_IronOre";
  1226. weight = 5;
  1227. buyPrice = -1;
  1228. sellPrice = -1;
  1229. illegal = false;
  1230. edible = -1;
  1231. icon = "icons\ico_ironOre.paa";
  1232. };
  1233.  
  1234. class iron_refined {
  1235. variable = "ironRefined";
  1236. displayName = "STR_Item_IronIngot";
  1237. weight = 3;
  1238. buyPrice = -1;
  1239. sellPrice = 520;
  1240. illegal = false;
  1241. edible = -1;
  1242. icon = "icons\ico_iron.paa";
  1243. };
  1244.  
  1245. class steel {
  1246. variable = "steel";
  1247. displayName = "STR_Item_steel";
  1248. weight = 3;
  1249. buyPrice = -1;
  1250. sellPrice = 600;
  1251. illegal = false;
  1252. edible = -1;
  1253. icon = "icons\ico_iron.paa";
  1254. };
  1255.  
  1256. class salt_unrefined {
  1257. variable = "saltUnrefined";
  1258. displayName = "STR_Item_Salt";
  1259. weight = 3;
  1260. buyPrice = -1;
  1261. sellPrice = -1;
  1262. illegal = false;
  1263. edible = -1;
  1264. icon = "icons\ico_saltUnprocessed.paa";
  1265. };
  1266.  
  1267. class salt_refined {
  1268. variable = "saltRefined";
  1269. displayName = "STR_Item_SaltR";
  1270. weight = 1;
  1271. buyPrice = -1;
  1272. sellPrice = 1450;
  1273. illegal = false;
  1274. edible = -1;
  1275. icon = "icons\ico_saltProcessed.paa";
  1276. };
  1277.  
  1278. class sand {
  1279. variable = "sand";
  1280. displayName = "STR_Item_Sand";
  1281. weight = 3;
  1282. buyPrice = -1;
  1283. sellPrice = -1;
  1284. illegal = false;
  1285. edible = -1;
  1286. icon = "icons\ico_sand.paa";
  1287. };
  1288.  
  1289. class glass {
  1290. variable = "glass";
  1291. displayName = "STR_Item_Glass";
  1292. weight = 1;
  1293. buyPrice = -1;
  1294. sellPrice = 400;
  1295. illegal = false;
  1296. edible = -1;
  1297. icon = "icons\ico_glass.paa";
  1298. };
  1299.  
  1300. class diamond_uncut {
  1301. variable = "diamondUncut";
  1302. displayName = "STR_Item_DiamondU";
  1303. weight = 4;
  1304. buyPrice = -1;
  1305. sellPrice = 175;
  1306. illegal = false;
  1307. edible = -1;
  1308. icon = "icons\ico_diamondUncut.paa";
  1309. };
  1310.  
  1311. class diamond_cut {
  1312. variable = "diamondCut";
  1313. displayName = "STR_Item_DiamondC";
  1314. weight = 2;
  1315. buyPrice = -1;
  1316. sellPrice = 520;
  1317. illegal = false;
  1318. edible = -1;
  1319. icon = "icons\ico_diamondCut.paa";
  1320. };
  1321.  
  1322. class minerai_pepite_or {
  1323. variable = "minerai_pepite_or";
  1324. displayName = "STR_Item_minerai_pepite_or";
  1325. weight = 4;
  1326. buyPrice = -1;
  1327. sellPrice = -1;
  1328. illegal = false;
  1329. edible = -1;
  1330. icon = "icons\minerai_or.paa";
  1331. };
  1332.  
  1333. class minerai_pepite_or2 {
  1334. variable = "minerai_pepite_or2";
  1335. displayName = "STR_Item_minerai_pepite_or2";
  1336. weight = 2;
  1337. buyPrice = -1;
  1338. sellPrice = 540;
  1339. illegal = false;
  1340. edible = -1;
  1341. icon = "icons\pepite_or.paa";
  1342. };
  1343.  
  1344. class rock {
  1345. variable = "rock";
  1346. displayName = "STR_Item_Rock";
  1347. weight = 6;
  1348. buyPrice = -1;
  1349. sellPrice = -1;
  1350. illegal = false;
  1351. edible = -1;
  1352. icon = "icons\ico_rock.paa";
  1353. };
  1354.  
  1355. class cement {
  1356. variable = "cement";
  1357. displayName = "STR_Item_CementBag";
  1358. weight = 5;
  1359. buyPrice = -1;
  1360. sellPrice = 1950;
  1361. illegal = false;
  1362. edible = -1;
  1363. icon = "icons\ico_cement.paa";
  1364. };
  1365.  
  1366. //Champ
  1367. class graine_mais {
  1368. variable = "graine_mais";
  1369. displayName = "STR_Item_graine_mais";
  1370. weight = 4;
  1371. buyPrice = 5;
  1372. sellPrice = 0;
  1373. illegal = false;
  1374. edible = -1;
  1375. icon = "iconsDucky\graine.paa";
  1376. };
  1377.  
  1378. class mais {
  1379. variable = "mais";
  1380. displayName = "STR_Item_mais";
  1381. weight = 4;
  1382. buyPrice = -1;
  1383. sellPrice = 400;
  1384. illegal = false;
  1385. edible = -1;
  1386. icon = "iconsDucky\mais.paa";
  1387. };
  1388.  
  1389. class graine_ble {
  1390. variable = "graine_ble";
  1391. displayName = "STR_Item_graine_ble";
  1392. weight = 4;
  1393. buyPrice = 10;
  1394. sellPrice = 0;
  1395. illegal = false;
  1396. edible = -1;
  1397. icon = "iconsDucky\graine.paa";
  1398. };
  1399.  
  1400. class ble {
  1401. variable = "ble";
  1402. displayName = "STR_Item_ble";
  1403. weight = 4;
  1404. buyPrice = -1;
  1405. sellPrice = 400;
  1406. illegal = false;
  1407. edible = -1;
  1408. icon = "iconsDucky\ble.paa";
  1409. };
  1410.  
  1411. class graine_tournesol {
  1412. variable = "graine_tournesol";
  1413. displayName = "STR_Item_graine_tournesol";
  1414. weight = 4;
  1415. buyPrice = 10;
  1416. sellPrice = 0;
  1417. illegal = false;
  1418. edible = -1;
  1419. icon = "iconsDucky\graine.paa";
  1420. };
  1421.  
  1422. class tournesol {
  1423. variable = "tournesol";
  1424. displayName = "STR_Item_tournesol";
  1425. weight = 4;
  1426. buyPrice = -1;
  1427. sellPrice = 400;
  1428. illegal = false;
  1429. edible = -1;
  1430. icon = "iconsDucky\tournesol.paa";
  1431. };
  1432.  
  1433. class graine_fraisier {
  1434. variable = "graine_fraisier";
  1435. displayName = "STR_Item_graine_fraisier";
  1436. weight = 4;
  1437. buyPrice = 5;
  1438. sellPrice = 0;
  1439. illegal = false;
  1440. edible = -1;
  1441. icon = "iconsDucky\graine.paa";
  1442. };
  1443.  
  1444. class fraisier {
  1445. variable = "fraisier";
  1446. displayName = "STR_Item_fraisier";
  1447. weight = 4;
  1448. buyPrice = -1;
  1449. sellPrice = 400;
  1450. illegal = false;
  1451. edible = -1;
  1452. icon = "iconsDucky\fraise.paa";
  1453. };
  1454.  
  1455. //Artefact
  1456. class artefact1 {
  1457. variable = "artefact1";
  1458. displayName = "STR_Item_artefact1";
  1459. weight = 2;
  1460. buyPrice = -1;
  1461. sellPrice = 500;
  1462. illegal = true;
  1463. edible = -1;
  1464. icon = "icons\ico_artefact.paa";
  1465. };
  1466.  
  1467. class artefact2 {
  1468. variable = "artefact2";
  1469. displayName = "STR_Item_artefact2";
  1470. weight = 2;
  1471. buyPrice = -1;
  1472. sellPrice = 1000;
  1473. illegal = true;
  1474. edible = -1;
  1475. icon = "icons\ico_artefactb.paa";
  1476. };
  1477.  
  1478. class artefact3 {
  1479. variable = "artefact3";
  1480. displayName = "STR_Item_artefact3";
  1481. weight = 2;
  1482. buyPrice = -1;
  1483. sellPrice = 2000;
  1484. illegal = true;
  1485. edible = -1;
  1486. icon = "icons\ico_artefactg.paa";
  1487. };
  1488.  
  1489. class conserve {
  1490. variable = "conserve";
  1491. displayName = "STR_Item_conserve";
  1492. weight = 1;
  1493. buyPrice = -1;
  1494. sellPrice = 10;
  1495. illegal = false;
  1496. edible = -1;
  1497. icon = "icons\ico_conserve.paa";
  1498. };
  1499.  
  1500. //Illegal
  1501. //Drugs
  1502. //Heroine
  1503. class heroin_unprocessed {
  1504. variable = "heroinUnprocessed";
  1505. displayName = "STR_Item_HeroinU";
  1506. weight = 6;
  1507. buyPrice = -1;
  1508. sellPrice = -1;
  1509. illegal = true;
  1510. edible = -1;
  1511. icon = "icons\ico_heroinUnprocessed.paa";
  1512. processedItem = "heroin_processed";
  1513. };
  1514.  
  1515. class heroin_processed {
  1516. variable = "heroinProcessed";
  1517. displayName = "STR_Item_HeroinP";
  1518. weight = 4;
  1519. buyPrice = 3500;
  1520. sellPrice = 2560;
  1521. illegal = true;
  1522. edible = -1;
  1523. icon = "icons\ico_heroinProcessed.paa";
  1524. };
  1525.  
  1526. //Weed
  1527. class graine_cannabis {
  1528. variable = "graine_cannabis";
  1529. displayName = "STR_Item_graine_cannabis";
  1530. weight = 4;
  1531. buyPrice = 130;
  1532. sellPrice = 130;
  1533. illegal = true;
  1534. edible = -1;
  1535. icon = "iconsDucky\graine.paa";
  1536. };
  1537.  
  1538. class cannabis {
  1539. variable = "cannabis";
  1540. displayName = "STR_Item_Cannabis";
  1541. weight = 4;
  1542. buyPrice = -1;
  1543. sellPrice = -1;
  1544. illegal = true;
  1545. edible = -1;
  1546. icon = "icons\ico_cannabis.paa";
  1547. processedItem = "marijuana";
  1548. };
  1549.  
  1550. class marijuana {
  1551. variable = "marijuana";
  1552. displayName = "STR_Item_Marijuana";
  1553. weight = 3;
  1554. buyPrice = 1500;
  1555. sellPrice = 1040;
  1556. illegal = true;
  1557. edible = -1;
  1558. icon = "icons\ico_marijuana.paa";
  1559. };
  1560.  
  1561. //Cocaine
  1562. class graine_cocaine {
  1563. variable = "graine_cocaine";
  1564. displayName = "STR_Item_graine_cocaine";
  1565. weight = 4;
  1566. buyPrice = 100;
  1567. sellPrice = 50;
  1568. illegal = true;
  1569. edible = -1;
  1570. icon = "iconsDucky\graine.paa";
  1571. };
  1572.  
  1573. class cocaine_unprocessed {
  1574. variable = "cocaineUnprocessed";
  1575. displayName = "STR_Item_CocaineU";
  1576. weight = 6;
  1577. buyPrice = -1;
  1578. sellPrice = -1;
  1579. illegal = true;
  1580. edible = -1;
  1581. icon = "icons\ico_cocaineUnprocessed.paa";
  1582. processedItem = "cocaine_processed";
  1583. };
  1584.  
  1585. class cocaine_processed {
  1586. variable = "cocaineProcessed";
  1587. displayName = "STR_Item_CocaineP";
  1588. weight = 4;
  1589. buyPrice = -1;
  1590. sellPrice = 1560;
  1591. illegal = true;
  1592. edible = -1;
  1593. icon = "icons\ico_cocaineProcessed.paa";
  1594. };
  1595.  
  1596. //Mined items
  1597. //Uranium
  1598. class uranium_unrefined {
  1599. variable = "uraniumUnrefined";
  1600. displayName = "STR_Item_UraniumOre";
  1601. weight = 4;
  1602. buyPrice = -1;
  1603. sellPrice = -1;
  1604. illegal = true;
  1605. edible = -1;
  1606. icon = "icons\ico_uranium1.paa";
  1607. };
  1608.  
  1609. class uranium_refined {
  1610. variable = "uraniumRefined";
  1611. displayName = "STR_Item_Uranium";
  1612. weight = 2;
  1613. buyPrice = -1;
  1614. sellPrice = 950;
  1615. illegal = true;
  1616. edible = -1;
  1617. icon = "icons\ico_uraniumBarel.paa";
  1618. };
  1619.  
  1620. //Banque
  1621. class goldbar {
  1622. variable = "goldBar";
  1623. displayName = "STR_Item_GoldBar";
  1624. weight = 12;
  1625. buyPrice = -1;
  1626. sellPrice = 95000;
  1627. illegal = true;
  1628. edible = -1;
  1629. icon = "icons\ico_goldBar.paa";
  1630. };
  1631.  
  1632. //Essence
  1633. class gazole {
  1634. variable = "gazole";
  1635. displayName = "STR_Item_gazole";
  1636. weight = 1;
  1637. buyPrice = 1000;
  1638. sellPrice = 300;
  1639. illegal = false;
  1640. edible = -1;
  1641. icon = "The-Programmer\FuelStations\textures\Gazole.paa";
  1642. };
  1643.  
  1644. class sp95 {
  1645. variable = "sp95";
  1646. displayName = "STR_Item_sp95";
  1647. weight = 1;
  1648. buyPrice = 1000;
  1649. sellPrice = 250;
  1650. illegal = false;
  1651. edible = -1;
  1652. icon = "The-Programmer\FuelStations\textures\SP95.paa";
  1653. };
  1654.  
  1655. class sp98 {
  1656. variable = "sp98";
  1657. displayName = "STR_Item_sp98";
  1658. weight = 1;
  1659. buyPrice = 1000;
  1660. sellPrice = 280;
  1661. illegal = false;
  1662. edible = -1;
  1663. icon = "The-Programmer\FuelStations\textures\SP98.paa";
  1664. };
  1665.  
  1666. class gpl {
  1667. variable = "gpl";
  1668. displayName = "STR_Item_gpl";
  1669. weight = 1;
  1670. buyPrice = 1000;
  1671. sellPrice = 1000;
  1672. illegal = false;
  1673. edible = -1;
  1674. icon = "The-Programmer\FuelStations\textures\Gpl.paa";
  1675. };
  1676.  
  1677. class bio {
  1678. variable = "bio";
  1679. displayName = "STR_Item_bio";
  1680. weight = 1;
  1681. buyPrice = 1500;
  1682. sellPrice = 1200;
  1683. illegal = false;
  1684. edible = -1;
  1685. icon = "The-Programmer\FuelStations\textures\Essence_Bio.paa";
  1686. };
  1687.  
  1688. class kerosene {
  1689. variable = "kerosene";
  1690. displayName = "STR_Item_kerosene";
  1691. weight = 1;
  1692. buyPrice = 1000;
  1693. sellPrice = 500;
  1694. illegal = false;
  1695. edible = -1;
  1696. icon = "The-Programmer\FuelStations\textures\Kerozene.paa";
  1697. };
  1698.  
  1699. //animaux
  1700. class Snake_raw {
  1701. variable = "Snake_raw";
  1702. displayName = "STR_Item_Snake_raw";
  1703. weight = 1;
  1704. buyPrice = 200;
  1705. sellPrice = 150;
  1706. illegal = false;
  1707. edible = -1;
  1708. icon = "";
  1709. };
  1710.  
  1711. class Cow01_ani {
  1712. variable = "Cow01_ani";
  1713. displayName = "STR_Item_Cow01_ani";
  1714. weight = 1;
  1715. buyPrice = 200;
  1716. sellPrice = 150;
  1717. illegal = false;
  1718. edible = -1;
  1719. icon = "";
  1720. };
  1721.  
  1722. class Cow02_ani {
  1723. variable = "Cow02_ani";
  1724. displayName = "STR_Item_Cow02_ani";
  1725. weight = 1;
  1726. buyPrice = 200;
  1727. sellPrice = 150;
  1728. illegal = false;
  1729. edible = -1;
  1730. icon = "";
  1731. };
  1732.  
  1733. class Cow03_ani {
  1734. variable = "Cow02_ani";
  1735. displayName = "STR_Item_Cow03_ani";
  1736. weight = 1;
  1737. buyPrice = 200;
  1738. sellPrice = 150;
  1739. illegal = false;
  1740. edible = -1;
  1741. icon = "";
  1742. };
  1743.  
  1744. class Cow04_ani {
  1745. variable = "Cow04_ani";
  1746. displayName = "STR_Item_Cow04_ani";
  1747. weight = 1;
  1748. buyPrice = 200;
  1749. sellPrice = 150;
  1750. illegal = false;
  1751. edible = -1;
  1752. icon = "";
  1753. };
  1754.  
  1755. class id_card {
  1756. variable = "id_card";
  1757. displayName = "";
  1758. weight = 0;
  1759. buyPrice = -1;
  1760. sellPrice = -1;
  1761. illegal = false;
  1762. edible = -1;
  1763. icon = "";
  1764. };
  1765. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement