ACE3/addons/compat_spe/CfgVehicles/tracked.hpp
BrettMayson d2f5c2de02
Spearhead 1944 Compatibility (#9292)
* compat(spe): initial

* --changed csw/turrets

* disable spe disassemble

* csw: all mortars done

* more cleanup

* add missing hearing protection

* final cleanup

* goofed and removed too much

* ok all done

* formatting

* remove adt

* -+ updated frameworks

- Ballistics Framework Finished (Infantry Weapons)
- Wirecutter & Trench Framework Finished (Vests/Backpacks)
- Explosives Framework Finished (Added backward support for IFA3 Detonator/Firecord)
- Crew Served Weapons Framework Finished (Fixed Assemble/Disassemble)

* formatting

* Require HEMTT v1.7.2

* cleanup tabs / formating

* Apply suggestions from code review

Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com>
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
Co-authored-by: ZluskeN <pontux@gmail.com>

* split to subcomponents, fix ubcs

* swap has_include for skipWhenMissingDependencies

* fix explosives

* add pdumies for ww2

* Apply suggestions from code review

Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>

* cleanup sten duplicate configs

* move hearing to macro

* fix macro repaclement

* Use `SUBADDON`

* Move `addonRootClass` to bottom of CfgPatches

* Relative includes

* move config macro includes to config.cpp

* comment off csw changes for now

* Update .hemtt/project.toml

---------

Co-authored-by: Coldfront15 <born2toot2@gmail.com>
Co-authored-by: Brett Mayson <brett@joinoffstreet.com>
Co-authored-by: jonpas <jonpas33@gmail.com>
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com>
Co-authored-by: ZluskeN <pontux@gmail.com>
Co-authored-by: Jouni Järvinen <rautamiekka@users.noreply.github.com>
2023-09-25 15:37:59 -05:00

56 lines
1.4 KiB
C++

class Tank_F;
class SPE_Tank_base: Tank_F {
EGVAR(cargo,hasCargo) = 1;
EGVAR(cargo,space) = 4;
EGVAR(refuel,canReceive) = 1;
EGVAR(vehicle_damage,hullDetonationProb) = 0.01;
EGVAR(vehicle_damage,turretDetonationProb) = 0.01;
EGVAR(vehicle_damage,engineDetonationProb) = 0.01;
EGVAR(vehicle_damage,hullFireProb) = 0.2;
EGVAR(vehicle_damage,turretFireProb) = 0.1;
EGVAR(vehicle_damage,engineFireProb) = 0.2;
EGVAR(vehicle_damage,detonationDuringFireProb) = 0.2;
EGVAR(vehicle_damage,canHaveFireRing) = 1;
};
// ALLIED FORCES
class SPE_M4A1_Sherman_HullMG_base;
class SPE_M4A1_75: SPE_M4A1_Sherman_HullMG_base {
EGVAR(refuel,fuelCapacity) = 660;
};
class SPE_M4A1_76: SPE_M4A1_Sherman_HullMG_base {
EGVAR(refuel,fuelCapacity) = 520;
};
class SPE_M4A1_T34_Calliope: SPE_M4A1_Sherman_HullMG_base {
EGVAR(refuel,fuelCapacity) = 520;
};
class SPE_M10_base: SPE_Tank_base {
EGVAR(refuel,fuelCapacity) = 620;
};
class SPE_M18_Hellcat_Base: SPE_Tank_base {
EGVAR(refuel,fuelCapacity) = 620;
};
// AXIS FORCES
class SPE_Nashorn_base: SPE_Tank_base {
EGVAR(refuel,fuelCapacity) = 470;
};
class SPE_PzKpfwVI_H1_base: SPE_Tank_base {
EGVAR(refuel,fuelCapacity) = 540;
};
class SPE_PzKpfwIV_G_base: SPE_Tank_base {
EGVAR(refuel,fuelCapacity) = 600;
};
class SPE_PzKpfwIII_Base: SPE_Tank_base {
EGVAR(refuel,fuelCapacity) = 320;
};