33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
class CfgMagazines {
|
|
class VehicleMagazine;
|
|
|
|
//M41A M32A1 76 mm magazines
|
|
class BRAF_11Rnd_76mm_HEAT : VehicleMagazine {
|
|
author = "BRAF Team";
|
|
displayName = "11 Rounds HEAT 76mm Shells";
|
|
displayNameShort = "11 Rnds HEAT 76mm";
|
|
displayNameMFDFormat = "HEAT-MP";
|
|
ammo = "BRAF_76mm_HEAT_M";
|
|
initSpeed = 900;
|
|
count = 11;
|
|
maxLeadSpeed = 25;
|
|
tracersEvery = 0;
|
|
nameSound = "cannon";
|
|
muzzleImpulseFactor[] = { 0.5, 3 };
|
|
};
|
|
class BRAF_11Rnd_76mm_HE : BRAF_11Rnd_76mm_HEAT {
|
|
displayName = "11 Rounds HE 76mm Shells";
|
|
displayNameShort = "11 Rnds HE 76mm";
|
|
displayNameMFDFormat = "HE";
|
|
ammo = "BRAF_76mm_HE_M";
|
|
initSpeed = 700;
|
|
muzzleImpulseFactor[] = { 1, 6 };
|
|
};
|
|
class BRAF_11Rnd_76mm_APFSDS : BRAF_11Rnd_76mm_HEAT {
|
|
displayName = "11 Rounds APFSDS 76mm Flechette";
|
|
displayNameShort = "11 Rnds APFSDS 76mm";
|
|
ammo = "BRAF_76mm_APFSDS_M";
|
|
initSpeed = 1680;
|
|
muzzleImpulseFactor[] = { 0.5, 3 };
|
|
};
|
|
}; |