add llm ai

This commit is contained in:
bridge
2025-08-30 21:58:43 +08:00
parent 9ab71d1ac8
commit 4f9c6d4c79
11 changed files with 114 additions and 16 deletions

View File

@@ -148,4 +148,7 @@ class CultivationProgress:
"""
检查是否可以突破
"""
return self.level in level_to_break_through.keys()
return self.level in level_to_break_through.keys()
def __str__(self) -> str:
return f"{self.realm.value}{self.stage.value}({self.level}级)。可以突破:{self.can_break_through()}"