Advertisement
Guest User

Untitled

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