mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ece1031c4d
* RHS Compat - Add 2 rnd hellfire pylon Close #5957 * change magwell name * gvar->addon
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
class cfgMagazines {
|
|
class CA_Magazine;
|
|
class VehicleMagazine;
|
|
class rhs_mag_30Rnd_556x45_M855A1_Stanag;
|
|
|
|
class rhsusf_100Rnd_556x45_soft_pouch: rhs_mag_30Rnd_556x45_M855A1_Stanag {
|
|
ace_isbelt = 1;
|
|
};
|
|
class rhsusf_50Rnd_762x51: CA_Magazine {
|
|
ace_isbelt = 1;
|
|
};
|
|
class rhs_mag_100rnd_127x99_mag: VehicleMagazine {
|
|
ace_isbelt = 1;
|
|
};
|
|
class RHS_48Rnd_40mm_MK19: VehicleMagazine {
|
|
ace_isbelt = 1;
|
|
};
|
|
|
|
class CA_LauncherMagazine;
|
|
class rhs_mag_smaw_SR: CA_LauncherMagazine {
|
|
EGVAR(overpressure,priority) = 99;
|
|
EGVAR(overpressure,angle) = 0;
|
|
EGVAR(overpressure,range) = 0;
|
|
EGVAR(overpressure,damage) = 0;
|
|
};
|
|
|
|
class rhs_mag_AGM114K_2;
|
|
class GVAR(pylon_mag_2rnd_hellfire_k): rhs_mag_AGM114K_2 {
|
|
displayName = "2x AGM-114K [ACE]";
|
|
pylonWeapon = "ace_hellfire_launcher";
|
|
ammo = "ACE_Hellfire_AGM114K";
|
|
};
|
|
class GVAR(pylon_mag_2rnd_hellfire_n): rhs_mag_AGM114K_2 {
|
|
displayName = "2x AGM-114N [ACE]";
|
|
pylonWeapon = "ace_hellfire_launcher_N";
|
|
ammo = "ACE_Hellfire_AGM114N";
|
|
};
|
|
|
|
};
|