ACE3/addons/aircraft/CfgMagazines.hpp

34 lines
1.1 KiB
C++
Raw Normal View History

2015-01-13 23:52:37 +00:00
class CfgMagazines {
// shoot helper object to tripple rof
2015-01-13 23:52:37 +00:00
class VehicleMagazine;
class 1000Rnd_Gatling_30mm_Plane_CAS_01_F: VehicleMagazine {
2019-08-04 10:36:40 +00:00
ammo = "ACE_Gatling_30mm_Sub_HEI";
2015-01-13 23:52:37 +00:00
count = 1170;
};
2019-08-04 10:36:40 +00:00
class ACE_1000Rnd_Gatling_30mm_Plane_CAS_AP: 1000Rnd_Gatling_30mm_Plane_CAS_01_F {
ammo = "ACE_Gatling_30mm_Sub_AP";
displayName = "30mm DU Armor Piercing";
displayNameShort = "30mm DUAP";
};
2019-08-01 09:21:28 +00:00
2019-08-04 10:36:40 +00:00
class ACE_1000Rnd_Gatling_30mm_Plane_CAS_CM41: 1000Rnd_Gatling_30mm_Plane_CAS_01_F {
ammo = "ACE_Gatling_30mm_Sub_CM41";
displayName = "30mm Combat Mix 4:1 DU:HEI";
displayNameShort = "30mm 4:1 DU:HEI";
};
class ACE_1000Rnd_Gatling_30mm_Plane_CAS_CM51: 1000Rnd_Gatling_30mm_Plane_CAS_01_F {
ammo = "ACE_Gatling_30mm_Sub_CM51";
displayName = "30mm Combat Mix 5:1 DU:HEI";
displayNameShort = "30mm 5:1 DU:HEI";
2019-08-01 09:21:28 +00:00
};
2015-01-13 23:52:37 +00:00
// an extended magazine for the comanche
class 300Rnd_20mm_shells;
2015-01-13 23:52:37 +00:00
class ACE_500Rnd_20mm_shells_Comanche: 300Rnd_20mm_shells {
2015-04-14 22:11:49 +00:00
ammo = "ACE_20mm_HE";
2015-01-13 23:52:37 +00:00
count = 500;
};
};