29 lines
959 B
Ucode
29 lines
959 B
Ucode
|
//=============================================================================
|
||
|
// KFWeapDef_GravityImploder
|
||
|
//=============================================================================
|
||
|
// A lightweight container for basic weapon properties that can be safely
|
||
|
// accessed without a weapon actor (UI, remote clients).
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2020 Tripwire Interactive LLC
|
||
|
//=============================================================================
|
||
|
|
||
|
class KFWeapDef_GravityImploder extends KFWeaponDefinition
|
||
|
abstract;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
WeaponClassPath="KFGameContent.KFWeap_GravityImploder"
|
||
|
|
||
|
BuyPrice=2000
|
||
|
|
||
|
AmmoPricePerMag=70//40
|
||
|
|
||
|
ImagePath="WEP_UI_Gravity_Imploder_TEX.UI_WeaponSelect_Gravity_Imploder"
|
||
|
|
||
|
EffectiveRange=95 // Based on comment Slightly less than M79 Grenade Launcher
|
||
|
|
||
|
SharedUnlockId=SCU_GravityImploder
|
||
|
}
|
||
|
|