mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
class CfgMagazines {
|
|
class 2Rnd_LG_scalpel;
|
|
class 6Rnd_LG_scalpel;
|
|
class 8Rnd_LG_scalpel;
|
|
class PylonRack_1Rnd_LG_scalpel;
|
|
class PylonMissile_1Rnd_LG_scalpel;
|
|
class PylonRack_3Rnd_LG_scalpel;
|
|
class PylonRack_4Rnd_LG_scalpel;
|
|
|
|
class GVAR(2Rnd): 2Rnd_LG_scalpel {
|
|
author = "Brandon (TCVM)";
|
|
displayName = "2x 9K121 Vikhr [ACE]";
|
|
ammo = QGVAR(9k121);
|
|
};
|
|
|
|
class GVAR(6Rnd): 6Rnd_LG_scalpel {
|
|
author = "Brandon (TCVM)";
|
|
displayName = "6x 9K121 Vikhr [ACE]";
|
|
ammo = QGVAR(9k121);
|
|
};
|
|
|
|
class GVAR(8Rnd): 8Rnd_LG_scalpel {
|
|
author = "Brandon (TCVM)";
|
|
displayName = "8x 9K121 Vikhr [ACE]";
|
|
ammo = QGVAR(9k121);
|
|
};
|
|
|
|
class GVAR(PylonRack_1Rnd): PylonRack_1Rnd_LG_scalpel {
|
|
author = "Brandon (TCVM)";
|
|
displayName = "1x 9K121 Vikhr [ACE]";
|
|
ammo = QGVAR(9k121);
|
|
pylonWeapon = QGVAR(9k121);
|
|
};
|
|
class GVAR(PylonMissile_1Rnd): PylonMissile_1Rnd_LG_scalpel {
|
|
author = "Brandon (TCVM)";
|
|
displayName = "1x 9K121 Vikhr [ACE]";
|
|
ammo = QGVAR(9k121);
|
|
pylonWeapon = QGVAR(9k121);
|
|
};
|
|
class GVAR(PylonRack_3Rnd): PylonRack_3Rnd_LG_scalpel {
|
|
author = "Brandon (TCVM)";
|
|
displayName = "3x 9K121 Vikhr [ACE]";
|
|
ammo = QGVAR(9k121);
|
|
pylonWeapon = QGVAR(9k121);
|
|
};
|
|
class GVAR(PylonRack_4Rnd): PylonRack_4Rnd_LG_scalpel {
|
|
author = "Brandon (TCVM)";
|
|
displayName = "4x 9K121 Vikhr [ACE]";
|
|
ammo = QGVAR(9k121);
|
|
pylonWeapon = QGVAR(9k121);
|
|
};
|
|
};
|
|
|