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

44 lines
1001 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFDT_Ballistic_MKB42
//=============================================================================
// Killing Floor 2
// Copyright (C) 2017 Tripwire Interactive LLC
//=============================================================================
class KFDT_Ballistic_MKB42 extends KFDT_Ballistic_AssaultRifle
abstract
hidedropdown;
/** Allows the damage type to customize exactly which hit zones it can dismember */
static simulated function bool CanDismemberHitZone( name InHitZoneName )
{
if( super.CanDismemberHitZone( InHitZoneName ) )
{
return true;
}
switch ( InHitZoneName )
{
case 'lupperarm':
case 'rupperarm':
return true;
}
return false;
}
defaultproperties
{
KDamageImpulse=1000
KDeathUpKick=-200
KDeathVel=135
StumblePower=25
GunHitPower=0
WeaponDef=class'KFWeapDef_MKB42'
//Perk
ModifierPerkList(0)=class'KFPerk_Commando'
}