1
0
KF2-Dev-Scripts/KFGame/Classes/KFDT_HuskCannonDot.uc

44 lines
1.1 KiB
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// class KFDT_HuskCannonDot
//=============================================================================
// Damage caused by burning from being hit by a husk cannon fire ball
//=============================================================================
// Killing Floor 2
// Copyright (C) 2018 Tripwire Interactive LLC
// - Zane Gholson
//=============================================================================
class KFDT_HuskCannonDot 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_HuskCannon'
DoT_Type=DOT_Fire
DoT_Duration=2.5 //5.0 //1.7
DoT_Interval=0.5 //1.0 //0.4
DoT_DamageScale=0.1 //1.5
bNoInstigatorDamage=true
BurnPower=15.5 //2.5
ModifierPerkList(0) = class'KFPerk_Firebug'
ModifierPerkList(1) = class'KFPerk_Demolitionist'
}