mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
beffc7660c
* Adjust burn intensity defines and move to shared * Loop "Pat down" action until patient is put out of fire --------- Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
#define COMPONENT fire
|
|
#define COMPONENT_BEAUTIFIED Fire
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define CBA_DEBUG_SYNCHRONOUS
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#ifdef DEBUG_ENABLED_FIRE
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_FIRE
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_FIRE
|
|
#endif
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
|
#include "\z\ace\addons\medical_engine\script_macros_medical.hpp"
|
|
|
|
#define FIRE_MANAGER_PFH_DELAY 0.25
|
|
#define FLARE_SIZE_MODIFIER 5
|
|
#define PRONE_ROLLING_ANIMS [\
|
|
"amovppnemstpsnonwnondnon_amovppnemevasnonwnondl",\
|
|
"amovppnemstpsnonwnondnon_amovppnemevasnonwnondr",\
|
|
"amovppnemstpsraswrfldnon_amovppnemevaslowwrfldl",\
|
|
"amovppnemstpsraswrfldnon_amovppnemevaslowwrfldr",\
|
|
"amovppnemstpsraswpstdnon_amovppnemevaslowwpstdl",\
|
|
"amovppnemstpsraswpstdnon_amovppnemevaslowwpstdr",\
|
|
"amovppnemstpsoptwbindnon_amovppnemevasoptwbindl",\
|
|
"amovppnemstpsoptwbindnon_amovppnemevasoptwbindr"\
|
|
]
|
|
|
|
|
|
#define BURN_MAX_INTENSITY 10
|
|
#define BURN_MIN_INTENSITY 1
|
|
|
|
#define INTENSITY_DECREASE_MULT_PAT_DOWN 0.8
|
|
#define INTENSITY_DECREASE_MULT_ROLLING INTENSITY_DECREASE_MULT_PAT_DOWN
|