40 lines
986 B
Ucode
40 lines
986 B
Ucode
//=============================================================================
|
|
// KFDT_Fire_Ground_HRG_DragonBreath
|
|
//=============================================================================
|
|
// Damage caused by burning from being hit by a HRG dragon breath ground fire
|
|
//=============================================================================
|
|
// Killing Floor 2
|
|
// Copyright (C) 2022 Tripwire Interactive LLC
|
|
//=============================================================================
|
|
|
|
class KFDT_Fire_Ground_HRG_DragonBreath extends KFDT_Fire_Ground
|
|
abstract;
|
|
|
|
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_HRG_Dragonbreath'
|
|
|
|
DoT_Type=DOT_Fire
|
|
DoT_Duration=2.7
|
|
DoT_Interval=0.5
|
|
DoT_DamageScale=0.7
|
|
|
|
BurnPower=10
|
|
}
|
|
|