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

32 lines
913 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFDT_Piercing_Crossbow
//=============================================================================
// Damage type for crossbow
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
//=============================================================================
class KFDT_Piercing_Crossbow extends KFDT_Piercing
abstract
hidedropdown;
2021-03-02 11:56:51 +00:00
var float HeadStunPower;
2020-12-13 15:01:13 +00:00
defaultproperties
{
KDamageImpulse=1500
KDeathUpKick=250
KDeathVel=150
KnockdownPower=20
2021-03-02 11:56:51 +00:00
HeadStunPower=1000 // Stun ensured when hit in the head
StunPower=30 // Stun used otherwise
2020-12-13 15:01:13 +00:00
StumblePower=250
GunHitPower=100
MeleeHitPower=40
ModifierPerkList(0)=class'KFPerk_Sharpshooter'
WeaponDef=class'KFWeapDef_Crossbow'
}