1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-27 15:40:34 -05:00

Stamin-Up: increase cost

This commit is contained in:
Jbleezy
2022-02-03 17:30:31 -08:00
parent 153b8a1cdb
commit eb71f28506
2 changed files with 4 additions and 1 deletions

View File

@ -218,6 +218,7 @@
* Increases bullet damage by 50% * Increases bullet damage by 50%
### Stamin-Up ### Stamin-Up
* Increased cost from 2000 to 2500
* Move faster (normally only sprint faster) * Move faster (normally only sprint faster)
### Deadshot Daiquiri ### Deadshot Daiquiri

View File

@ -248,7 +248,6 @@ perk_set_max_health_if_jugg( perk, set_premaxhealth, clamp_health_to_max_health
} }
} }
// modifying this function because it is right before perk_machine_spawn_init and has a lot less code
initialize_custom_perk_arrays() initialize_custom_perk_arrays()
{ {
if(!isDefined(level._custom_perks)) if(!isDefined(level._custom_perks))
@ -256,6 +255,9 @@ initialize_custom_perk_arrays()
level._custom_perks = []; level._custom_perks = [];
} }
level._custom_perks["specialty_longersprint"] = spawnStruct();
level._custom_perks["specialty_longersprint"].cost = 2500;
struct = spawnStruct(); struct = spawnStruct();
struct.script_noteworthy = "specialty_longersprint"; struct.script_noteworthy = "specialty_longersprint";
struct.scr_zm_ui_gametype = "zstandard"; struct.scr_zm_ui_gametype = "zstandard";