Advertisement
Guest User

vitems

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