Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions v2/characters/characters.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,21 @@
// Scopes: account, characters, progression
//
// With the progression permission, the following fields are added:
// * experience: current absolute amount of experience as well as the numbers
// required to reach the current and the next level. Once the character
// reached level 80, current and this_level will stay at the maximum
// (currently 4860359), while next_level will change to false.
// * wvw_abilities. Note that ranks are 1-indexed, so rank=1 means
// that ability.ranks[0] is unlocked, but not ability.ranks[1].
//
{
name: "Hello",
// Other fields.
experience: {
current: 123456,
this_level: 1168459,
next_level: 1236659
},
wvw_abilities: [
{ id: 2, rank: 5 },
{ id: 3, rank: 1 }
Expand Down