mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
- move G36 camo with SD attachment support to hero and bandit - also add MG36 DZ version - add back G36A SD with attachment support
25 lines
474 B
C++
25 lines
474 B
C++
class MG36;
|
|
class MG36_DZ: MG36 {
|
|
displayName = $STR_DZ_WPN_MG36_NAME;
|
|
magazines[] =
|
|
{
|
|
100Rnd_556x45_BetaCMag,
|
|
30Rnd_556x45_G36,
|
|
30Rnd_556x45_Stanag,
|
|
20Rnd_556x45_Stanag,
|
|
60Rnd_556x45_Stanag_tape_ice_DZE
|
|
};
|
|
};
|
|
|
|
class MG36_camo;
|
|
class MG36_Camo_DZ: MG36_camo {
|
|
displayName = $STR_DZ_WPN_MG36_CAMO_NAME;
|
|
magazines[] =
|
|
{
|
|
100Rnd_556x45_BetaCMag,
|
|
30Rnd_556x45_G36,
|
|
30Rnd_556x45_Stanag,
|
|
20Rnd_556x45_Stanag,
|
|
60Rnd_556x45_Stanag_tape_ice_DZE
|
|
};
|
|
}; |