mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
This adds 2 new versions of cargo trucks. A truck for items and a truck for weapons. Also setting the supplyRadius for every refuel, reammo and repair truck to 0. Just to be sure.
163 lines
4.9 KiB
C++
163 lines
4.9 KiB
C++
class Kamaz_Base;
|
|
class KamazOpen_DZE : Kamaz_Base {
|
|
scope = public;
|
|
displayName = $STR_VEH_NAME_KAMAZ;
|
|
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.";
|
|
};
|
|
class Upgrades {
|
|
ItemORP[] = {"KamazOpen_DZE1",{},{{"ItemORP",1},{"PartEngine",2}}};
|
|
};
|
|
};
|
|
class Kamaz_DZE: Kamaz_Base {
|
|
scope = public;
|
|
displayName = $STR_VEH_NAME_KAMAZ_COVERT;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
cargoAction[] = {"Truck_Cargo01","Truck_Cargo01","Truck_Cargo02","Truck_Cargo03","Truck_Cargo02","Truck_Cargo02","Truck_Cargo03","Truck_Cargo02","Truck_Cargo03","Truck_Cargo02","Truck_Cargo02","Truck_Cargo03"};
|
|
class Upgrades {
|
|
ItemORP[] = {"Kamaz_DZE1",{},{{"ItemORP",1},{"PartEngine",2}}};
|
|
};
|
|
};
|
|
class KamazOpen_DZE1: KamazOpen_DZE {
|
|
original = "KamazOpen_DZE";
|
|
maxspeed = 100; //base 80
|
|
terrainCoef = 1.8; // base 2.0
|
|
turnCoef = 2.0; // base 3.7
|
|
class Upgrades {
|
|
ItemAVE[] = {"KamazOpen_DZE2",{},{{"ItemAVE",1},{"PartGeneric",6},{"ItemTankTrap",4}}};
|
|
};
|
|
};
|
|
class Kamaz_DZE1: Kamaz_DZE {
|
|
original = "Kamaz_DZE";
|
|
maxspeed = 100; //base 80
|
|
terrainCoef = 1.8; // base 2.0
|
|
turnCoef = 2.0; // base 3.7
|
|
class Upgrades {
|
|
ItemAVE[] = {"Kamaz_DZE2",{},{{"ItemAVE",1},{"PartGeneric",6},{"ItemTankTrap",4}}};
|
|
};
|
|
};
|
|
class KamazOpen_DZE2: KamazOpen_DZE1 {
|
|
armor = 70; //base 32
|
|
damageResistance = 0.0255; // base 0.00243
|
|
class Upgrades {
|
|
ItemLRK[] = {"KamazOpen_DZE3",{},{{"ItemLRK",1},{"PartGeneric",4},{"ItemTent",2}}};
|
|
};
|
|
};
|
|
class Kamaz_DZE2: Kamaz_DZE1 {
|
|
armor = 70; //base 32
|
|
damageResistance = 0.0255; // base 0.00243
|
|
class Upgrades {
|
|
ItemLRK[] = {"Kamaz_DZE3",{},{{"ItemLRK",1},{"PartGeneric",4},{"ItemTent",2}}};
|
|
};
|
|
};
|
|
class KamazOpen_DZE3: KamazOpen_DZE2 {
|
|
transportMaxWeapons = 75; // Ural Base 50
|
|
transportMaxMagazines = 300; // Ural Base 200
|
|
transportmaxbackpacks = 12; // Ural Base 8
|
|
class Upgrades {
|
|
ItemTNK[] = {"KamazOpen_DZE4",{},{{"ItemTNK",1},{"PartFueltank",4}}};
|
|
};
|
|
};
|
|
class Kamaz_DZE3: Kamaz_DZE2 {
|
|
transportMaxWeapons = 75; // Ural Base 50
|
|
transportMaxMagazines = 300; // Ural Base 200
|
|
transportmaxbackpacks = 12; // Ural Base 8
|
|
class Upgrades {
|
|
ItemTNK[] = {"Kamaz_DZE4",{},{{"ItemTNK",1},{"PartFueltank",4}}};
|
|
};
|
|
};
|
|
class Kamaz_DZE4: Kamaz_DZE3 {
|
|
fuelCapacity = 615; // Ural Base 303
|
|
};
|
|
class KamazOpen_DZE4: KamazOpen_DZE3 {
|
|
fuelCapacity = 615; // Ural Base 303
|
|
};
|
|
class KamazRefuel;
|
|
class KamazRefuel_DZ: KamazRefuel {
|
|
scope = public;
|
|
displayName = $STR_VEH_NAME_KAMAZ_REFUEL;
|
|
side = 2;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
hiddenSelections[] = {};
|
|
transportMaxWeapons = 50;
|
|
transportMaxMagazines = 200;
|
|
transportmaxbackpacks = 8;
|
|
class TransportMagazines{};
|
|
class TransportWeapons{};
|
|
fuelCapacity = 10400;
|
|
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
|
supplyRadius = 0;
|
|
};
|
|
class KamazRefuel_DZE1: KamazRefuel_DZ {
|
|
original = "KamazRefuel_DZ";
|
|
maxspeed = 100; //base 80
|
|
terrainCoef = 1.8; // base 2.0
|
|
turnCoef = 2.0; // base 3.7
|
|
class Upgrades {
|
|
ItemAVE[] = {"KamazRefuel_DZE2",{},{{"ItemAVE",1},{"PartGeneric",6},{"ItemTankTrap",4}}};
|
|
};
|
|
};
|
|
class KamazRefuel_DZE2: KamazRefuel_DZE1 {
|
|
armor = 70; //base 32
|
|
damageResistance = 0.0255; // base 0.00243
|
|
class Upgrades {
|
|
ItemLRK[] = {"KamazRefuel_DZE3",{},{{"ItemLRK",1},{"PartGeneric",4},{"ItemTent",2}}};
|
|
};
|
|
};
|
|
class KamazRefuel_DZE3: KamazRefuel_DZE2 {
|
|
transportMaxWeapons = 75; // Ural Base 50
|
|
transportMaxMagazines = 300; // Ural Base 200
|
|
transportmaxbackpacks = 12; // Ural Base 8
|
|
class Upgrades {
|
|
ItemTNK[] = {"KamazRefuel_DZE4",{},{{"ItemTNK",1},{"PartFueltank",4}}};
|
|
};
|
|
};
|
|
class KamazRefuel_DZE4: KamazRefuel_DZE3 {
|
|
fuelCapacity = 10700; // Increase the total fuel capacity of the Refuel truck by the additional normal sized fuel tank of a Ural.
|
|
};
|
|
|
|
class KamazRepair;
|
|
class KamazRepair_DZE : KamazRepair {
|
|
scope = public;
|
|
displayName = $STR_VEH_NAME_KAMAZ_AMMO;
|
|
side = 2;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
hiddenSelections[] = {};
|
|
transportMaxWeapons = 25;
|
|
transportMaxMagazines = 300;
|
|
transportmaxbackpacks = 8;
|
|
class TransportMagazines{};
|
|
class TransportWeapons{};
|
|
supplyRadius = 0;
|
|
transportRepair = 0;
|
|
};
|
|
|
|
class KamazReammo;
|
|
class KamazReammo_DZE : KamazReammo {
|
|
scope = public;
|
|
displayName = $STR_VEH_NAME_KAMAZ_WEAPONS;
|
|
side = 2;
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
hiddenSelections[] = {};
|
|
transportMaxWeapons = 75;
|
|
transportMaxMagazines = 100;
|
|
transportmaxbackpacks = 8;
|
|
class TransportMagazines{};
|
|
class TransportWeapons{};
|
|
supplyRadius = 0;
|
|
transportAmmo = 0;
|
|
}; |