2021-03-02 11:56:51 +00:00
|
|
|
//=============================================================================
|
|
|
|
// 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"
|
|
|
|
|
2023-02-24 17:06:51 +00:00
|
|
|
IsPlayGoHidden=true;
|
|
|
|
|
2021-03-02 11:56:51 +00:00
|
|
|
EffectiveRange=95 // Based on comment Slightly less than M79 Grenade Launcher
|
|
|
|
|
|
|
|
SharedUnlockId=SCU_GravityImploder
|
|
|
|
}
|
|
|
|
|