Skip to content

Commit

Permalink
feat: update enums for 31.4
Browse files Browse the repository at this point in the history
  • Loading branch information
joolean committed Jan 21, 2025
1 parent 13812b2 commit 07878fa
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions hearthstone/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ class GameTag(IntEnum):
MODIFY_DEFINITION_COST = 475
MULTIPLE_CLASSES = 476
ALL_TARGETS_RANDOM = 477
MULTI_CLASS_GROUP = 480
GRIMY_GOONS = 482
JADE_LOTUS = 483
KABAL = 484
Expand Down Expand Up @@ -868,10 +867,12 @@ class GameTag(IntEnum):
SUPPRESS_HERO_STANDARD_SUMMON_FX = 3438
ZILLIAX_CUSTOMIZABLE_LINKED_COSMETICMOUDLE = 3450
BACON_SHOW_COST_ON_DISCOVER = 3456
ZERG = 3457
TERRAN = 3458
MIN_SIDEBOARD_CARDS = 3459
FORGETFUL_ATTACK_VISUAL = 3460
SHUDDERWOCKHIGHLIGHTHINT = 3463
HERO_FRAME_TYPE = 3495
PROTOSS = 3469
NUM_TURNS_LAST_AFFECTED_BY = 3464
EXTRA_TURNS_SPELL_OVERRIDE = 3465
ZILLIAX_CUSTOMIZABLE_LINKED_FUNCTIONALMOUDLE = 3470
Expand All @@ -885,6 +886,7 @@ class GameTag(IntEnum):
HERO_PASSIVE_ID = 3487
BACON_TEAMMATE_BONUS_MINION_DAMAGE_LAST_COMBAT = 3492
BACON_DUOS_PUNISH_LEAVERS = 3494
HERO_FRAME_TYPE = 3495
BACON_TRIPLED_BASE_MINION_ID2 = 3499
BACON_TRIPLED_BASE_MINION_ID3 = 3500
QUEST_HIDE_PROGRESS = 3523
Expand Down Expand Up @@ -952,6 +954,8 @@ class GameTag(IntEnum):
BACON_SHOW_OVERRIDEN_MINION_COST = 3973
BACON_SHOW_REFRESH_LEFT_BANNER = 3982
SUPPRESS_SPELL_POWER_IN_TEXT = 3986
STARSHIP_LAUNCH_TRIGGER = 4013
IS_RELAUNCHED_STARSHIP = 4030

InvisibleDeathrattle = 335
ImmuneToSpellpower = 349
Expand Down Expand Up @@ -1075,6 +1079,7 @@ class GameTag(IntEnum):
RITUAL = 424
PROXY_CTHUN = 434
PENDING_EVOLUTIONS = 461
MULTI_CLASS_GROUP = 480
WEATHER = 1002
WEATHERSNOWSTORM = 1012
WEATHERTHUNDERSTORM = 1013
Expand Down Expand Up @@ -1935,6 +1940,8 @@ class Mulligan(IntEnum):
DONE = 4


# Deleted

class MultiClassGroup(IntEnum):
"""TAG_MULTI_CLASS_GROUP"""

Expand Down Expand Up @@ -2027,6 +2034,18 @@ def card_classes(self):
return []


class FactionColorType(IntEnum):
"""CardColorSwitcher.FactionColorType"""

GENERIC = 0
GRIMY_GOONS = 1
KABAL = 2
JADE_LOTUS = 3
ZERG = 4
TERRAN = 5
PROTOSS = 6


class SpellSchool(IntEnum):
"""TAG_SPELL_SCHOOL"""

Expand Down

0 comments on commit 07878fa

Please sign in to comment.