Tweaked explosion radii to more reasonable scales.

Reduced spread of grenades. Increased size of rocket trail (looks a bit closer to UT now).
Increased radius of single bullet pickup, might have been too small for collision to work properly.
This commit is contained in:
Marisa the Magician 2018-05-30 22:12:49 +02:00
commit 8bfbc0e7cd
7 changed files with 13 additions and 12 deletions

View file

@ -318,7 +318,7 @@ Class ShockBeam : Actor
if ( target ) target.TakeInventory('ShockAmmo',2);
let b = t.Results.HitActor.target;
b.ExplodeMissile(null,self);
b.A_Explode(Random[ASMD](150,160),250);
b.A_Explode(Random[ASMD](150,160),300);
b.A_QuakeEx(6,6,6,60,0,1200,"",QF_RELATIVE|QF_SCALEDOWN,rollIntensity:0.2);
b.A_SprayDecal("BigShockMark1",100);
b.A_SprayDecal("BigShockMark2",100);
@ -590,7 +590,7 @@ Class SuperShockBeam : Actor
action void A_BeamExplode()
{
Spawn("SuperShockBeamLight",pos);
A_Explode(Random[ASMD](500,800),120);
A_Explode(Random[ASMD](500,800),90);
A_QuakeEx(6,6,6,5,0,200,"",QF_RELATIVE|QF_SCALEDOWN,rollIntensity:0.2);
A_PlaySound("shock/hit",CHAN_VOICE,attenuation:0.5);
A_PlaySound("sshock/blast",CHAN_6,attenuation:0.5);