gw2e-account-statistics 3.6.0 → 3.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -37,7 +37,6 @@ exports.default = {
|
|
|
37
37
|
testimonyOfHeroics: 36,
|
|
38
38
|
exaltedKeys: 37,
|
|
39
39
|
machetes: 38,
|
|
40
|
-
gaetingCrystals: 39,
|
|
41
40
|
banditSkeletonKeys: 40,
|
|
42
41
|
pactCrowbars: 41,
|
|
43
42
|
vialsOfChakAcid: 42,
|
|
@@ -60,11 +59,16 @@ exports.default = {
|
|
|
60
59
|
tyrianDefenseSeals: 60,
|
|
61
60
|
researchNotes: 61,
|
|
62
61
|
unusualCoins: 62,
|
|
62
|
+
astralAcclaim: 63,
|
|
63
63
|
jadeSlivers: 64,
|
|
64
64
|
testimonyOfJadeHeroics: 65,
|
|
65
65
|
ancientCoins: 66,
|
|
66
66
|
canachCoins: 67,
|
|
67
67
|
imperialFavor: 68,
|
|
68
68
|
talesOfDungeonDelving: 69,
|
|
69
|
-
_legendaryInsightsFromWallet: 70
|
|
69
|
+
_legendaryInsightsFromWallet: 70,
|
|
70
|
+
jadeMinersKeycard: 71,
|
|
71
|
+
staticCharge: 72,
|
|
72
|
+
pinchOfStardust: 73,
|
|
73
|
+
calcifiedGasp: 75
|
|
70
74
|
};
|
|
@@ -38,9 +38,12 @@ exports.default = function (accountData) {
|
|
|
38
38
|
hatchedChili: countItems(items, 92072),
|
|
39
39
|
eternalIceShard: countItems(items, 92272),
|
|
40
40
|
eitriteIngots: countItems(items, 92317),
|
|
41
|
+
essenceOfDespair: countItems(items, 100078),
|
|
42
|
+
essenceOfGreed: countItems(items, 100414),
|
|
43
|
+
essenceOfTriumph: countItems(items, 100055),
|
|
41
44
|
|
|
42
45
|
// (4) DUNGEONS
|
|
43
|
-
chestOfDungeoneering: countItems(items, 78252),
|
|
46
|
+
chestOfDungeoneering: countItems(items, [78252, 98187]),
|
|
44
47
|
|
|
45
48
|
// (5) FRACTALS
|
|
46
49
|
fractalTonics: countItems(items, 49277),
|
|
@@ -297,6 +300,16 @@ exports.default = function (accountData) {
|
|
|
297
300
|
99989 // Permanent Crafting Station Contract
|
|
298
301
|
]),
|
|
299
302
|
gemstoreToys: countItems(items, _gemstoreToyIds2.default),
|
|
303
|
+
permanentLoungePasses: countItems(items, [90025, // Armistice Bastion Pass
|
|
304
|
+
81578, // Champion's Rest Pass
|
|
305
|
+
50104, // Captain's Airship Pass
|
|
306
|
+
79500, // Lava Lounge Pass
|
|
307
|
+
82081, // Invitation to "Lily of the Elon"
|
|
308
|
+
81664, // Mistlock Sanctuary Passkey
|
|
309
|
+
79140, // Noble's Folly Pass
|
|
310
|
+
49149, // Royal Terrace Pass
|
|
311
|
+
97969 // Thousand Seas Pavilion Pass
|
|
312
|
+
], true),
|
|
300
313
|
|
|
301
314
|
// (17) POINTLESS STATISTICS
|
|
302
315
|
brokenTwig: countItems(items, 76046),
|
package/package.json
CHANGED
package/tests/items.spec.js
CHANGED
|
@@ -64,6 +64,7 @@ describe('statistics > items', () => {
|
|
|
64
64
|
petrifiedWood: null,
|
|
65
65
|
tomesOfKnowledge: null,
|
|
66
66
|
permanentContracts: null,
|
|
67
|
+
permanentLoungePasses: null,
|
|
67
68
|
freshWinterberries: null,
|
|
68
69
|
wintersHeartInfusions: null,
|
|
69
70
|
kodasWarmthEnrichment: null,
|
|
@@ -76,6 +77,9 @@ describe('statistics > items', () => {
|
|
|
76
77
|
dragoniteOre: null,
|
|
77
78
|
bloodstoneDust: null,
|
|
78
79
|
empyrealFragments: null,
|
|
80
|
+
essenceOfDespair: null,
|
|
81
|
+
essenceOfGreed: null,
|
|
82
|
+
essenceOfTriumph: null,
|
|
79
83
|
crystallineOre: null,
|
|
80
84
|
airshipOil: null,
|
|
81
85
|
auricDust: null,
|
package/tests/wallet.spec.js
CHANGED
|
@@ -39,7 +39,6 @@ describe('statistics > wallet', () => {
|
|
|
39
39
|
tradeContract: null,
|
|
40
40
|
elegyMosaic: null,
|
|
41
41
|
testimonyOfHeroics: null,
|
|
42
|
-
gaetingCrystals: null,
|
|
43
42
|
volatileMagic: null,
|
|
44
43
|
pvpTournamentVouchers: null,
|
|
45
44
|
racingMedallions: null,
|
|
@@ -70,7 +69,12 @@ describe('statistics > wallet', () => {
|
|
|
70
69
|
canachCoins: null,
|
|
71
70
|
imperialFavor: null,
|
|
72
71
|
talesOfDungeonDelving: null,
|
|
73
|
-
_legendaryInsightsFromWallet: null
|
|
72
|
+
_legendaryInsightsFromWallet: null,
|
|
73
|
+
astralAcclaim: null,
|
|
74
|
+
calcifiedGasp: null,
|
|
75
|
+
jadeMinersKeycard: null,
|
|
76
|
+
pinchOfStardust: null,
|
|
77
|
+
staticCharge: null
|
|
74
78
|
})
|
|
75
79
|
})
|
|
76
80
|
|
|
@@ -155,7 +159,6 @@ describe('statistics > wallet', () => {
|
|
|
155
159
|
tradeContract: 465,
|
|
156
160
|
elegyMosaic: 98,
|
|
157
161
|
testimonyOfHeroics: 645,
|
|
158
|
-
gaetingCrystals: 561,
|
|
159
162
|
volatileMagic: 980,
|
|
160
163
|
pvpTournamentVouchers: 45,
|
|
161
164
|
racingMedallions: 435,
|
|
@@ -186,7 +189,12 @@ describe('statistics > wallet', () => {
|
|
|
186
189
|
ancientCoins: 0,
|
|
187
190
|
imperialFavor: 0,
|
|
188
191
|
talesOfDungeonDelving: 0,
|
|
189
|
-
_legendaryInsightsFromWallet: 0
|
|
192
|
+
_legendaryInsightsFromWallet: 0,
|
|
193
|
+
astralAcclaim: 0,
|
|
194
|
+
calcifiedGasp: 0,
|
|
195
|
+
jadeMinersKeycard: 0,
|
|
196
|
+
pinchOfStardust: 0,
|
|
197
|
+
staticCharge: 0
|
|
190
198
|
})
|
|
191
199
|
})
|
|
192
200
|
|