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

24 lines
831 B
Ucode
Raw Permalink Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFSM_PlayerBloat_PukeMineAttack
//=============================================================================
// Player controlled bloat puke mine attack
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
//=============================================================================
class KFSM_PlayerBloat_PukeMineAttack extends KFSM_PlayerMeleeBase;
protected function bool InternalCanDoSpecialMove()
{
if( KFPOwner == none || KFPOwner.IsHeadless() )
{
return false;
}
return super.InternalCanDoSpecialMove();
}
defaultproperties
{
Attacks.Add((Type=PZA_Default, Stance=EAS_UpperBody, Anims=(Player_Special_Atk)))
}