From cc85067f1fdb8a0b86872493eec47487a099dae5 Mon Sep 17 00:00:00 2001 From: A Man Date: Sat, 19 Oct 2019 17:56:41 +0200 Subject: [PATCH] Change M32 grenades inventory slots All M32 grenades still used more as one inventory slot. --- .../CfgMagazines/Magazines/LauncherAmmo.hpp | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/SQF/dayz_code/Configs/CfgMagazines/Magazines/LauncherAmmo.hpp b/SQF/dayz_code/Configs/CfgMagazines/Magazines/LauncherAmmo.hpp index 62d199837..bb5c89333 100644 --- a/SQF/dayz_code/Configs/CfgMagazines/Magazines/LauncherAmmo.hpp +++ b/SQF/dayz_code/Configs/CfgMagazines/Magazines/LauncherAmmo.hpp @@ -78,4 +78,88 @@ class NLAW : CA_LauncherMagazine { class Dragon_EP1 : CA_LauncherMagazine { type = WeaponSlotItem; +}; + +//M32 grenades + +class 1Rnd_HE_M203; +class 6Rnd_HE_M203: 1Rnd_HE_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_HE_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_HE_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmHP_CA.paa"; +}; +class FlareWhite_M203; +class 6Rnd_FlareWhite_M203: FlareWhite_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_FlareWhite_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_FlareWhite_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmFlare_CA.paa"; +}; +class FlareGreen_M203; +class 6Rnd_FlareGreen_M203: FlareGreen_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_FlareGreen_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_FlareGreen_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmFlare_CA.paa"; +}; +class FlareRed_M203; +class 6Rnd_FlareRed_M203: FlareRed_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_FlareRed_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_FlareRed_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmFlare_CA.paa"; +}; +class FlareYellow_M203; +class 6Rnd_FlareYellow_M203: FlareYellow_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_FlareYellow_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_FlareYellow_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmFlare_CA.paa"; +}; +class 1Rnd_Smoke_M203; +class 6Rnd_Smoke_M203: 1Rnd_Smoke_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_Smoke_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_Smoke_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmSmoke_CA.paa"; +}; +class 1Rnd_SmokeRed_M203; +class 6Rnd_SmokeRed_M203: 1Rnd_SmokeRed_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_SmokeRed_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_SmokeRed_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmSmoke_CA.paa"; +}; +class 1Rnd_SmokeGreen_M203; +class 6Rnd_SmokeGreen_M203: 1Rnd_SmokeGreen_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_SmokeGreen_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_SmokeGreen_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmSmoke_CA.paa"; +}; +class 1Rnd_SmokeYellow_M203; +class 6Rnd_SmokeYellow_M203: 1Rnd_SmokeYellow_M203 +{ + count = 6; + displayName = "$STR_EP1_DN_6Rnd_SmokeYellow_M203"; + descriptionShort = "$STR_EP1_DSS_6Rnd_SmokeYellow_M203"; + type = 256; + picture = "\CA\weapons_E\Data\icons\m_6x40mmSmoke_CA.paa"; }; \ No newline at end of file