1
0
KF2-Dev-Scripts/KFGameContent/Classes/KFSM_PlayerGorefast_Melee.uc

17 lines
966 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFSM_PlayerGorefast_Melee
//=============================================================================
// Player controlled stalker attacks
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
//=============================================================================
class KFSM_PlayerGorefast_Melee extends KFSM_PlayerMeleeBase;
defaultproperties
{
Attacks.Add((Type=PZA_Default, Stance=EAS_UpperBody, Anims=(Player_Light_Atk_V1, Player_Light_Atk_V2)))
Attacks.Add((Type=PZA_Sprinting, Stance=EAS_FullBody, Anims=(Player_Lunge_Atk)))
Attacks.Add((Type=PZA_Jumping, Stance=EAS_FullBody, Anims=(Player_Jump_Atk), bForceDisableRootMotion=true))
Attacks.Add((Type=PZA_Headless, Stance=EAS_UpperBody, Anims=(Player_Headless_Atk_V1, Player_Headless_Atk_V2)))
}