update for umadump v2.0.0-beta.3

This commit is contained in:
2026-05-06 17:00:13 -04:00
parent c1bcf6b74f
commit cb2047fa19

View File

@@ -16,22 +16,16 @@ import (
) )
type DumpCard struct { type DumpCard struct {
ID int `json:"card_id"` ID int `json:"card_id"`
Level int `json:"talent_level"` Rarity int `json:"rarity"`
Rarity int `json:"rarity"` // Level int `json:"talent_level"`
CreateTime int `json:"create_time"` // CreateTime int `json:"create_time"`
} }
type DumpSupport struct { type DumpSupport struct {
ID int `json:"supportCardId"` ID int `json:"support_card_id"`
Level int `json:"level"` LB int `json:"limit_break_count"`
LB int `json:"limitBreakCount"` // many other fields we don't need
MaxLevel int `json:"maxLevel"`
CreateTime int `json:"createTime"`
Exp int `json:"exp"`
Stock int `json:"stock"`
Favorite bool `json:"isFavoriteLock"`
BestTraining int `json:"bestTraining"`
} }
type Collection struct { type Collection struct {