28 lines
816 B
Ucode
28 lines
816 B
Ucode
|
//=============================================================================
|
||
|
// KFDT_Ballistic_FAMAS_Rifle
|
||
|
//=============================================================================
|
||
|
// Damage type class for the FAMAS rifle
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2021 Tripwire Interactive LLC
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFDT_Ballistic_FAMAS_Rifle extends KFDT_Ballistic_AssaultRifle
|
||
|
abstract
|
||
|
hidedropdown;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
KDamageImpulse=900
|
||
|
KDeathUpKick=-300
|
||
|
KDeathVel=100
|
||
|
|
||
|
StumblePower=12
|
||
|
GunHitPower=0
|
||
|
|
||
|
WeaponDef=class'KFWeapDef_FAMAS'
|
||
|
|
||
|
ModifierPerkList(0)=class'KFPerk_Commando'
|
||
|
ModifierPerkList(1)=class'KFPerk_Support'
|
||
|
}
|