mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
31 lines
692 B
C++
31 lines
692 B
C++
class PBX;
|
|
class PBX_DZE: PBX {
|
|
scope = public;
|
|
displayname = $STR_VEH_NAME_PBX;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
transportMaxWeapons = 5;
|
|
transportMaxMagazines = 50;
|
|
transportMaxBackpacks = 1;
|
|
fuelCapacity = 20;
|
|
supplyRadius = 2;
|
|
};
|
|
|
|
class Zodiac;
|
|
class Zodiac_DZE: Zodiac {
|
|
scope = public;
|
|
displayname = $STR_VEH_NAME_CRRC;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
transportMaxWeapons = 5;
|
|
transportMaxMagazines = 50;
|
|
transportMaxBackpacks = 1;
|
|
fuelCapacity = 20;
|
|
supplyRadius = 2;
|
|
}; |