mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 03:27:13 +08:00
chore: Add additional fields to EggData struct
This commit is contained in:
parent
43e0e64acb
commit
72d9e593b9
@ -79,10 +79,17 @@ type VoucherUnlocks map[string]int
|
|||||||
type VoucherCounts map[string]int
|
type VoucherCounts map[string]int
|
||||||
|
|
||||||
type EggData struct {
|
type EggData struct {
|
||||||
Id int `json:"id"`
|
Id int `json:"id"`
|
||||||
GachaType GachaType `json:"gachaType"`
|
GachaType GachaType `json:"gachaType"`
|
||||||
HatchWaves int `json:"hatchWaves"`
|
HatchWaves int `json:"hatchWaves"`
|
||||||
Timestamp int `json:"timestamp"`
|
Timestamp int `json:"timestamp"`
|
||||||
|
Tier int `json:"tier"`
|
||||||
|
SourceType int `json:"sourceType"`
|
||||||
|
VariantTier int `json:"variantTier"`
|
||||||
|
IsShiny bool `json:"isShiny"`
|
||||||
|
Species int `json:"species"`
|
||||||
|
EggMoveIndex int `json:"eggMoveIndex"`
|
||||||
|
OverrideHiddenAbility bool `json:"overrideHiddenAbility"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type GachaType int
|
type GachaType int
|
||||||
|
Loading…
x
Reference in New Issue
Block a user