This commit is the equivalent of a atomic bomb

This commit is contained in:
2026-02-15 08:08:56 -03:00
commit e4ac56b038
6934 changed files with 916278 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
class CfgMagazines
{
class Default;
class CA_Magazine;
class 7Rnd_Perseis_II_mag: CA_Magazine
{
scope = 2;
displayName = "7 Rounds PGM Hecate II";
picture = "\braf\braf_weapons_sniper_rifles\50cal_MSR_HecateII\Data\UI\AMF_PERSEIS_II_MAG_ICO_CA.paa"; /// just some icon
ammo = "B_127x99_Ball";
count = 7; /// 30 rounds is enough
initSpeed = 780; /// standard muzzle speed
tracersEvery = 0; /// disable tracers by default
lastRoundsTracer = 4; /// tracers to track low ammo
descriptionShort = "Used to shoot PGM Hecate II bullets"; /// on mouse-over in Inventory
magazineGroup[] = {"Perseis_II_mag_group"}; /// all magazines in the same group may be used in weapon that has the group defined as compatible
};
class 7Rnd_Perseis_II_mag_Tracer_yellow: 7Rnd_Perseis_II_mag /// a magazine full of tracer rounds
{
picture = "\braf\braf_weapons_sniper_rifles\50cal_MSR_HecateII\Data\UI\AMF_PERSEIS_II_MAG_YELLOW_ICO_CA.paa"; /// just some icon
ammo = "B_127x99_Ball_Tracer_Yellow";
tracersEvery = 1; /// moar tracers
lastRoundsTracer = 7; /// tracers everywhere
displayName = "7 Rounds PGM Hecate II Yellow tracer";
descriptionShort = "Used to shoot PGM Hecate II tracer bullets";
displaynameshort = "Tracers";
magazineGroup[] = {"Perseis_II_mag_group"};
};
class 7Rnd_Perseis_II_mag_Tracer_green: 7Rnd_Perseis_II_mag /// a magazine full of tracer rounds
{
picture = "\braf\braf_weapons_sniper_rifles\50cal_MSR_HecateII\Data\UI\AMF_PERSEIS_II_MAG_GREEN_ICO_CA.paa"; /// just some icon
ammo = "B_127x99_Ball_Tracer_Green";
tracersEvery = 1; /// moar tracers
lastRoundsTracer = 7; /// tracers everywhere
displayName = "7 Rounds PGM Hecate II Green tracer";
descriptionShort = "Used to shoot PGM Hecate II tracer bullets";
displaynameshort = "Tracers";
magazineGroup[] = {"Perseis_II_mag_group"};
};
class 7Rnd_Perseis_II_mag_Tracer_red: 7Rnd_Perseis_II_mag /// a magazine full of tracer rounds
{
picture = "\braf\braf_weapons_sniper_rifles\50cal_MSR_HecateII\Data\UI\AMF_PERSEIS_II_MAG_RED_ICO_CA.paa"; /// just some icon
ammo = "B_127x99_Ball_Tracer_Red";
tracersEvery = 1; /// moar tracers
lastRoundsTracer = 7; /// tracers everywhere
displayName = "7 Rounds PGM Hecate II Red tracer";
descriptionShort = "Used to shoot PGM Hecate II tracer bullets";
displaynameshort = "Tracers";
magazineGroup[] = {"Perseis_II_mag_group"};
};
};