mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
17 lines
561 B
C++
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";
|
|
}; |