28 lines
807 B
Ucode
28 lines
807 B
Ucode
|
//=============================================================================
|
||
|
// KFDT_Fire_MicrowaveRifleDoT
|
||
|
//=============================================================================
|
||
|
// Damage caused by burning from being hit by a microwave assault rifle round
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2018 Tripwire Interactive LLC
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFDT_Fire_MicrowaveRifleDoT extends KFDT_Fire
|
||
|
abstract
|
||
|
hidedropdown;
|
||
|
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
WeaponDef = class'KFWeapDef_MicrowaveRifle'
|
||
|
|
||
|
DoT_Type = DOT_Fire
|
||
|
DoT_Duration = 2.0
|
||
|
DoT_Interval = 0.5
|
||
|
DoT_DamageScale = 0.3
|
||
|
bIgnoreSelfInflictedScale = true
|
||
|
|
||
|
BurnPower = 8.5
|
||
|
}
|
||
|
|