class CarShops {
    /*
    *    ARRAY FORMAT:
    *        0: STRING (Classname)
    *        1: SCALAR (Rental Price)
    *        2: ARRAY (license required)
    *            Ex: { "driver", "truck", "rebel" }
    *        3: ARRAY (This is for limiting items to certain things)
    *            0: Variable to read from
    *            1: Variable Value Type (SCALAR / BOOL /EQUAL)
    *            2: What to compare to (-1 = Check Disabled)
    */
    class civ_car {
        side = "civ";
        vehicles[] = {
            { "B_Quadbike_01_F", 2500, ""},
            { "C_Hatchback_01_F", 10000, "driver"},
            { "C_Offroad_01_F", 15000, "driver"},
            { "C_SUV_01_F", 50000, "driver"},
            { "C_Hatchback_01_sport_F", 125000, "driver"},
            { "C_Van_01_transport_F", 75000, "driver"},
            { "C_Van_01_box_F", 100000, "driver"},
            { "C_Van_01_fuel_F", 125000, "driver"}
        };
    };

    class kart_shop {
        side = "civ";
        vehicles[] = {
            { "C_Kart_01_F", 15000 , "driver"},
			{ "C_Kart_01_Blu_F", 15000 , "driver"},
            { "C_Kart_01_Fuel_F", 15000, "driver"},
            { "C_Kart_01_Red_F", 15000, "driver"},
            { "C_Kart_01_Vrana_F", 15000, "driver"}
        };
    };

    class med_shop {
        side = "med";
        vehicles[] = {
            { "C_Offroad_01_F", 10000, "" }, //Geländewagen
            { "C_Hatchback_01_F", 9500, "" },// Limosine
            { "C_SUV_01_F", 30000, "" },// Suv
            { "C_Van_01_box_F", 60000, "" }, //Truck box
            { "C_Hatchback_01_sport_F", 120000, "" }// Sportlimo
           
        };
    };

    class med_air_hs {
        side = "med";
        vehicles[] = {
            { "C_Heli_Light_01_civil_F", 50000, "mAir" }, //M900
            { "O_Heli_Light_02_unarmed_F", 75000, "mAir" }, // Orca
            { "I_Heli_light_03_unarmed_F", 75000, "mAir" }  //Hellcat
        };
    };

    class civ_truck {
        side = "civ";
        vehicles[] = {
            { "I_Truck_02_transport_F", 250000, "truck" },
            { "I_Truck_02_covered_F", 350000, "truck" },
            { "I_Truck_02_fuel_F", 300000, "truck" },
            { "O_Truck_03_transport_F", 800000, "truck" },
            { "O_Truck_03_covered_F", 1200000, "truck" },
            { "O_Truck_03_fuel_F", 1000000, "truck" },
            { "O_Truck_03_device_F", 6000000, "truck" },
            { "O_Truck_03_repair_F", 3000000, "truck" },
            { "B_Truck_01_transport_F", 1500000, "truck" },
            { "B_Truck_01_covered_F", 2000000, "truck" },
            { "B_Truck_01_box_F", 3000000, "truck" },
            { "B_Truck_01_fuel_F", 2750000, "truck" }
        };
    };

    class reb_car {
        side = "civ";
        vehicles[] = {
            { "B_Quadbike_01_F", 5000, "" },
			{ "B_G_Offroad_01_F", 15000, "" },
			{ "C_SUV_01_F", 25000, "" },
            { "B_MRAP_01_F", 1500000, "" },
            { "O_MRAP_02_F", 1000000, "" },
            { "I_MRAP_03_F", 2000000, "" },
            { "B_Heli_Light_01_F", 1000000, "" },
            { "I_Heli_light_03_unarmed_F", 2000000, "" },
			{ "O_Heli_Light_02_unarmed_F", 2500000, "" },
			{ "O_Heli_Transport_04_F", 3000000, "" },
			{ "O_Heli_Transport_04_bench_F", 3250000, "" },
			{ "O_Heli_Transport_04_box_F", 3500000, "" },
			{ "O_Heli_Transport_04_covered_F", 3500000, "" },
			{ "O_Heli_Transport_04_fuel_F", 3750000, "" },
			{ "I_APC_Wheeled_03_cannon_F", 15000000, "" }
        };
    };

    class cop_car {
        side = "cop";
        vehicles[] = {
            { "B_Quadbike_01_F", 5000, "", { "life_coplevel", 1 } },
            { "C_Offroad_01_F", 5000, "", { "life_coplevel", 1 } },
            { "C_Hatchback_01_F", 30000, "", { "life_coplevel", 2 } },
            { "C_SUV_01_F", 50000, "", { "life_coplevel", 2 } },
            { "C_Hatchback_01_sport_F", 60000, { "" }, { "life_coplevel", 3 } }
        };
    };

    class civ_air {
        side = "civ";
        vehicles[] = {
            { "C_Heli_Light_01_civil_F", 1000000, "pilot" },
            { "O_Heli_Light_02_unarmed_F", 1500000, "pilot"},
			{ "I_Heli_Transport_02_F", 3000000, "pilot"},
			{ "B_Heli_Transport_03_unarmed_F", 5000000, "pilot"}
        };
    };
	
    class cop_air {
        side = "cop";
        vehicles[] = {
            { "B_Heli_Light_01_F", 75000, "cAir", { "life_coplevel", 2 } },
            { "O_Heli_Light_02_unarmed_F", 75000, "cAir", { "life_coplevel", 2 } },
            { "I_Heli_light_03_unarmed_F", 75000, "cAir", { "life_coplevel", 2 } },
            { "B_Heli_Transport_03_unarmed_F", 75000, "cAir", { "life_coplevel", 3 } },
            { "B_Heli_Transport_01_F", 75000,"cAir", { "life_coplevel", 3 } }			
        };
    };

	class cop_airhq {
		side = "civ";
		vehicles[] = {
            { "B_Heli_Light_01_F", 75000, "cAir", { "life_coplevel", 2 } },
            { "O_Heli_Light_02_unarmed_F", 75000, "cAir", { "life_coplevel", 2 } },
            { "I_Heli_light_03_unarmed_F", 75000, "cAir", { "life_coplevel", 2 } },
            { "B_Heli_Transport_03_unarmed_F", 75000, "cAir", { "life_coplevel", 3 } },
            { "B_Heli_Transport_01_F", 75000, "cAir", { "life_coplevel", 3 } }		
		};
	};
	
    class cop_ship {
        side = "cop";
        vehicles[] = {
			{ "B_Boat_Transport_01_F", 3000, "coastguard" },
			{ "C_Boat_Civil_01_police_F", 20000, "coastguard" },
			{ "B_Boat_Armed_01_minigun_F", 75000, "coastguard" },
			{ "B_SDV_01_F", 100000, "coastguard" }
        };
    };

    class civ_ship {
        side = "civ";
        vehicles[] = {
            { "C_Rubberboat", 5000, "boat"},
            { "C_Boat_Civil_01_F", 20000, "boat"},
            { "B_SDV_01_F", 250000, "boat"},
			{ "O_SDV_01_F", 250000, "boat"},
			{ "I_SDV_01_F", 250000, "boat"}
        };
    };
};

class LifeCfgVehicles {
    /*
    *    Vehicle Configs (Contains textures and other stuff)
    *
    *    storageFee (Getting vehicles out of garage) format:
    *        INDEX 0: Civilian Price
    *        INDEX 1: Cop Price
    *        INDEX 2: EMS Price
    *        INDEX 3: OPFOR Price (Not implemented in vanilla but still leaving support
    *
    *    garageSell (Selling vehicles from garage) format:
    *        INDEX 0: Civilian Price
    *        INDEX 1: Cop Price
    *        INDEX 2: EMS Price
    *        INDEX 3: OPFOR Price (Not implemented in vanilla but still leaving support
    *
    *    Textures config follows { Texture Name, side, {texture(s)path}}
    *    Texture(s)path follows this format:
    *    INDEX 0: Texture Layer 0
    *    	INDEX 1: Texture Layer 1
    *    INDEX 2: Texture Layer 2
    *    etc etc etc
    */

    class Default {
        vItemSpace = -1;
        storageFee[] = { 1000, 1000, 1000, 1000 };
        garageSell[] = { 0, 0, 0, 0 };
        insurance = 2500;
        chopShop = 1000;
        textures[] = {};
    };

    class I_Truck_02_medical_F {
        vItemSpace = 150;
        storageFee[] = { 0, 0, 1500, 0 };
        garageSell[] = { 0, 0, 5000, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };

    class O_Truck_03_medical_F {
        vItemSpace = 200;
        storageFee[] = { 0, 0, 3000, 0 };
        garageSell[] = { 0, 0, 10000, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };

    class B_Truck_01_medical_F {
        vItemSpace = 250;
        storageFee[] = { 0, 0, 6500, 0 };
        garageSell[] = { 0, 0, 25000, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };

    class C_Rubberboat {
        vItemSpace = 50;
        storageFee[] = { 400, 300, 0, 0 };
        garageSell[] = { 950, 350, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class O_Boat_Armed_01_hmg_F {
        vItemSpace = 175;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 21000, 21000, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class B_Boat_Armed_01_minigun_F {
        vItemSpace = 175;
        storageFee[] = { 0, 16500, 0, 0 };
        garageSell[] = { 0, 21000, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class I_Boat_Armed_01_minigun_F {
        vItemSpace = 175;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 21000, 21000, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class B_G_Boat_Transport_01_F {
        vItemSpace = 50;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 0, 850, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class B_Boat_Transport_01_F {
        vItemSpace = 50;
        storageFee[] = { 0, 450, 0, 0 };
        garageSell[] = { 0, 850, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class O_Truck_03_transport_F {
        vItemSpace = 1000;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class O_Truck_03_device_F {
        vItemSpace = 680;
        storageFee[] = { 95000, 0, 0, 0 };
        garageSell[] = { 185000, 0, 0, 0 };
        insurance = 25000;
        chopShop = 125000;
        textures[] = { };
    };

    class Land_CargoBox_V1_F {
        vItemSpace = 5000;
        storageFee[] = { 1000, 1000, 1000, 1000 };
        garageSell[] = { 0, 0, 0, 0 };
        insurance = 2500;
        chopShop = 1200;
        textures[] = {};
    };

    class Box_IND_Grenades_F {
        vItemSpace = 350;
        storageFee[] = { 1000, 1000, 1000, 1000 };
        garageSell[] = { 0, 0, 0, 0 };
        insurance = 2500;
        chopShop = 1200;
        textures[] = {};
    };

    class B_supplyCrate_F {
        vItemSpace = 700;
        storageFee[] = { 1000, 1000, 1000, 1000 };
        garageSell[] = { 0, 0, 0, 0 };
        insurance = 2500;
        chopShop = 1200;
        textures[] = {};
    };

    class B_G_Offroad_01_F {
        vItemSpace = 125;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class B_G_Offroad_01_armed_F {
        vItemSpace = 125;
        storageFee[] = { 1500, 0, 0, 0 };
        garageSell[] = { 4000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class C_Boat_Civil_01_F {
        vItemSpace = 100;
        storageFee[] = { 4500, 2500, 0, 0 };
        garageSell[] = { 6800, 3500, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class C_Boat_Civil_01_police_F {
        vItemSpace = 100;
        storageFee[] = { 0, 3500, 0, 0 };
        garageSell[] = { 0, 4950, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class C_Boat_Civil_01_rescue_F {
        vItemSpace = 100;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = { };
    };

    class B_Truck_01_box_F {
        vItemSpace = 1500;
        storageFee[] = { 35000, 0, 0, 0 };
        garageSell[] = { 150000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = { };
    };

    class B_Truck_01_transport_F {
        vItemSpace = 800;
        storageFee[] = { 25650, 0, 0, 0 };
        garageSell[] = { 135000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = { };
    };

    class C_Offroad_01_F {
        vItemSpace = 100;
        storageFee[] = { 1000, 500, 650, 1000 };
        garageSell[] = { 6500, 2500, 0, 0 };
        insurance = 2500;
        chopShop = 2500;
        textures[] = {
            { "Red", "civ", {
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa",
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa"
            } },
            { "Yellow", "civ", {
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa",
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa"
            } },
            { "White", "civ", {
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa",
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa"
            } },
            { "Blue", "civ", {
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa",
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa"
            } },
            { "Dark Red", "civ", {
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa",
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa"
            } },
            { "Blue / White", "civ", {
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa",
                "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa"
            } },
            { "Taxi", "civ", {
                "#(argb,8,8,3)color(0.6,0.3,0.01,1)"
            } },
            { "Fed", "fed", {
                "#(ai,64,64,1)Fresnel(0.3,3)"
            } },
            { "Polizei", "cop", {
	                "textures\Skins\Polizei\Pol_Offroad.paa"
            } },
            { "Rebellen", "reb", {
	                "textures\Skins\zivi\REB_Offroader.paa"
            } },
            { "Feuerwehr", "med", {
	                "textures\Skins\Feuerwehr\ff_Offroad.paa"
            } }
        };
    };

    class C_Kart_01_F {
        vItemSpace = 20;
        storageFee[] = { 1500, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        inusrance = 1650;
        chopShop = 2500;
        textures[] = {
            { "Schwarz", "civ", {
                "\A3\soft_f_kart\kart_01\data\kart_01_base_black_co.paa"
            } },
            { "Blau", "civ", {
                "\A3\soft_f_kart\kart_01\data\kart_01_base_blue_co.paa"
            } },
            { "Grün", "civ", {
                "\A3\soft_f_kart\kart_01\data\kart_01_base_green_co.paa"
            } },
            { "Orange", "civ", {
                "\A3\soft_f_kart\kart_01\data\kart_01_base_orange_co.paa"
            } },
            { "Rot", "civ", {
                "\A3\soft_f_kart\kart_01\data\kart_01_base_red_co.paa"
            } },
            { "Weiss", "civ", {
                "\A3\soft_f_kart\kart_01\data\kart_01_base_white_co.paa"
            } },
            { "Gelb", "civ", {
	            "\A3\soft_f_kart\kart_01\data\kart_01_base_yellow_co.paa"
            } }
        };
    };
	
	class C_Kart_01_Blu_F {
        vItemSpace = 20;
        storageFee[] = { 1500, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        inusrance = 1650;
        chopShop = 2500;
        textures[] = {};
    };

    class C_Kart_01_Fuel_F {
        vItemSpace = 20;
        storageFee[] = { 1500, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        inusrance = 1650;
        chopShop = 2500;
        textures[] = {};
    };

    class C_Kart_01_Red_F {
        vItemSpace = 20;
        storageFee[] = { 1500, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        inusrance = 1650;
        chopShop = 2500;
        textures[] = {};
    };

    class C_Kart_01_Vrana_F {
        vItemSpace = 20;
        storageFee[] = { 1500, 0, 0, 0 };
        garageSell[] = { 3500, 0, 0, 0 };
        inusrance = 1650;
        chopShop = 2500;
        textures[] = {};
    };

    class C_Hatchback_01_sport_F {
        vItemSpace = 50;
        storageFee[] = { 2500, 1000, 0, 0 };
        garageSell[] = { 15000, 7500, 0, 0 };
        insurance = 5500;
        chopShop = 2500;
        textures[] = {
            { "Red", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport01_co.paa"
            } },
            { "Dark Blue", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport02_co.paa"
            } },
            { "Orange", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport03_co.paa"
            } },
            { "Black / White", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport04_co.paa"
            } },
            { "Beige", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport05_co.paa"
            } },
            { "Green", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport06_co.paa"
            } },
            { "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Limosine.paa"
            } },
            { "Feuerwehr", "med", {
                "textures\Skins\Feuerwehr\ff_Limosine.paa"
            } }
        };
    };

    class B_Quadbike_01_F {
        vItemSpace = 25;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 950, 0, 0, 0 };
        insurance = 2500;
        chopShop = 1000;
        textures[] = {
            { "Brown", "civ", {
                "\A3\Soft_F\Quadbike_01\Data\Quadbike_01_co.paa"
            } },
            { "Digi Desert", "reb", {
                "\A3\Soft_F\Quadbike_01\Data\quadbike_01_opfor_co.paa"
            } },
            { "Black", "civ", {
                "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_black_co.paa"
            } },
            { "Blue", "cop", {
                "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_blue_co.paa"
            } },
            { "Red", "civ", {
                "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_red_co.paa"
            } },
            { "White", "civ", {
                "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_white_co.paa"
            } },
            { "Digi Green", "reb", {
                "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_indp_co.paa"
            } },
            { "Hunter Camo", "reb", {
                "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
            } },
            { "Rebel Camo", "reb", {
                "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
            } }
        };
    };

    class I_Truck_02_covered_F {
        vItemSpace = 600;
        storageFee[] = { 14500, 0, 0, 0 };
        garageSell[] = { 62000, 0, 0, 0 };
        insurance = 6500;
        chopShop = 25000;
        textures[] = {
            { "Orange", "civ", {
                "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
                "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
            } },
            { "Black", "fed", {
                "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
            } }
        };
    };

    class I_Truck_02_transport_F {
        vItemSpace = 500;
        storageFee[] = { 12000, 0, 0, 0 };
        garageSell[] = { 49800, 3500, 0, 0 };
        insurance = 6500;
        chopShop = 25000;
        textures[] = {
            { "Orange", "civ", {
                "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
                "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
            } },
            { "Black", "fed", {
                "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
            } }
        };
    };

    class O_Truck_03_covered_F {
        vItemSpace = 1300;
        storageFee[] = { 25000, 0, 0, 0 };
        garageSell[] = { 65000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = {};
    };

    class C_Hatchback_01_F {
        vItemSpace = 50;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 4500, 3500, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = {
            { "Beige", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base01_co.paa"
            } },
            { "Green", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base02_co.paa"
            } },
            { "Blue", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base03_co.paa"
            } },
            { "Dark Blue", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base04_co.paa"
            } },
            { "Yellow", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base06_co.paa"
            } },
            { "White", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base07_co.paa"
            } },
            { "Grey", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base08_co.paa"
            } },
            { "Black", "civ", {
                "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base09_co.paa"
            } },
            { "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Limosine.paa"
            } },
            { "Feuerwehr", "med", {
                "textures\Skins\Feuerwehr\ff_Limosine.paa"
            } }
        };
    };

    class C_SUV_01_F {
        vItemSpace = 60;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 15000, 7500, 0, 0 };
        insurance = 2500;
        chopShop = 5000;
        textures[] = {
            { "Dunkel Rot", "civ", {
                "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_co.paa"
            } },
            { "Rebellen", "reb", {
                "textures\Skins\Zivi\Reb_suv.paa"
            } },
            { "Silber", "civ", {
                "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_03_co.paa"
            } },
            { "Orange", "civ", {
                "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_04_co.paa"
            } },
            { "Polizei", "cop", {
	                "textures\Skins\Polizei\Pol_Suv.paa"
            } },
            { "Undercover", "cop", {
                "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_02_co.paa"
            } },
            { "Feuerwehr", "med", {
                "textures\Skins\Feuerwehr\ff_Suv.paa"
            } }
        };
    };

    class C_Van_01_transport_F {
        vItemSpace = 200;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 25000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 10000;
        textures[] = {
            { "Weiss", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
            } },
            { "Rot", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
            } },
			{ "Schwarz", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_black_co.paa"
            } }
        };
    };

    class C_Van_01_box_F {
        vItemSpace = 400;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 35000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 10000;
        textures[] = {
            { "Weiss", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
            } },
            { "Rot", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
            } },
            { "Feuerwehr", "med", {
                "textures\Skins\Feuerwehr\FF_TRUCK.paa",
                "textures\Skins\Feuerwehr\FF_Truck_heck.paa"
            } },
			{ "Schwarz", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_black_co.paa"
            } }
        };
    };
    class C_Van_01_fuel_F {
        vItemSpace = 300;
        storageFee[] = { 1000, 0, 0, 0 };
        garageSell[] = { 35000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 10000;
        textures[] = {
            { "Weiss", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
            } },
            { "Rot", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
            } },
			{ "Schwarz", "civ", {
                "\a3\soft_f_gamma\Van_01\Data\van_01_ext_black_co.paa"
            } }
        };
    };

    class B_MRAP_01_F {
        vItemSpace = 100;
        storageFee[] = { 50000, 7500, 0, 0 };
		garageSell[] = { 25000, 10000, 0, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = {
        	{ "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Hunter.paa",
				"textures\Skins\Polizei\Pol_Hunter_heck.paa"
            } },
            { "Rebellen", "reb", {
                "textures\Skins\Zivi\Reb_Hunter.paa",
				"textures\Skins\Zivi\Reb_Hunter_heck.paa"}
            }
        };
    };   
     
    class B_Heli_Transport_03_unarmed_F {
        vItemSpace = 500;
        storageFee[] = { 100000, 7500, 0, 0 };
		garageSell[] = { 50000, 7500, 0, 0 };
        insurance = 2500;
        chopShop = 500000;
        textures[] = {
        	{ "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Huron.paa",
				"textures\Skins\Polizei\Pol_Huron_heck.paa"
            } },
			{ "Schwarz", "cop", {
                "\A3\air_f_heli\Heli_Transport_03\Data\heli_transport_03_ext01_black_co.paa",
				"\A3\air_f_heli\Heli_Transport_03\Data\heli_transport_03_ext02_black_co.paa"
            } },
			{ "Grün", "civ", {
                "\A3\air_f_heli\Heli_Transport_03\Data\heli_transport_03_ext01_co.paa",
				"\A3\air_f_heli\Heli_Transport_03\Data\heli_transport_03_ext02_co.paa"
            } }
        };
    };  
	
    class B_Heli_Transport_01_F {
        vItemSpace = 150;
        storageFee[] = { 0, 7500, 0, 0 };
		garageSell[] = { 0, 10000, 0, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = {
        	{ "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Ghosthawk.paa",
				"textures\Skins\Polizei\Pol_Ghosthawk_heck.paa"
            } }
        };
    };
	
    class I_Heli_light_03_unarmed_F {// Hellcat
        vItemSpace = 200;
        storageFee[] = { 10000, 1000, 1000, 0 };
		garageSell[] = { 65000, 1000, 1000, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = { 
			{ "Polizei", "cop", {
				   "textures\Skins\Polizei\Pol_hellcat.paa"
			} },
			{ "Feuerwehr", "med", {
				   "textures\Skins\Feuerwehr\FF_hellcat.paa"
			} },
            { "Rebellen", "reb", {
               "textures\Skins\zivi\reb_hellcat.paa"}
            }
        };
    };         
    
    class O_APC_Wheeled_02_rcws_F {
        vItemSpace = 250;
        storageFee[] = { 0, 7500, 0, 0 };
		garageSell[] = { 0, 10000, 0, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = {
        	{ "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Marid.paa",
				"textures\Skins\Polizei\Pol_Marid_heck.paa",
                ""
            } }
        };
    };
	
	class I_APC_Wheeled_03_cannon_F {
        vItemSpace = 250;
        storageFee[] = { 500000, 0, 0, 0 };
        garageSell[] = { 1000000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 500000;
        textures[] = {};
    };
	
	class O_Heli_Transport_04_F {
        vItemSpace = 200;
        storageFee[] = { 50000, 0, 0, 0 };
		garageSell[] = { 25000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
	
	class O_Heli_Transport_04_bench_F {
        vItemSpace = 100;
        storageFee[] = { 50000, 0, 0, 0 };
		garageSell[] = { 25000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
	
	class O_Heli_Transport_04_box_F {
        vItemSpace = 500;
        storageFee[] = { 50000, 0, 0, 0 };
		garageSell[] = { 25000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
	
	class O_Heli_Transport_04_covered_F {
        vItemSpace = 300;
        storageFee[] = { 50000, 0, 0, 0 };
		garageSell[] = { 25000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
	
	class O_Heli_Transport_04_fuel_F {
        vItemSpace = 400;
        storageFee[] = { 50000, 0, 0, 0 };
		garageSell[] = { 25000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
            
    class B_Heli_Light_01_F {
        vItemSpace = 75;
        storageFee[] = { 25000, 10000, 0, 0 };
        garageSell[] = { 50000, 25000, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {
            { "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Hummingbird.paa"
            } },
            { "Black", "cop", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_ion_co.paa"
            } },
            { "Civ Blue", "civ", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"
            } },
            { "Civ Red", "civ", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"
            } },
            { "Digi Green", "reb", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_indp_co.paa"
            } },
            { "Blueline", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueline_co.paa"
            } },
            { "Elliptical", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"
            } },
            { "Furious", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"
            } },
            { "Jeans Blue", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"
            } },
            { "Speedy Redline", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"
            } },
            { "Sunset", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"
            } },
            { "Vrana", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"
            } },
            { "Waves Blue", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"
            } },
            { "Rebel Digital", "reb", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
            } },
            { "Feuerwehr", "med", {
                "textures\Skins\Feuerwehr\FF_Hummingbird.paa"
            } },
			{ "Graywatcher", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_graywatcher_co.paa"
            } },
			{ "Hell", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_light_co.paa"
            } },
			{ "Shadow", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_shadow_co.paa"
            } },
			{ "Wespe", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wasp_co.paa"
            } }
        };
    };
            
    class C_Heli_Light_01_civil_F {
        vItemSpace = 75;
        storageFee[] = { 25000, 10000, 0, 0 };
        garageSell[] = { 50000, 25000, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {
            { "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_Hummingbird.paa"
            } },
            { "Black", "cop", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_ion_co.paa"
            } },
            { "Civ Blue", "civ", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"
            } },
            { "Civ Red", "civ", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"
            } },
            { "Digi Green", "reb", {
                "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_indp_co.paa"
            } },
            { "Blueline", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueline_co.paa"
            } },
            { "Elliptical", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"
            } },
            { "Furious", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"
            } },
            { "Jeans Blue", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"
            } },
            { "Speedy Redline", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"
            } },
            { "Sunset", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"
            } },
            { "Vrana", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"
            } },
            { "Waves Blue", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"
            } },
            { "Rebel Digital", "reb", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
            } },
            { "Feuerwehr", "med", {
                "textures\Skins\Feuerwehr\FF_Hummingbird.paa"
            } },
			{ "Graywatcher", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_graywatcher_co.paa"
            } },
			{ "Hell", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_light_co.paa"
            } },
			{ "Shadow", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_shadow_co.paa"
            } },
			{ "Wespe", "civ", {
                "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wasp_co.paa"
            } }
        };
    };    
            
    class O_Heli_Light_02_unarmed_F {
        vItemSpace = 250;
        storageFee[] = { 50000, 0, 20000, 0 };
        garageSell[] = { 75000, 0, 35000, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = {
            { "Polizei", "cop", {
                "textures\Skins\Polizei\Pol_orca.paa"
            } },
            { "White / Blue", "civ", {
                "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_civilian_co.paa"
            } },
            { "Digi Green", "reb", {
                "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_indp_co.paa"
            } },
            { "Desert Digi", "reb", {
                "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_opfor_co.paa"
            } },
            { "Feuerwehr", "med", {
                "textures\Skins\Feuerwehr\FF_orca.paa"
            } }
        };
    };

    class I_Heli_Transport_02_F {
        vItemSpace = 375;
        storageFee[] = { 75000, 0, 0, 0 };
        garageSell[] = { 125000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 50000;
        textures[] = {
            { "Ion", "civ", {
                "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_1_ion_co.paa",
                "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_2_ion_co.paa",
                "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_3_ion_co.paa"
            } },
            { "Dahoman", "civ", {
                "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_1_dahoman_co.paa",
                "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_2_dahoman_co.paa",
                "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_3_dahoman_co.paa"
            } }
        };
    };
    
    class I_Truck_02_fuel_F {
        vItemSpace = 700;
        storageFee[] = { 25000, 0, 0, 0 };
        garageSell[] = { 65000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 20000;
        textures[] = {
            { "Orange", "civ", {
                "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
                "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa",
				"\a3\soft_f_beta\Truck_02\data\truck_02_fuel_co.paa"
            } }
        };
    };
    
    class O_Truck_03_fuel_F {
        vItemSpace = 1200;
        storageFee[] = { 25000, 0, 0, 0 };
        garageSell[] = { 65000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 20000;
        textures[] = {};
    };
    
    class O_Truck_03_repair_F {
        vItemSpace = 1500;
        storageFee[] = { 25000, 0, 0, 0 };
        garageSell[] = { 65000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 20000;
        textures[] = {};
    };
    
    class B_Truck_01_covered_F {
        vItemSpace = 900;
        storageFee[] = { 25000, 0, 0, 0 };
        garageSell[] = { 65000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 20000;
        textures[] = {};
    };
    
    class B_Truck_01_fuel_F {
        vItemSpace = 1000;
        storageFee[] = { 25000, 0, 0, 0 };
        garageSell[] = { 65000, 0, 0, 0 };
        insurance = 2500;
        chopShop = 20000;
        textures[] = {};
    };
	
	class B_SDV_01_F {
        vItemSpace = 100;
        storageFee[] = { 25000, 10000, 0, 0 };
        garageSell[] = { 50000, 5000, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
	
	class O_SDV_01_F {
        vItemSpace = 100;
        storageFee[] = { 25000, 10000, 0, 0 };
        garageSell[] = { 50000, 5000, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
	
	class I_SDV_01_F {
        vItemSpace = 100;
        storageFee[] = { 25000, 10000, 0, 0 };
        garageSell[] = { 50000, 5000, 0, 0 };
        insurance = 2500;
        chopShop = 25000;
        textures[] = {};
    };
};
