Change Medic and Commando perks to be one perk
This commit is contained in:
parent
e7d1c539e8
commit
ae28c24ef6
17 changed files with 103 additions and 43 deletions
|
|
@ -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."
|
||||
}
|
||||
|
|
@ -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."
|
||||
}
|
||||
|
|
@ -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."
|
||||
}
|
||||
|
|
@ -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."
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue