HonkaiStarRailWikiDataParser/models/light_cone_config.py

21 lines
349 B
Python
Raw Permalink Normal View History

2023-04-27 08:44:27 +00:00
from typing import List
from pydantic import BaseModel
class LightConeIcon(BaseModel):
id: int
"""光锥ID"""
name: str
"""名称"""
icon: List[str]
"""图标(从小到大)"""
2023-04-28 11:32:53 +00:00
@property
def gacha(self) -> str:
return self.icon[1]
@property
def icon_(self) -> str:
return self.icon[0]