29 lines
830 B
Ucode
29 lines
830 B
Ucode
|
//=============================================================================
|
||
|
// KFDT_Ballistic_M79Impact
|
||
|
//=============================================================================
|
||
|
// Shell impact damage type for the M79 Grenade launcher
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
||
|
// John "Ramm-Jaeger" Gibson
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFDT_Ballistic_M79Impact extends KFDT_Ballistic_Shell
|
||
|
abstract
|
||
|
hidedropdown;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
KDamageImpulse=2000
|
||
|
KDeathUpKick=750
|
||
|
KDeathVel=350
|
||
|
|
||
|
KnockdownPower=125
|
||
|
StumblePower=340
|
||
|
GunHitPower=275
|
||
|
|
||
|
WeaponDef=class'KFWeapDef_M79'
|
||
|
|
||
|
ModifierPerkList(0)=class'KFPerk_Demolitionist'
|
||
|
}
|