clashofclans.js 3.3.9-dev.0266aba → 3.3.9-dev.1ef3640

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.
@@ -7,11 +7,11 @@ describe('root', () => {
7
7
  const result = await client.login({
8
8
  email: process.env.EMAIL,
9
9
  password: process.env.PASSWORD,
10
- keyCount: 10,
10
+ keyCount: 2,
11
11
  keyName: 'prod_key'
12
12
  });
13
13
  console.log({
14
- result: result.join(',')
14
+ result: result.length
15
15
  });
16
16
  expect(result).toBeDefined();
17
17
  }, 60000);
@@ -26,7 +26,18 @@ exports.ElixirTroops = [
26
26
  'Electro Titan',
27
27
  'Root Rider'
28
28
  ];
29
- exports.DarkElixirTroops = ['Minion', 'Hog Rider', 'Valkyrie', 'Golem', 'Witch', 'Lava Hound', 'Bowler', 'Ice Golem', 'Headhunter'];
29
+ exports.DarkElixirTroops = [
30
+ 'Minion',
31
+ 'Hog Rider',
32
+ 'Valkyrie',
33
+ 'Golem',
34
+ 'Witch',
35
+ 'Lava Hound',
36
+ 'Bowler',
37
+ 'Ice Golem',
38
+ 'Headhunter',
39
+ 'Apprentice Warden'
40
+ ];
30
41
  exports.HomeTroops = [...exports.ElixirTroops, ...exports.DarkElixirTroops];
31
42
  exports.SiegeMachines = [
32
43
  'Wall Wrecker',
@@ -52,7 +63,8 @@ exports.SuperTroops = [
52
63
  'Super Witch',
53
64
  'Ice Hound',
54
65
  'Super Bowler',
55
- 'Super Miner'
66
+ 'Super Miner',
67
+ 'Super Hog Rider'
56
68
  ];
57
69
  exports.ElixirSpells = [
58
70
  'Lightning Spell',
@@ -64,7 +76,7 @@ exports.ElixirSpells = [
64
76
  'Invisibility Spell',
65
77
  'Recall Spell'
66
78
  ];
67
- exports.DarkElixirSpells = ['Poison Spell', 'Earthquake Spell', 'Haste Spell', 'Skeleton Spell', 'Bat Spell'];
79
+ exports.DarkElixirSpells = ['Poison Spell', 'Earthquake Spell', 'Haste Spell', 'Skeleton Spell', 'Bat Spell', 'Overgrowth Spell'];
68
80
  exports.Spells = [...exports.ElixirSpells, ...exports.DarkElixirSpells];
69
81
  exports.BuilderTroops = [
70
82
  'Raged Barbarian',
@@ -77,10 +89,22 @@ exports.BuilderTroops = [
77
89
  'Night Witch',
78
90
  'Drop Ship',
79
91
  'Super P.E.K.K.A',
80
- 'Hog Glider'
92
+ 'Hog Glider',
93
+ 'Electrofire Wizard'
94
+ ];
95
+ exports.Heroes = ['Barbarian King', 'Archer Queen', 'Grand Warden', 'Royal Champion', 'Battle Machine', 'Battle Copter'];
96
+ exports.HeroPets = [
97
+ 'L.A.S.S.I',
98
+ 'Electro Owl',
99
+ 'Mighty Yak',
100
+ 'Unicorn',
101
+ 'Poison Lizard',
102
+ 'Diggy',
103
+ 'Frosty',
104
+ 'Phoenix',
105
+ 'Spirit Fox',
106
+ 'Angry Jelly'
81
107
  ];
82
- exports.Heroes = ['Barbarian King', 'Archer Queen', 'Grand Warden', 'Royal Champion', 'Battle Machine'];
83
- exports.HeroPets = ['L.A.S.S.I', 'Electro Owl', 'Mighty Yak', 'Unicorn', 'Poison Lizard', 'Diggy', 'Frosty', 'Phoenix', 'Spirit Fox'];
84
108
  exports.UnrankedLeagueData = {
85
109
  id: 29000000,
86
110
  name: 'Unranked',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clashofclans.js",
3
- "version": "3.3.9-dev.0266aba",
3
+ "version": "3.3.9-dev.1ef3640",
4
4
  "description": "JavaScript library for interacting with the Clash of Clans API",
5
5
  "author": "https://clashofclans.js.org",
6
6
  "license": "MIT",