1
0
KF2-Dev-Scripts/KFGame/Classes/KFDT_Fire_Ground.uc
2020-12-13 18:01:13 +03:00

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
}