/v2/wvw/stats/team
today -- it doesn't have good data this week though
/v2/wvw/stats/guild
probably next week so if I'm here to put out fires
impl
and
(needs backend support)
/v2/wvw/matches/stats/1-1/teams/green/top
?
["kills", "kdr"]
/v2/wvw/matches/stats/1-1/teams/green/top/kdr
results[team] = {
kills : entries
.sort((a, b) => a.kills - b.kills)
.slice(0, numTopResults),
wilson : entries
.sort((a, b) => a.wilson - b.wilson)
.slice(0, numTopResults)
};
Array.prototype.sort
does what I want there; I thought it maybe returned the original array
/v2/wvw/stats/1-1/teams/blue
doesn't count kills/deaths caused to the blue team
like,
{
"deaths": {
"red": 12,
"blue": 34,
"green": 421
},
"kills": {
"red": 56,
"blue": 72,
"green": 1405
}
}
Means that this guild was:
/v2/professions
, not entirely sure how
/v2/professions
/v2/wvw/matches/stats/1-1/teams/blue/top/kills
the returned objects have {kills:{blue:0}, deaths:{blue:0}}
because you can't kill or be killed (hopefully) by your own team
/$team/