mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-17 17:20:26 +03:00
more vehicles
This commit is contained in:
28
SQF/dayz_code/Configs/CfgVehicles/LAND/Kamaz.hpp
Normal file
28
SQF/dayz_code/Configs/CfgVehicles/LAND/Kamaz.hpp
Normal file
@@ -0,0 +1,28 @@
|
||||
class Kamaz_Base;
|
||||
class KamazOpen_DZE : Kamaz_Base
|
||||
{
|
||||
// maxSpeed = 80;
|
||||
// terrainCoef = 2;
|
||||
|
||||
// truck
|
||||
//transportMaxMagazines = 200;
|
||||
//transportMaxWeapons = 50;
|
||||
//transportMaxBackpacks = 8;
|
||||
|
||||
scope = 2;
|
||||
displayName = "Utility Truck (Open)";
|
||||
model = "\ca\wheeled2\Kamaz\Kamaz_Open";
|
||||
picture = "\Ca\wheeled2\data\ui\Picture_kamaz_open_CA.paa";
|
||||
Icon = "\Ca\wheeled2\data\ui\Icon_kamaz_open_CA.paa";
|
||||
castCargoShadow = 1;
|
||||
|
||||
crew = "";
|
||||
typicalCargo[] = {};
|
||||
class TransportMagazines{};
|
||||
class TransportWeapons{};
|
||||
|
||||
class Library
|
||||
{
|
||||
libTextDesc = "The Kamaz is a Russian-made 6x6 cargo truck developed in 1973 and still manufactured today. These trucks are very reliable, with powerful V8 engines.<br/>This one serves for transportation with an open body.";
|
||||
};
|
||||
};
|
||||
48
SQF/dayz_code/Configs/CfgVehicles/LAND/Ural.hpp
Normal file
48
SQF/dayz_code/Configs/CfgVehicles/LAND/Ural.hpp
Normal file
@@ -0,0 +1,48 @@
|
||||
class Ural_Base;
|
||||
class UralCivil_DZE : Ural_Base
|
||||
{
|
||||
//maxSpeed = 80;
|
||||
//transportMaxMagazines = 200;
|
||||
//transportMaxWeapons = 50;
|
||||
//transportMaxBackpacks = 8;
|
||||
//terrainCoef = 2.5;
|
||||
scope = 2;
|
||||
side = 3;
|
||||
faction = "CIV";
|
||||
displayName = "Ural (Civil)";
|
||||
vehicleClass = "Car";
|
||||
crew = "";
|
||||
typicalCargo[] = {};
|
||||
class TransportMagazines{};
|
||||
class TransportWeapons{};
|
||||
model = "\ca\wheeled\ural";
|
||||
picture = "\Ca\wheeled\data\ico\ural_civil1_CA.paa";
|
||||
rarityUrban = 0.3;
|
||||
accuracy = 0.22;
|
||||
hiddenSelectionsTextures[] = {
|
||||
"\ca\wheeled\data\ural_kabina_civ1_co.paa",
|
||||
"\ca\wheeled\data\ural_plachta_civ1_co.paa"
|
||||
};
|
||||
};
|
||||
class UralOpen_Base;
|
||||
class UralCivil2_DZE : UralOpen_Base
|
||||
{
|
||||
// maxSpeed = 80;
|
||||
displayName = "Ural (Civil 2)";
|
||||
model = "\ca\wheeled\Ural_Open";
|
||||
accuracy = 0.22;
|
||||
scope = 2;
|
||||
side = 3;
|
||||
faction = "CIV";
|
||||
vehicleClass = "Car";
|
||||
crew = "";
|
||||
typicalCargo[] = {};
|
||||
class TransportMagazines{};
|
||||
class TransportWeapons{};
|
||||
picture = "\Ca\wheeled\data\ico\ural_civil1_CA.paa";
|
||||
rarityUrban = 0.22;
|
||||
hiddenSelectionsTextures[] = {
|
||||
"\ca\wheeled\data\ural_kabina_civ2_co.paa",
|
||||
"\ca\wheeled\data\ural_korba_civ2_co.paa"
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user