Change Medic and Commando perks to be one perk

This commit is contained in:
Anton Tarasenko 2020-04-21 13:55:36 +07:00
commit ae28c24ef6
17 changed files with 103 additions and 43 deletions

View file

@ -0,0 +1,14 @@
class NiceSkillCommandoAdrenalineShot extends NiceSkill
abstract;
var float boostTime;
var float minHealth;
var float speedBoost, resistBoost;
defaultproperties
{
boostTime=1.000000
minHealth=50.000000
speedBoost=2.000000
resistBoost=1.500000
SkillName="Adrenaline shot"
SkillEffects="Wounded players healed by you gain boost in speed (up to 100%) and damage resistance (up to 50%) for one second."
}

View file

@ -0,0 +1,9 @@
class NiceSkillCommandoRegeneration extends NiceSkill
abstract;
var float regenFrequency;
defaultproperties
{
regenFrequency=0.500000
SkillName="Regeneration"
SkillEffects="You regenerate 2 hp per second."
}

View file

@ -0,0 +1,7 @@
class NiceSkillCommandoTranquilizer extends NiceSkill
abstract;
defaultproperties
{
SkillName="Tranquilizer"
SkillEffects="Zeds hit by your darts can be stunned by head-damage, but your darts lose 25% of their healing efficiency."
}

View file

@ -0,0 +1,7 @@
class NiceSkillCommandoZEDHeavenCanceller extends NiceSkill
abstract;
defaultproperties
{
SkillName="Heaven canceller"
SkillEffects="During zed-time your darts instantly restore health of your teammates and make them invincible for it's duration."
}