mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-15 20:52:56 +03:00
Add new dog tags items
This commit is contained in:
@@ -51,6 +51,7 @@ class CfgMagazines
|
||||
#include "Items\Electronics.hpp" //Nails, screws, cards, hotwire kit etc.
|
||||
#include "Items\Locks.hpp"
|
||||
#include "Items\VehicleParts.hpp" //Vehicle parts
|
||||
#include "Items\DogTags.hpp"
|
||||
#include "Items\Misc.hpp" //Nails, screws, cards, hotwire kit etc.
|
||||
|
||||
//Building items - all items that can be build and placed in-game
|
||||
|
||||
29
SQF/dayz_code/Configs/CfgMagazines/Items/DogTags.hpp
Normal file
29
SQF/dayz_code/Configs/CfgMagazines/Items/DogTags.hpp
Normal file
@@ -0,0 +1,29 @@
|
||||
class ItemDogTag: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_DOGTAG;
|
||||
descriptionShort = $STR_EPOCH_DOGTAG_DESC;
|
||||
model = "\Ca\misc\SmallObj_dog_tags_WPN.p3d";
|
||||
picture = "\CA\misc\data\icons\picture_dog_tags_CA.paa";
|
||||
};
|
||||
|
||||
class ItemDogTagHero: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_DOGTAG_HERO;
|
||||
descriptionShort = $STR_EPOCH_DOGTAG_HERO_DESC;
|
||||
model = "\Ca\misc\SmallObj_dog_tags_WPN.p3d";
|
||||
picture = "\CA\misc\data\icons\picture_dog_tags_CA.paa";
|
||||
};
|
||||
|
||||
class ItemDogTagBandit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_DOGTAG_BANDIT;
|
||||
descriptionShort = $STR_EPOCH_DOGTAG_BANDIT_DESC;
|
||||
model = "\Ca\misc\SmallObj_dog_tags_WPN.p3d";
|
||||
picture = "\CA\misc\data\icons\picture_dog_tags_CA.paa";
|
||||
};
|
||||
Reference in New Issue
Block a user