HonkaiStarRailWikiDataParser/models/monster.py

26 lines
420 B
Python
Raw Normal View History

2023-04-23 14:06:11 +00:00
# 敌对物种
from pydantic import BaseModel
2023-04-28 11:32:53 +00:00
from .enums import MonsterType, Area
2023-04-23 14:06:11 +00:00
class Monster(BaseModel):
id: int
"""怪物ID"""
name: str
"""名称"""
desc: str
"""介绍"""
icon: str
"""图标"""
big_pic: str
"""大图"""
type: MonsterType
"""种类"""
area: Area
"""地区"""
resistance: str
"""抗性"""
find_area: str
"""发现地点"""