Tweaked fire rates of Enforcer, Shock Rifle, Ripper, Flak Cannon to be even closer to the originals.

Reduced gravity on Biosludge to make it feel more like the original.
Buffed chainsaw altfire, making it hit fast on a wider arc.
Correctly fixed armor + shield belt behaviors.
Made it so jump boots drain after landing, thus preventing fall damage on the last jump in case it's enabled.
Made jump boots drain slowly over time, for balance reasons (especially when jumping is disabled).
This commit is contained in:
Marisa the Magician 2018-08-12 15:39:21 +02:00
commit b5a0c723fe
8 changed files with 64 additions and 39 deletions

View file

@ -458,20 +458,20 @@ Class Enforcer : UTWeapon replaces Pistol
Hold:
ENFF A 0 A_EnforcerFire();
ENFF ABCDEFGHIJ 1;
ENFF J 5;
ENFF J 2;
ENFF J 0 A_EnforcerRefire();
ENFF J 2;
ENFI A 0;
Goto Idle;
LeftFire:
2NFI A 0 A_Overlay(-9998,"Null");
2NFI A 8;
2NFI A 5;
2NFI A 0 A_EnforcerRefire(1,true);
Goto LeftIdle;
LeftHold:
2NFF A 0 A_EnforcerFire(false,true);
2NFF ABCDEFGHIJ 1;
2NFF J 5;
2NFF J 2;
2NFF J 0 A_EnforcerRefire("LeftHold",true);
2NFF J 2;
2NFI A 0;
@ -482,20 +482,20 @@ Class Enforcer : UTWeapon replaces Pistol
AltHold:
ENFA G 0 A_EnforcerFire(true);
ENFA GHIJKLMN 1;
ENFA N 3;
ENFA N 1;
ENFA G 0 A_EnforcerRefire();
ENFA OPQRSTU 1;
Goto Idle;
LeftAltFire:
2NFI A 0 A_Overlay(-9998,"Null");
2NFI A 7;
2NFI A 5;
2NFI A 0 A_EnforcerRefire(1,true);
Goto LeftIdle;
2NFA ABCDEF 1;
LeftAltHold:
2NFA G 0 A_EnforcerFire(true,true);
2NFA GHIJKLMN 1;
2NFA N 3;
2NFA N 1;
2NFA G 0 A_EnforcerRefire("LeftAltHold",true);
2NFA OPQRSTU 1;
Goto LeftIdle;