Compare commits

...

1 Commits

Author SHA1 Message Date
cb2047fa19 update for umadump v2.0.0-beta.3 2026-05-06 17:00:13 -04:00

View File

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