Module for exporting all the enums used in the library.
Position
Bases: BaseEnum
Represents position of the character.
Source code in barch\enums\character.py
| class Position(BaseEnum):
"""Represents position of the character."""
Back = "Back"
Front = "Front"
Middle = "Middle"
|
Rarity
Bases: BaseEnum
Represents the rarity of the character.
Source code in barch\enums\character.py
| class Rarity(BaseEnum):
"""Represents the rarity of the character."""
Rare = "R"
SuperRare = "SR"
SuperSuperRare = "SSR"
|
Role
Bases: BaseEnum
Represents role of the character.
Source code in barch\enums\character.py
| class Role(BaseEnum):
"""Represents role of the character."""
Dealer = "Dealer"
Healer = "Healer"
Support = "Support"
Tank = "Tank"
TacticalSupport = "T.S."
|