1
0
KF2-Dev-Scripts/KFGameContent/Classes/KFDT_Ballistic_ChiappaRhino.uc
2020-12-13 18:01:13 +03:00

48 lines
1.2 KiB
Ucode

//=============================================================================
// KFDT_Ballistic_ChiappaRhino
//=============================================================================
// Pistol damage type for the Chiappa Rhino pistol
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
//=============================================================================
class KFDT_Ballistic_ChiappaRhino extends KFDT_Ballistic_Handgun
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':
case 'chest':
case 'heart':
return true;
}
return false;
}
defaultproperties
{
KDamageImpulse=2000
KDeathUpKick=-450
KDeathVel=200
KnockdownPower=15
StumblePower=20
GunHitPower=100
WeaponDef=class'KFWeapDef_ChiappaRhino'
ModifierPerkList(0)=class'KFPerk_Gunslinger'
}