fix(braf_air2) Naming clonvention for all classes and paths to use lowercase letters.

This commit is contained in:
2026-08-03 15:19:22 -03:00
parent 3af8760da3
commit 3b99904aa7
1007 changed files with 16549 additions and 16423 deletions
@@ -2,12 +2,12 @@ class CfgMagazines {
class VehicleMagazine;
//M41A M32A1 76 mm magazines
class BRAF_11Rnd_76mm_HEAT : VehicleMagazine {
author = "BRAF Team";
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";
ammo = "braf_76mm_heat_m";
initSpeed = 900;
count = 11;
maxLeadSpeed = 25;
@@ -15,18 +15,18 @@ class CfgMagazines {
nameSound = "cannon";
muzzleImpulseFactor[] = { 0.5, 3 };
};
class BRAF_11Rnd_76mm_HE : BRAF_11Rnd_76mm_HEAT {
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";
ammo = "braf_76mm_he_m";
initSpeed = 700;
muzzleImpulseFactor[] = { 1, 6 };
};
class BRAF_11Rnd_76mm_APFSDS : BRAF_11Rnd_76mm_HEAT {
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";
ammo = "braf_76mm_apfsds_m";
initSpeed = 1680;
muzzleImpulseFactor[] = { 0.5, 3 };
};