maduck/GoWDiscordTeamBot

View on GitHub
game_constants/orb_types.py

Summary

Maintainability
A
0 mins
Test Coverage
import enum


class OrbType(enum.IntEnum):
    # public enum OrbType
    Growth = 0
    GrowthMajor = 1
    Ascension = 2
    AscensionMajor = 3
    Wisdom = 4
    WisdomMajor = 5
    Clans = 6
    ClansMajor = 7
    Chaos = 8
    ChaosMajor = 9
    Power = 10
    Forging = 11
    ForgingMajor = 12
    Ingots = 13
    IngotsMajor = 14
    Minions = 15
    MinionsMajor = 16
    GloryLesser = 17
    Glory = 18
    GloryMajor = 19