33 lines
935 B
Ucode
33 lines
935 B
Ucode
//=============================================================================
|
|
// KFDT_Explosive_Seeker6
|
|
//=============================================================================
|
|
// Explosive damage type for the Seeker6 rocket launcher rocket
|
|
//=============================================================================
|
|
// Killing Floor 2
|
|
// Copyright (C) 2016 Tripwire Interactive LLC
|
|
//=============================================================================
|
|
class KFDT_Explosive_Seeker6 extends KFDT_Explosive
|
|
abstract
|
|
hidedropdown;
|
|
|
|
defaultproperties
|
|
{
|
|
bShouldSpawnPersistentBlood=true
|
|
|
|
// physics impact
|
|
RadialDamageImpulse=10000
|
|
KDeathUpKick=2000
|
|
KDeathVel=500
|
|
|
|
KnockdownPower=40 //225
|
|
StumblePower=70 //400
|
|
|
|
|
|
//Perk
|
|
ModifierPerkList(0)=class'KFPerk_Demolitionist'
|
|
|
|
ObliterationHealthThreshold=-500
|
|
ObliterationDamageThreshold=500
|
|
WeaponDef=class'KFWeapDef_Seeker6'
|
|
}
|