Patch [Version 0.3.4 "Private balance round #3"]

This commit is contained in:
Anton Tarasenko 2021-06-11 21:10:09 +07:00
commit c536198a52
76 changed files with 376 additions and 154 deletions

View file

@ -3,7 +3,7 @@ class NiceSkillCommandoExplosivePower extends NiceSkill
var float dmgMod;
defaultproperties
{
dmgMod=1.200000
dmgMod=1.000000
SkillName="Explosive power"
SkillEffects="Burst fire deals 20% more damage and has reduced delay between shots."
SkillEffects="Burst fire shots one more bullet."
}

View file

@ -0,0 +1,9 @@
class NiceSkillCommandoOverclocking extends NiceSkill
abstract;
var float fireSpeedMult;
defaultproperties
{
fireSpeedMult=1.300000
SkillName="Overclocking"
SkillEffects="+30% fire speed with perked weapons. Don't ask, it just works."
}

View file

@ -0,0 +1,9 @@
class NiceSkillCommandoQuickerMags extends NiceSkill
abstract;
var float speedBonus;
defaultproperties
{
speedBonus=2.000000
SkillName="Quicker mags"
SkillEffects="Active reload speed is twice as fast."
}