2015-06-17 17:17:57 +00:00
|
|
|
class CfgWeapons {
|
|
|
|
class InventoryItem_Base_F;
|
|
|
|
class ACE_ItemCore;
|
|
|
|
|
2016-01-23 23:45:59 +00:00
|
|
|
class ACE_EntrenchingTool: ACE_ItemCore {
|
2015-06-17 17:17:57 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
displayName = CSTRING(EntrenchingToolName);
|
|
|
|
descriptionShort = CSTRING(EntrenchingToolDescription);
|
2016-04-08 18:34:50 +00:00
|
|
|
model = QPATHTOEF(apl,ace_entrchtool.p3d);
|
|
|
|
picture = QPATHTOF(ui\w_entrchtool_ca.paa);
|
2015-06-17 17:17:57 +00:00
|
|
|
scope = 2;
|
|
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
|
|
mass = 10;
|
|
|
|
};
|
|
|
|
};
|
2015-11-07 06:16:08 +00:00
|
|
|
};
|