Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.58 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", "diamant", "rabbit", "apple", "traube", "redgull", "tbacon", "pickaxe", "toolkit", "battery", "fuelFull", "wheel", "peach", "storagesmall", "storagebig", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw", "beer", "agavenBeer" };
  17. };
  18.  
  19. class huntingMarket {
  20. name = "STR_Shops_Market";
  21. side = "civ";
  22. conditions = "";
  23. items[] = { "huntingKnife", "waterBottle", "rabbit", "toolkit", "battery", "fuelFull", "wheel", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw"};
  24. };
  25.  
  26. class fireworkMarket {
  27. name = "STR_Shops_Firework";
  28. side = "civ";
  29. conditions = "";
  30. items[] = { "rocket_n_r", "rocket_n_g", "rocket_n_b", "rocket_n_ran", "rocket_r_r", "rocket_r_g", "rocket_r_b", "rocket_r_ran", "rocket_f_r", "rocket_f_g", "rocket_f_b", "rocket_f_ran", "battery_s", "battery_m", "battery_l"};
  31. };
  32.  
  33. class med_market {
  34. name = "STR_Shops_Market";
  35. side = "med";
  36. conditions = "";
  37. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "toolkit", "battery", "fuelFull", "peach", "defibrillator" };
  38. };
  39.  
  40. class rebel {
  41. name = "STR_Shops_Rebel";
  42. side = "civ";
  43. conditions = "license_civ_rebel";
  44. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "toolkit", "battery", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  45. };
  46.  
  47. class gang {
  48. name = "STR_Shops_Gang";
  49. side = "civ";
  50. conditions = "";
  51. items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "toolkit", "battery", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  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", "fuelFull"};
  66. };
  67.  
  68. class drugdealer {
  69. name = "STR_Shops_DrugDealer";
  70. side = "civ";
  71. conditions = "";
  72. items[] = { "marijuana", "ololiqui", "peyote" , "kratomRefined"};
  73. };
  74.  
  75. class beerTrader {
  76. name = "STR_Shops_BeerTrader";
  77. side = "civ";
  78. conditions = "";
  79. items[] = { "beer", "agavenBeer" };
  80. };
  81.  
  82. class oil {
  83. name = "STR_Shops_Oil";
  84. side = "civ";
  85. conditions = "";
  86. items[] = { "oil_processed", "pickaxe", "fuelFull" };
  87. };
  88.  
  89. class fishmarket {
  90. name = "STR_Shops_FishMarket";
  91. side = "civ";
  92. conditions = "";
  93. items[] = { "salema_raw", "salema", "ornate_raw", "ornate", "mackerel_raw", "mackerel", "tuna_raw", "tuna", "mullet_raw", "mullet", "catshark_raw", "catshark", "turtle_soup", "turtle_raw", "shell" };
  94. };
  95.  
  96. class industriegebiet {
  97. name = "STR_Shops_Industriegebiet";
  98. side = "civ";
  99. conditions = "";
  100. items[] = { "iron_refined", "copper_refined", "silver_refined", "cement" };
  101. };
  102.  
  103. class peralDealer {
  104. name = "STR_Shops_PearlDealer";
  105. side = "civ";
  106. conditions = "";
  107. items[] = { "pearl" };
  108. };
  109.  
  110. class gold {
  111. name = "STR_Shops_Gold";
  112. side = "civ";
  113. conditions = "";
  114. items[] = { "goldbar", "gold_refined" };
  115. };
  116.  
  117. class cop {
  118. name = "STR_Shops_Cop";
  119. side = "cop";
  120. conditions = "";
  121. items[] = { "donuts", "coffee", "spikeStrip", "waterBottle", "rabbit", "apple", "redgull", "toolkit", "battery", "fuelFull", "defusekit", "defibrillator" };
  122. };
  123. };
  124.  
  125. /*
  126. * CLASS:
  127. * variable = Variable Name
  128. * displayName = Item Name
  129. * weight = Item Weight
  130. * buyPrice = Item Buy Price
  131. * sellPrice = Item Sell Price
  132. * illegal = Illegal Item
  133. * edible = Item Edible (-1 = Disabled)
  134. * icon = Item Icon
  135. * processedItem = Processed Item
  136. */
  137. class VirtualItems {
  138. //Virtual Items
  139.  
  140. //Misc
  141. class pickaxe {
  142. variable = "pickaxe";
  143. displayName = "STR_Item_Pickaxe";
  144. weight = 2;
  145. buyPrice = 25;
  146. sellPrice = 5;
  147. illegal = false;
  148. edible = -1;
  149. drinkable = -1;
  150. icon = "icons\ico_pickaxe.paa";
  151. };
  152.  
  153. class pump {
  154. variable = "pump";
  155. displayName = "STR_Item_Pump";
  156. weight = 10;
  157. buyPrice = 900;
  158. sellPrice = 450;
  159. illegal = false;
  160. edible = -1;
  161. drinkable = -1;
  162. icon = "icons\ico_pump.paa";
  163. };
  164.  
  165. class huntingKnife {
  166. variable = "huntingKnife";
  167. displayName = "STR_Item_huntingKnife";
  168. weight = 10;
  169. buyPrice = 900;
  170. sellPrice = 450;
  171. illegal = false;
  172. edible = -1;
  173. drinkable = -1;
  174. icon = "icons\ico_huntingKnife.paa";
  175. };
  176.  
  177. class wheel {
  178. variable = "wheel";
  179. displayName = "STR_Item_wheel";
  180. weight = 10;
  181. buyPrice = 500;
  182. sellPrice = 100;
  183. illegal = false;
  184. edible = -1;
  185. drinkable = -1;
  186. icon = "icons\ico_wheel.paa";
  187. };
  188.  
  189. class defibrillator {
  190. variable = "defibrillator";
  191. displayName = "STR_Item_Defibrillator";
  192. weight = 4;
  193. buyPrice = 500;
  194. sellPrice = 100;
  195. illegal = false;
  196. edible = -1;
  197. drinkable = -1;
  198. icon = "icons\ico_defibrillator.paa";
  199. };
  200.  
  201. class toolkit {
  202. variable = "toolkit";
  203. displayName = "STR_Item_Toolkit";
  204. weight = 4;
  205. buyPrice = 250;
  206. sellPrice = 10;
  207. illegal = false;
  208. edible = -1;
  209. drinkable = -1;
  210. icon = "\a3\weapons_f\items\data\UI\gear_toolkit_ca.paa";
  211. };
  212.  
  213. class fuelEmpty {
  214. variable = "fuelEmpty";
  215. displayName = "STR_Item_FuelE";
  216. weight = 2;
  217. buyPrice = -1;
  218. sellPrice = 2;
  219. illegal = false;
  220. edible = -1;
  221. drinkable = -1;
  222. icon = "icons\ico_fuelEmpty.paa";
  223. };
  224.  
  225. class fuelFull {
  226. variable = "fuelFull";
  227. displayName = "STR_Item_FuelF";
  228. weight = 5;
  229. buyPrice = 25;
  230. sellPrice = 5;
  231. illegal = false;
  232. edible = -1;
  233. drinkable = -1;
  234. icon = "icons\ico_fuel.paa";
  235. };
  236.  
  237. class spikeStrip {
  238. variable = "spikeStrip";
  239. displayName = "STR_Item_SpikeStrip";
  240. weight = 15;
  241. buyPrice = 150;
  242. sellPrice = 50;
  243. illegal = true;
  244. edible = -1;
  245. drinkable = -1;
  246. icon = "icons\ico_spikeStrip.paa";
  247. };
  248.  
  249. class lockpick {
  250. variable = "lockpick";
  251. displayName = "STR_Item_Lockpick";
  252. weight = 1;
  253. buyPrice = 15;
  254. sellPrice = 5;
  255. illegal = true;
  256. edible = -1;
  257. drinkable = -1;
  258. icon = "icons\ico_lockpick.paa";
  259. };
  260.  
  261. class battery {
  262. variable = "battery";
  263. displayName = "STR_Item_Battery";
  264. weight = 2;
  265. buyPrice = 25;
  266. sellPrice = 5;
  267. illegal = false;
  268. edible = -1;
  269. drinkable = -1;
  270. icon = "icons\ico_battery.paa";
  271. };
  272.  
  273. class goldbar {
  274. variable = "goldBar";
  275. displayName = "STR_Item_GoldBar";
  276. weight = 60;
  277. buyPrice = -1;
  278. sellPrice = 32000;
  279. illegal = true;
  280. edible = -1;
  281. drinkable = -1;
  282. icon = "icons\ico_goldBar.paa";
  283. };
  284.  
  285. class blastingcharge {
  286. variable = "blastingCharge";
  287. displayName = "STR_Item_BCharge";
  288. weight = 15;
  289. buyPrice = 2500;
  290. sellPrice = 1000;
  291. illegal = true;
  292. edible = -1;
  293. drinkable = -1;
  294. icon = "icons\ico_blastingCharge.paa";
  295. };
  296.  
  297. class boltcutter {
  298. variable = "boltCutter";
  299. displayName = "STR_Item_BCutter";
  300. weight = 5;
  301. buyPrice = 750;
  302. sellPrice = 100;
  303. illegal = true;
  304. edible = -1;
  305. drinkable = -1;
  306. icon = "icons\ico_boltCutter.paa";
  307. };
  308.  
  309. class defusekit {
  310. variable = "defuseKit";
  311. displayName = "STR_Item_DefuseKit";
  312. weight = 2;
  313. buyPrice = 250;
  314. sellPrice = 100;
  315. illegal = true;
  316. edible = -1;
  317. drinkable = -1;
  318. icon = "icons\ico_defuseKit.paa";
  319. };
  320.  
  321. class storagesmall {
  322. variable = "storageSmall";
  323. displayName = "STR_Item_StorageBS";
  324. weight = 5;
  325. buyPrice = 15000;
  326. sellPrice = 12500;
  327. illegal = false;
  328. edible = -1;
  329. drinkable = -1;
  330. icon = "icons\ico_storageSmall.paa";
  331. };
  332.  
  333. class storagebig {
  334. variable = "storageBig";
  335. displayName = "STR_Item_StorageBL";
  336. weight = 10;
  337. buyPrice = 25000;
  338. sellPrice = 22500;
  339. illegal = false;
  340. edible = -1;
  341. drinkable = -1;
  342. icon = "icons\ico_storageBig.paa";
  343. };
  344.  
  345. //Mined Items
  346. class oil_unprocessed {
  347. variable = "oilUnprocessed";
  348. displayName = "STR_Item_OilU";
  349. weight = 9;
  350. buyPrice = 10;
  351. sellPrice = -1;
  352. illegal = false;
  353. edible = -1;
  354. drinkable = -1;
  355. icon = "icons\ico_oilUnprocessed.paa";
  356. };
  357.  
  358. class oil_processed {
  359. variable = "oilProcessed";
  360. displayName = "STR_Item_OilP";
  361. weight = 6;
  362. buyPrice = -1;
  363. sellPrice = 60;
  364. illegal = false;
  365. edible = -1;
  366. drinkable = -1;
  367. icon = "icons\ico_oilProcessed.paa";
  368. };
  369.  
  370. class hopfen {
  371. variable = "hopfen";
  372. displayName = "STR_Item_Hopfen";
  373. weight = 3;
  374. buyPrice = -1;
  375. sellPrice = 5;
  376. illegal = false;
  377. edible = -1;
  378. drinkable = -1;
  379. icon = "icons\ico_hopfen.paa";
  380. };
  381.  
  382. class agavenBeer {
  383. variable = "agavenBeer";
  384. displayName = "STR_Item_AgavenBeer";
  385. weight = 2;
  386. buyPrice = -1;
  387. sellPrice = 15;
  388. illegal = false;
  389. edible = 10;
  390. drinkable = 15;
  391. icon = "icons\ico_beer.paa";
  392. };
  393.  
  394. class shell {
  395. variable = "shell";
  396. displayName = "STR_Item_Shell";
  397. weight = 4;
  398. buyPrice = -1;
  399. sellPrice = 7;
  400. illegal = false;
  401. edible = 15;
  402. drinkable = -1;
  403. icon = "icons\ico_shell.paa";
  404. };
  405.  
  406. class pearl {
  407. variable = "pearl";
  408. displayName = "STR_Item_Pearl";
  409. weight = 1;
  410. buyPrice = -1;
  411. sellPrice = 250;
  412. illegal = false;
  413. edible = -1;
  414. drinkable = -1;
  415. icon = "icons\ico_pearl.paa";
  416. };
  417.  
  418. class traube {
  419. variable = "traube";
  420. displayName = "STR_Item_Traube";
  421. weight = 1;
  422. buyPrice = -1;
  423. sellPrice = 1;
  424. illegal = false;
  425. edible = 10;
  426. drinkable = 2;
  427. icon = "icons\ico_traube.paa";
  428. };
  429.  
  430. class beer {
  431. variable = "beer";
  432. displayName = "STR_Item_Beer";
  433. weight = 2;
  434. buyPrice = -1;
  435. sellPrice = 20;
  436. illegal = false;
  437. edible = -1;
  438. drinkable = 15;
  439. icon = "icons\ico_beer.paa";
  440. };
  441.  
  442. class copper_unrefined {
  443. variable = "copperUnrefined";
  444. displayName = "STR_Item_CopperOre";
  445. weight = 10;
  446. buyPrice = -1;
  447. sellPrice = 3;
  448. illegal = false;
  449. edible = -1;
  450. drinkable = -1;
  451. icon = "icons\ico_copperOre.paa";
  452. };
  453.  
  454. class copper_refined {
  455. variable = "copperRefined";
  456. displayName = "STR_Item_CopperIngot";
  457. weight = 2;
  458. buyPrice = -1;
  459. sellPrice = 7;
  460. illegal = false;
  461. edible = -1;
  462. drinkable = -1;
  463. icon = "icons\ico_copper.paa";
  464. };
  465.  
  466. class iron_unrefined {
  467. variable = "ironUnrefined";
  468. displayName = "STR_Item_IronOre";
  469. weight = 10;
  470. buyPrice = -1;
  471. sellPrice = 3;
  472. illegal = false;
  473. edible = -1;
  474. drinkable = -1;
  475. icon = "icons\ico_ironOre.paa";
  476. };
  477.  
  478. class iron_refined {
  479. variable = "ironRefined";
  480. displayName = "STR_Item_IronIngot";
  481. weight = 3;
  482. buyPrice = -1;
  483. sellPrice = 12;
  484. illegal = false;
  485. edible = -1;
  486. drinkable = -1;
  487. icon = "icons\ico_iron.paa";
  488. };
  489.  
  490. class silver_unrefined {
  491. variable = "silverUnrefined";
  492. displayName = "STR_Item_SilverOre";
  493. weight = 5;
  494. buyPrice = -1;
  495. sellPrice = 5;
  496. illegal = false;
  497. edible = -1;
  498. drinkable = -1;
  499. icon = "icons\ico_ironOre.paa";
  500. };
  501.  
  502. class silver_refined {
  503. variable = "silverRefined";
  504. displayName = "STR_Item_SilverIngot";
  505. weight = 3;
  506. buyPrice = -1;
  507. sellPrice = 18;
  508. illegal = false;
  509. edible = -1;
  510. drinkable = -1;
  511. icon = "icons\ico_iron.paa";
  512. };
  513.  
  514. class gold_unrefined {
  515. variable = "goldUnrefined";
  516. displayName = "STR_Item_GoldOre";
  517. weight = 20;
  518. buyPrice = -1;
  519. sellPrice = -1;
  520. illegal = false;
  521. edible = -1;
  522. drinkable = -1;
  523. icon = "icons\ico_goldOre.paa";
  524. };
  525.  
  526. class gold_refined {
  527. variable = "goldRefined";
  528. displayName = "STR_Item_GoldIngot";
  529. weight = 3;
  530. buyPrice = -1;
  531. sellPrice = 1100;
  532. illegal = false;
  533. edible = -1;
  534. drinkable = -1;
  535. icon = "icons\ico_gold.paa";
  536. };
  537.  
  538. class rock {
  539. variable = "rock";
  540. displayName = "STR_Item_Rock";
  541. weight = 6;
  542. buyPrice = -1;
  543. sellPrice = 1;
  544. illegal = false;
  545. edible = -1;
  546. drinkable = -1;
  547. icon = "icons\ico_rock.paa";
  548. };
  549.  
  550. class cement {
  551. variable = "cement";
  552. displayName = "STR_Item_CementBag";
  553. weight = 5;
  554. buyPrice = -1;
  555. sellPrice = 9;
  556. illegal = false;
  557. edible = -1;
  558. drinkable = -1;
  559. icon = "icons\ico_cement.paa";
  560. };
  561.  
  562. //Fireworks
  563. class rocket_n_r {
  564. displayName = "STR_Item_rocket_n_r";
  565. variable = "rocket_n_r";
  566. weight = 5;
  567. illegal = false;
  568. buyPrice = 15;
  569. sellPrice = 5;
  570. edible = -1;
  571. drinkable = -1;
  572. icon ="icons\ico_rakete.paa";
  573. };
  574. class rocket_n_g {
  575. displayName = "STR_Item_rocket_n_g";
  576. variable = "rocket_n_g";
  577. weight = 5;
  578. illegal = false;
  579. buyPrice = 15;
  580. sellPrice = 5;
  581. edible = -1;
  582. drinkable = -1;
  583. icon ="icons\ico_rakete.paa";
  584. };
  585. class rocket_n_b {
  586. displayName = "STR_Item_rocket_n_b";
  587. variable = "rocket_n_b";
  588. weight = 5;
  589. illegal = false;
  590. buyPrice = 15;
  591. sellPrice = 5;
  592. edible = -1;
  593. drinkable = -1;
  594. icon ="icons\ico_rakete.paa";
  595. };
  596. class rocket_n_w {
  597. displayName = "STR_Item_rocket_n_w";
  598. variable = "rocket_n_w";
  599. weight = 5;
  600. illegal = false;
  601. buyPrice = 15;
  602. sellPrice = 5;
  603. edible = -1;
  604. drinkable = -1;
  605. icon ="icons\ico_rakete.paa";
  606. };
  607. class rocket_n_ran {
  608. displayName = "STR_Item_rocket_n_ran";
  609. variable = "rocket_n_ran";
  610. weight = 5;
  611. illegal = false;
  612. buyPrice = 15;
  613. sellPrice = 5;
  614. edible = -1;
  615. drinkable = -1;
  616. icon ="icons\ico_rakete.paa";
  617. };
  618.  
  619. class rocket_f_r {
  620. displayName = "STR_Item_rocket_f_r";
  621. variable = "rocket_f_r";
  622. weight = 5;
  623. illegal = false;
  624. buyPrice = 15;
  625. sellPrice = 5;
  626. edible = -1;
  627. drinkable = -1;
  628. icon ="icons\ico_rakete.paa";
  629. };
  630. class rocket_f_g {
  631. displayName = "STR_Item_rocket_f_g";
  632. variable = "rocket_f_g";
  633. weight = 5;
  634. illegal = false;
  635. buyPrice = 15;
  636. sellPrice = 5;
  637. edible = -1;
  638. drinkable = -1;
  639. icon ="icons\ico_rakete.paa";
  640. };
  641. class rocket_f_b {
  642. displayName = "STR_Item_rocket_f_b";
  643. variable = "rocket_f_b";
  644. weight = 5;
  645. illegal = false;
  646. buyPrice = 15;
  647. sellPrice = 5;
  648. edible = -1;
  649. drinkable = -1;
  650. icon ="icons\ico_rakete.paa";
  651. };
  652. class rocket_f_w {
  653. displayName = "STR_Item_rocket_f_w";
  654. variable = "rocket_f_w";
  655. weight = 5;
  656. illegal = false;
  657. buyPrice = 15;
  658. sellPrice = 5;
  659. edible = -1;
  660. drinkable = -1;
  661. icon ="icons\ico_rakete.paa";
  662. };
  663. class rocket_f_ran {
  664. displayName = "STR_Item_rocket_f_ran";
  665. variable = "rocket_f_ran";
  666. weight = 5;
  667. illegal = false;
  668. buyPrice = 15;
  669. sellPrice = 5;
  670. edible = -1;
  671. drinkable = -1;
  672. icon = "icons\ico_rakete.paa";
  673. };
  674.  
  675. class rocket_r_r {
  676. displayName = "STR_Item_rocket_r_r";
  677. variable = "rocket_r_r";
  678. weight = 5;
  679. illegal = false;
  680. buyPrice = 15;
  681. sellPrice = 5;
  682. edible = -1;
  683. drinkable = -1;
  684. icon ="icons\ico_rakete.paa";
  685. };
  686. class rocket_r_g {
  687. displayName = "STR_Item_rocket_r_g";
  688. variable = "rocket_r_g";
  689. weight = 5;
  690. illegal = false;
  691. buyPrice = 15;
  692. sellPrice = 5;
  693. edible = -1;
  694. drinkable = -1;
  695. icon ="icons\ico_rakete.paa";
  696. };
  697. class rocket_r_b {
  698. displayName = "STR_Item_rocket_r_b";
  699. variable = "rocket_r_b";
  700. weight = 5;
  701. illegal = false;
  702. buyPrice = 15;
  703. sellPrice = 5;
  704. edible = -1;
  705. drinkable = -1;
  706. icon ="icons\ico_rakete.paa";
  707. };
  708. class rocket_r_w {
  709. displayName = "STR_Item_rocket_r_w";
  710. variable = "rocket_r_w";
  711. weight = 5;
  712. illegal = false;
  713. buyPrice = 15;
  714. sellPrice = 5;
  715. edible = -1;
  716. drinkable = -1;
  717. icon ="icons\ico_rakete.paa";
  718. };
  719. class rocket_r_ran {
  720. displayName = "STR_Item_rocket_r_ran";
  721. variable = "rocket_r_ran";
  722. weight = 5;
  723. illegal = false;
  724. buyPrice = 15;
  725. sellPrice = 5;
  726. edible = -1;
  727. drinkable = -1;
  728. icon ="icons\ico_rakete.paa";
  729. };
  730.  
  731. class rocket_rr {
  732. displayName = "STR_Item_rocket_rr";
  733. variable = "rocket_rr";
  734. weight = 5;
  735. illegal = false;
  736. buyPrice = 15;
  737. sellPrice = 5;
  738. edible = -1;
  739. drinkable = -1;
  740. icon ="icons\ico_rakete.paa";
  741. };
  742. class battery_s {
  743. displayName = "STR_Item_rocket_b_s";
  744. variable = "battery_s";
  745. weight = 5;
  746. illegal = false;
  747. buyPrice = 25;
  748. sellPrice = 5;
  749. edible = -1;
  750. drinkable = -1;
  751. icon ="icons\ico_batterie_s.paa";
  752. };
  753. class battery_m {
  754. displayName = "STR_Item_rocket_b_m";
  755. variable = "battery_m";
  756. weight = 5;
  757. illegal = false;
  758. buyPrice = 50;
  759. sellPrice = 5;
  760. edible = -1;
  761. drinkable = -1;
  762. icon ="icons\ico_batterie_m.paa";
  763. };
  764. class battery_l {
  765. displayName = "STR_Item_rocket_b_l";
  766. variable = "battery_l";
  767. weight = 5;
  768. illegal = false;
  769. buyPrice = 100;
  770. sellPrice = 5;
  771. edible = -1;
  772. drinkable = -1;
  773. icon ="icons\ico_batterie_l.paa";
  774. };
  775.  
  776. //Drugs
  777.  
  778. class ololiquiSeed {
  779. variable = "ololiquiSeed";
  780. displayName = "STR_Item_OloliquiSeed";
  781. weight = 2;
  782. buyPrice = -1;
  783. sellPrice = 2;
  784. illegal = true;
  785. edible = 1;
  786. drinkable = -1;
  787. icon = "icons\ico_ololiquiSeed.paa";
  788. };
  789.  
  790. class ololiqui {
  791. variable = "ololiqui";
  792. displayName = "STR_Item_Ololiqui";
  793. weight = 4;
  794. buyPrice = -1;
  795. sellPrice = 450;
  796. illegal = true;
  797. edible = 5;
  798. drinkable = -1;
  799. icon = "icons\ico_ololiqui.paa";
  800. };
  801.  
  802. class peyoteBlossom {
  803. variable = "peyoteBlossom";
  804. displayName = "STR_Item_PeyoteBlossom";
  805. weight = 7;
  806. buyPrice = -1;
  807. sellPrice = 3;
  808. illegal = true;
  809. edible = 5;
  810. drinkable = -1;
  811. icon = "icons\ico_peyoteBlossom.paa";
  812. };
  813.  
  814. class peyote {
  815. variable = "peyote";
  816. displayName = "STR_Item_Peyote";
  817. weight = 3;
  818. buyPrice = -1;
  819. sellPrice = 250;
  820. illegal = true;
  821. edible = 5;
  822. drinkable = -1;
  823. icon = "icons\ico_peyote.paa";
  824. };
  825.  
  826. class kratomRefined {
  827. variable = "kratom";
  828. displayName = "STR_Item_KratomRefined";
  829. weight = 13;
  830. buyPrice = -1;
  831. sellPrice = 3;
  832. illegal = true;
  833. edible = 5;
  834. drinkable = -1;
  835. icon = "icons\ico_KratomRefined.paa";
  836. };
  837.  
  838. class KratomUnrefined {
  839. variable = "KratomUnrefined";
  840. displayName = "STR_Item_KratomUnrefined";
  841. weight = 3;
  842. buyPrice = -1;
  843. sellPrice = 150;
  844. illegal = true;
  845. edible = -1;
  846. drinkable = -1;
  847. icon = "icons\ico_KratomUnrefined.paa";
  848. };
  849.  
  850. class marijuana {
  851. variable = "marijuana";
  852. displayName = "STR_Item_Marijuana";
  853. weight = 3;
  854. buyPrice = 10;
  855. sellPrice = 7;
  856. illegal = true;
  857. edible = -1;
  858. drinkable = -1;
  859. icon = "icons\ico_marijuana.paa";
  860. };
  861.  
  862. //Drink
  863. class redgull {
  864. variable = "redgull";
  865. displayName = "STR_Item_RedGull";
  866. weight = 1;
  867. buyPrice = 6;
  868. sellPrice = 1;
  869. illegal = false;
  870. edible = -1;
  871. drinkable = 100;
  872. icon = "icons\ico_redgull.paa";
  873. };
  874.  
  875. class coffee {
  876. variable = "coffee";
  877. displayName = "STR_Item_Coffee";
  878. weight = 1;
  879. buyPrice = 2;
  880. sellPrice = 1;
  881. illegal = false;
  882. edible = -1;
  883. drinkable = 100;
  884. icon = "icons\ico_coffee.paa";
  885. };
  886.  
  887. class waterBottle {
  888. variable = "waterBottle";
  889. displayName = "STR_Item_WaterBottle";
  890. weight = 1;
  891. buyPrice = 1;
  892. sellPrice = 1;
  893. illegal = false;
  894. edible = -1;
  895. drinkable = 100;
  896. icon = "icons\ico_waterBottle.paa";
  897. };
  898.  
  899. //Food
  900. class apple {
  901. variable = "apple";
  902. displayName = "STR_Item_Apple";
  903. weight = 1;
  904. buyPrice = 2;
  905. sellPrice = -1;
  906. illegal = false;
  907. edible = 10;
  908. drinkable = 5;
  909. icon = "icons\ico_apple.paa";
  910. };
  911.  
  912. class peach {
  913. variable = "peach";
  914. displayName = "STR_Item_Peach";
  915. weight = 1;
  916. buyPrice = 2;
  917. sellPrice = -1;
  918. illegal = false;
  919. edible = 10;
  920. drinkable = 5;
  921. icon = "icons\ico_peach.paa";
  922. };
  923.  
  924. class tbacon {
  925. variable = "tbacon";
  926. displayName = "STR_Item_TBacon";
  927. weight = 1;
  928. buyPrice = 3;
  929. sellPrice = 1;
  930. illegal = false;
  931. edible = 40;
  932. drinkable = -1;
  933. icon = "icons\ico_tBacon.paa";
  934. };
  935.  
  936. class donuts {
  937. variable = "donuts";
  938. displayName = "STR_Item_Donuts";
  939. weight = 1;
  940. buyPrice = 2;
  941. sellPrice = 1;
  942. illegal = false;
  943. edible = 30;
  944. drinkable = -1;
  945. icon = "icons\ico_donuts.paa";
  946. };
  947.  
  948. class rabbit_raw {
  949. variable = "rabbitRaw";
  950. displayName = "STR_Item_RabbitRaw";
  951. weight = 2;
  952. buyPrice = -1;
  953. sellPrice = -1;
  954. illegal = false;
  955. edible = -1;
  956. drinkable = -1;
  957. icon = "icons\ico_rabbitRaw.paa";
  958. };
  959.  
  960. class rabbit {
  961. variable = "rabbit";
  962. displayName = "STR_Item_Rabbit";
  963. weight = 1;
  964. buyPrice = 3;
  965. sellPrice = 95;
  966. illegal = false;
  967. edible = 20;
  968. drinkable = -1;
  969. icon = "icons\ico_rabbit.paa";
  970. };
  971.  
  972. class salema_raw {
  973. variable = "salemaRaw";
  974. displayName = "STR_Item_SalemaRaw";
  975. weight = 2;
  976. buyPrice = -1;
  977. sellPrice = 25;
  978. illegal = false;
  979. edible = -1;
  980. drinkable = -1;
  981. icon = "icons\ico_salemaRaw.paa";
  982. };
  983.  
  984. class salema {
  985. variable = "salema";
  986. displayName = "STR_Item_Salema";
  987. weight = 1;
  988. buyPrice = 5;
  989. sellPrice = 45;
  990. illegal = false;
  991. edible = 30;
  992. drinkable = -1;
  993. icon = "icons\ico_cookedFish.paa";
  994. };
  995.  
  996. class ornate_raw {
  997. variable = "ornateRaw";
  998. displayName = "STR_Item_OrnateRaw";
  999. weight = 2;
  1000. buyPrice = -1;
  1001. sellPrice = 3;
  1002. illegal = false;
  1003. edible = -1;
  1004. drinkable = -1;
  1005. icon = "icons\ico_ornateRaw.paa";
  1006. };
  1007.  
  1008. class ornate {
  1009. variable = "ornate";
  1010. displayName = "STR_Item_Ornate";
  1011. weight = 1;
  1012. buyPrice = 2;
  1013. sellPrice = 25;
  1014. illegal = false;
  1015. edible = 25;
  1016. drinkable = -1;
  1017. icon = "icons\ico_cookedFish.paa";
  1018. };
  1019.  
  1020. class mackerel_raw {
  1021. variable = "mackerelRaw";
  1022. displayName = "STR_Item_MackerelRaw";
  1023. weight = 4;
  1024. buyPrice = -1;
  1025. sellPrice = 40;
  1026. illegal = false;
  1027. edible = -1;
  1028. drinkable = -1;
  1029. icon = "icons\ico_mackerelRaw.paa";
  1030. };
  1031.  
  1032. class mackerel {
  1033. variable = "mackerel";
  1034. displayName = "STR_Item_Mackerel";
  1035. weight = 2;
  1036. buyPrice = 8;
  1037. sellPrice = 40;
  1038. illegal = false;
  1039. edible = 30;
  1040. drinkable = -1;
  1041. icon = "icons\ico_cookedFish.paa";
  1042. };
  1043.  
  1044. class tuna_raw {
  1045. variable = "tunaRaw";
  1046. displayName = "STR_Item_TunaRaw";
  1047. weight = 6;
  1048. buyPrice = -1;
  1049. sellPrice = 250;
  1050. illegal = false;
  1051. edible = -1;
  1052. drinkable = -1;
  1053. icon = "icons\ico_tunaRaw.paa";
  1054. };
  1055.  
  1056. class tuna {
  1057. variable = "tuna";
  1058. displayName = "STR_Item_Tuna";
  1059. weight = 3;
  1060. buyPrice = 6;
  1061. sellPrice = 350;
  1062. illegal = false;
  1063. edible = 100;
  1064. drinkable = -1;
  1065. icon = "icons\ico_cookedFish.paa";
  1066. };
  1067.  
  1068. class mullet_raw {
  1069. variable = "mulletRaw";
  1070. displayName = "STR_Item_MulletRaw";
  1071. weight = 4;
  1072. buyPrice = -1;
  1073. sellPrice = 100;
  1074. illegal = false;
  1075. edible = -1;
  1076. drinkable = -1;
  1077. icon = "icons\ico_mulletRaw.paa";
  1078. };
  1079.  
  1080. class mullet {
  1081. variable = "mullet";
  1082. displayName = "STR_Item_Mullet";
  1083. weight = 2;
  1084. buyPrice = 7;
  1085. sellPrice = 180;
  1086. illegal = false;
  1087. edible = 80;
  1088. drinkable = -1;
  1089. icon = "icons\ico_cookedFish.paa";
  1090. };
  1091.  
  1092. class catshark_raw {
  1093. variable = "catsharkRaw";
  1094. displayName = "STR_Item_CatSharkRaw";
  1095. weight = 6;
  1096. buyPrice = -1;
  1097. sellPrice = 200;
  1098. illegal = false;
  1099. edible = -1;
  1100. drinkable = -1;
  1101. icon = "icons\ico_catsharkRaw.paa";
  1102. };
  1103.  
  1104. class catshark {
  1105. variable = "catshark";
  1106. displayName = "STR_Item_CatShark";
  1107. weight = 3;
  1108. buyPrice = 12;
  1109. sellPrice = 350;
  1110. illegal = false;
  1111. edible = 100;
  1112. drinkable = -1;
  1113. icon = "icons\ico_cookedFish.paa";
  1114. };
  1115.  
  1116. class turtle_raw {
  1117. variable = "turtleRaw";
  1118. displayName = "STR_Item_TurtleRaw";
  1119. weight = 6;
  1120. buyPrice = -1;
  1121. sellPrice = 250;
  1122. illegal = true;
  1123. edible = -1;
  1124. drinkable = -1;
  1125. icon = "icons\ico_turtleRaw.paa";
  1126. };
  1127.  
  1128. class turtle_soup {
  1129. variable = "turtleSoup";
  1130. displayName = "STR_Item_TurtleSoup";
  1131. weight = 2;
  1132. buyPrice = 5;
  1133. sellPrice = 500;
  1134. illegal = false;
  1135. edible = 100;
  1136. drinkable = -1;
  1137. icon = "icons\ico_turtleSoup.paa";
  1138. };
  1139.  
  1140. class hen_raw {
  1141. variable = "henRaw";
  1142. displayName = "STR_Item_HenRaw";
  1143. weight = 1;
  1144. buyPrice = -1;
  1145. sellPrice = 5;
  1146. illegal = false;
  1147. edible = -1;
  1148. drinkable = -1;
  1149. icon = "icons\ico_wholeChickenRaw.paa";
  1150. };
  1151.  
  1152. class hen {
  1153. variable = "hen";
  1154. displayName = "STR_Item_Hen";
  1155. weight = 1;
  1156. buyPrice = 4;
  1157. sellPrice = 3;
  1158. illegal = false;
  1159. edible = 65;
  1160. drinkable = -1;
  1161. icon = "icons\ico_wholeChicken.paa";
  1162. };
  1163.  
  1164. class rooster_raw {
  1165. variable = "roosterRaw";
  1166. displayName = "STR_Item_RoosterRaw";
  1167. weight = 1;
  1168. buyPrice = -1;
  1169. sellPrice = 5;
  1170. illegal = false;
  1171. edible = -1;
  1172. drinkable = -1;
  1173. icon = "icons\ico_chickenDrumstickRaw.paa";
  1174. };
  1175.  
  1176. class rooster {
  1177. variable = "rooster";
  1178. displayName = "STR_Item_Rooster";
  1179. weight = 115;
  1180. buyPrice = 4;
  1181. sellPrice = 1;
  1182. illegal = false;
  1183. edible = 45;
  1184. drinkable = -1;
  1185. icon = "icons\ico_chickenDrumstick.paa";
  1186. };
  1187.  
  1188. class sheep_raw {
  1189. variable = "sheepRaw";
  1190. displayName = "STR_Item_SheepRaw";
  1191. weight = 2;
  1192. buyPrice = -1;
  1193. sellPrice = 25;
  1194. illegal = false;
  1195. edible = -1;
  1196. drinkable = -1;
  1197. icon = "icons\ico_lambChopRaw.paa";
  1198. };
  1199.  
  1200. class sheep {
  1201. variable = "sheep";
  1202. displayName = "STR_Item_Sheep";
  1203. weight = 2;
  1204. buyPrice = 10;
  1205. sellPrice = 5;
  1206. illegal = false;
  1207. edible = 100;
  1208. drinkable = -1;
  1209. icon = "icons\ico_lambChop.paa";
  1210. };
  1211.  
  1212. class goat_raw {
  1213. variable = "goatRaw";
  1214. displayName = "STR_Item_GoatRaw";
  1215. weight = 2;
  1216. buyPrice = -1;
  1217. sellPrice = 25;
  1218. illegal = false;
  1219. edible = -1;
  1220. drinkable = -1;
  1221. icon = "icons\ico_muttonLegRaw.paa";
  1222. };
  1223.  
  1224. class goat {
  1225. variable = "goat";
  1226. displayName = "STR_Item_Goat";
  1227. weight = 2;
  1228. buyPrice = 5;
  1229. sellPrice = 10;
  1230. illegal = false;
  1231. edible = 100;
  1232. drinkable = -1;
  1233. icon = "icons\ico_muttonLeg.paa";
  1234.  
  1235. //nouveau farme
  1236.  
  1237. };
  1238.  
  1239. class pierres_brute {
  1240. variable = "pierres_brute";
  1241. displayName = "STR_pierres_brute";
  1242. weight = 5;
  1243. buyPrice = 5000;
  1244. sellPrice = -1;
  1245. illegal = false;
  1246. edible = -1;
  1247. drinkable = -1;
  1248. icon = "icons\pierres_brute.paa";
  1249.  
  1250.  
  1251. };
  1252.  
  1253. class diamant {
  1254. variable = "diamant";
  1255. displayName = "STR_diamant";
  1256. weight = 2;
  1257. buyPrice = -1;
  1258. sellPrice = -1;
  1259. illegal = false;
  1260. edible = -1;
  1261. drinkable = -1;
  1262. icon = "icons\diamant.paa";
  1263.  
  1264. };
  1265. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement