[Enhance] Limited custom banner

- For Arcaea 6.5.0
- Add limited support for custom banners. It will be improved in the future.  #202
This commit is contained in:
Lost-MSth
2025-05-22 21:34:25 +08:00
parent a3bc071416
commit 97b86a4381
7 changed files with 81 additions and 20 deletions

View File

@@ -328,6 +328,8 @@ class UserInfo(User):
self.insight_state: int = None
self.custom_banner = None
self.__cores: list = None
self.__packs: list = None
self.__singles: list = None
@@ -553,6 +555,7 @@ class UserInfo(User):
'pick_ticket': self.pick_ticket,
# 'custom_banner': 'online_banner_2024_06',
'custom_banner': self.custom_banner,
# 'subscription_multiplier': 114,
# 'memory_boost_ticket': 5,
'insight_state': self.insight_state, # 0~2 不可选3 技能激活4 未激活5 激活可选6 未激活可选
@@ -602,6 +605,8 @@ class UserInfo(User):
self.insight_state = x[38]
self.custom_banner = x[39] if x[39] is not None else ''
return self
def select_user(self) -> None: