mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
541 B
C++
19 lines
541 B
C++
|
class CfgVehicles {
|
||
|
class Rubber_duck_base_F;
|
||
|
class rhsgref_canoe_base: Rubber_duck_base_F {
|
||
|
// Canoes are propelled by paddlers
|
||
|
EGVAR(refuel,canReceive) = 0;
|
||
|
};
|
||
|
|
||
|
class Wheeled_APC_F;
|
||
|
class rhsgref_BRDM2: Wheeled_APC_F {
|
||
|
GVAR(hullDetonationProb) = 0.2;
|
||
|
GVAR(turretDetonationProb) = 0.2;
|
||
|
GVAR(engineDetonationProb) = 0;
|
||
|
GVAR(hullFireProb) = 0.7;
|
||
|
GVAR(turretFireProb) = 0.7;
|
||
|
GVAR(engineFireProb) = 0.7;
|
||
|
GVAR(detonationDuringFireProb) = 0.5;
|
||
|
};
|
||
|
};
|