This commit is contained in:
bridge
2025-08-23 20:53:03 +08:00
parent 9ee2230234
commit f72bccf0d3
5 changed files with 561 additions and 273 deletions

17
src/classes/root.py Normal file
View File

@@ -0,0 +1,17 @@
"""
灵根
目前只有五行灵根,金木水火土。
"""
from enum import Enum
class Root(Enum):
"""
灵根
"""
Metal = ""
Wood = ""
Water = ""
Fire = ""
Earth = ""