mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-23 04:22:13 +03:00
Add ACR CZ 75 pistols
This commit is contained in:
@@ -193,8 +193,7 @@ class CfgWeapons
|
||||
class revolver_EP1;
|
||||
#include "Pistols\Revolver.hpp"
|
||||
|
||||
|
||||
|
||||
#include "Pistols\CZ75.hpp"
|
||||
|
||||
|
||||
/* MELEE */
|
||||
|
||||
41
SQF/dayz_code/Configs/CfgWeapons/Pistols/CZ75.hpp
Normal file
41
SQF/dayz_code/Configs/CfgWeapons/Pistols/CZ75.hpp
Normal file
@@ -0,0 +1,41 @@
|
||||
class CZ_75_P_07_DUTY;
|
||||
class CZ75P_DZ: CZ_75_P_07_DUTY {
|
||||
displayName = $STR_DZ_WPN_CZ75P_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ75_DESC;
|
||||
magazines[] = {"18Rnd_9x19_Phantom","18Rnd_9x19_PhantomSD"};
|
||||
};
|
||||
|
||||
class CZ_75_D_COMPACT;
|
||||
class CZ75D_DZ: CZ_75_D_COMPACT {
|
||||
displayName = $STR_DZ_WPN_CZ75D_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ75_DESC;
|
||||
magazines[] = {"18Rnd_9x19_Phantom","18Rnd_9x19_PhantomSD"};
|
||||
};
|
||||
|
||||
class CZ_75_SP_01_PHANTOM;
|
||||
class CZ75SP_DZ: CZ_75_SP_01_PHANTOM {
|
||||
displayName = $STR_DZ_WPN_CZ75SP_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ75_DESC;
|
||||
magazines[] = {"18Rnd_9x19_Phantom","18Rnd_9x19_PhantomSD"};
|
||||
|
||||
class Attachments
|
||||
{
|
||||
Attachment_Sup9 = "CZ75SP_SD_DZ";
|
||||
};
|
||||
};
|
||||
|
||||
class CZ_75_SP_01_PHANTOM_SD;
|
||||
class CZ75SP_SD_DZ: CZ_75_SP_01_PHANTOM_SD {
|
||||
displayName = $STR_DZ_WPN_CZ75SP_SD_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ75_DESC;
|
||||
magazines[] = {"18Rnd_9x19_PhantomSD"};
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class RemoveSuppressor
|
||||
{
|
||||
text = $STR_ATTACHMENT_RMVE_Silencer;
|
||||
script = "; ['Attachment_Sup9',_id,'CZ75SP_DZ'] call player_removeAttachment";
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user