Add a few new items

Models made by @helion4
This commit is contained in:
AirwavesMan
2020-06-28 22:40:16 +02:00
parent 8d4a00b99e
commit 09c368b938
21 changed files with 967 additions and 17 deletions

View File

@@ -3,14 +3,6 @@ class NVGoggles: Binocular
model = "\dayz_epoch_c\items\nvg\nvg_dzn.p3d";
};
class NVGoggles_DZE: NVGoggles
{
displayName = $STR_EQUIP_NV_FULL;
modelOptics = "";
descriptionShort = $STR_EQUIP_NV_FULL_DESC;
model = "\dayz_epoch_c\items\nvg\nvg_dzn.p3d";
};
class ItemNVGBroken_DZE : Default
{
scope = 2;
@@ -34,4 +26,38 @@ class ItemNVGBroken_DZE : Default
inputweapons[] = {"ItemNVGBroken_DZE"};
};
};
};
};
class NVGoggles_DZE: NVGoggles
{
displayName = $STR_EQUIP_NV_FULL;
modelOptics = "";
descriptionShort = $STR_EQUIP_NV_FULL_DESC;
model = "\dayz_epoch_c\items\nvg\nvg_dzn.p3d";
};
class ItemNVGFullBroken_DZE : Default
{
scope = 2;
type = 4096;
displayName = $STR_EQUIP_BROKEN_NV_FULL;
descriptionShort = $STR_EQUIP_BROKEN_NV_FULL_DESC;
model = "\dayz_epoch_c\items\nvg\nvg_dzn.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemNightVisionBroken.paa";
class ItemActions
{
class Repair
{
text = $STR_ACTIONS_FIX_NIGHTVISION;
script = ";['Repair','CfgWeapons', _id] spawn player_craftItem;";
neednearby[] = {};
requiretools[] = {"ItemSolder_DZE"};
output[] = {};
outputweapons[] = {"NVGoggles_DZE"};
input[] = {{"equip_floppywire",1},{"equip_scrapelectronics",1}};
inputweapons[] = {"ItemNVGBroken_DZE"};
};
};
};