Advertisement
D6Bell

config_vItems.hpp

Jun 14th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 38.61 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", "biere", "tbacon", "pickaxe", "toolkit", "fuelFull", "peach", "storagesmall", "storagebig", "rabbit_raw", "hen_raw", "rooster_raw", "sheep_raw", "goat_raw", "storagesmall", "storagebig", "furnituredesk", "furniturechair", "furniturebagshort", "furnitureopenlaptop", "furniturecampingtable", "furnituresleepingbag", "furnituresleepingbagblue", "furnituresleepingbagbrown", "furnituresunchair", "furnituresunchairgreen", "furnituretenta", "furnituremapaltis", "furniturepalletvert", "furnituremetalrack", "furniturewoodblue", "furniturefmradio", "furnitureportgen", "furnituretarget", "furniturewoodtable" };
  17.     };
  18.     class repair {
  19.         name = "STR_Shops_Repair";
  20.         side = "";
  21.         conditions = "";
  22.         items[] = { "toolkit"};
  23.     };
  24.  
  25.     class med_market {
  26.         name = "STR_Shops_Market";
  27.         side = "med";
  28.         conditions = "";
  29.         items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "toolkit", "fuelFull", "peach", "defibrillator" };
  30.     };
  31.  
  32.     class rebel {
  33.         name = "STR_Shops_Rebel";
  34.         side = "civ";
  35.         conditions = "license_civ_rebel";
  36.         items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "toolkit", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  37.     };
  38.  
  39.     class gang {
  40.         name = "STR_Shops_Gang";
  41.         side = "civ";
  42.         conditions = "";
  43.         items[] = { "waterBottle", "rabbit", "apple", "redgull", "tbacon", "lockpick", "pickaxe", "toolkit", "fuelFull", "peach", "boltcutter", "blastingcharge" };
  44.     };
  45.  
  46.     class wongs {
  47.         name = "STR_Shops_Wongs";
  48.         side = "civ";
  49.         conditions = "";
  50.         items[] = { "turtle_soup", "turtle_raw" };
  51.     };
  52.  
  53.     class coffee {
  54.         name = "STR_Shops_Coffee";
  55.         side = "civ";
  56.         conditions = "";
  57.         items[] = { "coffee", "donuts" };
  58.     };
  59.  
  60.     class f_station_coffee {
  61.         name = "STR_Shop_Station_Coffee";
  62.         side = "";
  63.         conditions = "";
  64.         items[] = { "coffee", "donuts", "redgull", "toolkit", "fuelFull"};
  65.     };
  66.  
  67.     class drugdealer {
  68.         name = "STR_Shops_DrugDealer";
  69.         side = "civ";
  70.         conditions = "";
  71.         items[] = { "cocaine_processed", "heroin_processed", "marijuana", "graine_pavot_opium", "cannabis_seed" };
  72.     };
  73.  
  74.     class oil {
  75.         name = "STR_Shops_Oil";
  76.         side = "civ";
  77.         conditions = "";
  78.         items[] = { "oil_processed", "pickaxe", "fuelFull" };
  79.     };
  80.  
  81.     class fishmarket {
  82.         name = "STR_Shops_FishMarket";
  83.         side = "civ";
  84.         conditions = "";
  85.         items[] = { "salema_raw", "salema", "ornate_raw", "ornate", "mackerel_raw", "mackerel", "tuna_raw", "tuna", "mullet_raw", "mullet", "catshark_raw", "catshark" };
  86.     };
  87.  
  88.     class glass {
  89.         name = "STR_Shops_Glass";
  90.         side = "civ";
  91.         conditions = "";
  92.         items[] = { "glass" };
  93.     };
  94.  
  95.     class iron  {
  96.         name = "STR_Shops_Minerals";
  97.         side = "civ";
  98.         conditions = "";
  99.         items[] = { "iron_refined", "copper_refined" };
  100.     };
  101.  
  102.     class diamond {
  103.         name = "STR_Shops_Diamond";
  104.         side = "civ";
  105.         conditions = "";
  106.         items[] = { "diamond_uncut", "diamond_cut" };
  107.     };
  108.  
  109.     class salt {
  110.         name = "STR_Shops_Salt";
  111.         side = "civ";
  112.         conditions = "";
  113.         items[] = { "salt_refined" };
  114.     };
  115.  
  116.     class cement {
  117.         name = "STR_Shops_Cement";
  118.         side = "civ";
  119.         conditions = "";
  120.         items[] = { "cement" };
  121.     };
  122.  
  123.     class gold {
  124.         name = "STR_Shops_Gold";
  125.         side = "civ";
  126.         conditions = "";
  127.         items[] = { "goldbar" };
  128.     };
  129.  
  130.     class cop {
  131.         name = "STR_Shops_Cop";
  132.         side = "cop";
  133.         conditions = "";
  134.         items[] = { "donuts", "coffee", "spikeStrip", "waterBottle", "rabbit", "apple", "redgull", "toolkit", "fuelFull", "defusekit", "defibrillator", "Alcootest", "Test_drugs" };
  135.     };
  136.     class fontaine {
  137.         name = "STR_Shops_Fountain";
  138.         side = "";
  139.         conditions = "";
  140.         items[] = { "gobletEau" };
  141.     };
  142.     class vendingMachine {
  143.         name = "STR_Shop_VendingMachine";
  144.         side = "";
  145.         conditions = "";
  146.         items[] = { "waterBottle", "redgull", "coffee", "apple", "donuts", "peach" };
  147.     };
  148.  
  149.     // Licences Leveling   
  150.     class mineur1 {
  151.         name = "STR_Shops_Reclote_de_pierre";
  152.         side = "";
  153.         condition = "";
  154.         items[] = { "recoltePierre" };
  155.     };
  156.    
  157.     // Graines
  158.     class graines {
  159.         name = "Graines";
  160.         side = "";
  161.         condition = "";
  162.         items[] = { "arrosoir", "desherbant", "graine_tournesol", "graine_soja", "graine_citrouille", "graine_ble", "graine_cotton", "graine_mais", "graine_pavot" };
  163.     };
  164.    
  165.     // Farmer
  166.     class cereales {
  167.         name = "STR_Shop_Moulin";
  168.         side = "civ";
  169.         condition = "";
  170.         items[] = { "tournesol", "soja", "citrouille", "ble", "Pavot", "cotton", "mais"};
  171.     };
  172.        
  173.     //Divers
  174.     class chimique {
  175.         name = "STR_Shop_Chimique";
  176.         side = "civ";
  177.         condition = "";
  178.         items[] = {"Anhydride_Acetique"};
  179.     }
  180. };
  181.  
  182.  
  183.  
  184.    
  185.  
  186. /*
  187. *    CLASS:
  188. *        variable = Variable Name
  189. *        displayName = Item Name
  190. *        weight = Item Weight
  191. *        buyPrice = Item Buy Price
  192. *        sellPrice = Item Sell Price
  193. *        illegal = Illegal Item
  194. *        edible = Item Edible (-1 = Disabled)
  195. *        icon = Item Icon
  196. *        processedItem = Processed Item
  197. */
  198. class VirtualItems {
  199.     //Virtual Items
  200.  
  201.     //Misc
  202.     class pickaxe {
  203.         variable = "pickaxe";
  204.         displayName = "STR_Item_Pickaxe";
  205.         weight = 2;
  206.         buyPrice = 75;
  207.         sellPrice = 35;
  208.         illegal = false;
  209.         edible = -1;
  210.         icon = "icons\ico_pickaxe.paa";
  211.     };
  212.  
  213.     class defibrillator {
  214.         variable = "defibrillator";
  215.         displayName = "STR_Item_Defibrillator";
  216.         weight = 4;
  217.         buyPrice = 90;
  218.         sellPrice = 45;
  219.         illegal = false;
  220.         edible = -1;
  221.         icon = "icons\ico_defibrillator.paa";
  222.     };
  223.    
  224.     class Alcootest {
  225.         variable = "Alcootest";
  226.         displayName = "STR_Item_Alcootest";
  227.         weight = 5;
  228.         buyPrice = 90;
  229.         sellPrice = 45;
  230.         illegal = false;
  231.         edible = -1;
  232.         icon = "icons\ico_ethylotest.paa";
  233.     };
  234.    
  235.     class Test_drugs {
  236.         variable = "Test_drugs";
  237.         displayName = "STR_Item_Test_drugs";
  238.         weight = 5;
  239.         buyPrice = 90;
  240.         sellPrice = 45;
  241.         illegal = false;
  242.         edible = -1;
  243.         icon = "icons\ico_drogueTest.paa";
  244.     };
  245.  
  246.     class toolkit {
  247.         variable = "toolkit";
  248.         displayName = "STR_Item_Toolkit";
  249.         weight = 4;
  250.         buyPrice = 350;
  251.         sellPrice = 100;
  252.         illegal = false;
  253.         edible = -1;
  254.         icon = "\a3\weapons_f\items\data\UI\gear_toolkit_ca.paa";
  255.     };
  256.  
  257.     class fuelEmpty {
  258.         variable = "fuelEmpty";
  259.         displayName = "STR_Item_FuelE";
  260.         weight = 2;
  261.         buyPrice = -1;
  262.         sellPrice = 10;
  263.         illegal = false;
  264.         edible = -1;
  265.         icon = "icons\ico_fuelEmpty.paa";
  266.     };
  267.  
  268.     class fuelFull {
  269.         variable = "fuelFull";
  270.         displayName = "STR_Item_FuelF";
  271.         weight = 5;
  272.         buyPrice = 850;
  273.         sellPrice = 500;
  274.         illegal = false;
  275.         edible = -1;
  276.         icon = "icons\ico_fuel.paa";
  277.     };
  278.  
  279.     class spikeStrip {
  280.         variable = "spikeStrip";
  281.         displayName = "STR_Item_SpikeStrip";
  282.         weight = 15;
  283.         buyPrice = 2500;
  284.         sellPrice = 1200;
  285.         illegal = true;
  286.         edible = -1;
  287.         icon = "icons\ico_spikeStrip.paa";
  288.     };
  289.  
  290.     class lockpick {
  291.         variable = "lockpick";
  292.         displayName = "STR_Item_Lockpick";
  293.         weight = 1;
  294.         buyPrice = 150;
  295.         sellPrice = 75;
  296.         illegal = true;
  297.         edible = -1;
  298.         icon = "icons\ico_lockpick.paa";
  299.     };
  300.  
  301.     class goldbar {
  302.         variable = "goldBar";
  303.         displayName = "STR_Item_GoldBar";
  304.         weight = 12;
  305.         buyPrice = -1;
  306.         sellPrice = 95000;
  307.         illegal = true;
  308.         edible = -1;
  309.         icon = "icons\ico_goldBar.paa";
  310.     };
  311.  
  312.     class blastingcharge {
  313.         variable = "blastingCharge";
  314.         displayName = "STR_Item_BCharge";
  315.         weight = 15;
  316.         buyPrice = 35000;
  317.         sellPrice = 10000;
  318.         illegal = true;
  319.         edible = -1;
  320.         icon = "icons\ico_blastingCharge.paa";
  321.     };
  322.  
  323.     class boltcutter {
  324.         variable = "boltCutter";
  325.         displayName = "STR_Item_BCutter";
  326.         weight = 5;
  327.         buyPrice = 7500;
  328.         sellPrice = 1000;
  329.         illegal = true;
  330.         edible = -1;
  331.         icon = "icons\ico_boltCutter.paa";
  332.     };
  333.  
  334.     class defusekit {
  335.         variable = "defuseKit";
  336.         displayName = "STR_Item_DefuseKit";
  337.         weight = 2;
  338.         buyPrice = 2500;
  339.         sellPrice = 2000;
  340.         illegal = true;
  341.         edible = -1;
  342.         icon = "icons\ico_defuseKit.paa";
  343.     };
  344.  
  345.     class storagesmall {
  346.         variable = "storageSmall";
  347.         displayName = "STR_Item_StorageBS";
  348.         weight = 5;
  349.         buyPrice = 75000;
  350.         sellPrice = 50000;
  351.         illegal = false;
  352.         edible = -1;
  353.         icon = "icons\ico_storageSmall.paa";
  354.         furniture = false;
  355.     };
  356.  
  357.     class storagebig {
  358.         variable = "storageBig";
  359.         displayName = "STR_Item_StorageBL";
  360.         weight = 10;
  361.         buyPrice = 150000;
  362.         sellPrice = 125000;
  363.         illegal = false;
  364.         edible = -1;
  365.         icon = "icons\ico_storageBig.paa";
  366.         furniture = false;
  367.     };
  368.    
  369.     class furnituredesk {
  370.         variable = "furnitureDesk";
  371.         displayName = "STR_Item_FurnitureDK";
  372.         weight = 10;
  373.         buyPrice = 250000;
  374.         sellPrice = 175000;
  375.         varPrice = 1;
  376.         maxPrice = 137500;
  377.         minPrice = 137500;
  378.         factor = 0;
  379.         illegal = false;
  380.         edible = -1;
  381.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_TableDesk_F.jpg";
  382.         furniture = true;
  383.     };
  384.    
  385.     class furniturechair {
  386.         variable = "furnitureChair";
  387.         displayName = "STR_Item_FurnitureCH";
  388.         weight = 10;
  389.         buyPrice = 250000;
  390.         sellPrice = 175000;
  391.         varPrice = 1;
  392.         maxPrice = 137500;
  393.         minPrice = 137500;
  394.         factor = 0;
  395.         illegal = false;
  396.         edible = -1;
  397.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_CampingChair_V1_F.jpg";
  398.         furniture = true;
  399.     };
  400.    
  401.     class furniturebagshort {
  402.         variable = "furnitureBagShort";
  403.         displayName = "STR_Item_FurnitureBS";
  404.         weight = 10;
  405.         buyPrice = 250000;
  406.         sellPrice = 175000;
  407.         varPrice = 1;
  408.         maxPrice = 137500;
  409.         minPrice = 137500;
  410.         factor = 0;
  411.         illegal = false;
  412.         edible = -1;
  413.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_BagFence_Short_F.jpg";
  414.         furniture = true;
  415.     };
  416.    
  417.     class furnitureopenlaptop {
  418.         variable = "furnitureOpenLaptop";
  419.         displayName = "STR_Item_FurnitureOL";
  420.         weight = 10;
  421.         buyPrice = 250000;
  422.         sellPrice = 175000;
  423.         varPrice = 1;
  424.         maxPrice = 137500;
  425.         minPrice = 137500;
  426.         factor = 0;
  427.         illegal = false;
  428.         edible = -1;
  429.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Laptop_unfolded_F.jpg";
  430.         furniture = true;
  431.     };
  432.    
  433.     class furniturecampingtable {
  434.         variable = "furnitureCampingTable";
  435.         displayName = "STR_Item_FurnitureCT";
  436.         weight = 10;
  437.         buyPrice = 250000;
  438.         sellPrice = 175000;
  439.         varPrice = 1;
  440.         maxPrice = 137500;
  441.         minPrice = 137500;
  442.         factor = 0;
  443.         illegal = false;
  444.         edible = -1;
  445.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_CampingTable_F.jpg";
  446.         furniture = true;
  447.     };
  448.    
  449.     class furnituresleepingbag {
  450.         variable = "furnitureSleepingBag";
  451.         displayName = "STR_Item_FurnitureSB";
  452.         weight = 10;
  453.         buyPrice = 250000;
  454.         sellPrice = 175000;
  455.         varPrice = 1;
  456.         maxPrice = 137500;
  457.         minPrice = 137500;
  458.         factor = 0;
  459.         illegal = false;
  460.         edible = -1;
  461.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Sleeping_bag_F.jpg";
  462.         furniture = true;
  463.     };
  464.    
  465.     class furnituresleepingbagblue {
  466.         variable = "furnitureSleepingBagBlue";
  467.         displayName = "STR_Item_FurnitureSBBL";
  468.         weight = 10;
  469.         buyPrice = 250000;
  470.         sellPrice = 175000;
  471.         varPrice = 1;
  472.         maxPrice = 137500;
  473.         minPrice = 137500;
  474.         factor = 0;
  475.         illegal = false;
  476.         edible = -1;
  477.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Sleeping_bag_F.jpg";
  478.         furniture = true;
  479.     };
  480.    
  481.     class furnituresleepingbagbrown {
  482.         variable = "furnitureSleepingBagBrown";
  483.         displayName = "STR_Item_FurnitureSBBR";
  484.         weight = 10;
  485.         buyPrice = 250000;
  486.         sellPrice = 175000;
  487.         varPrice = 1;
  488.         maxPrice = 137500;
  489.         minPrice = 137500;
  490.         factor = 0;
  491.         illegal = false;
  492.         edible = -1;
  493.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Sleeping_bag_F.jpg";
  494.         furniture = true;
  495.     };
  496.    
  497.     class furnituresunchair {
  498.         variable = "furnitureSunChair";
  499.         displayName = "STR_Item_FurnitureSCH";
  500.         weight = 10;
  501.         buyPrice = 250000;
  502.         sellPrice = 175000;
  503.         varPrice = 1;
  504.         maxPrice = 137500;
  505.         minPrice = 137500;
  506.         factor = 0;
  507.         illegal = false;
  508.         edible = -1;
  509.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Sun_chair_F.jpg";
  510.         furniture = true;
  511.     };
  512.    
  513.     class furnituresunchairgreen {
  514.         variable = "furnitureSunChairGreen";
  515.         displayName = "STR_Item_FurnitureSCHG";
  516.         weight = 10;
  517.         buyPrice = 250000;
  518.         sellPrice = 175000;
  519.         varPrice = 1;
  520.         maxPrice = 137500;
  521.         minPrice = 137500;
  522.         factor = 0;
  523.         illegal = false;
  524.         edible = -1;
  525.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Sun_chair_green_F.jpg";
  526.         furniture = true;
  527.     };
  528.    
  529.     class furnituretenta {
  530.         variable = "furnitureTentA";
  531.         displayName = "STR_Item_FurnitureTA";
  532.         weight = 10;
  533.         buyPrice = 250000;
  534.         sellPrice = 175000;
  535.         varPrice = 1;
  536.         maxPrice = 137500;
  537.         minPrice = 137500;
  538.         factor = 0;
  539.         illegal = false;
  540.         edible = -1;
  541.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_TentA_F.jpg";
  542.         furniture = true;
  543.     };
  544.    
  545.     class furnituremapaltis {
  546.         variable = "furnitureMapAltis";
  547.         displayName = "STR_Item_FurnitureMA";
  548.         weight = 10;
  549.         buyPrice = 200000;
  550.         sellPrice = 175000;
  551.         varPrice = 1;
  552.         maxPrice = 137500;
  553.         minPrice = 137500;
  554.         factor = 0;
  555.         illegal = false;
  556.         edible = -1;
  557.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\MapBoard_altis_F.jpg";
  558.         furniture = true;
  559.     };
  560.    
  561.     class furniturepalletvert {
  562.         variable = "furniturePalletVert";
  563.         displayName = "STR_Item_FurniturePV";
  564.         weight = 10;
  565.         buyPrice = 500000;
  566.         sellPrice = 175000;
  567.         varPrice = 1;
  568.         maxPrice = 137500;
  569.         minPrice = 137500;
  570.         factor = 0;
  571.         illegal = false;
  572.         edible = -1;
  573.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Pallet_vertical_F.jpg";
  574.         furniture = true;
  575.     };
  576.    
  577.     class furnituremetalrack {
  578.         variable = "furnitureMetalRack";
  579.         displayName = "STR_Item_FurnitureMR";
  580.         weight = 10;
  581.         buyPrice = 250000;
  582.         sellPrice = 175000;
  583.         varPrice = 1;
  584.         maxPrice = 137500;
  585.         minPrice = 137500;
  586.         factor = 0;
  587.         illegal = false;
  588.         edible = -1;
  589.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Metal_wooden_rack_F.jpg";
  590.         furniture = true;
  591.     };
  592.     class furniturewoodblue {
  593.         variable = "furnitureWoodBlue";
  594.         displayName = "STR_Item_FurnitureWB";
  595.         weight = 10;
  596.         buyPrice = 250000;
  597.         sellPrice = 175000;
  598.         varPrice = 1;
  599.         maxPrice = 137500;
  600.         minPrice = 137500;
  601.         factor = 0;
  602.         illegal = false;
  603.         edible = -1;
  604.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_ShelvesWooden_blue_F.jpg";
  605.         furniture = true;
  606.     };
  607.    
  608.     class furniturefmradio {
  609.         variable = "furnitureFMRadio";
  610.         displayName = "STR_Item_FurnitureFMR";
  611.         weight = 10;
  612.         buyPrice = 250000;
  613.         sellPrice = 175000;
  614.         varPrice = 1;
  615.         maxPrice = 137500;
  616.         minPrice = 137500;
  617.         factor = 0;
  618.         illegal = false;
  619.         edible = -1;
  620.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_FMradio_F.jpg";
  621.         furniture = true;
  622.     };
  623.    
  624.     class furnitureportgen {
  625.         variable = "furniturePortGen";
  626.         displayName = "STR_Item_FurniturePG";
  627.         weight = 10;
  628.         buyPrice = 250000;
  629.         sellPrice = 175000;
  630.         varPrice = 1;
  631.         maxPrice = 137500;
  632.         minPrice = 137500;
  633.         factor = 0;
  634.         illegal = false;
  635.         edible = -1;
  636.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_Portable_generator_F.jpg";
  637.         furniture = true;
  638.     };
  639.    
  640.     class furnituretarget {
  641.         variable = "furnitureTarget";
  642.         displayName = "STR_Item_FurnitureTT";
  643.         weight = 10;
  644.         buyPrice = 500000;
  645.         sellPrice = 175000;
  646.         varPrice = 1;
  647.         maxPrice = 137500;
  648.         minPrice = 137500;
  649.         factor = 0;
  650.         illegal = false;
  651.         edible = -1;
  652.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Target_F.jpg";
  653.         furniture = true;
  654.     };
  655.    
  656.     class furniturewoodtable {
  657.         variable = "furnitureWoodTable";
  658.         displayName = "STR_Item_FurnitureWT";
  659.         weight = 10;
  660.         buyPrice = 250000;
  661.         sellPrice = 175000;
  662.         varPrice = 1;
  663.         maxPrice = 137500;
  664.         minPrice = 137500;
  665.         factor = 0;
  666.         illegal = false;
  667.         edible = -1;
  668.         icon = "\A3\EditorPreviews_F\Data\CfgVehicles\Land_WoodenTable_small_F.jpg";
  669.         furniture = true;
  670.     };
  671.  
  672.     //Mined Items
  673.     class oil_unprocessed {
  674.         variable = "oilUnprocessed";
  675.         displayName = "STR_Item_OilU";
  676.         weight = 7;
  677.         buyPrice = -1;
  678.         sellPrice = -1;
  679.         illegal = false;
  680.         edible = -1;
  681.         icon = "icons\ico_oilUnprocessed.paa";
  682.     };
  683.  
  684.     class oil_processed {
  685.         variable = "oilProcessed";
  686.         displayName = "STR_Item_OilP";
  687.         weight = 6;
  688.         buyPrice = -1;
  689.         sellPrice = 3200;
  690.         illegal = false;
  691.         edible = -1;
  692.         icon = "icons\ico_oilProcessed.paa";
  693.     };
  694.  
  695.     class copper_unrefined {
  696.         variable = "copperUnrefined";
  697.         displayName = "STR_Item_CopperOre";
  698.         weight = 4;
  699.         buyPrice = -1;
  700.         sellPrice = -1;
  701.         illegal = false;
  702.         edible = -1;
  703.         icon = "icons\ico_copperOre.paa";
  704.     };
  705.  
  706.     class copper_refined {
  707.         variable = "copperRefined";
  708.         displayName = "STR_Item_CopperIngot";
  709.         weight = 3;
  710.         buyPrice = -1;
  711.         sellPrice = 1500;
  712.         illegal = false;
  713.         edible = -1;
  714.         icon = "icons\ico_copper.paa";
  715.     };
  716.  
  717.     class iron_unrefined {
  718.         variable = "ironUnrefined";
  719.         displayName = "STR_Item_IronOre";
  720.         weight = 5;
  721.         buyPrice = -1;
  722.         sellPrice = -1;
  723.         illegal = false;
  724.         edible = -1;
  725.         icon = "icons\ico_ironOre.paa";
  726.     };
  727.  
  728.     class iron_refined {
  729.         variable = "ironRefined";
  730.         displayName = "STR_Item_IronIngot";
  731.         weight = 3;
  732.         buyPrice = -1;
  733.         sellPrice = 3200;
  734.         illegal = false;
  735.         edible = -1;
  736.         icon = "icons\ico_iron.paa";
  737.     };
  738.  
  739.     class salt_unrefined {
  740.         variable = "saltUnrefined";
  741.         displayName = "STR_Item_Salt";
  742.         weight = 3;
  743.         buyPrice = -1;
  744.         sellPrice = -1;
  745.         illegal = false;
  746.         edible = -1;
  747.         icon = "icons\ico_saltUnprocessed.paa";
  748.     };
  749.  
  750.     class salt_refined {
  751.         variable = "saltRefined";
  752.         displayName = "STR_Item_SaltR";
  753.         weight = 1;
  754.         buyPrice = -1;
  755.         sellPrice = 1450;
  756.         illegal = false;
  757.         edible = -1;
  758.         icon = "icons\ico_saltProcessed.paa";
  759.     };
  760.  
  761.     class sand {
  762.         variable = "sand";
  763.         displayName = "STR_Item_Sand";
  764.         weight = 3;
  765.         buyPrice = -1;
  766.         sellPrice = -1;
  767.         illegal = false;
  768.         edible = -1;
  769.         icon = "icons\ico_sand.paa";
  770.     };
  771.  
  772.     class glass {
  773.         variable = "glass";
  774.         displayName = "STR_Item_Glass";
  775.         weight = 1;
  776.         buyPrice = -1;
  777.         sellPrice = 1450;
  778.         illegal = false;
  779.         edible = -1;
  780.         icon = "icons\ico_glass.paa";
  781.     };
  782.  
  783.     class diamond_uncut {
  784.         variable = "diamondUncut";
  785.         displayName = "STR_Item_DiamondU";
  786.         weight = 4;
  787.         buyPrice = -1;
  788.         sellPrice = 750;
  789.         illegal = false;
  790.         edible = -1;
  791.         icon = "icons\ico_diamondUncut.paa";
  792.     };
  793.  
  794.     class diamond_cut {
  795.         variable = "diamondCut";
  796.         displayName = "STR_Item_DiamondC";
  797.         weight = 2;
  798.         buyPrice = -1;
  799.         sellPrice = 2000;
  800.         illegal = false;
  801.         edible = -1;
  802.         icon = "icons\ico_diamondCut.paa";
  803.     };
  804.  
  805.     class rock {
  806.         variable = "rock";
  807.         displayName = "STR_Item_Rock";
  808.         weight = 6;
  809.         buyPrice = -1;
  810.         sellPrice = -1;
  811.         illegal = false;
  812.         edible = -1;
  813.         icon = "icons\ico_rock.paa";
  814.     };
  815.  
  816.     class cement {
  817.         variable = "cement";
  818.         displayName = "STR_Item_CementBag";
  819.         weight = 5;
  820.         buyPrice = -1;
  821.         sellPrice = 1950;
  822.         illegal = false;
  823.         edible = -1;
  824.         icon = "icons\ico_cement.paa";
  825.     };
  826.  
  827.     //Drugs
  828.     class heroin_unprocessed {
  829.         variable = "heroinUnprocessed";
  830.         displayName = "STR_Item_HeroinU";
  831.         weight = 6;
  832.         buyPrice = -1;
  833.         sellPrice = -1;
  834.         illegal = true;
  835.         edible = -1;
  836.         icon = "icons\ico_heroinUnprocessed.paa";
  837.         processedItem = "heroin_processed";
  838.     };
  839.  
  840.     class heroin_processed {
  841.         variable = "heroinProcessed";
  842.         displayName = "STR_Item_HeroinP";
  843.         weight = 4;
  844.         buyPrice = 3500;
  845.         sellPrice = 2560;
  846.         illegal = true;
  847.         edible = 1;
  848.         icon = "icons\ico_heroinProcessed.paa";
  849.     };
  850.  
  851.     class cannabis {
  852.         variable = "cannabis";
  853.         displayName = "STR_Item_Cannabis";
  854.         weight = 4;
  855.         buyPrice = -1;
  856.         sellPrice = -1;
  857.         illegal = true;
  858.         edible = -1;
  859.         icon = "icons\ico_cannabis.paa";
  860.         processedItem = "marijuana";
  861.     };
  862.  
  863.     class marijuana {
  864.         variable = "marijuana";
  865.         displayName = "STR_Item_Marijuana";
  866.         weight = 3;
  867.         buyPrice = 2800;
  868.         sellPrice = 2350;
  869.         illegal = true;
  870.         edible = 1;
  871.         icon = "icons\ico_marijuana.paa";
  872.     };
  873.  
  874.     class cocaine_unprocessed {
  875.         variable = "cocaineUnprocessed";
  876.         displayName = "STR_Item_CocaineU";
  877.         weight = 6;
  878.         buyPrice = -1;
  879.         sellPrice = -1;
  880.         illegal = true;
  881.         edible = -1;
  882.         icon = "icons\ico_cocaineUnprocessed.paa";
  883.         processedItem = "cocaine_processed";
  884.     };
  885.  
  886.     class cocaine_processed {
  887.         variable = "cocaineProcessed";
  888.         displayName = "STR_Item_CocaineP";
  889.         weight = 4;
  890.         buyPrice = -1;
  891.         sellPrice = 5000;
  892.         illegal = true;
  893.         edible = 1;
  894.         icon = "icons\ico_cocaineProcessed.paa";
  895.     };
  896.  
  897.     //Drink
  898.     class redgull {
  899.         variable = "redgull";
  900.         displayName = "STR_Item_RedGull";
  901.         weight = 1;
  902.         buyPrice = 1500;
  903.         sellPrice = 200;
  904.         illegal = false;
  905.         edible = 100;
  906.         icon = "icons\ico_redgull.paa";
  907.     };
  908.  
  909.     class coffee {
  910.         variable = "coffee";
  911.         displayName = "STR_Item_Coffee";
  912.         weight = 1;
  913.         buyPrice = 10;
  914.         sellPrice = 5;
  915.         illegal = false;
  916.         edible = 100;
  917.         icon = "icons\ico_coffee.paa";
  918.     };
  919.  
  920.     class waterBottle {
  921.         variable = "waterBottle";
  922.         displayName = "STR_Item_WaterBottle";
  923.         weight = 1;
  924.         buyPrice = 10;
  925.         sellPrice = 5;
  926.         illegal = false;
  927.         edible = 100;
  928.         icon = "icons\ico_waterBottle.paa";
  929.     };
  930.     class gobletEau {
  931.         variable = "gobletEau";
  932.         displayName = "STR_Item_WaterGoblet";
  933.         weight = 1;
  934.         buyPrice = 0;
  935.         sellPrice = 0;
  936.         illegal = false;
  937.         edible = 100;
  938.         icon = "icons\goblet.paa";
  939.     };
  940.     class biere {
  941.         variable = "biere";
  942.         displayName = "STR_Item_biere";
  943.         weight = 1;
  944.         buyPrice = 5;
  945.         sellPrice = 3;
  946.         illegal = false;
  947.         edible = 10;
  948.         icon = "icons\ico_biere.paa";
  949.     };
  950.  
  951.     //Food
  952.     class apple {
  953.         variable = "apple";
  954.         displayName = "STR_Item_Apple";
  955.         weight = 1;
  956.         buyPrice = 65;
  957.         sellPrice = 50;
  958.         illegal = false;
  959.         edible = 10;
  960.         icon = "icons\ico_apple.paa";
  961.     };
  962.  
  963.     class peach {
  964.         variable = "peach";
  965.         displayName = "STR_Item_Peach";
  966.         weight = 1;
  967.         buyPrice = 68;
  968.         sellPrice = 55;
  969.         illegal = false;
  970.         edible = 10;
  971.         icon = "icons\ico_peach.paa";
  972.     };
  973.  
  974.     class tbacon {
  975.         variable = "tbacon";
  976.         displayName = "STR_Item_TBacon";
  977.         weight = 1;
  978.         buyPrice = 75;
  979.         sellPrice = 25;
  980.         illegal = false;
  981.         edible = 40;
  982.         icon = "icons\ico_tBacon.paa";
  983.     };
  984.  
  985.     class donuts {
  986.         variable = "donuts";
  987.         displayName = "STR_Item_Donuts";
  988.         weight = 1;
  989.         buyPrice = 120;
  990.         sellPrice = 60;
  991.         illegal = false;
  992.         edible = 30;
  993.         icon = "icons\ico_donuts.paa";
  994.     };
  995.  
  996.     class rabbit_raw {
  997.         variable = "rabbitRaw";
  998.         displayName = "STR_Item_RabbitRaw";
  999.         weight = 2;
  1000.         buyPrice = -1;
  1001.         sellPrice = 95;
  1002.         illegal = false;
  1003.         edible = -1;
  1004.         icon = "icons\ico_rabbitRaw.paa";
  1005.     };
  1006.  
  1007.     class rabbit {
  1008.         variable = "rabbit";
  1009.         displayName = "STR_Item_Rabbit";
  1010.         weight = 1;
  1011.         buyPrice = 150;
  1012.         sellPrice = 115;
  1013.         illegal = false;
  1014.         edible = 20;
  1015.         icon = "icons\ico_rabbit.paa";
  1016.     };
  1017.  
  1018.     class salema_raw {
  1019.         variable = "salemaRaw";
  1020.         displayName = "STR_Item_SalemaRaw";
  1021.         weight = 2;
  1022.         buyPrice = -1;
  1023.         sellPrice = 45;
  1024.         illegal = false;
  1025.         edible = -1;
  1026.         icon = "icons\ico_salemaRaw.paa";
  1027.     };
  1028.      class test_raw {
  1029.         variable = "test_raw";
  1030.         displayName = "STR_Item_SalemaRaw";
  1031.         weight = 2;
  1032.         buyPrice = -1;
  1033.         sellPrice = 45;
  1034.         illegal = false;
  1035.         edible = -1;
  1036.         icon = "icons\ico_salemaRaw.paa";
  1037.     };
  1038.  
  1039.     class salema {
  1040.         variable = "salema";
  1041.         displayName = "STR_Item_Salema";
  1042.         weight = 1;
  1043.         buyPrice = 75;
  1044.         sellPrice = 55;
  1045.         illegal = false;
  1046.         edible = 30;
  1047.         icon = "icons\ico_cookedFish.paa";
  1048.     };
  1049.  
  1050.     class ornate_raw {
  1051.         variable = "ornateRaw";
  1052.         displayName = "STR_Item_OrnateRaw";
  1053.         weight = 2;
  1054.         buyPrice = -1;
  1055.         sellPrice = 40;
  1056.         illegal = false;
  1057.         edible = -1;
  1058.         icon = "icons\ico_ornateRaw.paa";
  1059.     };
  1060.  
  1061.     class ornate {
  1062.         variable = "ornate";
  1063.         displayName = "STR_Item_Ornate";
  1064.         weight = 1;
  1065.         buyPrice = 175;
  1066.         sellPrice = 150;
  1067.         illegal = false;
  1068.         edible = 25;
  1069.         icon = "icons\ico_cookedFish.paa";
  1070.     };
  1071.  
  1072.     class mackerel_raw {
  1073.         variable = "mackerelRaw";
  1074.         displayName = "STR_Item_MackerelRaw";
  1075.         weight = 4;
  1076.         buyPrice = -1;
  1077.         sellPrice = 175;
  1078.         illegal = false;
  1079.         edible = -1;
  1080.         icon = "icons\ico_mackerelRaw.paa";
  1081.     };
  1082.  
  1083.     class mackerel {
  1084.         variable = "mackerel";
  1085.         displayName = "STR_Item_Mackerel";
  1086.         weight = 2;
  1087.         buyPrice = 250;
  1088.         sellPrice = 200;
  1089.         illegal = false;
  1090.         edible = 30;
  1091.         icon = "icons\ico_cookedFish.paa";
  1092.     };
  1093.  
  1094.     class tuna_raw {
  1095.         variable = "tunaRaw";
  1096.         displayName = "STR_Item_TunaRaw";
  1097.         weight = 6;
  1098.         buyPrice = -1;
  1099.         sellPrice = 700;
  1100.         illegal = false;
  1101.         edible = -1;
  1102.         icon = "icons\ico_tunaRaw.paa";
  1103.     };
  1104.  
  1105.     class tuna {
  1106.         variable = "tuna";
  1107.         displayName = "STR_Item_Tuna";
  1108.         weight = 3;
  1109.         buyPrice = 1250;
  1110.         sellPrice = 1000;
  1111.         illegal = false;
  1112.         edible = 100;
  1113.         icon = "icons\ico_cookedFish.paa";
  1114.     };
  1115.  
  1116.     class mullet_raw {
  1117.         variable = "mulletRaw";
  1118.         displayName = "STR_Item_MulletRaw";
  1119.         weight = 4;
  1120.         buyPrice = -1;
  1121.         sellPrice = 250;
  1122.         illegal = false;
  1123.         edible = -1;
  1124.         icon = "icons\ico_mulletRaw.paa";
  1125.     };
  1126.  
  1127.     class mullet {
  1128.         variable = "mullet";
  1129.         displayName = "STR_Item_Mullet";
  1130.         weight = 2;
  1131.         buyPrice = 600;
  1132.         sellPrice = 400;
  1133.         illegal = false;
  1134.         edible = 80;
  1135.         icon = "icons\ico_cookedFish.paa";
  1136.     };
  1137.  
  1138.     class catshark_raw {
  1139.         variable = "catsharkRaw";
  1140.         displayName = "STR_Item_CatSharkRaw";
  1141.         weight = 6;
  1142.         buyPrice = -1;
  1143.         sellPrice = 300;
  1144.         illegal = false;
  1145.         edible = -1;
  1146.         icon = "icons\ico_catsharkRaw.paa";
  1147.     };
  1148.  
  1149.     class catshark {
  1150.         variable = "catshark";
  1151.         displayName = "STR_Item_CatShark";
  1152.         weight = 3;
  1153.         buyPrice = 750;
  1154.         sellPrice = 500;
  1155.         illegal = false;
  1156.         edible = 100;
  1157.         icon = "icons\ico_cookedFish.paa";
  1158.     };
  1159.  
  1160.     class turtle_raw {
  1161.         variable = "turtleRaw";
  1162.         displayName = "STR_Item_TurtleRaw";
  1163.         weight = 6;
  1164.         buyPrice = -1;
  1165.         sellPrice = 3000;
  1166.         illegal = true;
  1167.         edible = -1;
  1168.         icon = "icons\ico_turtleRaw.paa";
  1169.     };
  1170.  
  1171.     class turtle_soup {
  1172.         variable = "turtleSoup";
  1173.         displayName = "STR_Item_TurtleSoup";
  1174.         weight = 2;
  1175.         buyPrice = 1000;
  1176.         sellPrice = 750;
  1177.         illegal = false;
  1178.         edible = 100;
  1179.         icon = "icons\ico_turtleSoup.paa";
  1180.     };
  1181.  
  1182.     class hen_raw {
  1183.         variable = "henRaw";
  1184.         displayName = "STR_Item_HenRaw";
  1185.         weight = 1;
  1186.         buyPrice = -1;
  1187.         sellPrice = 65;
  1188.         illegal = false;
  1189.         edible = -1;
  1190.         icon = "icons\ico_wholeChickenRaw.paa";
  1191.     };
  1192.  
  1193.     class hen {
  1194.         variable = "hen";
  1195.         displayName = "STR_Item_Hen";
  1196.         weight = 1;
  1197.         buyPrice = 115;
  1198.         sellPrice = 85;
  1199.         illegal = false;
  1200.         edible = 65;
  1201.         icon = "icons\ico_wholeChicken.paa";
  1202.     };
  1203.  
  1204.     class rooster_raw {
  1205.         variable = "roosterRaw";
  1206.         displayName = "STR_Item_RoosterRaw";
  1207.         weight = 1;
  1208.         buyPrice = -1;
  1209.         sellPrice = 65;
  1210.         illegal = false;
  1211.         edible = -1;
  1212.         icon = "icons\ico_chickenDrumstickRaw.paa";
  1213.     };
  1214.  
  1215.     class rooster {
  1216.         variable = "rooster";
  1217.         displayName = "STR_Item_Rooster";
  1218.         weight = 115;
  1219.         buyPrice = 90;
  1220.         sellPrice = 85;
  1221.         illegal = false;
  1222.         edible = 45;
  1223.         icon = "icons\ico_chickenDrumstick.paa";
  1224.     };
  1225.  
  1226.     class sheep_raw {
  1227.         variable = "sheepRaw";
  1228.         displayName = "STR_Item_SheepRaw";
  1229.         weight = 2;
  1230.         buyPrice = -1;
  1231.         sellPrice = 95;
  1232.         illegal = false;
  1233.         edible = -1;
  1234.         icon = "icons\ico_lambChopRaw.paa";
  1235.     };
  1236.  
  1237.     class sheep {
  1238.         variable = "sheep";
  1239.         displayName = "STR_Item_Sheep";
  1240.         weight = 2;
  1241.         buyPrice = 155;
  1242.         sellPrice = 115;
  1243.         illegal = false;
  1244.         edible = 100;
  1245.         icon = "icons\ico_lambChop.paa";
  1246.     };
  1247.  
  1248.     class goat_raw {
  1249.         variable = "goatRaw";
  1250.         displayName = "STR_Item_GoatRaw";
  1251.         weight = 2;
  1252.         buyPrice = -1;
  1253.         sellPrice = 115;
  1254.         illegal = false;
  1255.         edible = -1;
  1256.         icon = "icons\ico_muttonLegRaw.paa";
  1257.     };
  1258.  
  1259.     class goat {
  1260.         variable = "goat";
  1261.         displayName = "STR_Item_Goat";
  1262.         weight = 2;
  1263.         buyPrice = 175;
  1264.         sellPrice = 135;
  1265.         illegal = false;
  1266.         edible = 100;
  1267.         icon = "icons\ico_muttonLeg.paa";
  1268.     };
  1269.    
  1270.     //Licences
  1271.    
  1272.     class recoltePierre {
  1273.         variable = "recoltePierre";
  1274.         displayName = "STR_Item_Recolte_Pierre";
  1275.         weight = 1;
  1276.         buyPrice = 500;
  1277.         sellPrice = 0;
  1278.         illegal = false;
  1279.         edible = -1;
  1280.         icon = "icons\ico_autorisation.paa";
  1281.     };
  1282.    
  1283.     //graines
  1284.     class c_Plant_Chicory_seed {
  1285.         variable = "c_Plant_Chicory_seed";
  1286.         displayName = "graine de Pavot";
  1287.         weight = 1;
  1288.         buyPrice = 500;
  1289.         sellPrice = 0;
  1290.         illegal = false;
  1291.         edible = -1;
  1292.         icon = "icons\ico_autorisation.paa";
  1293.     };
  1294.    
  1295.     class cannabis_seed {
  1296.         variable = "cannabis_seed";
  1297.         displayName = "STR_Item_Graines_cana";
  1298.         weight = 1;
  1299.         buyPrice = 1;
  1300.         sellPrice = 0;
  1301.         illegal = true;
  1302.         edible = -1;
  1303.         icon = "icons\ico_graines.paa";
  1304.     };
  1305.     class test_seed {
  1306.         variable = "test_seed";
  1307.         displayName = "graine de canabis";
  1308.         weight = 1;
  1309.         buyPrice = 1;
  1310.         sellPrice = 0;
  1311.         illegal = true;
  1312.         edible = -1;
  1313.         icon = "icons\ico_cannabis.paa";
  1314.     };
  1315.     class orange_seed {
  1316.         variable = "orange_seed";
  1317.         displayName = "graine de canabis";
  1318.         weight = 1;
  1319.         buyPrice = 1;
  1320.         sellPrice = 0;
  1321.         illegal = true;
  1322.         edible = -1;
  1323.         icon = "icons\ico_cannabis.paa";
  1324.     };
  1325.     class arrosoir {
  1326.         variable = "arrosoir";
  1327.         displayName = "arrosoir";
  1328.         weight = 1;
  1329.         buyPrice = 1;
  1330.         sellPrice = 0;
  1331.         illegal = false;
  1332.         edible = -1;
  1333.         icon = "icons\ico_autorisation.paa";
  1334.     }
  1335.     class desherbant  {
  1336.         variable = "desherbant";
  1337.         displayName = "desherbant";
  1338.         weight = 1;
  1339.         buyPrice = 1;
  1340.         sellPrice = 0;
  1341.         illegal = false;
  1342.         edible = -1;
  1343.         icon = "icons\ico_autorisation.paa";
  1344.     }
  1345.     class graine_cana {
  1346.         variable = "graine_cana";
  1347.         displayName = "graine de canabis";
  1348.         weight = 1;
  1349.         buyPrice = 1;
  1350.         sellPrice = 0;
  1351.         illegal = true;
  1352.         edible = -1;
  1353.         icon = "icons\ico_cannabis.paa";
  1354.     };
  1355.     class graine_coca {
  1356.         variable = "graine_ccoca";
  1357.         displayName = "graine de cocaine";
  1358.         weight = 1;
  1359.         buyPrice = 1;
  1360.         sellPrice = 0;
  1361.         illegal = true;
  1362.         edible = -1;
  1363.         icon = "icons\ico_cannabis.paa";
  1364.     };
  1365.     class cocaine {
  1366.         variable = "cocaine";
  1367.         displayName = "STR_Item_CocaineU";
  1368.         weight = 6;
  1369.         buyPrice = -1;
  1370.         sellPrice = -1;
  1371.         illegal = true;
  1372.         edible = -1;
  1373.         icon = "icons\ico_cocaineUnprocessed.paa";
  1374.         processedItem = "cocaine_processed";
  1375.     };
  1376.     class graine_pavot {
  1377.         variable = "graine_pavot";
  1378.         displayName = "STR_Item_Graines_Pavot";
  1379.         weight = 1;
  1380.         buyPrice = 50;
  1381.         sellPrice = 25;
  1382.         illegal = false;
  1383.         edible = -1;
  1384.         icon = "icons\ico_graines.paa";
  1385.     };
  1386.     class pavot {
  1387.         variable = "pavot";
  1388.         displayName = "STR_Item_Pavot";
  1389.         weight = 1;
  1390.         buyPrice = 1650;
  1391.         sellPrice = 825;
  1392.         illegal = false;
  1393.         edible = -1;
  1394.         icon = "icons\ico_pavot.paa";
  1395.     };
  1396.     class graine_pavot_opium {
  1397.         variable = "graine_pavot_opium";
  1398.         displayName = "STR_Item_Graines_Pavot_Opium";
  1399.         weight = 1;
  1400.         buyPrice = 150;
  1401.         sellPrice = -1;
  1402.         illegal = true;
  1403.         edible = -1;
  1404.         icon = "icons\ico_graines.paa";
  1405.     };
  1406.     class pavotOpium {
  1407.         variable = "pavotOpium";
  1408.         displayName = "STR_Item_Pavot_Opium";
  1409.         weight = 1;
  1410.         buyPrice = 4900;
  1411.         sellPrice = -1;
  1412.         illegal = true;
  1413.         edible = -1;
  1414.         icon = "icons\ico_heroinUnprocessed.paa";
  1415.         processedItem = "heroin_processed";
  1416.     };
  1417.     class graine_mais {
  1418.         variable = "graine_mais";
  1419.         displayName = "STR_Item_Graines_Mais";
  1420.         weight = 1;
  1421.         buyPrice = 1;
  1422.         sellPrice = 0;
  1423.         illegal = false;
  1424.         edible = -1;
  1425.         icon = "icons\ico_graines.paa";
  1426.     };
  1427.     class mais {
  1428.         variable = "mais";
  1429.         displayName = "STR_Item_Mais";
  1430.         weight = 1;
  1431.         buyPrice = 320;
  1432.         sellPrice = 160;
  1433.         illegal = false;
  1434.         edible = -1;
  1435.         icon = "icons\ico_mais.paa";
  1436.     };
  1437.     class graine_tournesol {
  1438.         variable = "graine_tournesol";
  1439.         displayName = "STR_Item_Graines_Tournesol";
  1440.         weight = 1;
  1441.         buyPrice = 50;
  1442.         sellPrice = 25;
  1443.         illegal = false;
  1444.         edible = -1;
  1445.         icon = "icons\ico_graines.paa";
  1446.     };
  1447.     class tournesol {
  1448.         variable = "tournesol";
  1449.         displayName = "STR_Item_Tournesol";
  1450.         weight = 1;
  1451.         buyPrice = 650;
  1452.         sellPrice = 325;
  1453.         illegal = false;
  1454.         edible = -1;
  1455.         icon = "icons\ico_tournesol.paa";
  1456.     };
  1457.         class graine_soja {
  1458.         variable = "graine_soja";
  1459.         displayName = "STR_Item_Graines_Soja";
  1460.         weight = 1;
  1461.         buyPrice = 50;
  1462.         sellPrice = 25;
  1463.         illegal = false;
  1464.         edible = -1;
  1465.         icon = "icons\ico_graines.paa";
  1466.     };
  1467.     class soja {
  1468.         variable = "soja";
  1469.         displayName = "STR_Item_Soja";
  1470.         weight = 1;
  1471.         buyPrice = 1940;
  1472.         sellPrice = 970;
  1473.         illegal = false;
  1474.         edible = -1;
  1475.         icon = "icons\ico_soja.paa";
  1476.     };
  1477.     class graine_citrouille {
  1478.         variable = "graine_citrouille";
  1479.         displayName = "STR_Item_Graines_Citrouille";
  1480.         weight = 1;
  1481.         buyPrice = 50;
  1482.         sellPrice = 25;
  1483.         illegal = false;
  1484.         edible = -1;
  1485.         icon = "icons\ico_graines.paa";
  1486.     };
  1487.     class citrouille {
  1488.         variable = "citrouille";
  1489.         displayName = "STR_Item_Citrouille";
  1490.         weight = 1;
  1491.         buyPrice = 1800;
  1492.         sellPrice = 900;
  1493.         illegal = false;
  1494.         edible = -1;
  1495.         icon = "icons\ico_citrouille.paa";
  1496.     };
  1497.     class graine_ble {
  1498.         variable = "graine_ble";
  1499.         displayName = "STR_Item_Graines_Ble";
  1500.         weight = 1;
  1501.         buyPrice = 50;
  1502.         sellPrice = 25;
  1503.         illegal = false;
  1504.         edible = -1;
  1505.         icon = "icons\ico_graines.paa";
  1506.     };
  1507.     class ble {
  1508.         variable = "ble";
  1509.         displayName = "STR_Item_Ble";
  1510.         weight = 1;
  1511.         buyPrice = 380;
  1512.         sellPrice = 190;
  1513.         illegal = false;
  1514.         edible = -1;
  1515.         icon = "icons\ico_ble.paa";
  1516.     };
  1517.     class graine_cotton {
  1518.         variable = "graine_cotton";
  1519.         displayName = "STR_Item_Graines_Cotton";
  1520.         weight = 1;
  1521.         buyPrice = 50;
  1522.         sellPrice = 25;
  1523.         illegal = false;
  1524.         edible = -1;
  1525.         icon = "icons\ico_graines.paa";
  1526.     };
  1527.     class cotton {
  1528.         variable = "cotton";
  1529.         displayName = "STR_Item_Cotton";
  1530.         weight = 1;
  1531.         buyPrice = 1600;
  1532.         sellPrice = 800;
  1533.         illegal = false;
  1534.         edible = -1;
  1535.         icon = "icons\ico_cotton.paa";
  1536.     };
  1537.  
  1538.    
  1539.     //Chimique
  1540.    
  1541.     class Anhydride_Acetique {
  1542.         variable = "Anhydride_Acetique";
  1543.         displayName = "STR_Item_Anhydride_Acetique";
  1544.         weight = 2;
  1545.         buyPrice = 150;
  1546.         sellPrice = 75;
  1547.         illegal = false;
  1548.         edible = -1;
  1549.         icon = "icons\ico_Anhydride_acetique.paa";
  1550.         processedItem = "heroin_processed";
  1551.     };
  1552. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement