Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.57 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", "pickaxe", "peach", "storagesmall", "storagebig", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw" };
  17. };
  18.  
  19. class med_market {
  20. name = "STR_Shops_Market";
  21. side = "med";
  22. conditions = "";
  23. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "toolkit", "peach", "defibrillator" };
  24. };
  25.  
  26. class dep_market {
  27. name = "Market depanneur";
  28. side = "med";
  29. conditions = "license_med_depanneur";
  30. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "toolkit", "fuelFull", "peach" };
  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", "pickaxe", "peach", "boltcutter", "blastingcharge" };
  38. };
  39.  
  40. class gang {
  41. name = "STR_Shops_Gang";
  42. side = "civ";
  43. conditions = "";
  44. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "peach", "boltcutter", "blastingcharge" };
  45. };
  46.  
  47. class wongs {
  48. name = "STR_Shops_Wongs";
  49. side = "civ";
  50. conditions = "";
  51. items[] = { "turtle_soup", "turtle_raw" };
  52. };
  53.  
  54. class coffee {
  55. name = "STR_Shops_Coffee";
  56. side = "civ";
  57. conditions = "";
  58. items[] = { "coffee", "donuts" };
  59. };
  60.  
  61. class f_station_coffee {
  62. name = "STR_Shop_Station_Coffee";
  63. side = "";
  64. conditions = "";
  65. items[] = { "coffee", "donuts", "redgull", "toolkit"};
  66. };
  67.  
  68. class drugdealer {
  69. name = "STR_Shops_DrugDealer";
  70. side = "civ";
  71. conditions = "";
  72. items[] = { "cocaine_processed", "heroin_processed", "marijuana" };
  73. };
  74.  
  75. class oil {
  76. name = "STR_Shops_Oil";
  77. side = "civ";
  78. conditions = "";
  79. items[] = { "oil_processed", "pickaxe", "fuelFull" };
  80. };
  81.  
  82. class fishmarket {
  83. name = "STR_Shops_FishMarket";
  84. side = "civ";
  85. conditions = "";
  86. items[] = { "salema_raw", "salema", "ornate_raw", "ornate", "mackerel_raw", "mackerel", "tuna_raw", "tuna", "mullet_raw", "mullet", "catshark_raw", "catshark" };
  87. };
  88.  
  89. class glass {
  90. name = "STR_Shops_Glass";
  91. side = "civ";
  92. conditions = "";
  93. items[] = { "glass" };
  94. };
  95.  
  96. class iron {
  97. name = "STR_Shops_Minerals";
  98. side = "civ";
  99. conditions = "";
  100. items[] = { "iron_refined", "copper_refined" };
  101. };
  102.  
  103. class diamond {
  104. name = "STR_Shops_Diamond";
  105. side = "civ";
  106. conditions = "";
  107. items[] = { "diamond_uncut", "diamond_cut" };
  108. };
  109.  
  110. class pierre {
  111. name = "STR_Shops_pierre";
  112. side = "civ";
  113. conditions = "";
  114. items[] = { "Saphir", "Emeraude", "Rubis" };
  115. };
  116.  
  117. class Cigarette {
  118. name = "STR_Shops_cigarette";
  119. side = "civ";
  120. conditions = "";
  121. items[] = { "cigarette"};
  122. };
  123.  
  124. class salt {
  125. name = "STR_Shops_Salt";
  126. side = "civ";
  127. conditions = "";
  128. items[] = { "salt_refined" };
  129. };
  130.  
  131. class cement {
  132. name = "STR_Shops_Cement";
  133. side = "civ";
  134. conditions = "";
  135. items[] = { "cement" };
  136. };
  137.  
  138. class gold {
  139. name = "STR_Shops_Gold";
  140. side = "civ";
  141. conditions = "";
  142. items[] = { "goldbar" };
  143. };
  144.  
  145. class cop {
  146. name = "STR_Shops_Cop";
  147. side = "cop";
  148. conditions = "";
  149. items[] = { "donuts", "coffee", "spikeStrip", "waterBottle", "rabbit", "apple", "redgull", "defusekit" };
  150. };
  151. };
  152.  
  153. /*
  154. * CLASS:
  155. * variable = Variable Name
  156. * displayName = Item Name
  157. * weight = Item Weight
  158. * buyPrice = Item Buy Price
  159. * sellPrice = Item Sell Price
  160. * illegal = Illegal Item
  161. * edible = Item Edible (-1 = Disabled)
  162. * icon = Item Icon
  163. * processedItem = Processed Item
  164. */
  165. class VirtualItems {
  166. //Virtual Items
  167.  
  168. //Misc
  169. class pickaxe {
  170. variable = "pickaxe";
  171. displayName = "STR_Item_Pickaxe";
  172. weight = 2;
  173. buyPrice = 750;
  174. sellPrice = 350;
  175. illegal = false;
  176. edible = -1;
  177. icon = "icons\ico_pickaxe.paa";
  178. };
  179.  
  180. class defibrillator {
  181. variable = "defibrillator";
  182. displayName = "STR_Item_Defibrillator";
  183. weight = 4;
  184. buyPrice = 900;
  185. sellPrice = 450;
  186. illegal = false;
  187. edible = -1;
  188. icon = "icons\ico_defibrillator.paa";
  189. };
  190.  
  191. class toolkit {
  192. variable = "toolkit";
  193. displayName = "STR_Item_Toolkit";
  194. weight = 4;
  195. buyPrice = 350;
  196. sellPrice = 100;
  197. illegal = false;
  198. edible = -1;
  199. icon = "\a3\weapons_f\items\data\UI\gear_toolkit_ca.paa";
  200. };
  201.  
  202. class fuelEmpty {
  203. variable = "fuelEmpty";
  204. displayName = "STR_Item_FuelE";
  205. weight = 2;
  206. buyPrice = -1;
  207. sellPrice = 10;
  208. illegal = false;
  209. edible = -1;
  210. icon = "icons\ico_fuelEmpty.paa";
  211. };
  212.  
  213. class fuelFull {
  214. variable = "fuelFull";
  215. displayName = "STR_Item_FuelF";
  216. weight = 5;
  217. buyPrice = 100000;
  218. sellPrice = 500;
  219. illegal = false;
  220. edible = -1;
  221. icon = "icons\ico_fuel.paa";
  222. };
  223.  
  224. class spikeStrip {
  225. variable = "spikeStrip";
  226. displayName = "STR_Item_SpikeStrip";
  227. weight = 15;
  228. buyPrice = 2500;
  229. sellPrice = 1200;
  230. illegal = true;
  231. edible = -1;
  232. icon = "icons\ico_spikeStrip.paa";
  233. };
  234.  
  235. class lockpick {
  236. variable = "lockpick";
  237. displayName = "STR_Item_Lockpick";
  238. weight = 1;
  239. buyPrice = 150;
  240. sellPrice = 75;
  241. illegal = true;
  242. edible = -1;
  243. icon = "icons\ico_lockpick.paa";
  244. };
  245.  
  246. class goldbar {
  247. variable = "goldBar";
  248. displayName = "STR_Item_GoldBar";
  249. weight = 12;
  250. buyPrice = -1;
  251. sellPrice = 95000;
  252. illegal = true;
  253. edible = -1;
  254. icon = "icons\ico_goldBar.paa";
  255. };
  256.  
  257. class blastingcharge {
  258. variable = "blastingCharge";
  259. displayName = "STR_Item_BCharge";
  260. weight = 15;
  261. buyPrice = 35000;
  262. sellPrice = 10000;
  263. illegal = true;
  264. edible = -1;
  265. icon = "icons\ico_blastingCharge.paa";
  266. };
  267.  
  268. class boltcutter {
  269. variable = "boltCutter";
  270. displayName = "STR_Item_BCutter";
  271. weight = 5;
  272. buyPrice = 7500;
  273. sellPrice = 1000;
  274. illegal = true;
  275. edible = -1;
  276. icon = "icons\ico_boltCutter.paa";
  277. };
  278.  
  279. class defusekit {
  280. variable = "defuseKit";
  281. displayName = "STR_Item_DefuseKit";
  282. weight = 2;
  283. buyPrice = 2500;
  284. sellPrice = 2000;
  285. illegal = true;
  286. edible = -1;
  287. icon = "icons\ico_defuseKit.paa";
  288. };
  289.  
  290. class storagesmall {
  291. variable = "storageSmall";
  292. displayName = "STR_Item_StorageBS";
  293. weight = 5;
  294. buyPrice = 75000;
  295. sellPrice = 50000;
  296. illegal = false;
  297. edible = -1;
  298. icon = "icons\ico_storageSmall.paa";
  299. };
  300.  
  301. class storagebig {
  302. variable = "storageBig";
  303. displayName = "STR_Item_StorageBL";
  304. weight = 10;
  305. buyPrice = 150000;
  306. sellPrice = 125000;
  307. illegal = false;
  308. edible = -1;
  309. icon = "icons\ico_storageBig.paa";
  310. };
  311.  
  312. //Mined Items
  313. class papier {
  314. variable = "papier";
  315. displayName = "STR_Item_papier";
  316. weight = 1;
  317. buyPrice = -1;
  318. sellPrice = -1;
  319. illegal = false;
  320. edible = -1;
  321. icon = "icons\papier.paa";
  322. };
  323. class tabac {
  324. variable = "tabac";
  325. displayName = "STR_Item_tabac";
  326. weight = 3;
  327. buyPrice = -1;
  328. sellPrice = -1;
  329. illegal = false;
  330. edible = -1;
  331. icon = "icons\tabac.paa";
  332. };
  333. class cigarette {
  334. variable = "cigarette";
  335. displayName = "STR_Item_cigarette";
  336. weight = 3;
  337. buyPrice = -1;
  338. sellPrice = -1;
  339. illegal = true;
  340. edible = -1;
  341. icon = "icons\cigarette.paa";
  342. };
  343. class Pierreprecieuse {
  344. variable = "Pierreprecieuse";
  345. displayName = "STR_Item_Pierreprecieuse";
  346. weight = 4;
  347. buyPrice = -1;
  348. sellPrice = -1;
  349. illegal = false;
  350. edible = -1;
  351. icon = "icons\Pierre_Pre.paa";
  352. };
  353.  
  354. class Saphir {
  355. variable = "Saphir";
  356. displayName = "STR_Item_Saphir";
  357. weight = 3;
  358. buyPrice = -1;
  359. sellPrice = -1;
  360. illegal = false;
  361. edible = -1;
  362. icon = "icons\saphir.paa";
  363. };
  364.  
  365. class Emeraude {
  366. variable = "Emeraude";
  367. displayName = "STR_Item_Emeraude";
  368. weight = 3;
  369. buyPrice = -1;
  370. sellPrice = -1;
  371. illegal = false;
  372. edible = -1;
  373. icon = "icons\Emeraude.paa";
  374. };
  375.  
  376. class Rubis {
  377. variable = "Rubis";
  378. displayName = "STR_Item_Rubis";
  379. weight = 3;
  380. buyPrice = -1;
  381. sellPrice = -1;
  382. illegal = false;
  383. edible = -1;
  384. icon = "icons\Rubis.paa";
  385. };
  386.  
  387. class oil_unprocessed {
  388. variable = "oilUnprocessed";
  389. displayName = "STR_Item_OilU";
  390. weight = 7;
  391. buyPrice = -1;
  392. sellPrice = -1;
  393. illegal = false;
  394. edible = -1;
  395. icon = "icons\ico_oilUnprocessed.paa";
  396. };
  397.  
  398. class oil_processed {
  399. variable = "oilProcessed";
  400. displayName = "STR_Item_OilP";
  401. weight = 6;
  402. buyPrice = -1;
  403. sellPrice = 3200;
  404. illegal = false;
  405. edible = -1;
  406. icon = "icons\ico_oilProcessed.paa";
  407. };
  408.  
  409. class copper_unrefined {
  410. variable = "copperUnrefined";
  411. displayName = "STR_Item_CopperOre";
  412. weight = 4;
  413. buyPrice = -1;
  414. sellPrice = -1;
  415. illegal = false;
  416. edible = -1;
  417. icon = "icons\ico_copperOre.paa";
  418. };
  419.  
  420. class copper_refined {
  421. variable = "copperRefined";
  422. displayName = "STR_Item_CopperIngot";
  423. weight = 3;
  424. buyPrice = -1;
  425. sellPrice = 1500;
  426. illegal = false;
  427. edible = -1;
  428. icon = "icons\ico_copper.paa";
  429. };
  430.  
  431. class iron_unrefined {
  432. variable = "ironUnrefined";
  433. displayName = "STR_Item_IronOre";
  434. weight = 5;
  435. buyPrice = -1;
  436. sellPrice = -1;
  437. illegal = false;
  438. edible = -1;
  439. icon = "icons\ico_ironOre.paa";
  440. };
  441.  
  442. class iron_refined {
  443. variable = "ironRefined";
  444. displayName = "STR_Item_IronIngot";
  445. weight = 3;
  446. buyPrice = -1;
  447. sellPrice = 3200;
  448. illegal = false;
  449. edible = -1;
  450. icon = "icons\ico_iron.paa";
  451. };
  452.  
  453. class salt_unrefined {
  454. variable = "saltUnrefined";
  455. displayName = "STR_Item_Salt";
  456. weight = 3;
  457. buyPrice = -1;
  458. sellPrice = -1;
  459. illegal = false;
  460. edible = -1;
  461. icon = "icons\ico_saltUnprocessed.paa";
  462. };
  463.  
  464. class salt_refined {
  465. variable = "saltRefined";
  466. displayName = "STR_Item_SaltR";
  467. weight = 1;
  468. buyPrice = -1;
  469. sellPrice = 1450;
  470. illegal = false;
  471. edible = -1;
  472. icon = "icons\ico_saltProcessed.paa";
  473. };
  474.  
  475. class sand {
  476. variable = "sand";
  477. displayName = "STR_Item_Sand";
  478. weight = 3;
  479. buyPrice = -1;
  480. sellPrice = -1;
  481. illegal = false;
  482. edible = -1;
  483. icon = "icons\ico_sand.paa";
  484. };
  485.  
  486. class glass {
  487. variable = "glass";
  488. displayName = "STR_Item_Glass";
  489. weight = 1;
  490. buyPrice = -1;
  491. sellPrice = 1450;
  492. illegal = false;
  493. edible = -1;
  494. icon = "icons\ico_glass.paa";
  495. };
  496.  
  497. class diamond_uncut {
  498. variable = "diamondUncut";
  499. displayName = "STR_Item_DiamondU";
  500. weight = 4;
  501. buyPrice = -1;
  502. sellPrice = 750;
  503. illegal = false;
  504. edible = -1;
  505. icon = "icons\ico_diamondUncut.paa";
  506. };
  507.  
  508. class diamond_cut {
  509. variable = "diamondCut";
  510. displayName = "STR_Item_DiamondC";
  511. weight = 2;
  512. buyPrice = -1;
  513. sellPrice = 2000;
  514. illegal = false;
  515. edible = -1;
  516. icon = "icons\ico_diamondCut.paa";
  517. };
  518.  
  519. class rock {
  520. variable = "rock";
  521. displayName = "STR_Item_Rock";
  522. weight = 6;
  523. buyPrice = -1;
  524. sellPrice = -1;
  525. illegal = false;
  526. edible = -1;
  527. icon = "icons\ico_rock.paa";
  528. };
  529.  
  530. class cement {
  531. variable = "cement";
  532. displayName = "STR_Item_CementBag";
  533. weight = 5;
  534. buyPrice = -1;
  535. sellPrice = 1950;
  536. illegal = false;
  537. edible = -1;
  538. icon = "icons\ico_cement.paa";
  539. };
  540.  
  541. //Drugs
  542. class heroin_unprocessed {
  543. variable = "heroinUnprocessed";
  544. displayName = "STR_Item_HeroinU";
  545. weight = 6;
  546. buyPrice = -1;
  547. sellPrice = -1;
  548. illegal = true;
  549. edible = -1;
  550. icon = "icons\ico_heroinUnprocessed.paa";
  551. processedItem = "heroin_processed";
  552. };
  553.  
  554. class heroin_processed {
  555. variable = "heroinProcessed";
  556. displayName = "STR_Item_HeroinP";
  557. weight = 4;
  558. buyPrice = 3500;
  559. sellPrice = 2560;
  560. illegal = true;
  561. edible = -1;
  562. icon = "icons\ico_heroinProcessed.paa";
  563. };
  564.  
  565. class cannabis {
  566. variable = "cannabis";
  567. displayName = "STR_Item_Cannabis";
  568. weight = 4;
  569. buyPrice = -1;
  570. sellPrice = -1;
  571. illegal = true;
  572. edible = -1;
  573. icon = "icons\ico_cannabis.paa";
  574. processedItem = "marijuana";
  575. };
  576.  
  577. class marijuana {
  578. variable = "marijuana";
  579. displayName = "STR_Item_Marijuana";
  580. weight = 3;
  581. buyPrice = 2800;
  582. sellPrice = 2350;
  583. illegal = true;
  584. edible = -1;
  585. icon = "icons\ico_marijuana.paa";
  586. };
  587.  
  588. class cocaine_unprocessed {
  589. variable = "cocaineUnprocessed";
  590. displayName = "STR_Item_CocaineU";
  591. weight = 6;
  592. buyPrice = -1;
  593. sellPrice = -1;
  594. illegal = true;
  595. edible = -1;
  596. icon = "icons\ico_cocaineUnprocessed.paa";
  597. processedItem = "cocaine_processed";
  598. };
  599.  
  600. class cocaine_processed {
  601. variable = "cocaineProcessed";
  602. displayName = "STR_Item_CocaineP";
  603. weight = 4;
  604. buyPrice = -1;
  605. sellPrice = 5000;
  606. illegal = true;
  607. edible = -1;
  608. icon = "icons\ico_cocaineProcessed.paa";
  609. };
  610.  
  611. //Drink
  612. class redgull {
  613. variable = "redgull";
  614. displayName = "STR_Item_RedGull";
  615. weight = 1;
  616. buyPrice = 1500;
  617. sellPrice = 200;
  618. illegal = false;
  619. edible = 100;
  620. icon = "icons\ico_redgull.paa";
  621. };
  622.  
  623. class coffee {
  624. variable = "coffee";
  625. displayName = "STR_Item_Coffee";
  626. weight = 1;
  627. buyPrice = 10;
  628. sellPrice = 5;
  629. illegal = false;
  630. edible = 100;
  631. icon = "icons\ico_coffee.paa";
  632. };
  633.  
  634. class waterBottle {
  635. variable = "waterBottle";
  636. displayName = "STR_Item_WaterBottle";
  637. weight = 1;
  638. buyPrice = 10;
  639. sellPrice = 5;
  640. illegal = false;
  641. edible = 100;
  642. icon = "icons\ico_waterBottle.paa";
  643. };
  644.  
  645. //Food
  646. class apple {
  647. variable = "apple";
  648. displayName = "STR_Item_Apple";
  649. weight = 1;
  650. buyPrice = 65;
  651. sellPrice = 50;
  652. illegal = false;
  653. edible = 10;
  654. icon = "icons\ico_apple.paa";
  655. };
  656.  
  657. class peach {
  658. variable = "peach";
  659. displayName = "STR_Item_Peach";
  660. weight = 1;
  661. buyPrice = 68;
  662. sellPrice = 55;
  663. illegal = false;
  664. edible = 10;
  665. icon = "icons\ico_peach.paa";
  666. };
  667.  
  668. class tbacon {
  669. variable = "tbacon";
  670. displayName = "STR_Item_TBacon";
  671. weight = 1;
  672. buyPrice = 75;
  673. sellPrice = 25;
  674. illegal = false;
  675. edible = 40;
  676. icon = "icons\ico_tBacon.paa";
  677. };
  678.  
  679. class donuts {
  680. variable = "donuts";
  681. displayName = "STR_Item_Donuts";
  682. weight = 1;
  683. buyPrice = 120;
  684. sellPrice = 60;
  685. illegal = false;
  686. edible = 30;
  687. icon = "icons\ico_donuts.paa";
  688. };
  689.  
  690. class rabbit_raw {
  691. variable = "rabbitRaw";
  692. displayName = "STR_Item_RabbitRaw";
  693. weight = 2;
  694. buyPrice = -1;
  695. sellPrice = 95;
  696. illegal = false;
  697. edible = -1;
  698. icon = "icons\ico_rabbitRaw.paa";
  699. };
  700.  
  701. class rabbit {
  702. variable = "rabbit";
  703. displayName = "STR_Item_Rabbit";
  704. weight = 1;
  705. buyPrice = 150;
  706. sellPrice = 115;
  707. illegal = false;
  708. edible = 20;
  709. icon = "icons\ico_rabbit.paa";
  710. };
  711.  
  712. class salema_raw {
  713. variable = "salemaRaw";
  714. displayName = "STR_Item_SalemaRaw";
  715. weight = 2;
  716. buyPrice = -1;
  717. sellPrice = 45;
  718. illegal = false;
  719. edible = -1;
  720. icon = "icons\ico_salemaRaw.paa";
  721. };
  722.  
  723. class salema {
  724. variable = "salema";
  725. displayName = "STR_Item_Salema";
  726. weight = 1;
  727. buyPrice = 75;
  728. sellPrice = 55;
  729. illegal = false;
  730. edible = 30;
  731. icon = "icons\ico_cookedFish.paa";
  732. };
  733.  
  734. class ornate_raw {
  735. variable = "ornateRaw";
  736. displayName = "STR_Item_OrnateRaw";
  737. weight = 2;
  738. buyPrice = -1;
  739. sellPrice = 40;
  740. illegal = false;
  741. edible = -1;
  742. icon = "icons\ico_ornateRaw.paa";
  743. };
  744.  
  745. class ornate {
  746. variable = "ornate";
  747. displayName = "STR_Item_Ornate";
  748. weight = 1;
  749. buyPrice = 175;
  750. sellPrice = 150;
  751. illegal = false;
  752. edible = 25;
  753. icon = "icons\ico_cookedFish.paa";
  754. };
  755.  
  756. class mackerel_raw {
  757. variable = "mackerelRaw";
  758. displayName = "STR_Item_MackerelRaw";
  759. weight = 4;
  760. buyPrice = -1;
  761. sellPrice = 175;
  762. illegal = false;
  763. edible = -1;
  764. icon = "icons\ico_mackerelRaw.paa";
  765. };
  766.  
  767. class mackerel {
  768. variable = "mackerel";
  769. displayName = "STR_Item_Mackerel";
  770. weight = 2;
  771. buyPrice = 250;
  772. sellPrice = 200;
  773. illegal = false;
  774. edible = 30;
  775. icon = "icons\ico_cookedFish.paa";
  776. };
  777.  
  778. class tuna_raw {
  779. variable = "tunaRaw";
  780. displayName = "STR_Item_TunaRaw";
  781. weight = 6;
  782. buyPrice = -1;
  783. sellPrice = 700;
  784. illegal = false;
  785. edible = -1;
  786. icon = "icons\ico_tunaRaw.paa";
  787. };
  788.  
  789. class tuna {
  790. variable = "tuna";
  791. displayName = "STR_Item_Tuna";
  792. weight = 3;
  793. buyPrice = 1250;
  794. sellPrice = 1000;
  795. illegal = false;
  796. edible = 100;
  797. icon = "icons\ico_cookedFish.paa";
  798. };
  799.  
  800. class mullet_raw {
  801. variable = "mulletRaw";
  802. displayName = "STR_Item_MulletRaw";
  803. weight = 4;
  804. buyPrice = -1;
  805. sellPrice = 250;
  806. illegal = false;
  807. edible = -1;
  808. icon = "icons\ico_mulletRaw.paa";
  809. };
  810.  
  811. class mullet {
  812. variable = "mullet";
  813. displayName = "STR_Item_Mullet";
  814. weight = 2;
  815. buyPrice = 600;
  816. sellPrice = 400;
  817. illegal = false;
  818. edible = 80;
  819. icon = "icons\ico_cookedFish.paa";
  820. };
  821.  
  822. class catshark_raw {
  823. variable = "catsharkRaw";
  824. displayName = "STR_Item_CatSharkRaw";
  825. weight = 6;
  826. buyPrice = -1;
  827. sellPrice = 300;
  828. illegal = false;
  829. edible = -1;
  830. icon = "icons\ico_catsharkRaw.paa";
  831. };
  832.  
  833. class catshark {
  834. variable = "catshark";
  835. displayName = "STR_Item_CatShark";
  836. weight = 3;
  837. buyPrice = 750;
  838. sellPrice = 500;
  839. illegal = false;
  840. edible = 100;
  841. icon = "icons\ico_cookedFish.paa";
  842. };
  843.  
  844. class turtle_raw {
  845. variable = "turtleRaw";
  846. displayName = "STR_Item_TurtleRaw";
  847. weight = 6;
  848. buyPrice = -1;
  849. sellPrice = 3000;
  850. illegal = true;
  851. edible = -1;
  852. icon = "icons\ico_turtleRaw.paa";
  853. };
  854.  
  855. class turtle_soup {
  856. variable = "turtleSoup";
  857. displayName = "STR_Item_TurtleSoup";
  858. weight = 2;
  859. buyPrice = 1000;
  860. sellPrice = 750;
  861. illegal = false;
  862. edible = 100;
  863. icon = "icons\ico_turtleSoup.paa";
  864. };
  865.  
  866. class hen_raw {
  867. variable = "henRaw";
  868. displayName = "STR_Item_HenRaw";
  869. weight = 1;
  870. buyPrice = -1;
  871. sellPrice = 65;
  872. illegal = false;
  873. edible = -1;
  874. icon = "icons\ico_wholeChickenRaw.paa";
  875. };
  876.  
  877. class hen {
  878. variable = "hen";
  879. displayName = "STR_Item_Hen";
  880. weight = 1;
  881. buyPrice = 115;
  882. sellPrice = 85;
  883. illegal = false;
  884. edible = 65;
  885. icon = "icons\ico_wholeChicken.paa";
  886. };
  887.  
  888. class rooster_raw {
  889. variable = "roosterRaw";
  890. displayName = "STR_Item_RoosterRaw";
  891. weight = 1;
  892. buyPrice = -1;
  893. sellPrice = 65;
  894. illegal = false;
  895. edible = -1;
  896. icon = "icons\ico_chickenDrumstickRaw.paa";
  897. };
  898.  
  899. class rooster {
  900. variable = "rooster";
  901. displayName = "STR_Item_Rooster";
  902. weight = 115;
  903. buyPrice = 90;
  904. sellPrice = 85;
  905. illegal = false;
  906. edible = 45;
  907. icon = "icons\ico_chickenDrumstick.paa";
  908. };
  909.  
  910. class sheep_raw {
  911. variable = "sheepRaw";
  912. displayName = "STR_Item_SheepRaw";
  913. weight = 2;
  914. buyPrice = -1;
  915. sellPrice = 95;
  916. illegal = false;
  917. edible = -1;
  918. icon = "icons\ico_lambChopRaw.paa";
  919. };
  920.  
  921. class sheep {
  922. variable = "sheep";
  923. displayName = "STR_Item_Sheep";
  924. weight = 2;
  925. buyPrice = 155;
  926. sellPrice = 115;
  927. illegal = false;
  928. edible = 100;
  929. icon = "icons\ico_lambChop.paa";
  930. };
  931.  
  932. class goat_raw {
  933. variable = "goatRaw";
  934. displayName = "STR_Item_GoatRaw";
  935. weight = 2;
  936. buyPrice = -1;
  937. sellPrice = 115;
  938. illegal = false;
  939. edible = -1;
  940. icon = "icons\ico_muttonLegRaw.paa";
  941. };
  942.  
  943. class goat {
  944. variable = "goat";
  945. displayName = "STR_Item_Goat";
  946. weight = 2;
  947. buyPrice = 175;
  948. sellPrice = 135;
  949. illegal = false;
  950. edible = -1;
  951. icon = "icons\ico_muttonLeg.paa";
  952. };
  953.  
  954. class gazole {
  955. variable = "gazole";
  956. displayName = "STR_gazole";
  957. weight = 1;
  958. buyPrice = -1;
  959. sellPrice = -1;
  960. illegal = false;
  961. edible = -1;
  962. icon = "icons\gazole.paa";
  963. };
  964. class sp95 {
  965. variable = "sp95";
  966. displayName = "STR_sp95";
  967. weight = 1;
  968. buyPrice = -1;
  969. sellPrice = -1;
  970. illegal = false;
  971. edible = -1;
  972. icon = "icons\sp95.paa";
  973. };
  974. class sp98 {
  975. variable = "sp98";
  976. displayName = "STR_sansplomb98";
  977. weight = 1;
  978. buyPrice = -1;
  979. sellPrice = -1;
  980. illegal = false;
  981. edible = -1;
  982. icon = "icons\sp98.paa";
  983. };
  984. class gpl {
  985. variable = "gpl";
  986. displayName = "STR_gpl";
  987. weight = 1;
  988. buyPrice = -1;
  989. sellPrice = -1;
  990. illegal = false;
  991. edible = -1;
  992. icon = "icons\gpl.paa";
  993. };
  994. class bio {
  995. variable = "bio";
  996. displayName = "STR_bio";
  997. weight = 1;
  998. buyPrice = -1;
  999. sellPrice = -1;
  1000. illegal = false;
  1001. edible = -1;
  1002. icon = "icons\bio.paa";
  1003. };
  1004. class kerosene {
  1005. variable = "kerosene";
  1006. displayName = "STR_kerosene";
  1007. weight = 1;
  1008. buyPrice = 150;
  1009. sellPrice = -1;
  1010. illegal = false;
  1011. edible = -1;
  1012. icon = "icons\kerosene.paa";
  1013. };
  1014.  
  1015. class Heptane {
  1016. variable = "Heptane";
  1017. displayName = "STR_Heptane";
  1018. weight = 6;
  1019. buyPrice = -1;
  1020. sellPrice = 3000;
  1021. illegal = false;
  1022. edible = -1;
  1023. icon = "icons\Heptane.paa";
  1024. };
  1025.  
  1026. class Gisement_Ethanol {
  1027. variable = "Gisement_Ethanol";
  1028. displayName = "STR_Ethanol";
  1029. weight = 6;
  1030. buyPrice = -1;
  1031. sellPrice = 2950;
  1032. illegal = false;
  1033. edible = -1;
  1034. icon = "icons\Ethanol.paa";
  1035. };
  1036.  
  1037. class Mine_de_Plomb {
  1038. variable = "Mine_de_Plomb";
  1039. displayName = "STR_Plomb";
  1040. weight = 4;
  1041. buyPrice = -1;
  1042. sellPrice = 2600;
  1043. illegal = false;
  1044. edible = -1;
  1045. icon = "icons\Ethanol.paa";
  1046. };
  1047.  
  1048. class Foret {
  1049. variable = "Foret";
  1050. displayName = "STR_Foret";
  1051. weight = 3;
  1052. buyPrice = -1;
  1053. sellPrice = 2200;
  1054. illegal = false;
  1055. edible = -1;
  1056. icon = "icons\Bois.paa";
  1057. };
  1058.  
  1059. class Gisement_de_Propane {
  1060. variable = "Gisement_de_Propane";
  1061. displayName = "STR_Propane";
  1062. weight = 5;
  1063. buyPrice = -1;
  1064. sellPrice = 2800;
  1065. illegal = false;
  1066. edible = -1;
  1067. icon = "icons\Propane.paa";
  1068. };
  1069.  
  1070. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement