Reduce AT Mine Trigger Mass from 7t to 300kg

So that it triggers on lighter vehicles, including Wiesel Tankettes.
https://en.wikipedia.org/wiki/M15_mine#Specifications
This commit is contained in:
mrschick 2024-05-19 23:51:41 +02:00
parent b8e0bb7793
commit 5b2502e8c2
2 changed files with 13 additions and 1 deletions

View File

@ -13,7 +13,6 @@ class CfgAmmo {
class MineCore: TimeBombCore;
class MineBase: MineCore;
class APERSMine_Range_Ammo: MineBase;
class ATMine_Range_Ammo: MineBase;
class DirectionalBombCore: TimeBombCore;
class DirectionalBombBase: DirectionalBombCore;
@ -65,6 +64,12 @@ class CfgAmmo {
GVAR(size) = 0;
};
// More sensitive pressure-fuze for the Vanilla AT Mine.
class MineBase;
class ATMine_Range_Ammo: MineBase {
mineTrigger = "ACE_TankTriggerLight";
};
// "The SLAM has an anti-tamper feature that is only active in the bottom- and side-attack modes."
class SLAMDirectionalMine_Wire_Ammo: DirectionalBombBase {
indirectHitRange = 20;

View File

@ -58,4 +58,11 @@ class CfgMineTriggers {
mineMagnetic = 1;
mineTriggerRange = 1;
};
class TankTriggerMagnetic;
class ACE_TankTriggerLight: TankTriggerMagnetic {
// Reduce mass needed to trigger vanilla AT Mine to realistic levels (https://en.wikipedia.org/wiki/M15_mine#Specifications).
// Will now trigger for any vehicle heavier than the Vanilla ATV (280kg)
mineTriggerMass = 300; // Default: 7000
};
};