Advertisement
Guest User

Untitled

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