mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a7d8c3eb3a
* Move SOG compat to addons/ * Set component to skip loading when SOG not present * Use skipWhenMissingDependencies for GRAD Trenches compatiblity * Tools - Add SOG dlc launch config * move trenches to sub config, handle grad with 2nd subconfig * fix `Land_vn_b_prop_fueldrum_01` UBC * use ifndef --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com>
27 lines
696 B
C++
27 lines
696 B
C++
// M41
|
|
class vn_armor_tank_base;
|
|
class vn_armor_m41_base: vn_armor_tank_base {
|
|
EGVAR(refuel,fuelCapacity) = 530;
|
|
};
|
|
|
|
// Type 63
|
|
class vn_armor_type63_base: vn_armor_tank_base {
|
|
EGVAR(refuel,fuelCapacity) = 545;
|
|
};
|
|
|
|
// M113A1 https://man.fas.org/dod-101/sys/land/m113.htm
|
|
class APC_Tracked_01_base_F;
|
|
class vn_armor_m113_base: APC_Tracked_01_base_F {
|
|
EGVAR(refuel,fuelCapacity) = 360;
|
|
};
|
|
|
|
// PT-76A https://en.wikipedia.org/wiki/PT-76
|
|
class vn_armor_pt76_base: vn_armor_tank_base {
|
|
EGVAR(refuel,fuelCapacity) = 250;
|
|
};
|
|
|
|
// PT-76B (This variant increased the fuel size from 250 to 400 liters)
|
|
class vn_armor_pt76b_base: vn_armor_pt76_base {
|
|
EGVAR(refuel,fuelCapacity) = 400;
|
|
};
|