Add namalsk tools to epoch thx @SumrakDZN

This commit is contained in:
A Man
2020-01-15 15:47:53 +01:00
parent 1871911401
commit 136f7dc7b8
13 changed files with 128 additions and 1 deletions

View File

@@ -280,6 +280,15 @@ class CfgWeapons
#include "Tools\Radio.hpp"
#include "Tools\ItemKeyKit.hpp"
#include "Tools\APSI.hpp"
#include "Tools\Pilotmask.hpp"
#include "Tools\Gasmask1.hpp"
#include "Tools\Gasmask2.hpp"
#include "Tools\GPSBroken.hpp"
#include "Tools\NVGBroken.hpp"
#include "Tools\RadioBroken.hpp"
#include "Tools\Solder.hpp"
#include "Item\ItemKeys.hpp"
#include "Item\Documents.hpp"

View File

@@ -0,0 +1,6 @@
class ItemAPSI_DZE : ItemCore {
scope = public;
displayName = $STR_EQUIP_APSI;
picture = "\dayz_epoch_c\icons\tools\ItemAPSI.paa";
descriptionShort = $STR_EQUIP_APSI_DESC;
};

View File

@@ -0,0 +1,7 @@
class ItemGPSBroken_DZE : ItemCore {
scope = public;
displayName = $STR_EQUIP_BROKEN_GPS;
model = "z\addons\dayz_communityassets\models\gps.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemGPSBroken.paa";
descriptionShort = $STR_EQUIP_BROKEN_GPS_DESC;
};

View File

@@ -0,0 +1,6 @@
class ItemGasmask1_DZE : ItemCore {
scope = public;
picture = "\dayz_epoch_c\icons\tools\ItemGasmask1.paa";
displayName = $STR_EQUIP_GAS_MASK1;
descriptionShort = $STR_EQUIP_GAS_MASK1_DESC;
};

View File

@@ -0,0 +1,6 @@
class ItemGasmask2_DZE : ItemCore {
scope = public;
picture = "\dayz_epoch_c\icons\tools\ItemGasmask2.paa";
displayName = $STR_EQUIP_GAS_MASK2;
descriptionShort = $STR_EQUIP_GAS_MASK2_DESC;
};

View File

@@ -0,0 +1,7 @@
class ItemNVGBroken_DZE : ItemCore {
scope = public;
displayName = $STR_EQUIP_BROKEN_NV;
model = "\dayz_epoch_c\items\nvg\nvg_dzn.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemNVGBroken.paa";
descriptionShort = $STR_EQUIP_BROKEN_NV_DESC;
};

View File

@@ -0,0 +1,6 @@
class ItemPilotmask_DZE : ItemCore {
scope = public;
picture = "\dayz_epoch_c\icons\tools\ItemPilotmask.paa";
displayName = $STR_EQUIP_PILOT_MASK;
descriptionShort = $STR_EQUIP_PILOT_MASK_DESC;
};

View File

@@ -1,5 +1,6 @@
class ItemRadio : ItemCore
{
model = "\nst\ns_dayz\items\radio\radio_dzn.p3d";
class ItemActions
{
class Groups

View File

@@ -0,0 +1,7 @@
class ItemRadioBroken_DZE : ItemCore {
scope = public;
displayName = $STR_EQUIP_BROKEN_RADIO;
model = "\nst\ns_dayz\items\radio\radio_dzn.p3d";
picture = "\dayz_epoch_c\icons\tools\ItemRadioBroken.paa";
descriptionShort = $STR_EQUIP_BROKEN_RADIO_DESC;
};

View File

@@ -0,0 +1,7 @@
class ItemSolder_DZE : ItemCore {
scope = public;
displayName = $STR_EQUIP_SOLDER;
model = "\nst\ns_dayz\items\solder\solder_dzn.p3d";
picture = "\nst\ns_dayz\items\solder\data\icon_solder_dzn_ca.paa";
descriptionShort = $STR_EQUIP_SOLDER_DESC;
};