mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
21 lines
540 B
C++
21 lines
540 B
C++
class ItemEtool : ItemCore
|
|
{
|
|
scope = public;
|
|
model = "\dayz_equip\models\etool.p3d";
|
|
picture = "\dayz_equip\textures\equip_etool_ca.paa";
|
|
displayName = $STR_EQUIP_NAME_1;
|
|
descriptionShort = $STR_EQUIP_DESC_1;
|
|
|
|
stashsmall = "StashSmall";
|
|
stashmedium = "StashMedium";
|
|
consume = "ItemSandbag";
|
|
};
|
|
|
|
class ItemEtoolBroken : ItemCore
|
|
{
|
|
scope = public;
|
|
model = "\dayz_equip\models\etool.p3d";
|
|
picture = "\dayz_equip\textures\equip_etool_ca.paa";
|
|
displayName = $STR_EQUIP_NAME_1_BROKEN;
|
|
descriptionShort = $STR_EQUIP_DESC_1_BROKEN;
|
|
}; |