1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-07 21:59:49 -05:00

Added fasttoss and sprintrecovery perks

This commit is contained in:
Jbleezy 2020-02-16 02:25:16 -08:00
parent 77e69979e1
commit 6a7a59363e
2 changed files with 6 additions and 0 deletions

View File

@ -42,9 +42,11 @@
### Speed Cola
* Aim twice as fast
* Switch weapons twice as fast
* Throw grenades twice as fast
### Deadshot
* Move faster while aiming
* Decreased sprint recovery time
## Powerups

View File

@ -826,20 +826,24 @@ give_additional_perks()
{
self SetPerk("specialty_fastads");
self SetPerk("specialty_fastweaponswitch");
self Setperk( "specialty_fasttoss" );
}
else
{
self UnsetPerk("specialty_fastads");
self UnsetPerk("specialty_fastweaponswitch");
self Unsetperk( "specialty_fasttoss" );
}
if (self HasPerk("specialty_deadshot"))
{
self SetPerk("specialty_stalker");
self Setperk( "specialty_sprintrecovery" );
}
else
{
self UnsetPerk("specialty_stalker");
self Unsetperk( "specialty_sprintrecovery" );
}
}
}