ACE3/addons/frag/CfgAmmo.hpp

109 lines
2.5 KiB
C++
Raw Normal View History

#define BASE_DRAG -0.01
#define HD_MULT 5
#define BASE_DRAG_HD (BASE_DRAG * HD_MULT)
#define ACE_FRAG_INIT_CODE _this call FUNC(initRound)
#define ACE_FRAG_RM_EH class EventHandlers: EventHandlers {\
2024-01-13 03:19:18 +00:00
class ADDON {\
delete init;\
2024-01-13 03:19:18 +00:00
};\
}
#define ACE_FRAG_ADD_EH_BASE class EventHandlers {\
class ADDON {\
init = QUOTE(ACE_FRAG_INIT_CODE);\
2024-01-13 03:19:18 +00:00
};\
}
2024-01-13 03:19:18 +00:00
#define ACE_FRAG_ADD_EH class EventHandlers: EventHandlers {\
class ADDON {\
init = QUOTE(ACE_FRAG_INIT_CODE);\
};\
}
2016-05-30 16:37:03 +00:00
class CfgAmmo {
2024-01-15 21:36:58 +00:00
#include "CfgAmmoBaseEH.hpp"
class B_65x39_Caseless: BulletBase {
class EventHandlers: EventHandlers {};
};
2024-01-11 00:51:38 +00:00
class GVAR(base): B_65x39_Caseless {
ACE_damageType = "grenade"; // compatibility with medical_damage, shrapnel should produce grenade wounds
2024-01-08 21:21:32 +00:00
timeToLive = 4;
typicalSpeed = 800;
maxSpeed = 1500;
2016-05-30 16:37:03 +00:00
deflecting = 65;
2024-01-11 00:51:38 +00:00
ACE_FRAG_RM_EH;
2016-05-30 16:37:03 +00:00
};
2016-07-20 04:15:18 +00:00
class GVAR(tiny): GVAR(base) {
2016-05-30 16:37:03 +00:00
hit = 6;
airFriction = BASE_DRAG;
caliber = 0.75;
};
2016-07-20 04:15:18 +00:00
class GVAR(tiny_HD): GVAR(base) {
2016-05-30 16:37:03 +00:00
hit = 6;
airFriction = QUOTE(BASE_DRAG_HD);
2016-05-30 16:37:03 +00:00
caliber = 0.75;
};
2016-07-20 04:15:18 +00:00
class GVAR(small): GVAR(base) {
2016-05-30 16:37:03 +00:00
hit = 12;
airFriction = QUOTE(BASE_DRAG*0.9);
2016-05-30 16:37:03 +00:00
};
2016-07-20 04:15:18 +00:00
class GVAR(small_HD): GVAR(base) {
2016-05-30 16:37:03 +00:00
hit = 12;
airFriction = QUOTE(BASE_DRAG_HD*0.9);
2016-05-30 16:37:03 +00:00
};
2016-07-20 04:15:18 +00:00
class GVAR(medium): GVAR(base) {
2016-05-30 16:37:03 +00:00
hit = 14;
airFriction = QUOTE(BASE_DRAG*0.75);
2016-05-30 16:37:03 +00:00
caliber = 1.2;
};
2016-07-20 04:15:18 +00:00
class GVAR(medium_HD): GVAR(base) {
2016-05-30 16:37:03 +00:00
hit = 14;
airFriction = QUOTE(BASE_DRAG_HD*0.75);
2016-05-30 16:37:03 +00:00
caliber = 1.2;
};
2016-07-20 04:15:18 +00:00
class GVAR(large): GVAR(base) {
2016-05-30 16:37:03 +00:00
hit = 28;
indirectHit = 2;
indirectHitRange = 0.25;
airFriction = QUOTE(BASE_DRAG*0.65);
2016-05-30 16:37:03 +00:00
caliber = 2;
explosive = 0;
};
2016-07-20 04:15:18 +00:00
class GVAR(large_HD): GVAR(large) {
hit = 28;
2016-05-30 16:37:03 +00:00
indirectHit = 2;
indirectHitRange = 0.25;
airFriction = QUOTE(BASE_DRAG_HD*0.65);
2016-05-30 16:37:03 +00:00
caliber = 2;
};
2016-07-20 04:15:18 +00:00
class GVAR(huge): GVAR(large) {
2016-05-30 16:37:03 +00:00
hit = 40;
indirectHit = 4;
indirectHitRange = 0.5;
airFriction = QUOTE(BASE_DRAG*0.5);
2016-05-30 16:37:03 +00:00
caliber = 2.8;
};
2016-07-20 04:15:18 +00:00
class GVAR(huge_HD): GVAR(large) {
2016-05-30 16:37:03 +00:00
hit = 40;
indirectHit = 4;
indirectHitRange = 0.5;
airFriction = QUOTE(BASE_DRAG_HD*0.5);
2016-05-30 16:37:03 +00:00
caliber = 2.8;
};
2024-01-15 21:36:58 +00:00
#include "CfgAmmoSpall.hpp"
#include "CfgAmmoFragSpawner.hpp"
#include "CfgAmmoFragParameters.hpp"
2024-01-15 20:09:20 +00:00
};