Advertisement
Guest User

it

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