31 lines
987 B
Ucode
31 lines
987 B
Ucode
|
//=============================================================================
|
||
|
// KFWeaponDefintion
|
||
|
//=============================================================================
|
||
|
// A lightweight container for basic weapon properties that can be safely
|
||
|
// accessed without a weapon actor (UI, remote clients).
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
||
|
//=============================================================================
|
||
|
class KFWeapDef_DoubleBarrel extends KFWeaponDefinition
|
||
|
abstract;
|
||
|
|
||
|
DefaultProperties
|
||
|
{
|
||
|
WeaponClassPath="KFGameContent.KFWeap_Shotgun_DoubleBarrel"
|
||
|
|
||
|
BuyPrice=750 //650
|
||
|
AmmoPricePerMag=13 //11
|
||
|
ImagePath="ui_weaponselect_tex.UI_WeaponSelect_DBShotgun"
|
||
|
|
||
|
EffectiveRange=15
|
||
|
|
||
|
UpgradePrice[0]=600
|
||
|
UpgradePrice[1]=700
|
||
|
UpgradePrice[2]=1500
|
||
|
|
||
|
UpgradeSellPrice[0]=450
|
||
|
UpgradeSellPrice[1]=975
|
||
|
UpgradeSellPrice[2]=2100
|
||
|
}
|