33 lines
1006 B
Ucode
33 lines
1006 B
Ucode
|
//=============================================================================
|
||
|
// KFWeapDef_M16M203
|
||
|
//=============================================================================
|
||
|
// A lightweight container for basic weapon properties that can be safely
|
||
|
// accessed without a weapon actor (UI, remote clients).
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2016 Tripwire Interactive LLC
|
||
|
// -Brooks Butler
|
||
|
//=============================================================================
|
||
|
class KFWeapDef_M16M203 extends KFWeaponDefinition
|
||
|
abstract;
|
||
|
|
||
|
DefaultProperties
|
||
|
{
|
||
|
WeaponClassPath="KFGameContent.KFWeap_AssaultRifle_M16M203"
|
||
|
|
||
|
BuyPrice=1200
|
||
|
AmmoPricePerMag=30 //30
|
||
|
ImagePath="wep_ui_m16_m203_tex.UI_WeaponSelect_M16M203"
|
||
|
|
||
|
EffectiveRange=68
|
||
|
|
||
|
SecondaryAmmoMagSize=1
|
||
|
SecondaryAmmoMagPrice=15 //13
|
||
|
|
||
|
UpgradePrice[0]=700
|
||
|
UpgradePrice[1]=1500
|
||
|
|
||
|
UpgradeSellPrice[0]=525
|
||
|
UpgradeSellPrice[1]=1650
|
||
|
}
|