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

@ -0,0 +1,13 @@
class NiceSkillSpecialtyGunslinger extends NiceSkill
abstract;
var float reloadMultiplier;
var float movementMultiplier;
defaultproperties
{
reloadMultiplier = 1.25
movementMultiplier = 1.15;
SkillName="Gunslinger"
SkillEffects="Specialization in handling your guns comes with 25% faster reload and 15% faster movement."
}

View file

@ -0,0 +1,11 @@
class NiceSkillSpecialtySharpshooter extends NiceSkill
abstract;
var float hsMultiplier;
defaultproperties
{
hsMultiplier = 1.25;
SkillName="Sharpshooter"
SkillEffects="Specialization in making calculated, precision shots comes with 25% more headshot damage."
}