35 lines
977 B
Ucode
35 lines
977 B
Ucode
|
//=============================================================================
|
||
|
// KFDT_Explosive_RPG7
|
||
|
//=============================================================================
|
||
|
// Explosive damage type for the RPG rocket launcher rocket
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
||
|
// John "Ramm-Jaeger" Gibson
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFDT_Explosive_RPG7 extends KFDT_Explosive
|
||
|
abstract
|
||
|
hidedropdown;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
bShouldSpawnPersistentBlood=true
|
||
|
|
||
|
// physics impact
|
||
|
RadialDamageImpulse=2500//10000
|
||
|
GibImpulseScale=0.15
|
||
|
KDeathUpKick=1500//2000
|
||
|
KDeathVel=500
|
||
|
|
||
|
KnockdownPower=225
|
||
|
StumblePower=400
|
||
|
|
||
|
//Perk
|
||
|
ModifierPerkList(0)=class'KFPerk_Demolitionist'
|
||
|
|
||
|
ObliterationHealthThreshold=-500
|
||
|
ObliterationDamageThreshold=500
|
||
|
WeaponDef=class'KFWeapDef_RPG7'
|
||
|
}
|