This commit is contained in:
bridge
2025-11-16 15:29:15 +08:00
parent cb69c26978
commit e249babeb2
2 changed files with 4 additions and 2 deletions

View File

@@ -25,6 +25,8 @@ class Auxiliary:
desc: str
effects: dict[str, object] = field(default_factory=dict)
sect: Optional[Sect] = None
# 特殊属性(用于存储实例特定数据)
special_data: dict = field(default_factory=dict)
def get_info(self) -> str:
"""获取简略信息"""

View File

@@ -18,8 +18,8 @@ ai:
max_parse_retries: 3
game:
init_npc_num: 6
sect_num: 2 # init_npc_num大于sect_num时会随机选择sect_num个宗门
init_npc_num: 12
sect_num: 3 # init_npc_num大于sect_num时会随机选择sect_num个宗门
npc_birth_rate_per_month: 0.001
fortune_probability: 0.001