mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-15 19:22:53 +08:00
feat: Update character attribute.
- rank_icons - icon & num of relic_sets - skill_trees
This commit is contained in:
parent
b43884fa5b
commit
aa9093e28d
|
@ -51,6 +51,24 @@ class Trace(BaseModel):
|
||||||
"""The trace icon"""
|
"""The trace icon"""
|
||||||
|
|
||||||
|
|
||||||
|
class TraceTreeNode(BaseModel):
|
||||||
|
"""
|
||||||
|
Represents a node in the trace skill tree of a character.
|
||||||
|
|
||||||
|
Attributes:
|
||||||
|
- id (`int`): The ID of the trace.
|
||||||
|
- level (`int`): The level of the trace.
|
||||||
|
- icon (`str`): The icon of the trace.
|
||||||
|
"""
|
||||||
|
|
||||||
|
id: int
|
||||||
|
"""The ID of the trace"""
|
||||||
|
level: int
|
||||||
|
"""The level of the trace"""
|
||||||
|
icon: str
|
||||||
|
"""The icon of the trace"""
|
||||||
|
|
||||||
|
|
||||||
class Character(BaseModel):
|
class Character(BaseModel):
|
||||||
"""
|
"""
|
||||||
Represents a character.
|
Represents a character.
|
||||||
|
@ -64,6 +82,7 @@ class Character(BaseModel):
|
||||||
- max_level (`int`): The maximum character level according to the current ascension phase.
|
- max_level (`int`): The maximum character level according to the current ascension phase.
|
||||||
- ascension (`int`): Ascension phase.
|
- ascension (`int`): Ascension phase.
|
||||||
- eidolon (`int`): The character's eidolon rank.
|
- eidolon (`int`): The character's eidolon rank.
|
||||||
|
- eidolon_icons (list[`str`]): The list of character's eiodolon icons.
|
||||||
- Image
|
- Image
|
||||||
- icon (`str`): The character avatar image
|
- icon (`str`): The character avatar image
|
||||||
- preview (`str`): The character's preview image.
|
- preview (`str`): The character's preview image.
|
||||||
|
@ -71,8 +90,9 @@ class Character(BaseModel):
|
||||||
- Combat
|
- Combat
|
||||||
- path (`Path`): The character's path.
|
- path (`Path`): The character's path.
|
||||||
- element (`Element`): The character's element.
|
- element (`Element`): The character's element.
|
||||||
- Equipment
|
|
||||||
- traces (list[`Trace`]): The list of character's skill traces.
|
- traces (list[`Trace`]): The list of character's skill traces.
|
||||||
|
- trace_tree (list[`TraceTreeNode]): The list of the character's skill traces.
|
||||||
|
- Equipment
|
||||||
- light_cone (`LightCone` | `None`): The character's light cone (weapon), or None if not applicable.
|
- light_cone (`LightCone` | `None`): The character's light cone (weapon), or None if not applicable.
|
||||||
- relics (list[`Relic`] | `None`): The list of character's relics, or None if not applicable.
|
- relics (list[`Relic`] | `None`): The list of character's relics, or None if not applicable.
|
||||||
- relic_set (list[`RelicSet`] | `None`): The list of character's relic sets, or None if not applicable.
|
- relic_set (list[`RelicSet`] | `None`): The list of character's relic sets, or None if not applicable.
|
||||||
|
@ -95,6 +115,8 @@ class Character(BaseModel):
|
||||||
"""Ascension phase"""
|
"""Ascension phase"""
|
||||||
eidolon: int = Field(..., alias="rank")
|
eidolon: int = Field(..., alias="rank")
|
||||||
"""Character's eidolon rank"""
|
"""Character's eidolon rank"""
|
||||||
|
eidolon_icons: list[str] = Field([], alias="rank_icons")
|
||||||
|
"""The list of character's eiodolon icons"""
|
||||||
|
|
||||||
icon: str
|
icon: str
|
||||||
"""Character avatar image"""
|
"""Character avatar image"""
|
||||||
|
@ -107,9 +129,11 @@ class Character(BaseModel):
|
||||||
"""Character's path"""
|
"""Character's path"""
|
||||||
element: Element
|
element: Element
|
||||||
"""Character's element"""
|
"""Character's element"""
|
||||||
|
|
||||||
traces: list[Trace] = Field(..., alias="skills")
|
traces: list[Trace] = Field(..., alias="skills")
|
||||||
"""The list of character's skill traces"""
|
"""The list of character's skill traces"""
|
||||||
|
trace_tree: list[TraceTreeNode] = Field([], alias="skill_trees")
|
||||||
|
"""The list of the character's skill traces"""
|
||||||
|
|
||||||
light_cone: LightCone | None = None
|
light_cone: LightCone | None = None
|
||||||
"""Character's light cone (weapon)"""
|
"""Character's light cone (weapon)"""
|
||||||
relics: list[Relic] = []
|
relics: list[Relic] = []
|
||||||
|
|
|
@ -97,6 +97,8 @@ class RelicSet(BaseModel):
|
||||||
Attributes:
|
Attributes:
|
||||||
- id (`int`): The ID of the relic set.
|
- id (`int`): The ID of the relic set.
|
||||||
- name (`str`): The name of the relic set.
|
- name (`str`): The name of the relic set.
|
||||||
|
- icon (`str`): The icon of the relic set.
|
||||||
|
- num (`int`): The number of relics in the set.
|
||||||
- desc (`str`): The description of the relic set.
|
- desc (`str`): The description of the relic set.
|
||||||
- properties (list[`Property`]): The list of properties of the relic set.
|
- properties (list[`Property`]): The list of properties of the relic set.
|
||||||
"""
|
"""
|
||||||
|
@ -105,6 +107,10 @@ class RelicSet(BaseModel):
|
||||||
"""The ID of the relic set"""
|
"""The ID of the relic set"""
|
||||||
name: str
|
name: str
|
||||||
"""The name of the relic set"""
|
"""The name of the relic set"""
|
||||||
|
icon: str
|
||||||
|
"""The icon of the relic set"""
|
||||||
|
num: int
|
||||||
|
"""The number of relics in the set"""
|
||||||
desc: str
|
desc: str
|
||||||
"""The description of the relic set"""
|
"""The description of the relic set"""
|
||||||
properties: list[Property]
|
properties: list[Property]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user