Advertisement
Guest User

Untitled

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