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>
21 lines
632 B
C++
21 lines
632 B
C++
// PTF Nasty https://www.ptfnasty.com/ptf17chap2.html (610 Gallons)
|
|
class vn_boat_armed_base;
|
|
class vn_boat_05_base: vn_boat_armed_base {
|
|
EGVAR(refuel,fuelCapacity) = 2773;
|
|
};
|
|
|
|
// PBR https://www.warboats.org/pbr.htm
|
|
class vn_boat_12_base: vn_boat_armed_base {
|
|
EGVAR(refuel,fuelCapacity) = 727;
|
|
};
|
|
|
|
// STAB https://www.powercatboat.com/STAB/STAB.html
|
|
class vn_boat_09_base: vn_boat_armed_base {
|
|
EGVAR(refuel,fuelCapacity) = 464;
|
|
};
|
|
|
|
// Type 55A Shantou Gunboat (Could find no info on this, so same as the similarly sized PTF for now)
|
|
class vn_boat_03_base: vn_boat_armed_base {
|
|
EGVAR(refuel,fuelCapacity) = 2773;
|
|
};
|