mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
43 lines
882 B
C++
43 lines
882 B
C++
class SVD_DZ : SVD
|
|
{
|
|
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";
|
|
};
|
|
};
|
|
}; |