From 3f8160af601e432d37555dc0117cba25a61665d4 Mon Sep 17 00:00:00 2001 From: Tim Weber Date: Sat, 6 Jan 2018 17:27:06 +0100 Subject: [PATCH] =?UTF-8?q?Add=20character=E2=80=99s=20experience=20and=20?= =?UTF-8?q?level-up=20thresholds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- v2/characters/characters.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/v2/characters/characters.js b/v2/characters/characters.js index 79e4ab62..767357b0 100644 --- a/v2/characters/characters.js +++ b/v2/characters/characters.js @@ -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 }