mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
44 lines
714 B
C++
44 lines
714 B
C++
//CZ550
|
|
class 5x_22_LR_17_HMR;
|
|
class 5Rnd_17HMR : 5x_22_LR_17_HMR
|
|
{
|
|
model = "\dayz_equip\models\mag5rnd.p3d";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
|
|
//Lee-Enfield
|
|
class 10x_303;
|
|
class 10Rnd_303British : 10x_303
|
|
{
|
|
model = "\dayz_equip\models\mag10rnd.p3d";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
|
|
//Winchester 1866
|
|
class 15Rnd_W1866_Slug : CA_Magazine
|
|
{
|
|
scope = 2;
|
|
|
|
model = "\z\addons\dayz_communityassets\models\winammo.p3d";
|
|
picture = "\z\addons\dayz_communityassets\pictures\equip_winammo_ca.paa";
|
|
displayName = $STR_MAG_NAME_2;
|
|
descriptionShort = $STR_MAG_DESC_2;
|
|
|
|
ammo = B_1866_Slug;
|
|
count = 15;
|
|
initSpeed = 396;
|
|
displayNameShort = "Slug";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
}; |