This commit is the equivalent of a atomic bomb

This commit is contained in:
2026-02-15 08:08:56 -03:00
commit e4ac56b038
6934 changed files with 916278 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
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 };
};
};