33 lines
795 B
Ucode
33 lines
795 B
Ucode
//=============================================================================
|
|
// KFDT_Fire_Ground
|
|
//=============================================================================
|
|
// A damage type for KFProj_GroundFire
|
|
//=============================================================================
|
|
// Killing Floor 2
|
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
|
//=============================================================================
|
|
|
|
class KFDT_Fire_Ground extends KFDT_Fire
|
|
abstract
|
|
hidedropdown;
|
|
|
|
static function int GetKillerDialogID()
|
|
{
|
|
return 86;//KILL_Fire
|
|
}
|
|
|
|
static function int GetDamagerDialogID()
|
|
{
|
|
return 102;//DAMZ_Fire
|
|
}
|
|
|
|
static function int GetDamageeDialogID()
|
|
{
|
|
return 116;//DAMP_Fire
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
DoT_DamageScale=.5
|
|
}
|