mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
CFG WEAPONS DONE
This commit is contained in:
32
SQF/dayz_code/Configs/CfgWeapons/Tools/Shovel.hpp
Normal file
32
SQF/dayz_code/Configs/CfgWeapons/Tools/Shovel.hpp
Normal file
@@ -0,0 +1,32 @@
|
||||
class ItemShovel : ItemCore
|
||||
{
|
||||
scope = public;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\shovel.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_shovel_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_1b;
|
||||
descriptionShort = $STR_EQUIP_DESC_1b;
|
||||
|
||||
stashsmall = "StashSmall";
|
||||
stashmedium = "StashMedium";
|
||||
consume = "ItemSandbag";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Use
|
||||
{
|
||||
text = $STR_CREATE_STASH;
|
||||
script = "spawn player_createstash; r_action_count = r_action_count + 1;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemShovelBroken : ItemCore
|
||||
{
|
||||
scope = public;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\shovel.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_shovel_ca.paa";
|
||||
displayName = "Broken Shovel";
|
||||
descriptionShort = $STR_EQUIP_DESC_1b;
|
||||
};
|
||||
Reference in New Issue
Block a user