2023-05-14 04:29:29 +00:00
|
|
|
from pydantic import BaseModel
|
|
|
|
|
2023-05-14 04:46:48 +00:00
|
|
|
|
2023-05-14 04:29:29 +00:00
|
|
|
class DamageResult(BaseModel):
|
|
|
|
critical: float
|
|
|
|
non_critical: float
|
|
|
|
expectation: float
|
|
|
|
|
|
|
|
is_heal: bool
|
2023-05-14 04:46:48 +00:00
|
|
|
is_shield: bool
|