1
0
KF2-Dev-Scripts/KFGameContent/Classes/KFDT_Toxic_HansGrenade.uc

30 lines
845 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFDT_Toxic_HansGrenade
//=============================================================================
// Hans Nerve Gas Grenade DamageType
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
// - John "Ramm-Jaeger" Gibson
//=============================================================================
class KFDT_Toxic_HansGrenade extends KFDT_Toxic
abstract
hidedropdown;
`include(KFGame/KFGameDialog.uci)
static function int GetKillerDialogID()
{
return `HANS_KillGas;
}
defaultproperties
{
// override DoT from KFDT_Toxic
DoT_Type=DOT_None
// Don't let Hans damage himself with his grenade
bNoInstigatorDamage=true
}