Rework dict with color data to use color enum
This commit is contained in:
@@ -138,3 +138,14 @@ class TargetResistMode(IntEnum):
|
||||
armor = autoId()
|
||||
hull = autoId()
|
||||
weightedAverage = autoId()
|
||||
|
||||
@unique
|
||||
class Color(IntEnum):
|
||||
red = autoId()
|
||||
green = autoId()
|
||||
blue = autoId()
|
||||
yellow = autoId()
|
||||
cyan = autoId()
|
||||
magenta = autoId()
|
||||
orange = autoId()
|
||||
purple = autoId()
|
||||
|
||||
Reference in New Issue
Block a user