mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-09 06:39:23 -05:00
Added fasttoss and sprintrecovery perks
This commit is contained in:
parent
77e69979e1
commit
6a7a59363e
@ -42,9 +42,11 @@
|
|||||||
### Speed Cola
|
### Speed Cola
|
||||||
* Aim twice as fast
|
* Aim twice as fast
|
||||||
* Switch weapons twice as fast
|
* Switch weapons twice as fast
|
||||||
|
* Throw grenades twice as fast
|
||||||
|
|
||||||
### Deadshot
|
### Deadshot
|
||||||
* Move faster while aiming
|
* Move faster while aiming
|
||||||
|
* Decreased sprint recovery time
|
||||||
|
|
||||||
## Powerups
|
## Powerups
|
||||||
|
|
||||||
|
@ -826,20 +826,24 @@ give_additional_perks()
|
|||||||
{
|
{
|
||||||
self SetPerk("specialty_fastads");
|
self SetPerk("specialty_fastads");
|
||||||
self SetPerk("specialty_fastweaponswitch");
|
self SetPerk("specialty_fastweaponswitch");
|
||||||
|
self Setperk( "specialty_fasttoss" );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
self UnsetPerk("specialty_fastads");
|
self UnsetPerk("specialty_fastads");
|
||||||
self UnsetPerk("specialty_fastweaponswitch");
|
self UnsetPerk("specialty_fastweaponswitch");
|
||||||
|
self Unsetperk( "specialty_fasttoss" );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (self HasPerk("specialty_deadshot"))
|
if (self HasPerk("specialty_deadshot"))
|
||||||
{
|
{
|
||||||
self SetPerk("specialty_stalker");
|
self SetPerk("specialty_stalker");
|
||||||
|
self Setperk( "specialty_sprintrecovery" );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
self UnsetPerk("specialty_stalker");
|
self UnsetPerk("specialty_stalker");
|
||||||
|
self Unsetperk( "specialty_sprintrecovery" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user