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:
parent
77e69979e1
commit
6a7a59363e
@ -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
|
||||
|
||||
|
@ -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" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user