mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
286f64480c
* weight * Update CfgWeapons.hpp * Update addons/medical_treatment/CfgWeapons.hpp Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> --------- Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
class CfgWeapons {
|
|
class ACE_ItemCore;
|
|
class CBA_MiscItem_ItemInfo;
|
|
|
|
class ACE_RangeTable_82mm: ACE_ItemCore {
|
|
author = ECSTRING(common,ACETeam);
|
|
scope = 2;
|
|
displayName = CSTRING(rangetable_name);
|
|
descriptionShort = CSTRING(rangetable_description);
|
|
picture = QPATHTOF(UI\icon_rangeTable.paa);
|
|
ACE_isTool = 1;
|
|
class ItemInfo: CBA_MiscItem_ItemInfo {
|
|
mass = 0.1;
|
|
};
|
|
};
|
|
|
|
class CannonCore;
|
|
class mortar_82mm: CannonCore {
|
|
class Single1;
|
|
class Burst1;
|
|
};
|
|
class ACE_mortar_82mm: mortar_82mm {
|
|
author = ECSTRING(common,ACETeam);
|
|
magazines[] = {"ACE_1Rnd_82mm_Mo_HE","ACE_1Rnd_82mm_Mo_Smoke","ACE_1Rnd_82mm_Mo_Illum",
|
|
"ACE_1Rnd_82mm_Mo_HE_Guided","ACE_1Rnd_82mm_Mo_HE_LaserGuided"};
|
|
reloadTime = 0.5;
|
|
magazineReloadTime = 0.5;
|
|
class Single1: Single1 {
|
|
reloadTime = 0.5;
|
|
};
|
|
class Burst1: Burst1 {
|
|
reloadTime = 0.5;
|
|
};
|
|
};
|
|
};
|