30 lines
848 B
Ucode
30 lines
848 B
Ucode
//=============================================================================
|
|
// KFDT_Explosive_PatMissile
|
|
//=============================================================================
|
|
// Explosive damage type for the Patriarch missile
|
|
//=============================================================================
|
|
// Killing Floor 2
|
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
|
// John "Ramm-Jaeger" Gibson
|
|
//=============================================================================
|
|
|
|
class KFDT_Explosive_PatMissile extends KFDT_Explosive
|
|
abstract
|
|
hidedropdown;
|
|
|
|
`include(KFGame/KFGameDialog.uci)
|
|
|
|
static function int GetKillerDialogID()
|
|
{
|
|
return `PATTY_MissileKill;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
bShouldSpawnPersistentBlood=true
|
|
|
|
// physics impact
|
|
RadialDamageImpulse=1000
|
|
KDeathUpKick=500
|
|
KDeathVel=500
|
|
} |