mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-22 16:41:28 +08:00
Add game stats to system data
This commit is contained in:
parent
83e354a9ef
commit
b1355e96dd
@ -4,6 +4,7 @@ type SystemSaveData struct {
|
||||
TrainerId int `json:"trainerId"`
|
||||
SecretId int `json:"secretId"`
|
||||
DexData DexData `json:"dexData"`
|
||||
GameStats GameStats `json:"gameStats"`
|
||||
Unlocks Unlocks `json:"unlocks"`
|
||||
AchvUnlocks AchvUnlocks `json:"achvUnlocks"`
|
||||
VoucherUnlocks VoucherUnlocks `json:"voucherUnlocks"`
|
||||
@ -25,6 +26,8 @@ type DexEntry struct {
|
||||
Ivs []int `json:"ivs"`
|
||||
}
|
||||
|
||||
type GameStats interface{}
|
||||
|
||||
type Unlocks map[int]bool
|
||||
|
||||
type AchvUnlocks map[string]int
|
||||
|
Loading…
x
Reference in New Issue
Block a user