Advertisement
mwam77

Untitled

Aug 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.32 KB | None | 0 0
  1. class VirtualItems {
  2. //Virtual Items
  3.  
  4. //Misc
  5. class pickaxe {
  6. variable = "pickaxe";
  7. displayName = "STR_Item_Pickaxe";
  8. weight = 2;
  9. buyPrice = 750;
  10. sellPrice = 350;
  11. illegal = false;
  12. edible = -1;
  13. icon = "icons\ico_pickaxe.paa";
  14. };
  15.  
  16. class defibrillator {
  17. variable = "defibrillator";
  18. displayName = "STR_Item_Defibrillator";
  19. weight = 4;
  20. buyPrice = 900;
  21. sellPrice = 450;
  22. illegal = false;
  23. edible = -1;
  24. icon = "icons\ico_defibrillator.paa";
  25. };
  26.  
  27. class toolkit {
  28. variable = "toolkit";
  29. displayName = "STR_Item_Toolkit";
  30. weight = 4;
  31. buyPrice = 350;
  32. sellPrice = 100;
  33. illegal = false;
  34. edible = -1;
  35. icon = "\a3\weapons_f\items\data\UI\gear_toolkit_ca.paa";
  36. };
  37.  
  38. class fuelEmpty {
  39. variable = "fuelEmpty";
  40. displayName = "STR_Item_FuelE";
  41. weight = 2;
  42. buyPrice = -1;
  43. sellPrice = 10;
  44. illegal = false;
  45. edible = -1;
  46. icon = "icons\ico_fuelEmpty.paa";
  47. };
  48.  
  49. class fuelFull {
  50. variable = "fuelFull";
  51. displayName = "STR_Item_FuelF";
  52. weight = 5;
  53. buyPrice = 850;
  54. sellPrice = 500;
  55. illegal = false;
  56. edible = -1;
  57. icon = "icons\ico_fuel.paa";
  58. };
  59.  
  60. class spikeStrip {
  61. variable = "spikeStrip";
  62. displayName = "STR_Item_SpikeStrip";
  63. weight = 15;
  64. buyPrice = 2500;
  65. sellPrice = 1200;
  66. illegal = true;
  67. edible = -1;
  68. icon = "icons\ico_spikeStrip.paa";
  69. };
  70.  
  71. class lockpick {
  72. variable = "lockpick";
  73. displayName = "STR_Item_Lockpick";
  74. weight = 1;
  75. buyPrice = 150;
  76. sellPrice = 75;
  77. illegal = true;
  78. edible = -1;
  79. icon = "icons\ico_lockpick.paa";
  80. };
  81.  
  82. class goldbar {
  83. variable = "goldBar";
  84. displayName = "STR_Item_GoldBar";
  85. weight = 12;
  86. buyPrice = -1;
  87. sellPrice = 95000;
  88. illegal = true;
  89. edible = -1;
  90. icon = "icons\ico_goldBar.paa";
  91. };
  92.  
  93. class blastingcharge {
  94. variable = "blastingCharge";
  95. displayName = "STR_Item_BCharge";
  96. weight = 15;
  97. buyPrice = 35000;
  98. sellPrice = 10000;
  99. illegal = true;
  100. edible = -1;
  101. icon = "icons\ico_blastingCharge.paa";
  102. };
  103.  
  104. class boltcutter {
  105. variable = "boltCutter";
  106. displayName = "STR_Item_BCutter";
  107. weight = 5;
  108. buyPrice = 7500;
  109. sellPrice = 1000;
  110. illegal = true;
  111. edible = -1;
  112. icon = "icons\ico_boltCutter.paa";
  113. };
  114.  
  115. class defusekit {
  116. variable = "defuseKit";
  117. displayName = "STR_Item_DefuseKit";
  118. weight = 2;
  119. buyPrice = 2500;
  120. sellPrice = 2000;
  121. illegal = true;
  122. edible = -1;
  123. icon = "icons\ico_defuseKit.paa";
  124. };
  125.  
  126. class storagesmall {
  127. variable = "storageSmall";
  128. displayName = "STR_Item_StorageBS";
  129. weight = 5;
  130. buyPrice = 75000;
  131. sellPrice = 50000;
  132. illegal = false;
  133. edible = -1;
  134. icon = "icons\ico_storageSmall.paa";
  135. };
  136.  
  137. class storagebig {
  138. variable = "storageBig";
  139. displayName = "STR_Item_StorageBL";
  140. weight = 10;
  141. buyPrice = 150000;
  142. sellPrice = 125000;
  143. illegal = false;
  144. edible = -1;
  145. icon = "icons\ico_storageBig.paa";
  146. };
  147.  
  148. //Mined Items
  149. class oil_unprocessed {
  150. variable = "oilUnprocessed";
  151. displayName = "STR_Item_OilU";
  152. weight = 7;
  153. buyPrice = -1;
  154. sellPrice = -1;
  155. illegal = false;
  156. edible = -1;
  157. icon = "icons\ico_oilUnprocessed.paa";
  158. };
  159.  
  160. class oil_processed {
  161. variable = "oilProcessed";
  162. displayName = "STR_Item_OilP";
  163. weight = 6;
  164. buyPrice = -1;
  165. sellPrice = 3200;
  166. illegal = false;
  167. edible = -1;
  168. icon = "icons\ico_oilProcessed.paa";
  169. };
  170.  
  171. class copper_unrefined {
  172. variable = "copperUnrefined";
  173. displayName = "STR_Item_CopperOre";
  174. weight = 4;
  175. buyPrice = -1;
  176. sellPrice = -1;
  177. illegal = false;
  178. edible = -1;
  179. icon = "icons\ico_copperOre.paa";
  180. };
  181.  
  182. class copper_refined {
  183. variable = "copperRefined";
  184. displayName = "STR_Item_CopperIngot";
  185. weight = 3;
  186. buyPrice = -1;
  187. sellPrice = -1;
  188. illegal = false;
  189. edible = -1;
  190. icon = "icons\ico_copper.paa";
  191. };
  192.  
  193. class iron_unrefined {
  194. variable = "ironUnrefined";
  195. displayName = "STR_Item_IronOre";
  196. weight = 5;
  197. buyPrice = -1;
  198. sellPrice = -1;
  199. illegal = false;
  200. edible = -1;
  201. icon = "icons\ico_ironOre.paa";
  202. };
  203.  
  204. class iron_refined {
  205. variable = "ironRefined";
  206. displayName = "STR_Item_IronIngot";
  207. weight = 3;
  208. buyPrice = -1;
  209. sellPrice = 3200;
  210. illegal = false;
  211. edible = -1;
  212. icon = "icons\ico_iron.paa";
  213. };
  214.  
  215. class salt_unrefined {
  216. variable = "saltUnrefined";
  217. displayName = "STR_Item_Salt";
  218. weight = 3;
  219. buyPrice = -1;
  220. sellPrice = -1;
  221. illegal = false;
  222. edible = -1;
  223. icon = "icons\ico_saltUnprocessed.paa";
  224. };
  225.  
  226. class salt_refined {
  227. variable = "saltRefined";
  228. displayName = "STR_Item_SaltR";
  229. weight = 1;
  230. buyPrice = -1;
  231. sellPrice = 1450;
  232. illegal = false;
  233. edible = -1;
  234. icon = "icons\ico_saltProcessed.paa";
  235. };
  236.  
  237. class sand {
  238. variable = "sand";
  239. displayName = "STR_Item_Sand";
  240. weight = 3;
  241. buyPrice = -1;
  242. sellPrice = -1;
  243. illegal = false;
  244. edible = -1;
  245. icon = "icons\ico_sand.paa";
  246. };
  247.  
  248. class glass {
  249. variable = "glass";
  250. displayName = "STR_Item_Glass";
  251. weight = 1;
  252. buyPrice = -1;
  253. sellPrice = 1450;
  254. illegal = false;
  255. edible = -1;
  256. icon = "icons\ico_glass.paa";
  257. };
  258.  
  259. class diamond_uncut {
  260. variable = "diamondUncut";
  261. displayName = "STR_Item_DiamondU";
  262. weight = 4;
  263. buyPrice = -1;
  264. sellPrice = 750;
  265. illegal = false;
  266. edible = -1;
  267. icon = "icons\ico_diamondUncut.paa";
  268. };
  269.  
  270. class diamond_cut {
  271. variable = "diamondCut";
  272. displayName = "STR_Item_DiamondC";
  273. weight = 2;
  274. buyPrice = -1;
  275. sellPrice = 2500;
  276. illegal = false;
  277. edible = -1;
  278. icon = "icons\ico_diamondCut.paa";
  279. };
  280.  
  281. class rock {
  282. variable = "rock";
  283. displayName = "STR_Item_Rock";
  284. weight = 6;
  285. buyPrice = -1;
  286. sellPrice = -1;
  287. illegal = false;
  288. edible = -1;
  289. icon = "icons\ico_rock.paa";
  290. };
  291.  
  292. class cement {
  293. variable = "cement";
  294. displayName = "STR_Item_CementBag";
  295. weight = 5;
  296. buyPrice = -1;
  297. sellPrice = 1950;
  298. illegal = false;
  299. edible = -1;
  300. icon = "icons\ico_cement.paa";
  301. };
  302.  
  303. //Drugs
  304. class heroin_unprocessed {
  305. variable = "heroinUnprocessed";
  306. displayName = "STR_Item_HeroinU";
  307. weight = 6;
  308. buyPrice = -1;
  309. sellPrice = -1;
  310. illegal = true;
  311. edible = -1;
  312. icon = "icons\ico_heroinUnprocessed.paa";
  313. processedItem = "heroin_processed";
  314. };
  315.  
  316. class heroin_processed {
  317. variable = "heroinProcessed";
  318. displayName = "STR_Item_HeroinP";
  319. weight = 4;
  320. buyPrice = 3500;
  321. sellPrice = 3000;
  322. illegal = true;
  323. edible = -1;
  324. icon = "icons\ico_heroinProcessed.paa";
  325. };
  326.  
  327. class cannabis {
  328. variable = "cannabis";
  329. displayName = "STR_Item_Cannabis";
  330. weight = 4;
  331. buyPrice = -1;
  332. sellPrice = -1;
  333. illegal = true;
  334. edible = -1;
  335. icon = "icons\ico_cannabis.paa";
  336. processedItem = "marijuana";
  337. };
  338.  
  339. class marijuana {
  340. variable = "marijuana";
  341. displayName = "STR_Item_Marijuana";
  342. weight = 3;
  343. buyPrice = 2800;
  344. sellPrice = 2350;
  345. illegal = true;
  346. edible = -1;
  347. icon = "icons\ico_marijuana.paa";
  348. };
  349.  
  350. class cocaine_unprocessed {
  351. variable = "cocaineUnprocessed";
  352. displayName = "STR_Item_CocaineU";
  353. weight = 6;
  354. buyPrice = -1;
  355. sellPrice = -1;
  356. illegal = true;
  357. edible = -1;
  358. icon = "icons\ico_cocaineUnprocessed.paa";
  359. processedItem = "cocaine_processed";
  360. };
  361.  
  362. class cocaine_processed {
  363. variable = "cocaineProcessed";
  364. displayName = "STR_Item_CocaineP";
  365. weight = 4;
  366. buyPrice = -1;
  367. sellPrice = 9000;
  368. illegal = true;
  369. edible = -1;
  370. icon = "icons\ico_cocaineProcessed.paa";
  371. };
  372.  
  373. //Drink
  374. class redgull {
  375. variable = "redgull";
  376. displayName = "STR_Item_RedGull";
  377. weight = 1;
  378. buyPrice = 1500;
  379. sellPrice = 200;
  380. illegal = false;
  381. edible = 100;
  382. icon = "icons\ico_redgull.paa";
  383. };
  384.  
  385. class coffee {
  386. variable = "coffee";
  387. displayName = "STR_Item_Coffee";
  388. weight = 1;
  389. buyPrice = 10;
  390. sellPrice = 5;
  391. illegal = false;
  392. edible = 100;
  393. icon = "icons\ico_coffee.paa";
  394. };
  395.  
  396. class waterBottle {
  397. variable = "waterBottle";
  398. displayName = "STR_Item_WaterBottle";
  399. weight = 1;
  400. buyPrice = 10;
  401. sellPrice = 5;
  402. illegal = false;
  403. edible = 100;
  404. icon = "icons\ico_waterBottle.paa";
  405. };
  406.  
  407. //Food
  408. class apple {
  409. variable = "apple";
  410. displayName = "STR_Item_Apple";
  411. weight = 1;
  412. buyPrice = 65;
  413. sellPrice = -1;
  414. illegal = false;
  415. edible = 10;
  416. icon = "icons\ico_apple.paa";
  417. };
  418.  
  419. class peach {
  420. variable = "peach";
  421. displayName = "STR_Item_Peach";
  422. weight = 1;
  423. buyPrice = 68;
  424. sellPrice = 60;
  425. illegal = false;
  426. edible = 10;
  427. icon = "icons\ico_peach.paa";
  428. };
  429.  
  430. class tbacon {
  431. variable = "tbacon";
  432. displayName = "STR_Item_TBacon";
  433. weight = 1;
  434. buyPrice = 75;
  435. sellPrice = 25;
  436. illegal = false;
  437. edible = 40;
  438. icon = "icons\ico_tBacon.paa";
  439. };
  440.  
  441. class donuts {
  442. variable = "donuts";
  443. displayName = "STR_Item_Donuts";
  444. weight = 1;
  445. buyPrice = 120;
  446. sellPrice = 60;
  447. illegal = false;
  448. edible = 30;
  449. icon = "icons\ico_donuts.paa";
  450. };
  451.  
  452. class rabbit_raw {
  453. variable = "rabbitRaw";
  454. displayName = "STR_Item_RabbitRaw";
  455. weight = 2;
  456. buyPrice = -1;
  457. sellPrice = 95;
  458. illegal = false;
  459. edible = -1;
  460. icon = "icons\ico_rabbitRaw.paa";
  461. };
  462.  
  463. class rabbit {
  464. variable = "rabbit";
  465. displayName = "STR_Item_Rabbit";
  466. weight = 1;
  467. buyPrice = 150;
  468. sellPrice = 115;
  469. illegal = false;
  470. edible = 20;
  471. icon = "icons\ico_rabbit.paa";
  472. };
  473.  
  474. class salema_raw {
  475. variable = "salemaRaw";
  476. displayName = "STR_Item_SalemaRaw";
  477. weight = 2;
  478. buyPrice = -1;
  479. sellPrice = 45;
  480. illegal = false;
  481. edible = -1;
  482. icon = "icons\ico_salemaRaw.paa";
  483. };
  484.  
  485. class salema {
  486. variable = "salema";
  487. displayName = "STR_Item_Salema";
  488. weight = 1;
  489. buyPrice = 75;
  490. sellPrice = 55;
  491. illegal = false;
  492. edible = 30;
  493. icon = "icons\ico_cookedFish.paa";
  494. };
  495.  
  496. class ornate_raw {
  497. variable = "ornateRaw";
  498. displayName = "STR_Item_OrnateRaw";
  499. weight = 2;
  500. buyPrice = -1;
  501. sellPrice = 40;
  502. illegal = false;
  503. edible = -1;
  504. icon = "icons\ico_ornateRaw.paa";
  505. };
  506.  
  507. class ornate {
  508. variable = "ornate";
  509. displayName = "STR_Item_Ornate";
  510. weight = 1;
  511. buyPrice = 175;
  512. sellPrice = 150;
  513. illegal = false;
  514. edible = 25;
  515. icon = "icons\ico_cookedFish.paa";
  516. };
  517.  
  518. class mackerel_raw {
  519. variable = "mackerelRaw";
  520. displayName = "STR_Item_MackerelRaw";
  521. weight = 4;
  522. buyPrice = -1;
  523. sellPrice = 175;
  524. illegal = false;
  525. edible = -1;
  526. icon = "icons\ico_mackerelRaw.paa";
  527. };
  528.  
  529. class mackerel {
  530. variable = "mackerel";
  531. displayName = "STR_Item_Mackerel";
  532. weight = 2;
  533. buyPrice = 250;
  534. sellPrice = 200;
  535. illegal = false;
  536. edible = 30;
  537. icon = "icons\ico_cookedFish.paa";
  538. };
  539.  
  540. class tuna_raw {
  541. variable = "tunaRaw";
  542. displayName = "STR_Item_TunaRaw";
  543. weight = 6;
  544. buyPrice = -1;
  545. sellPrice = 700;
  546. illegal = false;
  547. edible = -1;
  548. icon = "icons\ico_tunaRaw.paa";
  549. };
  550.  
  551. class tuna {
  552. variable = "tuna";
  553. displayName = "STR_Item_Tuna";
  554. weight = 3;
  555. buyPrice = 1250;
  556. sellPrice = 1000;
  557. illegal = false;
  558. edible = 100;
  559. icon = "icons\ico_cookedFish.paa";
  560. };
  561.  
  562. class mullet_raw {
  563. variable = "mulletRaw";
  564. displayName = "STR_Item_MulletRaw";
  565. weight = 4;
  566. buyPrice = -1;
  567. sellPrice = 250;
  568. illegal = false;
  569. edible = -1;
  570. icon = "icons\ico_mulletRaw.paa";
  571. };
  572.  
  573. class mullet {
  574. variable = "mullet";
  575. displayName = "STR_Item_Mullet";
  576. weight = 2;
  577. buyPrice = 600;
  578. sellPrice = 400;
  579. illegal = false;
  580. edible = 80;
  581. icon = "icons\ico_cookedFish.paa";
  582. };
  583.  
  584. class catshark_raw {
  585. variable = "catsharkRaw";
  586. displayName = "STR_Item_CatSharkRaw";
  587. weight = 6;
  588. buyPrice = -1;
  589. sellPrice = 300;
  590. illegal = false;
  591. edible = -1;
  592. icon = "icons\ico_catsharkRaw.paa";
  593. };
  594.  
  595. class catshark {
  596. variable = "catshark";
  597. displayName = "STR_Item_CatShark";
  598. weight = 3;
  599. buyPrice = 750;
  600. sellPrice = 500;
  601. illegal = false;
  602. edible = 100;
  603. icon = "icons\ico_cookedFish.paa";
  604. };
  605.  
  606. class turtle_raw {
  607. variable = "turtleRaw";
  608. displayName = "STR_Item_TurtleRaw";
  609. weight = 6;
  610. buyPrice = -1;
  611. sellPrice = 3000;
  612. illegal = true;
  613. edible = -1;
  614. icon = "icons\ico_turtleRaw.paa";
  615. };
  616.  
  617. class turtle_soup {
  618. variable = "turtleSoup";
  619. displayName = "STR_Item_TurtleSoup";
  620. weight = 2;
  621. buyPrice = 1000;
  622. sellPrice = 750;
  623. illegal = false;
  624. edible = 100;
  625. icon = "icons\ico_turtleSoup.paa";
  626. };
  627.  
  628. class hen_raw {
  629. variable = "henRaw";
  630. displayName = "STR_Item_HenRaw";
  631. weight = 1;
  632. buyPrice = -1;
  633. sellPrice = 65;
  634. illegal = false;
  635. edible = -1;
  636. icon = "icons\ico_wholeChickenRaw.paa";
  637. };
  638.  
  639. class hen {
  640. variable = "hen";
  641. displayName = "STR_Item_Hen";
  642. weight = 1;
  643. buyPrice = 115;
  644. sellPrice = 85;
  645. illegal = false;
  646. edible = 65;
  647. icon = "icons\ico_wholeChicken.paa";
  648. };
  649.  
  650. class rooster_raw {
  651. variable = "roosterRaw";
  652. displayName = "STR_Item_RoosterRaw";
  653. weight = 1;
  654. buyPrice = -1;
  655. sellPrice = 65;
  656. illegal = false;
  657. edible = -1;
  658. icon = "icons\ico_chickenDrumstickRaw.paa";
  659. };
  660.  
  661. class rooster {
  662. variable = "rooster";
  663. displayName = "STR_Item_Rooster";
  664. weight = 115;
  665. buyPrice = 90;
  666. sellPrice = 85;
  667. illegal = false;
  668. edible = 45;
  669. icon = "icons\ico_chickenDrumstick.paa";
  670. };
  671.  
  672. class sheep_raw {
  673. variable = "sheepRaw";
  674. displayName = "STR_Item_SheepRaw";
  675. weight = 2;
  676. buyPrice = -1;
  677. sellPrice = 95;
  678. illegal = false;
  679. edible = -1;
  680. icon = "icons\ico_lambChopRaw.paa";
  681. };
  682.  
  683. class sheep {
  684. variable = "sheep";
  685. displayName = "STR_Item_Sheep";
  686. weight = 2;
  687. buyPrice = 155;
  688. sellPrice = 115;
  689. illegal = false;
  690. edible = 100;
  691. icon = "icons\ico_lambChop.paa";
  692. };
  693.  
  694. class goat_raw {
  695. variable = "goatRaw";
  696. displayName = "STR_Item_GoatRaw";
  697. weight = 2;
  698. buyPrice = -1;
  699. sellPrice = 115;
  700. illegal = false;
  701. edible = -1;
  702. icon = "icons\ico_muttonLegRaw.paa";
  703. };
  704.  
  705. class goat {
  706. variable = "goat";
  707. displayName = "STR_Item_Goat";
  708. weight = 2;
  709. buyPrice = 175;
  710. sellPrice = 135;
  711. illegal = false;
  712. edible = 100;
  713. icon = "icons\ico_muttonLeg.paa";
  714. };
  715. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement