mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
533 B
C++
20 lines
533 B
C++
|
|
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class InventoryItem_Base_F;
|
|
|
|
class ACE_IR_Strobe_Item: ACE_ItemCore {
|
|
ACE_attachable = "ACE_IR_Strobe_Effect";
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
scope = 2;
|
|
displayName = "$STR_ACE_IrStrobe_Name";
|
|
descriptionShort = "$STR_ACE_IrStrobe_Description";
|
|
model = "\A3\weapons_F\ammo\mag_univ.p3d";
|
|
picture = PATHTOF(UI\irstrobe_item.paa);
|
|
|
|
class ItemInfo: InventoryItem_Base_F {
|
|
mass = 1;
|
|
};
|
|
};
|
|
};
|