forked from Ballistic-Weapons-Community/BallisticWeapons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAP_A800Clip.uc
31 lines (29 loc) · 944 Bytes
/
AP_A800Clip.uc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//=============================================================================
// AP_A73Clip
//
// The charge module from the A73 Skrith Rifle. Gives ammo between 30 amd 50.
//
// by Nolan "Dark Carnivour" Richert.
// Copyright(c) 2005 RuneStorm. All Rights Reserved.
//=============================================================================
class AP_A800Clip extends BallisticAmmoPickup;
// Some of these are good, some not so good
auto state Pickup
{
function BeginState()
{
AmmoAmount = default.AmmoAmount + (-20 + Rand(40));
Super.BeginState();
}
}
defaultproperties
{
AmmoAmount=200
InventoryType=Class'BWBP_SWC_Pro.Ammo_A800Cells'
PickupMessage="You picked up a Skrith energy cell"
PickupSound=Sound'BW_Core_WeaponSound.Ammo.A73CellPickup'
StaticMesh=StaticMesh'BWBP_SWC_Static.SkrithMinigun.SkrithBigCellPick'
DrawScale=0.300000
CollisionRadius=8.000000
CollisionHeight=4.800000
}