Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SOG Compat - Added fuel tank volumes for SOG update 1.2 vehicles #8978

Merged
merged 3 commits into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions optionals/compat_sog/CfgVehicles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ class CfgVehicles {
#include "CfgVehicles\wheeled.hpp"
#include "CfgVehicles\land.hpp"
#include "CfgVehicles\vn_boxes.hpp"
#include "CfgVehicles\boats.hpp"
};
20 changes: 20 additions & 0 deletions optionals/compat_sog/CfgVehicles/boats.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// 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;
};
10 changes: 10 additions & 0 deletions optionals/compat_sog/CfgVehicles/planes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,13 @@ class Plane_Base_F;
class vn_air_f4_base: Plane_Base_F {
EGVAR(refuel,fuelCapacity) = 7548;
};

// F-100D https://www.supersabre.com/f-100specs.htm
class vn_air_f100d_base : Plane_Base_F {
EGVAR(refuel,fuelCapacity) = 4500;
};

// MIG-19S https://en.wikipedia.org/wiki/Mikoyan-Gurevich_MiG-19#cite_ref-60
class vn_air_mig19_base : Plane_Base_F {
EGVAR(refuel,fuelCapacity) = 1800;
};
18 changes: 17 additions & 1 deletion optionals/compat_sog/CfgVehicles/tracked.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,21 @@ class vn_armor_m41_base: vn_armor_tank_base {

// Type 63
class vn_armor_type63_base: vn_armor_tank_base {
EGVAR(refuel,fuelCapacity) = 545 ;
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;
};