ACE3/addons/compat_r3f/CfgMagazines.hpp
PabstMirror f644e7516c
Compats - Make rest of compats auto load if mod present (#9372)
Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
Co-authored-by: jonpas <jonpas33@gmail.com>
2023-09-08 16:57:33 +02:00

19 lines
1.1 KiB
C++

class CfgMagazines {
class CA_magazine;
class R3F_securite_mag: CA_magazine {
scope = 1; // Game Update 1.84: "Tweaked: Magazines can now be hidden in Virtual Arsenal by setting their scope to 1", R3F default value 2
};
class R3F_15Rnd_9x19_PAMAS: CA_magazine {
initSpeed = 368; // according with the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 350
};
class R3F_15Rnd_9x19_HKUSP: CA_magazine {
initSpeed = 363; // according with the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 350
};
class R3F_17Rnd_9x19_G17: CA_magazine {
initSpeed = 355; // according with the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 350
};
class R3F_5Rnd_127x99_TAC50: CA_magazine { // AtragMx GunList: R3F TAC50 AMAX
initSpeed = 823; // 2700 fps according with the McMillan Tactical Products specification and the ACE_ammoTempMuzzleVelocityShifts at the normal conditions (15°C), R3F default value 820
};
};