Skip to content

Commit

Permalink
update dracthyr classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloodmallet committed Oct 28, 2024
1 parent 738d980 commit 393cec8
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions simc_support/game_data/WowClass.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def __init__(
self.translations = Language.Translation(translations=translations)


_all_races = Race.RACES
_all_non_dracthyr_and_earthen_races = tuple(
[
r
Expand Down Expand Up @@ -92,14 +93,14 @@ def __init__(
)
HUNTER = WowClass(
3,
_all_non_dracthyr_and_earthen_races + _earthen,
_all_races,
Language.EmptyTranslation(),
"Hunter",
"hunter",
)
MAGE = WowClass(
8,
_all_non_dracthyr_and_earthen_races + _earthen,
_all_races,
Language.EmptyTranslation(),
"Mage",
"mage",
Expand Down Expand Up @@ -156,14 +157,14 @@ def __init__(
)
PRIEST = WowClass(
5,
_all_non_dracthyr_and_earthen_races + _earthen,
_all_races,
Language.EmptyTranslation(),
"Priest",
"priest",
)
ROGUE = WowClass(
4,
_all_non_dracthyr_and_earthen_races + _earthen,
_all_races,
Language.EmptyTranslation(),
"Rogue",
"rogue",
Expand Down Expand Up @@ -193,14 +194,14 @@ def __init__(
)
WARLOCK = WowClass(
9,
_all_non_dracthyr_and_earthen_races + _earthen,
_all_races,
Language.EmptyTranslation(),
"Warlock",
"warlock",
)
WARRIOR = WowClass(
1,
_all_non_dracthyr_and_earthen_races + _earthen,
_all_races,
Language.EmptyTranslation(),
"Warrior",
"warrior",
Expand Down

0 comments on commit 393cec8

Please sign in to comment.