mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
511 B
C++
21 lines
511 B
C++
|
|
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class InventoryItem_Base_F;
|
|
|
|
class ACE_ATragMX: ACE_ItemCore {
|
|
author = "Ruthberg";
|
|
scope = 2;
|
|
displayName = "$STR_ACE_ATragMX_Name";
|
|
descriptionShort = "$STR_ACE_ATragMX_Description";
|
|
model = PATHTOF(data\tdsrecon.p3d);
|
|
picture = PATHTOF(UI\ATRAG_Icon.paa);
|
|
icon = "iconObject_circle";
|
|
mapSize = 0.034;
|
|
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
mass = 2;
|
|
};
|
|
};
|
|
};
|