Adjusted full-calc statistics. Use new infantry skill algorithm.
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 7s
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 7s
This commit is contained in:
@@ -1,7 +1,28 @@
|
||||
package models
|
||||
|
||||
type TrackerWeaponJSON struct {
|
||||
Weapons []Weapon `json:"weapons"`
|
||||
type TrackerDataJSON struct {
|
||||
Weapons []Weapon `json:"weapons"`
|
||||
DivKills DividedKills `json:"dividedKills"`
|
||||
Deaths int `json:"deaths"`
|
||||
SecondsPlayed int `json:"secondsPlayed"`
|
||||
XP []XP `json:"XP"`
|
||||
}
|
||||
|
||||
type DividedKills struct {
|
||||
ADS int `json:"ads"`
|
||||
Hip int `json:"hip"`
|
||||
AI int `json:"ai"`
|
||||
}
|
||||
|
||||
type XP struct {
|
||||
Ribbons Ribbons `json:"ribbons"`
|
||||
}
|
||||
|
||||
type Ribbons struct {
|
||||
Objective int `json:"objective"`
|
||||
Squad int `json:"squad"`
|
||||
Support int `json:"support"`
|
||||
Total int `json:"total"`
|
||||
}
|
||||
|
||||
type Weapon struct {
|
||||
|
||||
Reference in New Issue
Block a user