12 lines
212 B
Python
12 lines
212 B
Python
|
__all__ = ['Fluctuation']
|
||
|
__author__ = "Jeremy Saklad"
|
||
|
|
||
|
from enum import Enum
|
||
|
|
||
|
class Fluctuation(Enum):
|
||
|
"""Which skeleton attribute is currently boosted."""
|
||
|
|
||
|
ANTIQUITY = 1
|
||
|
AMALGAMY = 2
|
||
|
MENACE = 3
|