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

17 lines
561 B
C++

class Screwdriver_DZE: ItemCore
{
scope = 2;
displayName = $STR_EQUIP_SCREWEXTRACTOR;
descriptionShort = $STR_EQUIP_SCREWEXTRACTOR_DESC;
model = "\z\addons\dayz_epoch_w\items\screw_extractor.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemScrewExtractor.paa";
};
class ScrewdriverBroken_DZE : ItemCore
{
scope = 2;
displayName = $STR_EQUIP_SCREWEXTRACTOR_BROKEN;
descriptionShort = $STR_EQUIP_SCREWEXTRACTOR_BROKEN_DESC;
model = "\z\addons\dayz_epoch_w\items\screw_extractor.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemScrewExtractorBroken.paa";
};