ACE3/addons/compat_sog/CfgWeapons/weapons_melee.hpp

64 lines
1.7 KiB
C++
Raw Normal View History

SOG Compat - Add 1.2 update support (#8974) * Update vn_mine_tripwire_m16_02_ammo base class * Fix fnc_handlePunjiTrapDamage Hopefully once and for all * Remove placement actions from punji traps * Add Explosives compat for 1.2 content TODO testing * Add quoting to stringtable config usage * Prevent bike mine placement object from swinging all over the place * Add non attachable ACE_Triggers for big mines Bike mine looks kinda stupid when it's attached to a car... * Bike mine triggers * Cartridge mine triggers * Lighter mine triggers * Pot mine triggers * Jerrycan mine triggers * Mortar shell mine triggers * Grenade board mine triggers * Inheritance fixes * Update damage handler for new punji traps * Improve interaction points and dig distances * Dh10 mine triggers * Bump damage of vn_mine_cartridge_ammo * Add incendiary features to lighter and jerry can explosives WIP * SOG Compat - Added fuel tank volumes for SOG update 1.2 vehicles (#8978) * Added fuel tank volumes for SOG update 1.2 vehicles * Type 55A is similar in fuel capacity to the PTF Nasty, not the PBR * Add missing EOLs Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * Improve placement feedback of Whip punji * Add inheritance to custom wound handlers * Fix doorway punji position * Add spikes offset for affected units of doorway trap * Prevent spiderholes from being loaded into cargo * Add missing continue digging action to spiderholes * Fix spiderholes physics while being dug up via trenches system Depends on #8998 * Add missing params * Fix parenthesis * Add pDrive dummy files This is stupid. * Enable Melee weapons in the arsenal * Add Entrenching tool capabilities to Shovel and ETool Depends on #8999 * Add incendiary features to Molotov and M14 * Tweak chance of being set ablaze Now sums all hitpoints damage. * Add ACE_damageType to napalm and he bombs * Do not change cartridge mine damage and range if no ACE Medical * Simplify variable config values * Swap cartridge mine hit values Whoopsie. * Add overpressure configs to launchers * Fixed an issue preventing the M1919A6 CSW from being disassembled (#8970) * Remove disassembleTo from CSW weapons This config property is meant for tripods. * Add CSW config for MG42 * Simplify requiredAddons * Remove proxy weapons from most of the CSW, adjust loading times The animations are pretty important in case of SOGPF turrets, the ammo load times were adjusted accordingly so the total loading times is similar. * Add vn_pavn_30_can.p3d pDrive dummy * Fix missing MG42 mag icon * Add field_rations values to food props/mags Needs #9008 to be usable. * Add more field_rations values to food props/mags Send help. * More food configs * Even more food configs Fooooood. * More fooood Even more foooooood. * Fix food inheritance * Add SGM CSW compatibility * Various fixes for CSW Wrong tripods for opfor guns, missing translation * Improve TOW interaction position * Add dragging and interaction configs to recoilles rifles * Cleanup SGM CSW config * Add MK18 CSW config * Add H-12 MLRS CSW config * Add missing Mk18 stringtable * Add function header and logging to fnc_woundsHandlerIncendiary * Add missing weapons in CfgPatches array * Add entrenching tool config to backpacks * Fix Hammer and Fire axe melee weapons * Add missing CSW images Thanks @BaerMitUmlaut Co-authored-by: Samuel Deutsch <Quantx@users.noreply.github.com>
2022-09-08 12:41:52 +00:00
// always show melee weapons in the Arsenal,
// they were considered "janky" by BI and are hidden by default until "vn_arsenalShowMelee = 1;" is set in the mission config
class vn_hand_melee_base_dynamic_scope;
class vn_m_wrench_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_hammer: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_shovel_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
EGVAR(trenches,entrenchingTool) = 1;
};
class vn_m_axe_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_axe_fire: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_bayo_carbine: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_bayo_m14: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_bayo_m16: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_bayo_m1897: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_mk2_knife_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_bolo_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_machete_02: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_typeivaxe_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_m51_etool_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
EGVAR(trenches,entrenchingTool) = 1;
};
class vn_m_bayo_m4956: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_fighting_knife_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_vc_knife_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_machete_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};
class vn_m_fishing_rod_01: vn_hand_melee_base_dynamic_scope {
scope = 2;
};