Skip to content
Merged
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/bosses/boss_hale.sp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public void SaxtonHale_Create(SaxtonHaleBase boss)
boss.iHealthPerPlayer = 600;
boss.flHealthExponential = 1.05;
boss.nClass = TFClass_Soldier;
boss.iMaxRageDamage = 2500;
boss.iMaxRageDamage = 3000;
}

public void SaxtonHale_GetBossName(SaxtonHaleBase boss, char[] sName, int length)
Expand All @@ -154,7 +154,7 @@ public void SaxtonHale_GetBossInfo(SaxtonHaleBase boss, char[] sInfo, int length
StrCat(sInfo, length, "\n- Lunge, reload to use");
StrCat(sInfo, length, "\n ");
StrCat(sInfo, length, "\nRage");
StrCat(sInfo, length, "\n- Damage requirement: 2500");
StrCat(sInfo, length, "\n- Damage requirement: 3000");
StrCat(sInfo, length, "\n- Faster attack and movement speed");
StrCat(sInfo, length, "\n- Knockback and stun immunity");
StrCat(sInfo, length, "\n- Damage resistance and crits immunity");
Expand Down