2021-06-02 20:06:18 +00:00
|
|
|
//=============================================================================
|
|
|
|
// KFDT_Fire_ThermiteImpactDoT
|
|
|
|
//=============================================================================
|
|
|
|
// Damage caused by burning from being hit by a thermite bore projectile
|
|
|
|
//=============================================================================
|
|
|
|
// Killing Floor 2
|
|
|
|
// Copyright (C) 2021 Tripwire Interactive LLC
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
class KFDT_Fire_ThermiteImpactDoT 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
|
|
|
|
{
|
|
|
|
WeaponDef=class'KFWeapDef_ThermiteBore'
|
|
|
|
|
|
|
|
DoT_Type=DOT_Fire
|
|
|
|
DoT_Duration=3.0
|
|
|
|
DoT_Interval=0.5
|
|
|
|
DoT_DamageScale=0.2
|
|
|
|
|
2024-01-23 16:25:12 +00:00
|
|
|
SelfDamageReductionValue=0.05f //0.25f
|
|
|
|
|
2021-06-02 20:06:18 +00:00
|
|
|
BurnPower=10
|
|
|
|
}
|
|
|
|
|