Corrected Armor/Pads + Shield Belt pickup behavior.

Reduced Biorifle damage relative to sludge scale.
Increased Flak Cannon chunk damage and amount and primary fire speed.
Increased Impact Hammer damage and knockback to enemies.
Added rare spawn of redeemer ammo pickups for cell packs.
Reduced Pulsegun beam damage timer.
Increased Ripper primary fire speed.
This commit is contained in:
Marisa the Magician 2018-08-09 22:01:16 +02:00
commit a5debcdbb2
8 changed files with 57 additions and 29 deletions

View file

@ -171,7 +171,6 @@ Class BioLight : DynamicLight
Class BioXLight : DynamicLight
{
double lifetime;
Default
{
@ -410,7 +409,7 @@ Class BioGel : Actor
s.args[3] = int(s.args[3]*Scale.x);
invoker.deadtimer = -2;
if ( invoker.atline ) invoker.atline.RemoteActivate(target,invoker.atside,SPAC_Impact,pos);
A_Explode(int(Random[GES](10,20)*Scale.x*Scale.x),Min(150,int(Scale.x*25)));
A_Explode(int(Random[GES](20,40)*Scale.x),Min(150,int(Scale.x*25)));
A_PlaySound("ges/explode",CHAN_VOICE);
int numpt = Min(300,int(Scale.x*30))+Random[GES](-10,10);
for ( int i=0; i<numpt; i++ )
@ -436,7 +435,7 @@ Class BioGel : Actor
{
Obituary "%o drank a glass of %k's dripping green load.";
DamageType 'Slime';
DamageFunction int(Random[GES](10,20)*Scale.x*Scale.x);
DamageFunction int(Random[GES](20,40)*Scale.x);
RenderStyle "Add";
Radius 3;
Height 3;
@ -692,7 +691,7 @@ Class BioRifle : UTWeapon
BIOM A 0 A_Refire(1);
Goto AltRelease;
AltHeld:
BIOM A 5;
BIOM A 1;
BIOM A 0 A_Refire("AltHeld");
AltRelease:
BIOE A 1 { invoker.charge = min(5.1,invoker.charge+0.1); }