mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
class JetSkiYanahui_Case;
|
|
class JetSkiYanahui_Case_Yellow : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_YELLOW;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
supplyRadius = 2;
|
|
};
|
|
|
|
class JetSkiYanahui_Case_Green : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_GREEN;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
supplyRadius = 2;
|
|
};
|
|
|
|
class JetSkiYanahui_Case_Blue : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_BLUE;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
supplyRadius = 2;
|
|
};
|
|
|
|
class JetSkiYanahui_Case_Red : JetSkiYanahui_Case {
|
|
displayName = $STR_VEH_NAME_JETSKI_RED;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
supplyRadius = 2;
|
|
}; |