mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
17 lines
541 B
C++
17 lines
541 B
C++
|
class CfgMagazines {
|
||
|
class CA_Magazine;
|
||
|
class ACE_painkillers: CA_Magazine {
|
||
|
scope = 2;
|
||
|
author = ECSTRING(common,ACETeam);
|
||
|
displayName = CSTRING(painkillers_Display);
|
||
|
model = "\A3\Structures_F_EPA\Items\Medical\PainKillers_F.p3d";
|
||
|
picture = QPATHTOF(ui\painkillers_ca.paa);
|
||
|
descriptionShort = CSTRING(painkillers_Desc_Short);
|
||
|
descriptionUse = CSTRING(painkillers_Desc_Use);
|
||
|
ACE_isMedicalItem = 1;
|
||
|
ACE_asItem = 1;
|
||
|
count = 10;
|
||
|
mass = 1;
|
||
|
};
|
||
|
};
|