update get info

This commit is contained in:
bridge
2025-10-12 01:42:16 +08:00
parent 8088df6d2a
commit fcbd829303
2 changed files with 5 additions and 8 deletions

View File

@@ -432,7 +432,7 @@ class Avatar:
if co_region_avatars:
entries: list[str] = []
for other in co_region_avatars[:8]:
entries.append(f"{other.name}(境界:{other.cultivation_progress.get_simple_info()})")
entries.append(f"{other.name}(境界:{other.cultivation_progress.get_info()})")
co_region_info = "\n观测范围内角色:" + ("".join(entries) if entries else "")
# 历史事件摘要
@@ -555,7 +555,7 @@ class Avatar:
"""
relation = self.get_relation(other_avatar)
relation_str = str(relation)
return f"{other_avatar.name},境界:{other_avatar.cultivation_progress.get_simple_info()},关系:{relation_str},阵营:{other_avatar.alignment}"
return f"{other_avatar.name},境界:{other_avatar.cultivation_progress.get_info()},关系:{relation_str},阵营:{other_avatar.alignment}"
@property
def move_step_length(self) -> int:

View File

@@ -98,16 +98,13 @@ class CultivationProgress:
"""
return REALM_TO_MOVE_STEP[self.realm]
def __str__(self) -> str:
return self.get_info()
def get_info(self) -> str:
def get_detailed_info(self) -> str:
can_break_through = self.can_break_through()
can_break_through_str = "可以突破" if can_break_through else "不可以突破"
return f"{self.realm.value}{self.stage.value}({self.level}级){can_break_through_str}"
def get_detailed_info(self) -> str:
return self.get_info()
def get_info(self) -> str:
return f"{self.realm.value}{self.stage.value}"
def get_exp_required(self) -> int:
"""