Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Item/ItemSledge.hpp
2013-09-26 20:42:57 -05:00

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;";
};
};
};