58 lines
2.0 KiB
Ucode
58 lines
2.0 KiB
Ucode
|
//=============================================================================
|
||
|
// KFDT_Ballistic_HRGIncendiaryRifle
|
||
|
//=============================================================================
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2019 Tripwire Interactive LLC
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFDT_Ballistic_HRGIncendiaryRifle extends KFDT_Ballistic_AssaultRifle
|
||
|
abstract
|
||
|
hidedropdown;
|
||
|
|
||
|
// Damage type to use for the burning damage over time
|
||
|
var class<KFDamageType> BurnDamageType;
|
||
|
|
||
|
/** Play damage type specific impact effects when taking damage */
|
||
|
static function PlayImpactHitEffects(KFPawn P, vector HitLocation, vector HitDirection, byte HitZoneIndex, optional Pawn HitInstigator)
|
||
|
{
|
||
|
// Play burn effect when dead
|
||
|
if (P.bPlayedDeath && P.WorldInfo.TimeSeconds > P.TimeOfDeath)
|
||
|
{
|
||
|
default.BurnDamageType.static.PlayImpactHitEffects(P, HitLocation, HitDirection, HitZoneIndex, HitInstigator);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
super.PlayImpactHitEffects(P, HitLocation, HitDirection, HitZoneIndex, HitInstigator);
|
||
|
}
|
||
|
|
||
|
/** Called when damage is dealt to apply additional damage type (e.g. Damage Over Time) */
|
||
|
static function ApplySecondaryDamage(KFPawn Victim, int DamageTaken, optional Controller InstigatedBy)
|
||
|
{
|
||
|
// Overriden to specific a different damage type to do the burn damage over
|
||
|
// time. We do this so we don't get shotgun pellet impact sounds/fx during
|
||
|
// the DOT burning.
|
||
|
if (default.BurnDamageType.default.DoT_Type != DOT_None)
|
||
|
{
|
||
|
Victim.ApplyDamageOverTime(DamageTaken, InstigatedBy, default.BurnDamageType);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
KDamageImpulse=900
|
||
|
KDeathUpKick=-300
|
||
|
KDeathVel=100
|
||
|
|
||
|
StumblePower=10
|
||
|
GunHitPower=0
|
||
|
|
||
|
WeaponDef=class'KFWeapDef_HRGIncendiaryRifle'
|
||
|
BurnDamageType=class'KFDT_Fire_HRGIncendiaryRifleBulletDoT'
|
||
|
|
||
|
CameraLensEffectTemplate = class'KFCameraLensEmit_Fire'
|
||
|
EffectGroup = FXG_IncendiaryRound
|
||
|
|
||
|
ModifierPerkList(0)=class'KFPerk_Firebug'
|
||
|
}
|