34 lines
932 B
Ucode
34 lines
932 B
Ucode
//=============================================================================
|
|
// KFDT_Explosive_HX25
|
|
//=============================================================================
|
|
// Explosive damage type for the HX25 Grenade launcher grenade
|
|
//=============================================================================
|
|
// Killing Floor 2
|
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
|
// John "Ramm-Jaeger" Gibson
|
|
//=============================================================================
|
|
|
|
class KFDT_Explosive_HX25 extends KFDT_Explosive
|
|
abstract
|
|
hidedropdown;
|
|
|
|
defaultproperties
|
|
{
|
|
bShouldSpawnPersistentBlood=true
|
|
|
|
// physics impact
|
|
RadialDamageImpulse=500//1500
|
|
GibImpulseScale=0.77
|
|
KDeathUpKick=250//500
|
|
KDeathVel=250
|
|
|
|
KnockdownPower=100
|
|
StumblePower=150
|
|
MeleeHitPower=100
|
|
|
|
//Perk
|
|
ModifierPerkList(0)=class'KFPerk_Demolitionist'
|
|
|
|
WeaponDef=class'KFWeapDef_HX25'
|
|
}
|
|
|