Skip to content

Commit

Permalink
Buffed some weapons slightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Doom2fan committed Nov 29, 2018
1 parent dee0c69 commit 3adf520
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PK3 Source/S7ZScript/Bases/Bullets.ZS
Original file line number Diff line number Diff line change
Expand Up @@ -246,14 +246,14 @@ class S7_12gaTracer : S7_BulletTracer {
}
class S7_ManxCarbineTracer : S7_BulletTracer {
default {
DamageFunction (fRandom [weaponDamage] (1.0, 3.0) * 7);
DamageFunction (fRandom [weaponDamage] (1.0, 2.0) * 10.5);
S7_BaseTracer.TrueSpeed 190;
DamageType 'PistolTracer';
}
}
class S7_HitterSMGTracer : S7_BulletTracer {
default {
DamageFunction (fRandom [weaponDamage] (1.0, 3.0) * 6);
DamageFunction (fRandom [weaponDamage] (1.0, 2.0) * 9);
S7_BaseTracer.TrueSpeed 170;
DamageType 'PistolTracer';
}
Expand All @@ -279,7 +279,7 @@ class S7_CaesarChaingun_Tracer : S7_BulletTracer {
/*** Secondary ***/
class S7_RaptorTracer : S7_BulletTracer {
default {
DamageFunction (fRandom [weaponDamage] (2.0, 3.0) * 6);
DamageFunction (fRandom [weaponDamage] (1.0, 2.0) * 7.5);
S7_BaseTracer.TrueSpeed 175;
DamageType 'PistolTracer';
}
Expand All @@ -293,7 +293,7 @@ class S7_RevolverTracer : S7_BulletTracer {
}
class S7_TEC9Tracer : S7_BulletTracer {
default {
DamageFunction (fRandom [weaponDamage] (1.5, 3.0) * 5);
DamageFunction (fRandom [weaponDamage] (1.0, 2.0) * 7.5);
DamageType 'PistolTracer';
}
}

0 comments on commit 3adf520

Please sign in to comment.