Advertisement
Guest User

sss

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