Skip to content

Commit

Permalink
Ammunition WS - Add Surefire & Camo Stanag (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike-MF authored Jan 5, 2025
1 parent 625a33d commit 4f55e06
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
11 changes: 11 additions & 0 deletions addons/ammunition/ws/CfgMagazineWells.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
class CfgMagazineWells {
class CBA_556x45_STANAG {
ADDON[] = {
QCLASS(30Rnd_556x45_Ball_Camo_Stanag),
QCLASS(30Rnd_556x45_Ball_Tracer_Camo_Stanag),
QCLASS(30Rnd_556x45_EPR_Camo_Stanag),
QCLASS(30Rnd_556x45_AP_Camo_Stanag),
QCLASS(75Rnd_556x45_Ball_Surefire),
QCLASS(75Rnd_556x45_Tracer_Surefire),
QCLASS(75Rnd_556x45_EPR_Surefire)
};
};
class 556x45_Velko {
ADDON[] = {
QCLASS(35Rnd_556x45_Ball_R4),
Expand Down
2 changes: 2 additions & 0 deletions addons/ammunition/ws/CfgMagazines.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ class CfgMagazines {
class 8Rnd_12Gauge_AA40_Pellets_lxWS;
class 20Rnd_12Gauge_AA40_Pellets_lxWS;
class 20Rnd_762x51_slr_lxWS;
class 30Rnd_556x45_Stanag_Tracer_Yellow_camo_lxWS;
class 75Rnd_556x45_Stanag_lxWS;
class 100Rnd_762x51_S77_Yellow_lxWS;

#include "magazines\12g.hpp"
Expand Down
50 changes: 50 additions & 0 deletions addons/ammunition/ws/magazines/556x45.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,53 @@ class CLASS(50Rnd_556x45_EPR_R4): CLASS(50Rnd_556x45_Ball_R4) {
displayNameShort = "EPR";
descriptionShort = "5.56x45mm EPR Reload Tracer";
};

// Stanag
class CLASS(30Rnd_556x45_Ball_Camo_Stanag): 30Rnd_556x45_Stanag_Tracer_Yellow_camo_lxWS {
MACRO_SCOPE;
ammo = QCLASS(556x45_Ball);
displayName = "5.56mm 30Rnd Stanag Camo (Ball)";
displayNameShort = "Ball";
descriptionShort = "5.56x45mm Ball Reload Tracer";
lastRoundsTracer = 4;
};
class CLASS(30Rnd_556x45_Ball_Tracer_Camo_Stanag): CLASS(30Rnd_556x45_Ball_Camo_Stanag) {
displayName = "5.56mm 30Rnd Stanag [T] Camo (Ball)";
displayNameShort = "Ball Tracer";
descriptionShort = "5.56x45mm Ball Tracer";
tracersEvery = 1;
};
class CLASS(30Rnd_556x45_EPR_Camo_Stanag): CLASS(30Rnd_556x45_Ball_Camo_Stanag) {
ammo = QCLASS(556x45_EPR);
displayName = "5.56mm 30Rnd Stanag Camo (EPR)";
displayNameShort = "EPR";
descriptionShort = "5.56x45mm EPR Reload Tracer";
};
class CLASS(30Rnd_556x45_AP_Camo_Stanag): CLASS(30Rnd_556x45_Ball_Camo_Stanag) {
ammo = QCLASS(556x45_AP);
displayName = "5.56mm 30Rnd Stanag Camo (AP)";
displayNameShort = "AP";
descriptionShort = "5.56x45mm AP Reload Tracer";
};

// Surefire
class CLASS(75Rnd_556x45_Ball_Surefire): 75Rnd_556x45_Stanag_lxWS {
MACRO_SCOPE;
ammo = QCLASS(556x45_Ball);
displayName = "5.56mm 75Rnd Surefire (Ball)";
displayNameShort = "Ball";
descriptionShort = "5.56x45mm Ball Reload Tracer";
lastRoundsTracer = 4;
};
class CLASS(75Rnd_556x45_Tracer_Surefire): CLASS(75Rnd_556x45_Ball_Surefire) {
displayName = "5.56mm 75Rnd Surefire [T] (Ball)";
displayNameShort = "Ball Tracer";
descriptionShort = "5.56x45mm Ball Tracer";
tracersEvery = 1;
};
class CLASS(75Rnd_556x45_EPR_Surefire): CLASS(75Rnd_556x45_Ball_Surefire) {
ammo = QCLASS(556x45_EPR);
displayName = "5.56mm 75Rnd Surefire (EPR)";
displayNameShort = "EPR";
descriptionShort = "5.56x45mm EPR Reload Tracer";
};

0 comments on commit 4f55e06

Please sign in to comment.