mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
44 lines
910 B
C++
44 lines
910 B
C++
class SVD_DZ : SVD
|
|
{
|
|
model = "ca\weapons\svd_dragunov_proxy.p3d";
|
|
picture = "\ca\weapons\data\equip\w_svd_ca.paa";
|
|
displayName = $STR_DZ_WPN_SVD_NAME;
|
|
|
|
weaponInfoType = "RscWeaponEmpty";
|
|
discreteDistance[] = {};
|
|
discreteDistanceInitIndex = 0;
|
|
distanceZoomMin = 200;
|
|
distanceZoomMax = 200;
|
|
|
|
magazines[] = {10Rnd_762x54_SVD};
|
|
|
|
reloadTime = 0.06;
|
|
|
|
recoil = "recoil_single_primary_4outof10";
|
|
recoilProne = "recoil_single_primary_prone_4outof10";
|
|
|
|
dispersion = 0.00045;
|
|
|
|
class Attachments
|
|
{
|
|
Attachment_Ghillie = "SVD_Gh_DZ";
|
|
};
|
|
};
|
|
|
|
class SVD_Gh_DZ : SVD_DZ
|
|
{
|
|
model = "ca\weapons\svd_camo.p3d";
|
|
picture = "\ca\weapons\data\equip\w_svd_camo_ca.paa";
|
|
displayName = $STR_DZ_WPN_SVD_GH_NAME;
|
|
|
|
class Attachments {};
|
|
|
|
class ItemActions
|
|
{
|
|
class RemoveGhillie
|
|
{
|
|
text = $STR_DZ_ATT_GHIL_RMVE;
|
|
script = "; ['Attachment_Ghillie',_id,'SVD_DZ'] call player_removeAttachment";
|
|
};
|
|
};
|
|
}; |