Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/Magazines/762x54r.hpp
ebaydayz 73d557806e Mag names, Attachments names, Translation fixes
Vanilla development commit:

af9e009bae

- renamed magazines for better sorting
- renamed attachments for better sorting ([A] prefix added) some fixes,
some strings moved to proper section
- Remington 870 added to new attachment system (weapon flashlight)
- Double-barrel shotgun will now spawns with pellets and has Doubleshot
option (maybe this will make it more popular?)
2016-07-10 15:25:36 -04:00

51 lines
1.1 KiB
C++

class 100Rnd_762x54_PK : CA_Magazine
{
model = "z\addons\dayz_communityweapons\magazines\pk.p3d";
displayName = $STR_DZ_MAG_100RND_762x54_PK_NAME;
cartridgeName = "762x54";
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
class ItemActions
{
COMBINE_MAG
};
};
class 50Rnd_762x54_UK59 : 100Rnd_762x54_PK
{
count = 50;
model = "z\addons\dayz_communityweapons\magazines\uk59.p3d";
picture = "\z\addons\dayz_communityweapons\magazines\data\m_uk59_ca.paa";
displayName = $STR_DZ_MAG_50RND_762X54_UK59_NAME;
descriptionShort = $STR_DZ_MAG_50RND_762X54_UK59_DESC;
};
class 10Rnd_762x54_SVD : CA_Magazine
{
displayName = $STR_DZ_MAG_10RND_762x54_SVD_NAME;
cartridgeName = "762x54";
class ItemActions
{
COMBINE_MAG
};
};
class 5Rnd_762x54_Mosin : 10Rnd_762x54_SVD
{
count = 5;
model = "\dayz_equip\models\mag5rnd.p3d";
picture = "\z\addons\dayz_communityweapons\models\mosin_nagant\images\ammo.paa";
displayName = $STR_DZ_MAG_5RND_762X54_MOSIN_NAME;
descriptionShort = $STR_DZ_MAG_5RND_762X54_MOSIN_DESC;
cartridgeName = "762x54";
class ItemActions
{
COMBINE_MAG
};
};