Skip to content

Commit

Permalink
feat: add support for new battlegrounds anomalies
Browse files Browse the repository at this point in the history
  • Loading branch information
azeier committed Oct 18, 2023
1 parent fecaf11 commit 86b7f0f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Hearthstone Deck Tracker/Hearthstone/BattlegroundsUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@ public static class BattlegroundsUtils
public static HashSet<int> GetAvailableTiers(string? anomalyCardId) => anomalyCardId switch
{
NonCollectible.Neutral.BigLeague => new HashSet<int> { 3, 4, 5, 6 },
NonCollectible.Neutral.HowToEven => new HashSet<int> { 2, 4, 6 },
NonCollectible.Neutral.LittleLeague => new HashSet<int> { 1, 2, 3, 4 },
NonCollectible.Invalid.SecretsOfNorgannon => new HashSet<int> { 1, 2, 3, 4, 5, 6, 7 },
NonCollectible.Neutral.ValuationInflation => new HashSet<int> { 2, 3, 4, 5, 6 },
NonCollectible.Neutral.WhatAreTheOdds => new HashSet<int> { 1, 3, 5 },
_ => new HashSet<int> { 1, 2, 3, 4, 5, 6 },
};

Expand Down

0 comments on commit 86b7f0f

Please sign in to comment.