mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-12 11:12:56 +03:00
Adding 13 new items and a DZE version of the vss vintorez (#1890)
* strings for new items * adding new documents.hpp * adding new documents * adding vss vintorez dze vss vintorez dze spawns with 20 rounds magazine like in epoch 1.0.5.1 * adding vss vintorez dze * Update stringtable.xml
This commit is contained in:
@@ -27,7 +27,7 @@ class CfgWeapons
|
||||
#include "Weapon\Sniper\M107.hpp"
|
||||
#include "Weapon\Sniper\KSVK.hpp"
|
||||
#include "Weapon\Sniper\M4SPR.hpp"
|
||||
|
||||
#include "Weapon\Sniper\VSSVintorez.hpp"
|
||||
|
||||
|
||||
//each include is preceded by its required external references.
|
||||
@@ -264,6 +264,7 @@ class CfgWeapons
|
||||
#include "Tools\Radio.hpp"
|
||||
#include "Item\ItemKeyKit.hpp"
|
||||
#include "Item\ItemKeys.hpp"
|
||||
#include "Item\Documents.hpp"
|
||||
|
||||
|
||||
|
||||
@@ -315,4 +316,4 @@ class CfgWeapons
|
||||
};
|
||||
};
|
||||
};*/
|
||||
};
|
||||
};
|
||||
|
||||
81
SQF/dayz_code/Configs/CfgWeapons/Item/Documents.hpp
Normal file
81
SQF/dayz_code/Configs/CfgWeapons/Item/Documents.hpp
Normal file
@@ -0,0 +1,81 @@
|
||||
class Kostey_notebook;
|
||||
class Notebook_bio_DZE: Kostey_notebook
|
||||
{
|
||||
displayname = $STR_EQUIP_NOTEBOOK_BIO;
|
||||
descriptionShort= $STR_EQUIP_NOTEBOOK_BIO_DESC;
|
||||
};
|
||||
|
||||
class Notebook_che_DZE: Kostey_notebook
|
||||
{
|
||||
displayname = $STR_EQUIP_NOTEBOOK_CHE;
|
||||
descriptionShort= $STR_EQUIP_NOTEBOOK_CHE_DESC;
|
||||
};
|
||||
|
||||
class Notebook_phy_DZE: Kostey_notebook
|
||||
{
|
||||
displayname = $STR_EQUIP_NOTEBOOK_PHY;
|
||||
descriptionShort= $STR_EQUIP_NOTEBOOK_PHY_DESC;
|
||||
};
|
||||
|
||||
class Notebook_secret_DZE: Kostey_notebook
|
||||
{
|
||||
displayname = $STR_EQUIP_NOTEBOOK_SECRET;
|
||||
descriptionShort= $STR_EQUIP_NOTEBOOK_SECRET_DESC;
|
||||
};
|
||||
|
||||
class Notebook_herbs_DZE: Kostey_notebook
|
||||
{
|
||||
displayname = $STR_EQUIP_NOTEBOOK_HERBS;
|
||||
descriptionShort= $STR_EQUIP_NOTEBOOK_HERBS_DESC;
|
||||
};
|
||||
|
||||
class Moscow_Bombing_File;
|
||||
class Document_Random_DZE: Moscow_Bombing_File
|
||||
{
|
||||
displayname = $STR_EQUIP_DOCUMENT_RANDOM;
|
||||
descriptionShort= $STR_EQUIP_DOCUMENT_RANDOM_DESC;
|
||||
};
|
||||
|
||||
class Document_Military_DZE: Moscow_Bombing_File
|
||||
{
|
||||
displayname = $STR_EQUIP_DOCUMENT_MILITARY;
|
||||
descriptionShort= $STR_EQUIP_DOCUMENT_MILITARY_DESC;
|
||||
};
|
||||
|
||||
class Document_Topsecret_DZE: Moscow_Bombing_File
|
||||
{
|
||||
displayname = $STR_EQUIP_DOCUMENT_TOPSECRET;
|
||||
descriptionShort= $STR_EQUIP_DOCUMENT_TOPSECRET_DESC;
|
||||
};
|
||||
|
||||
class Cobalt_File;
|
||||
class Manual_electronics_DZE: Cobalt_File
|
||||
{
|
||||
displayname = $STR_EQUIP_MANUAL_ELECTRONICS;
|
||||
descriptionShort= $STR_EQUIP_MANUAL_ELECTRONICS_DESC;
|
||||
};
|
||||
|
||||
class Manual_camera_DZE: Cobalt_File
|
||||
{
|
||||
displayname = $STR_EQUIP_MANUAL_CAMERA;
|
||||
descriptionShort= $STR_EQUIP_MANUAL_CAMERA_DESC;
|
||||
};
|
||||
|
||||
class Manual_repair_DZE: Cobalt_File
|
||||
{
|
||||
displayname = $STR_EQUIP_MANUAL_REPAIR;
|
||||
descriptionShort= $STR_EQUIP_MANUAL_REPAIR_DESC;
|
||||
};
|
||||
|
||||
class Kostey_map_case;
|
||||
class Map_Military_DZE: Kostey_map_case
|
||||
{
|
||||
displayname = $STR_EQUIP_MAP_Military;
|
||||
descriptionShort= $STR_EQUIP_MAP_Military_DESC;
|
||||
};
|
||||
|
||||
class Map_Survivor_DZE: Kostey_map_case
|
||||
{
|
||||
displayname = $STR_EQUIP_MAP_SURVIVOR;
|
||||
descriptionShort= $STR_EQUIP_MAP_SURVIVOR_DESC;
|
||||
};
|
||||
@@ -0,0 +1,5 @@
|
||||
class VSS_vintorez;
|
||||
class VSS_vintorez_DZE: VSS_vintorez
|
||||
{
|
||||
magazines[] = {"20Rnd_9x39_SP5_VSS", "10Rnd_9x39_SP5_VSS"};
|
||||
};
|
||||
Reference in New Issue
Block a user