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 };
|
|
};
|
|
}; |