mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 11:52:18 +00:00
19 lines
400 B
Python
19 lines
400 B
Python
|
from enum import Enum
|
||
|
from lib2to3.pgen2.token import PERCENT
|
||
|
|
||
|
class EquipmentsType(int, Enum):
|
||
|
UNKNOWN = -1
|
||
|
ARTIFACT = 0
|
||
|
WEAPON = 1
|
||
|
|
||
|
class DigitType(int, Enum):
|
||
|
NUMBER = 0
|
||
|
PERCENT = 1
|
||
|
|
||
|
class EquipType(str, Enum):
|
||
|
UNKNOWN = "Unknown"
|
||
|
EQUIP_BRACER = "Flower"
|
||
|
EQUIP_NECKLACE = "Feather"
|
||
|
EQUIP_SHOES = "Sands"
|
||
|
EQUIP_RING = "Goblet"
|
||
|
EQUIP_DRESS = "Circlet"
|