mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
30 lines
639 B
C++
30 lines
639 B
C++
class ItemSledge: ItemCore
|
|
{
|
|
scope=2;
|
|
displayName="Sledgehammer";
|
|
model="\z\addons\dayz_epoch\models\sledge_mag.p3d";
|
|
picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa";
|
|
descriptionShort="A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers.";
|
|
class ItemActions
|
|
{
|
|
class Toolbelt
|
|
{
|
|
text="Remove from Toolbelt";
|
|
script="spawn player_addToolbelt;";
|
|
use[]=
|
|
{
|
|
"ItemSledge"
|
|
};
|
|
output[]=
|
|
{
|
|
"MeleeSledge"
|
|
};
|
|
};
|
|
class MineOre
|
|
{
|
|
text="Mine Ore";
|
|
script="spawn player_mineOre;";
|
|
};
|
|
};
|
|
};
|