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

31 lines
787 B
Ucode

//=============================================================================
// KFDT_Toxic_AcidicRounds
//=============================================================================
// The medic's Acidic Round damage type
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
//=============================================================================
class KFDT_Toxic_AcidicRounds extends KFDT_Toxic
abstract;
`include(KFGameDialog.uci)
static function bool AlwaysPoisons()
{
return true;
}
defaultproperties
{
KDamageImpulse=0
DoT_Type=DOT_Toxic
DoT_Duration=5.0
DoT_Interval=1.0 //1.0
DoT_DamageScale=2.0 //0.1 0.15
PoisonPower=200 //33
}