Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Tools/Wrench.hpp
AirwavesMan 09c368b938 Add a few new items
Models made by @helion4
2020-06-28 22:40:16 +02:00

17 lines
485 B
C++

class Wrench_DZE: ItemCore
{
scope = 2;
displayName = $STR_EQUIP_WRENCH;
descriptionShort = $STR_EQUIP_WRENCH_DESC;
model = "\z\addons\dayz_epoch_w\items\wrench.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemWrench.paa";
};
class WrenchBroken_DZE : ItemCore
{
scope = 2;
displayName = $STR_EQUIP_WRENCH_BROKEN;
descriptionShort = $STR_EQUIP_WRENCH_BROKEN_DESC;
model = "\z\addons\dayz_epoch_w\items\wrench.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemWrenchBroken.paa";
};