Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Saxton Hale Balance Buff #409

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/vsh/abilities/ability_lunge.sp
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public void Lunge_Create(SaxtonHaleBase boss)
g_flLungeCooldownWait[boss.iClient] = 0.0;
g_bLungeActive[boss.iClient] = false;

boss.SetPropFloat("Lunge", "Cooldown", 15.0);
boss.SetPropFloat("Lunge", "Cooldown", 10.0);
boss.SetPropFloat("Lunge", "RageCost", 0.0);
boss.SetPropFloat("Lunge", "MaxDamage", 100.0);
boss.SetPropFloat("Lunge", "MaxForce", 1100.0);
boss.SetPropFloat("Lunge", "JumpCooldown", 3.0);
boss.SetPropFloat("Lunge", "JumpCooldown", 1.0);
}

public void Lunge_GetHudInfo(SaxtonHaleBase boss, char[] sMessage, int iLength, int iColor[4])
Expand Down
12 changes: 6 additions & 6 deletions addons/sourcemod/scripting/vsh/bosses/boss_hale.sp
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ public void SaxtonHale_Create(SaxtonHaleBase boss)

boss.CreateClass("RageAttributes");
boss.SetPropFloat("RageAttributes", "RageAttribDuration", 5.0);
boss.SetPropFloat("RageAttributes", "RageAttribSuperRageMultiplier", 1.6);
RageAttributes_AddAttrib(boss, 2, 0.5, 0.75, false); // Decreased damage (-50%, -25%)
boss.SetPropFloat("RageAttributes", "RageAttribSuperRageMultiplier", 2.0);
RageAttributes_AddAttrib(boss, 6, 0.3, 0.3, false); // Increased attack speed (+70%)

boss.CreateClass("RageAddCond");
boss.SetPropFloat("RageAddCond", "RageCondDuration", 5.0);
boss.SetPropFloat("RageAddCond", "RageCondSuperRageMultiplier", 1.6);
boss.SetPropFloat("RageAddCond", "RageCondSuperRageMultiplier", 2.0);
RageAddCond_AddCond(boss, TFCond_SpeedBuffAlly); // Speed boost effect
RageAddCond_AddCond(boss, TFCond_MegaHeal); // Knockback & stun immunity
RageAddCond_AddCond(boss, TFCond_DefenseBuffed); // Battalion's Resistance

boss.CreateClass("Lunge");

Expand All @@ -155,10 +155,10 @@ public void SaxtonHale_GetBossInfo(SaxtonHaleBase boss, char[] sInfo, int length
StrCat(sInfo, length, "\n ");
StrCat(sInfo, length, "\nRage");
StrCat(sInfo, length, "\n- Damage requirement: 2500");
StrCat(sInfo, length, "\n- Faster attack speed but lower damage");
StrCat(sInfo, length, "\n- Faster movement speed");
StrCat(sInfo, length, "\n- Faster attack and movement speed");
StrCat(sInfo, length, "\n- Knockback and stun immunity");
StrCat(sInfo, length, "\n- 200%% Rage: Extends duration from 5 to 8 seconds and increased damage");
StrCat(sInfo, length, "\n- Damage resistance and crits immunity");
StrCat(sInfo, length, "\n- 200%% Rage: Extends duration from 5 to 10 seconds");
}

public void SaxtonHale_OnSpawn(SaxtonHaleBase boss)
Expand Down