42 lines
1.1 KiB
Ucode
42 lines
1.1 KiB
Ucode
//=============================================================================
|
|
// KFDT_Microwave_Blast
|
|
//=============================================================================
|
|
// Damage caused by the microwave gun alternate fire
|
|
//=============================================================================
|
|
// Killing Floor 2
|
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
|
//=============================================================================
|
|
|
|
class KFDT_Microwave_Blast extends KFDT_Microwave
|
|
abstract
|
|
hidedropdown;
|
|
|
|
DefaultProperties
|
|
{
|
|
// This weapon uses radial impulses
|
|
RadialDamageImpulse=5000
|
|
KDamageImpulse=0
|
|
KDeathUpKick=500.0
|
|
KDeathVel=300
|
|
|
|
// unreal physics momentum
|
|
bExtraMomentumZ=True
|
|
|
|
KnockdownPower=200
|
|
StumblePower=0
|
|
GunHitPower=0
|
|
MeleeHitPower=0
|
|
|
|
MicrowavePower=100
|
|
|
|
EffectGroup=FXG_MicrowaveBlast
|
|
//bCanObliterate=true
|
|
//ObliterationHealthThreshold=-75
|
|
//ObliterationDamageThreshold=100
|
|
bCanGib=true
|
|
GoreDamageGroup=DGT_Obliteration
|
|
|
|
WeaponDef=class'KFWeapDef_MicrowaveGun'
|
|
ModifierPerkList(0)=class'KFPerk_Firebug'
|
|
}
|