clashofclans.js 3.2.0 → 3.3.0-dev.2775232
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.
- package/dist/index.mjs +1 -0
- package/dist/struct/Clan.d.ts +0 -4
- package/dist/struct/Clan.js +0 -2
- package/dist/struct/ClanMember.d.ts +0 -2
- package/dist/struct/ClanMember.js +0 -1
- package/dist/struct/Player.d.ts +3 -5
- package/dist/struct/Player.js +1 -2
- package/dist/struct/Ranking.d.ts +0 -6
- package/dist/struct/Ranking.js +0 -6
- package/dist/struct/Unit.d.ts +7 -2
- package/dist/struct/Unit.js +6 -5
- package/dist/types/api.d.ts +2 -16
- package/dist/util/Constants.js +3 -2
- package/dist/util/raw.json +1 -1
- package/package.json +1 -1
- package/CHANGELOG.md +0 -166
package/dist/index.mjs
CHANGED
|
@@ -32,6 +32,7 @@ export const FriendlyWarPreparationTimes = mod.FriendlyWarPreparationTimes;
|
|
|
32
32
|
export const GoldPassSeason = mod.GoldPassSeason;
|
|
33
33
|
export const HTTPError = mod.HTTPError;
|
|
34
34
|
export const Hero = mod.Hero;
|
|
35
|
+
export const HeroEquipment = mod.HeroEquipment;
|
|
35
36
|
export const HeroPets = mod.HeroPets;
|
|
36
37
|
export const Heroes = mod.Heroes;
|
|
37
38
|
export const HomeTroops = mod.HomeTroops;
|
package/dist/struct/Clan.d.ts
CHANGED
|
@@ -30,14 +30,10 @@ export declare class Clan {
|
|
|
30
30
|
capitalPoints: number;
|
|
31
31
|
/** The clan's builder base trophy count. */
|
|
32
32
|
builderBasePoints: number;
|
|
33
|
-
/** @deprecated */
|
|
34
|
-
versusPoints?: number | null;
|
|
35
33
|
/** The minimum trophies required to apply to this clan. */
|
|
36
34
|
requiredTrophies: number;
|
|
37
35
|
/** The minimum builder base trophies required to apply to this clan. */
|
|
38
36
|
requiredBuilderBaseTrophies: number | null;
|
|
39
|
-
/** @deprecated */
|
|
40
|
-
requiredVersusTrophies?: number | null;
|
|
41
37
|
/** The minimum hall level required to apply to this clan. */
|
|
42
38
|
requiredTownHallLevel: number | null;
|
|
43
39
|
/** The frequency for when this clan goes to war. */
|
package/dist/struct/Clan.js
CHANGED
|
@@ -19,11 +19,9 @@ class Clan {
|
|
|
19
19
|
this.level = data.clanLevel;
|
|
20
20
|
this.points = data.clanPoints;
|
|
21
21
|
this.builderBasePoints = data.clanBuilderBasePoints;
|
|
22
|
-
this.versusPoints = data.clanVersusPoints ?? null;
|
|
23
22
|
this.requiredTrophies = data.requiredTrophies;
|
|
24
23
|
this.requiredTownHallLevel = data.requiredTownhallLevel ?? null;
|
|
25
24
|
this.requiredBuilderBaseTrophies = data.requiredBuilderBaseTrophies ?? null;
|
|
26
|
-
this.requiredVersusTrophies = data.requiredVersusTrophies ?? null;
|
|
27
25
|
this.warFrequency = data.warFrequency;
|
|
28
26
|
this.warWinStreak = data.warWinStreak;
|
|
29
27
|
this.warWins = data.warWins;
|
|
@@ -21,8 +21,6 @@ export declare class ClanMember {
|
|
|
21
21
|
trophies: number;
|
|
22
22
|
/** The member's builder base trophy count. */
|
|
23
23
|
builderBaseTrophies: number | null;
|
|
24
|
-
/** @deprecated */
|
|
25
|
-
versusTrophies?: number | null;
|
|
26
24
|
/** The member's rank in the clan. */
|
|
27
25
|
clanRank: number;
|
|
28
26
|
/** The member's rank before the last leader-board change. */
|
|
@@ -15,7 +15,6 @@ class ClanMember {
|
|
|
15
15
|
this.league = new League_1.League(data.league ?? Constants_1.UnrankedLeagueData);
|
|
16
16
|
this.trophies = data.trophies;
|
|
17
17
|
this.builderBaseTrophies = data.builderBaseTrophies ?? null;
|
|
18
|
-
this.versusTrophies = data.versusTrophies ?? null;
|
|
19
18
|
this.clanRank = data.clanRank;
|
|
20
19
|
this.previousClanRank = data.previousClanRank;
|
|
21
20
|
this.donations = data.donations;
|
package/dist/struct/Player.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { Label } from './Label';
|
|
|
5
5
|
import { League } from './League';
|
|
6
6
|
import { LegendStatistics } from './LegendStatistics';
|
|
7
7
|
import { PlayerClan } from './PlayerClan';
|
|
8
|
-
import { Hero, Spell, Troop } from './Unit';
|
|
8
|
+
import { Hero, HeroEquipment, Spell, Troop } from './Unit';
|
|
9
9
|
/** Represents a Clash of Clans Player. */
|
|
10
10
|
export declare class Player {
|
|
11
11
|
client: Client;
|
|
@@ -33,12 +33,8 @@ export declare class Player {
|
|
|
33
33
|
builderHallLevel: number | null;
|
|
34
34
|
/** The player's builder base trophy count. */
|
|
35
35
|
builderBaseTrophies: number | null;
|
|
36
|
-
/** @deprecated */
|
|
37
|
-
versusTrophies?: number | null;
|
|
38
36
|
/** The player's best builder base trophies. */
|
|
39
37
|
bestBuilderBaseTrophies: number | null;
|
|
40
|
-
/** @deprecated */
|
|
41
|
-
versusBattleWins: number | null;
|
|
42
38
|
/** The player's donation count for this season. */
|
|
43
39
|
donations: number;
|
|
44
40
|
/** The player's donation received count for this season. */
|
|
@@ -65,6 +61,8 @@ export declare class Player {
|
|
|
65
61
|
spells: Spell[];
|
|
66
62
|
/** An array of player's heroes (both home base and build base). */
|
|
67
63
|
heroes: Hero[];
|
|
64
|
+
/** An array of player's hero equipment. */
|
|
65
|
+
heroEquipment: HeroEquipment[];
|
|
68
66
|
/** The player's clan capital house details. */
|
|
69
67
|
playerHouse?: APIPlayerHouse | null;
|
|
70
68
|
constructor(client: Client, data: APIPlayer);
|
package/dist/struct/Player.js
CHANGED
|
@@ -25,8 +25,6 @@ class Player {
|
|
|
25
25
|
this.builderHallLevel = data.builderHallLevel ?? null;
|
|
26
26
|
this.builderBaseTrophies = data.builderBaseTrophies ?? null;
|
|
27
27
|
this.bestBuilderBaseTrophies = data.bestBuilderBaseTrophies ?? null;
|
|
28
|
-
this.versusBattleWins = data.versusBattleWins ?? null;
|
|
29
|
-
this.versusTrophies = data.versusTrophies ?? null;
|
|
30
28
|
this.donations = data.donations;
|
|
31
29
|
this.received = data.donationsReceived;
|
|
32
30
|
this.clanCapitalContributions = data.clanCapitalContributions;
|
|
@@ -41,6 +39,7 @@ class Player {
|
|
|
41
39
|
this.troops = data.troops.map((unit) => new Unit_1.Troop(data, unit));
|
|
42
40
|
this.spells = data.spells.map((unit) => new Unit_1.Spell(data, unit));
|
|
43
41
|
this.heroes = data.heroes.map((unit) => new Unit_1.Hero(data, unit));
|
|
42
|
+
this.heroEquipment = data.heroEquipment.map((unit) => new Unit_1.HeroEquipment(data, unit));
|
|
44
43
|
this.playerHouse = data.playerHouse ?? null;
|
|
45
44
|
}
|
|
46
45
|
/** Whether this clan member is in the clan. */
|
package/dist/struct/Ranking.d.ts
CHANGED
|
@@ -42,10 +42,6 @@ export declare class RankedPlayer {
|
|
|
42
42
|
defenseWins: number | null;
|
|
43
43
|
/** The player's builder base trophy count. If retrieving info for regular leader-boards, this will be `null`. */
|
|
44
44
|
builderBaseTrophies: number | null;
|
|
45
|
-
/** @deprecated */
|
|
46
|
-
versusBattleWins: number | null;
|
|
47
|
-
/** @deprecated */
|
|
48
|
-
versusTrophies?: number | null;
|
|
49
45
|
/** The player's rank in the clan leader-board. */
|
|
50
46
|
rank: number;
|
|
51
47
|
/** The player's rank before the last leader-board change. If retrieving info for legend league season, this will be `null`. */
|
|
@@ -70,8 +66,6 @@ export declare class RankedClan {
|
|
|
70
66
|
points: number | null;
|
|
71
67
|
/** The clan's builder base trophy count. If retrieving info for regular leader boards, this will be `null`. */
|
|
72
68
|
builderBasePoints: number | null;
|
|
73
|
-
/** @deprecated */
|
|
74
|
-
versusPoints?: number | null;
|
|
75
69
|
/** The clan's location. */
|
|
76
70
|
location: Location;
|
|
77
71
|
/** The number of members in the clan. */
|
package/dist/struct/Ranking.js
CHANGED
|
@@ -39,10 +39,6 @@ class RankedPlayer {
|
|
|
39
39
|
this.defenseWins = data.defenseWins ?? null;
|
|
40
40
|
// @ts-expect-error
|
|
41
41
|
this.builderBaseTrophies = data.builderBaseTrophies ?? null;
|
|
42
|
-
// @ts-expect-error
|
|
43
|
-
this.versusBattleWins = data.versusBattleWins ?? null;
|
|
44
|
-
// @ts-expect-error
|
|
45
|
-
this.versusTrophies = data.versusTrophies ?? null;
|
|
46
42
|
this.rank = data.rank;
|
|
47
43
|
this.previousRank = data.previousRank ?? null; // eslint-disable-line
|
|
48
44
|
// @ts-expect-error
|
|
@@ -66,8 +62,6 @@ class RankedClan {
|
|
|
66
62
|
this.points = data.clanPoints ?? null;
|
|
67
63
|
// @ts-expect-error
|
|
68
64
|
this.builderBasePoints = data.clanBuilderBasePoints ?? null;
|
|
69
|
-
// @ts-expect-error
|
|
70
|
-
this.versusPoints = data.clanVersusPoints ?? null;
|
|
71
65
|
this.location = new Location_1.Location(data.location);
|
|
72
66
|
this.memberCount = data.members;
|
|
73
67
|
this.rank = data.rank;
|
package/dist/struct/Unit.d.ts
CHANGED
|
@@ -49,6 +49,8 @@ export declare class Unit {
|
|
|
49
49
|
minOriginalLevel: number | null;
|
|
50
50
|
/** @internal */
|
|
51
51
|
originalName: string | null;
|
|
52
|
+
/** @internal */
|
|
53
|
+
equipment: HeroEquipment[];
|
|
52
54
|
constructor(data: APIPlayer, unit: APIPlayerItem);
|
|
53
55
|
/** Whether the unit belongs to the home base. */
|
|
54
56
|
get isHomeBase(): boolean;
|
|
@@ -56,8 +58,6 @@ export declare class Unit {
|
|
|
56
58
|
get isBuilderBase(): boolean;
|
|
57
59
|
/** Whether the unit is at max level. */
|
|
58
60
|
get isMax(): boolean;
|
|
59
|
-
/** Icon of this unit. */
|
|
60
|
-
get iconURL(): string;
|
|
61
61
|
}
|
|
62
62
|
/** Represents a Player's Troop. */
|
|
63
63
|
export declare class Troop extends Unit {
|
|
@@ -81,4 +81,9 @@ export declare class Spell extends Unit {
|
|
|
81
81
|
export declare class Hero extends Unit {
|
|
82
82
|
/** Regeneration time of this hero. */
|
|
83
83
|
regenerationTime: number;
|
|
84
|
+
/** Hero Equipment */
|
|
85
|
+
equipment: HeroEquipment[];
|
|
86
|
+
}
|
|
87
|
+
/** Represents a Player's Hero Equipment. */
|
|
88
|
+
export declare class HeroEquipment extends Unit {
|
|
84
89
|
}
|
package/dist/struct/Unit.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Hero = exports.Spell = exports.Troop = exports.Unit = void 0;
|
|
3
|
+
exports.HeroEquipment = exports.Hero = exports.Spell = exports.Troop = exports.Unit = void 0;
|
|
4
4
|
const Constants_1 = require("../util/Constants");
|
|
5
5
|
/** Represents a Player's Unit. */
|
|
6
6
|
class Unit {
|
|
@@ -34,6 +34,7 @@ class Unit {
|
|
|
34
34
|
this.upgradeResource = original.upgrade.resource;
|
|
35
35
|
this.upgradeTime = original.upgrade.time[origin.level - 1] || 0;
|
|
36
36
|
this.hallMaxLevel = original.levels[data.townHallLevel - 1];
|
|
37
|
+
this.equipment = (unit.equipment ?? []).map((unit) => new HeroEquipment(data, unit));
|
|
37
38
|
}
|
|
38
39
|
else if (rawUnit) {
|
|
39
40
|
// special case for the builder base
|
|
@@ -71,10 +72,6 @@ class Unit {
|
|
|
71
72
|
get isMax() {
|
|
72
73
|
return this.level === this.maxLevel;
|
|
73
74
|
}
|
|
74
|
-
/** Icon of this unit. */
|
|
75
|
-
get iconURL() {
|
|
76
|
-
return `https://clashofclans.js.org/assets/${this.name.replace(/ /gi, '_')}.png`;
|
|
77
|
-
}
|
|
78
75
|
}
|
|
79
76
|
exports.Unit = Unit;
|
|
80
77
|
/** Represents a Player's Troop. */
|
|
@@ -100,3 +97,7 @@ exports.Spell = Spell;
|
|
|
100
97
|
class Hero extends Unit {
|
|
101
98
|
}
|
|
102
99
|
exports.Hero = Hero;
|
|
100
|
+
/** Represents a Player's Hero Equipment. */
|
|
101
|
+
class HeroEquipment extends Unit {
|
|
102
|
+
}
|
|
103
|
+
exports.HeroEquipment = HeroEquipment;
|
package/dist/types/api.d.ts
CHANGED
|
@@ -44,13 +44,9 @@ export interface APIClan {
|
|
|
44
44
|
clanLevel: number;
|
|
45
45
|
clanPoints: number;
|
|
46
46
|
clanBuilderBasePoints: number;
|
|
47
|
-
/** @deprecated */
|
|
48
|
-
clanVersusPoints?: number;
|
|
49
47
|
requiredTrophies: number;
|
|
50
48
|
requiredTownhallLevel?: number;
|
|
51
49
|
requiredBuilderBaseTrophies?: number;
|
|
52
|
-
/** @deprecated */
|
|
53
|
-
requiredVersusTrophies?: number;
|
|
54
50
|
warFrequency: 'always' | 'moreThanOncePerWeek' | 'oncePerWeek' | 'lessThanOncePerWeek' | 'never' | 'unknown';
|
|
55
51
|
warWinStreak: number;
|
|
56
52
|
warWins: number;
|
|
@@ -76,8 +72,6 @@ export interface APIClanMember {
|
|
|
76
72
|
builderBaseLeague?: Omit<APILeague, 'iconUrls'>;
|
|
77
73
|
trophies: number;
|
|
78
74
|
builderBaseTrophies?: number;
|
|
79
|
-
/** @deprecated */
|
|
80
|
-
versusTrophies?: number;
|
|
81
75
|
clanRank: number;
|
|
82
76
|
previousClanRank: number;
|
|
83
77
|
donations: number;
|
|
@@ -260,10 +254,6 @@ export interface APIPlayer {
|
|
|
260
254
|
builderHallLevel?: number;
|
|
261
255
|
builderBaseTrophies?: number;
|
|
262
256
|
bestBuilderBaseTrophies?: number;
|
|
263
|
-
/** @deprecated */
|
|
264
|
-
versusBattleWins?: number;
|
|
265
|
-
/** @deprecated */
|
|
266
|
-
versusTrophies?: number;
|
|
267
257
|
donations: number;
|
|
268
258
|
donationsReceived: number;
|
|
269
259
|
clanCapitalContributions: number;
|
|
@@ -280,6 +270,7 @@ export interface APIPlayer {
|
|
|
280
270
|
troops: APIPlayerItem[];
|
|
281
271
|
heroes: APIPlayerItem[];
|
|
282
272
|
spells: APIPlayerItem[];
|
|
273
|
+
heroEquipment: APIPlayerItem[];
|
|
283
274
|
labels: APILabel[];
|
|
284
275
|
playerHouse?: APIPlayerHouse;
|
|
285
276
|
}
|
|
@@ -311,6 +302,7 @@ export interface APIPlayerItem {
|
|
|
311
302
|
level: number;
|
|
312
303
|
maxLevel: number;
|
|
313
304
|
superTroopIsActive?: boolean;
|
|
305
|
+
equipment?: APIPlayerItem[];
|
|
314
306
|
village: 'home' | 'builderBase';
|
|
315
307
|
}
|
|
316
308
|
/** /players/{playerTag}/verifytoken */
|
|
@@ -380,8 +372,6 @@ export interface APIClanBuilderBaseRanking {
|
|
|
380
372
|
previousRank: number;
|
|
381
373
|
badgeUrls: APIBadge;
|
|
382
374
|
clanBuilderBasePoints: number;
|
|
383
|
-
/** @deprecated */
|
|
384
|
-
clanVersusPoints?: number;
|
|
385
375
|
}
|
|
386
376
|
/** /locations/{locationId}/rankings/players-builder-base */
|
|
387
377
|
export interface APIPlayerBuilderBaseRankingList {
|
|
@@ -393,10 +383,6 @@ export interface APIPlayerBuilderBaseRanking {
|
|
|
393
383
|
name: string;
|
|
394
384
|
expLevel: number;
|
|
395
385
|
builderBaseTrophies: number;
|
|
396
|
-
/** @deprecated */
|
|
397
|
-
versusBattleWins?: number;
|
|
398
|
-
/** @deprecated */
|
|
399
|
-
versusTrophies?: number;
|
|
400
386
|
rank: number;
|
|
401
387
|
previousRank: number;
|
|
402
388
|
clan?: APIPlayerClan;
|
package/dist/util/Constants.js
CHANGED
|
@@ -23,7 +23,8 @@ exports.ElixirTroops = [
|
|
|
23
23
|
'Electro Dragon',
|
|
24
24
|
'Yeti',
|
|
25
25
|
'Dragon Rider',
|
|
26
|
-
'Electro Titan'
|
|
26
|
+
'Electro Titan',
|
|
27
|
+
'Root Rider'
|
|
27
28
|
];
|
|
28
29
|
exports.DarkElixirTroops = ['Minion', 'Hog Rider', 'Valkyrie', 'Golem', 'Witch', 'Lava Hound', 'Bowler', 'Ice Golem', 'Headhunter'];
|
|
29
30
|
exports.HomeTroops = [...exports.ElixirTroops, ...exports.DarkElixirTroops];
|
|
@@ -79,7 +80,7 @@ exports.BuilderTroops = [
|
|
|
79
80
|
'Hog Glider'
|
|
80
81
|
];
|
|
81
82
|
exports.Heroes = ['Barbarian King', 'Archer Queen', 'Grand Warden', 'Royal Champion', 'Battle Machine'];
|
|
82
|
-
exports.HeroPets = ['L.A.S.S.I', 'Electro Owl', 'Mighty Yak', 'Unicorn', 'Poison Lizard', 'Diggy', 'Frosty', 'Phoenix'];
|
|
83
|
+
exports.HeroPets = ['L.A.S.S.I', 'Electro Owl', 'Mighty Yak', 'Unicorn', 'Poison Lizard', 'Diggy', 'Frosty', 'Phoenix', 'Spirit Fox'];
|
|
83
84
|
exports.UnrankedLeagueData = {
|
|
84
85
|
id: 29000000,
|
|
85
86
|
name: 'Unranked',
|
package/dist/util/raw.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{ "RAW_UNITS": [{ "id": 0, "name": "Barbarian", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 5, "regenerationTimes": [], "dps": [8, 11, 14, 18, 23, 26, 30, 34, 38, 42, 45], "upgrade": { "cost": [20000, 60000, 200000, 650000, 1400000, 2100000, 2800000, 5000000, 14000000, 16000000], "time": [7200, 18000, 43200, 86400, 129600, 216000, 259200, 518400, 1123200, 1209600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 10, 11] }, { "id": 1, "name": "Archer", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 500, "time": 60, "resource": "Elixir", "building": "Barracks", "buildingLevel": 2 }, "trainingTime": 6, "regenerationTimes": [], "dps": [7, 9, 12, 16, 20, 22, 25, 28, 31, 34, 37], "upgrade": { "cost": [30000, 80000, 300000, 800000, 2000000, 2500000, 3200000, 5600000, 14500000, 16000000], "time": [10800, 21600, 43200, 86400, 129600, 216000, 302400, 518400, 1123200, 1209600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 10, 11] }, { "id": 2, "name": "Goblin", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 5000, "time": 3600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 4 }, "trainingTime": 7, "regenerationTimes": [], "dps": [11, 14, 19, 24, 32, 42, 52, 62, 72], "upgrade": { "cost": [45000, 175000, 500000, 1200000, 2000000, 3000000, 5600000, 16000000], "time": [18000, 32400, 43200, 86400, 129600, 302400, 604800, 1468800], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 1, 2, 2, 3, 3, 4, 5, 6, 7, 7, 8, 8, 8, 9] }, { "id": 3, "name": "Giant", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 30, "regenerationTimes": [], "dps": [11, 14, 19, 24, 31, 43, 55, 62, 70, 78, 86], "upgrade": { "cost": [40000, 150000, 500000, 1200000, 2000000, 3000000, 3500000, 5600000, 8000000, 16500000], "time": [14400, 28800, 43200, 86400, 172800, 302400, 475200, 691200, 777600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11] }, { "id": 4, "name": "Wall Breaker", "housingSpace": 2, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 20000, "time": 28800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 5 }, "trainingTime": 15, "regenerationTimes": [], "dps": [6, 10, 15, 20, 43, 55, 66, 75, 86, 94, 102], "upgrade": { "cost": [100000, 250000, 600000, 1200000, 2500000, 4200000, 6500000, 8000000, 15200000, 16500000], "time": [21600, 43200, 64800, 86400, 183600, 302400, 561600, 777600, 1296000, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 1, 2, 2, 3, 4, 5, 5, 6, 7, 8, 9, 10, 11] }, { "id": 5, "name": "Balloon", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 120000, "time": 43200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 6 }, "trainingTime": 30, "regenerationTimes": [], "dps": [25, 32, 48, 72, 108, 162, 198, 236, 256, 276], "upgrade": { "cost": [125000, 400000, 800000, 1500000, 2750000, 4500000, 7000000, 8500000, 17000000], "time": [28800, 43200, 64800, 86400, 302400, 453600, 777600, 864000, 1468800], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 2, 2, 3, 4, 5, 6, 6, 7, 8, 9, 10, 10] }, { "id": 6, "name": "Wizard", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 30, "regenerationTimes": [], "dps": [50, 70, 90, 125, 170, 185, 200, 215, 230, 245, 260], "upgrade": { "cost": [120000, 320000, 620000, 1200000, 2200000, 3500000, 5000000, 5800000, 8500000, 17200000], "time": [28800, 43200, 64800, 86400, 172800, 302400, 453600, 691200, 777600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11] }, { "id": 7, "name": "Healer", "housingSpace": 14, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 6, "cost": 800000, "time": 86400, "resource": "Elixir", "building": "Barracks", "buildingLevel": 8 }, "trainingTime": 120, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [450000, 900000, 2700000, 4200000, 8000000, 16000000, 18000000], "time": [43200, 86400, 172800, 604800, 734400, 1382400, 1468800], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8] }, { "id": 8, "name": "Dragon", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 1200000, "time": 129600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 9 }, "trainingTime": 180, "regenerationTimes": [], "dps": [140, 160, 180, 210, 240, 270, 310, 330, 350, 370], "upgrade": { "cost": [1000000, 2000000, 3000000, 3800000, 4900000, 6300000, 8800000, 17500000, 19500000], "time": [64800, 129600, 259200, 453600, 475200, 777600, 820800, 1468800, 1555200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10] }, { "id": 9, "name": "P.E.K.K.A", "housingSpace": 25, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1700000, "time": 216000, "resource": "Elixir", "building": "Barracks", "buildingLevel": 10 }, "trainingTime": 180, "regenerationTimes": [], "dps": [260, 290, 320, 360, 410, 470, 540, 610, 680, 750], "upgrade": { "cost": [1200000, 1800000, 2800000, 3200000, 4200000, 5200000, 7000000, 8500000, 18000000], "time": [43200, 86400, 172800, 302400, 410400, 518400, 777600, 864000, 1425600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 3, 4, 6, 7, 8, 9, 9, 10] }, { "id": 10, "name": "Minion", "housingSpace": 2, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 200000, "time": 28800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 1 }, "trainingTime": 18, "regenerationTimes": [], "dps": [38, 41, 44, 47, 50, 54, 58, 62, 66, 70, 74], "upgrade": { "cost": [3000, 7000, 15000, 25000, 35000, 63000, 95000, 150000, 285000, 310000], "time": [28800, 57600, 86400, 172800, 302400, 432000, 777600, 864000, 1339200, 1425600], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 11] }, { "id": 11, "name": "Hog Rider", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 600000, "time": 86400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 2 }, "trainingTime": 45, "regenerationTimes": [], "dps": [60, 70, 80, 92, 105, 118, 135, 148, 161, 174, 187, 200], "upgrade": { "cost": [5000, 9000, 16000, 30000, 43000, 70000, 95000, 150000, 175000, 305000, 335000], "time": [36000, 72000, 108000, 172800, 302400, 453600, 604800, 777600, 864000, 1404000, 1468800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 9, 10, 11, 12] }, { "id": 12, "name": "Valkyrie", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1000000, "time": 129600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 3 }, "trainingTime": 90, "regenerationTimes": [], "dps": [94, 106, 119, 133, 148, 163, 178, 193, 208, 223], "upgrade": { "cost": [8000, 12000, 25000, 38000, 63000, 110000, 155000, 295000, 320000], "time": [86400, 172800, 259200, 367200, 453600, 604800, 864000, 1404000, 1468800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10] }, { "id": 13, "name": "Golem", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1600000, "time": 172800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 4 }, "trainingTime": 300, "regenerationTimes": [], "dps": [35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90], "upgrade": { "cost": [10000, 20000, 30000, 43000, 53000, 77000, 100000, 125000, 160000, 300000, 330000], "time": [108000, 216000, 324000, 367200, 432000, 475200, 561600, 777600, 864000, 1382400, 1468800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 7, 9, 10, 11, 12] }, { "id": 15, "name": "Witch", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2200000, "time": 302400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 5 }, "trainingTime": 120, "regenerationTimes": [], "dps": [100, 110, 140, 160, 180, 200], "upgrade": { "cost": [50000, 68000, 90000, 125000, 340000], "time": [345600, 410400, 583200, 777600, 1512000], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 5, 5, 6] }, { "id": 17, "name": "Lava Hound", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2900000, "time": 388800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 6 }, "trainingTime": 300, "regenerationTimes": [], "dps": [10, 12, 14, 16, 18, 20], "upgrade": { "cost": [35000, 50000, 85000, 120000, 160000], "time": [216000, 367200, 540000, 777600, 820800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 6, 6] }, { "id": 22, "name": "Bowler", "housingSpace": 6, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 4000000, "time": 561600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 7 }, "trainingTime": 60, "regenerationTimes": [], "dps": [60, 70, 80, 90, 96, 102, 114], "upgrade": { "cost": [65000, 88000, 125000, 170000, 305000, 335000], "time": [302400, 432000, 648000, 777600, 1447200, 1512000], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7] }, { "id": 23, "name": "Baby Dragon", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2600000, "time": 345600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 11 }, "trainingTime": 90, "regenerationTimes": [], "dps": [75, 85, 95, 105, 115, 125, 135, 145, 155], "upgrade": { "cost": [2000000, 2500000, 3400000, 4200000, 5500000, 7200000, 16000000, 18000000], "time": [172800, 302400, 432000, 540000, 648000, 734400, 1360800, 1425600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9] }, { "id": 24, "name": "Miner", "housingSpace": 6, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 3700000, "time": 475200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 12 }, "trainingTime": 30, "regenerationTimes": [], "dps": [80, 88, 96, 104, 112, 120, 128, 136, 144], "upgrade": { "cost": [2500000, 3200000, 3800000, 5000000, 5800000, 8000000, 16500000, 18500000], "time": [187200, 302400, 345600, 604800, 691200, 864000, 1382400, 1468800], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 6, 7, 8, 9] }, { "id": 26, "name": "Super Barbarian", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 25, "regenerationTimes": [], "dps": [180, 200, 220, 240], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 8, "seasonal": false, "levels": [8, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 27, "name": "Super Archer", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 500, "time": 60, "resource": "Elixir", "building": "Barracks", "buildingLevel": 2 }, "trainingTime": 72, "regenerationTimes": [], "dps": [120, 132, 144, 156], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 8, "seasonal": false, "levels": [0, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 28, "name": "Super Wall Breaker", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 20000, "time": 28800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 5 }, "trainingTime": 60, "regenerationTimes": [], "dps": [78, 100, 120, 130, 140], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 29, "name": "Super Giant", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 60, "regenerationTimes": [], "dps": [130, 140, 150], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 9, "seasonal": false, "levels": [0, 9, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 30, "name": "Ice Wizard", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 30, "regenerationTimes": [], "dps": [40, 56, 72, 100, 136, 148, 160, 172, 184, 196], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10] }, { "id": 31, "name": "Raged Barbarian", "housingSpace": 4, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 1000, "time": 0, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 1 }, "trainingTime": "", "regenerationTimes": [], "dps": [45, 45, 58, 58, 70, 70, 83, 83, 93, 93, 103, 103, 112, 112, 119, 119, 126, 126, 133, 133], "upgrade": { "cost": [3500, 7000, 10000, 90000, 180000, 300000, 330000, 700000, 900000, 1000000, 1200000, 2000000, 2200000, 3000000, 3200000, 3800000, 4000000, 4600000, 5200000], "time": [300, 900, 18000, 36000, 54000, 72000, 86400, 129600, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 1, "seasonal": false, "levels": [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 32, "name": "Sneaky Archer", "housingSpace": 3, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 4000, "time": 60, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 2 }, "trainingTime": "", "regenerationTimes": [], "dps": [60, 60, 66, 66, 72, 72, 79, 79, 86, 86, 95, 95, 104, 104, 112, 112, 119, 119, 125, 125], "upgrade": { "cost": [5000, 8000, 12000, 100000, 200000, 320000, 350000, 800000, 1000000, 1100000, 1300000, 2100000, 2300000, 3100000, 3300000, 3900000, 4100000, 4700000, 5300000], "time": [180, 600, 1800, 21600, 39600, 57600, 75600, 86400, 129600, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 4, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 33, "name": "Beta Minion", "housingSpace": 3, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 25000, "time": 1800, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 4 }, "trainingTime": "", "regenerationTimes": [], "dps": [60, 60, 65, 65, 72, 72, 81, 81, 90, 90, 99, 99, 108, 108, 117, 117, 126, 126], "upgrade": { "cost": [50000, 110000, 220000, 330000, 360000, 900000, 1100000, 1300000, 1500000, 2300000, 2500000, 3300000, 3500000, 4000000, 4200000, 4800000, 5400000], "time": [14400, 28800, 43200, 64800, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 3, "seasonal": false, "levels": [0, 0, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 34, "name": "Boxer Giant", "housingSpace": 18, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 10000, "time": 600, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 3 }, "trainingTime": "", "regenerationTimes": [], "dps": [65, 65, 70, 70, 76, 76, 83, 83, 91, 91, 100, 100, 109, 109, 119, 119, 129, 129], "upgrade": { "cost": [60000, 120000, 240000, 350000, 380000, 1000000, 1200000, 1300000, 1500000, 2300000, 2500000, 3300000, 3500000, 4000000, 4200000, 4800000, 5400000], "time": [18000, 36000, 57600, 72000, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 3, "seasonal": false, "levels": [0, 0, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 35, "name": "Bomber", "housingSpace": 12, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 100000, "time": 10800, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 5 }, "trainingTime": "", "regenerationTimes": [], "dps": [80, 80, 90, 90, 100, 100, 110, 110, 120, 120, 130, 130, 140, 140, 150, 150], "upgrade": { "cost": [320000, 340000, 360000, 900000, 1000000, 1200000, 1400000, 2200000, 2400000, 3200000, 3400000, 3900000, 4100000, 4700000, 5300000], "time": [57600, 72000, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 8, 10, 12, 14, 16, 18, 20] }, { "id": 36, "name": "Power P.E.K.K.A", "housingSpace": 22, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1500000, "time": 259200, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 10 }, "trainingTime": "", "regenerationTimes": [], "dps": [420, 420, 460, 460, 500, 500, 560, 560], "upgrade": { "cost": [3600000, 3800000, 4000000, 4600000, 4800000, 5600000, 5800000], "time": [388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 13, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 16, 18, 20] }, { "id": 37, "name": "Cannon Cart", "housingSpace": 16, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 300000, "time": 32400, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 7 }, "trainingTime": "", "regenerationTimes": [], "dps": [115, 115, 130, 130, 150, 150, 170, 170, 190, 190, 215, 215, 240, 240], "upgrade": { "cost": [1000000, 1100000, 1200000, 1400000, 1600000, 2400000, 2600000, 3400000, 3600000, 4100000, 4300000, 5300000, 5700000], "time": [86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 10, 12, 14, 16, 18, 20] }, { "id": 38, "name": "Drop Ship", "housingSpace": 15, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 1000000, "time": 172800, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 9 }, "trainingTime": "", "regenerationTimes": [], "dps": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10], "upgrade": { "cost": [2400000, 2600000, 2800000, 3600000, 3800000, 4300000, 4500000, 5500000, 5700000], "time": [216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 11, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 14, 16, 18, 20] }, { "id": 41, "name": "Baby Dragon", "housingSpace": 12, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 150000, "time": 21600, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 6 }, "trainingTime": "", "regenerationTimes": [], "dps": [62, 62, 68, 68, 75, 75, 83, 83, 91, 91, 100, 100, 110, 110, 120, 120], "upgrade": { "cost": [360000, 380000, 400000, 1000000, 1200000, 1400000, 1600000, 2400000, 2600000, 3400000, 3600000, 4100000, 4300000, 5100000, 5500000], "time": [57600, 72000, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 8, 10, 12, 14, 16, 18, 20] }, { "id": 42, "name": "Night Witch", "housingSpace": 14, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 6, "cost": 500000, "time": 86400, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 8 }, "trainingTime": "", "regenerationTimes": [], "dps": [176, 176, 193, 193, 216, 216, 234, 234, 257, 257, 278, 278], "upgrade": { "cost": [1400000, 1600000, 1800000, 2500000, 2700000, 3500000, 3700000, 4200000, 4400000, 5200000, 5600000], "time": [172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 9, "seasonal": false, "levels": [0, 0, 0, 0, 0, 12, 14, 16, 18, 20] }, { "id": 45, "name": "Battle Ram", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 30, "regenerationTimes": [], "dps": [6000], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] }, { "id": 47, "name": "Royal Ghost", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 37, "regenerationTimes": [], "dps": [200, 280, 360, 440, 520, 600, 680], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 7, 7] }, { "id": 48, "name": "Pumpkin Barbarian", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 5, "regenerationTimes": [], "dps": [8, 11, 14, 18, 23, 26, 30], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7] }, { "id": 50, "name": "Giant Skeleton", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 30, "regenerationTimes": [], "dps": [22, 28, 38, 48, 62, 86, 100, 114, 128, 142, 156], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 8, 9, 9, 10, 11] }, { "id": 51, "name": "Wall Wrecker", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 12, "cost": 3000000, "time": 345600, "resource": "Elixir", "building": "Workshop", "buildingLevel": 1 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [250, 300, 350, 400, 450], "upgrade": { "cost": [3800000, 5000000, 8500000, 15000000], "time": [432000, 518400, 777600, 1425600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 5] }, { "id": 52, "name": "Battle Blimp", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 12, "cost": 5000000, "time": 432000, "resource": "Elixir", "building": "Workshop", "buildingLevel": 2 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [100, 140, 180, 220], "upgrade": { "cost": [3800000, 5000000, 8500000], "time": [432000, 518400, 777600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4] }, { "id": 53, "name": "Yeti", "housingSpace": 18, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 12, "cost": 8000000, "time": 777600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 14 }, "trainingTime": 180, "regenerationTimes": [], "dps": [230, 250, 270, 290, 310], "upgrade": { "cost": [7000000, 9000000, 17100000, 19000000], "time": [604800, 864000, 1468800, 1555200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5] }, { "id": 55, "name": "Sneaky Goblin", "housingSpace": 3, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 5000, "time": 3600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 4 }, "trainingTime": 21, "regenerationTimes": [], "dps": [155, 170, 180], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9] }, { "id": 56, "name": "Super Miner", "housingSpace": 24, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 3700000, "time": 475200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 12 }, "trainingTime": 120, "regenerationTimes": [], "dps": [170, 185, 200], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9] }, { "id": 57, "name": "Rocket Balloon", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 120000, "time": 43200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 6 }, "trainingTime": 48, "regenerationTimes": [], "dps": [236, 256, 276], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 8, "seasonal": false, "levels": [0, 0, 0, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10] }, { "id": 58, "name": "Ice Golem", "housingSpace": 15, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 11, "cost": 7500000, "time": 691200, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 8 }, "trainingTime": 150, "regenerationTimes": [], "dps": [24, 28, 32, 36, 40, 44, 48], "upgrade": { "cost": [55000, 85000, 100000, 125000, 305000, 335000], "time": [244800, 432000, 561600, 691200, 1382400, 1468800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 6, 7] }, { "id": 59, "name": "Electro Dragon", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 11, "cost": 6500000, "time": 648000, "resource": "Elixir", "building": "Barracks", "buildingLevel": 13 }, "trainingTime": 360, "regenerationTimes": [], "dps": [240, 270, 300, 330, 360, 390], "upgrade": { "cost": [6300000, 7000000, 9600000, 18000000, 20000000], "time": [475200, 777600, 864000, 1468800, 1555200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6] }, { "id": 61, "name": "Skeleton Barrel", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 120000, "time": 43200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 6 }, "trainingTime": 30, "regenerationTimes": [], "dps": [75, 96, 144, 216, 324, 486, 594, 708, 768], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 2, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 9] }, { "id": 62, "name": "Stone Slammer", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 12, "cost": 7000000, "time": 604800, "resource": "Elixir", "building": "Workshop", "buildingLevel": 3 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [400, 500, 600, 700, 750], "upgrade": { "cost": [3800000, 5000000, 8500000, 15000000], "time": [432000, 518400, 777600, 1425600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 5] }, { "id": 63, "name": "Inferno Dragon", "housingSpace": 15, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2600000, "time": 345600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 11 }, "trainingTime": 135, "regenerationTimes": [], "dps": [75, 79, 83, 85], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 6, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9] }, { "id": 64, "name": "Super Valkyrie", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1000000, "time": 129600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 3 }, "trainingTime": 225, "regenerationTimes": [], "dps": [250, 300, 325, 350], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 10, 10, 10, 10] }, { "id": 65, "name": "Dragon Rider", "housingSpace": 25, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 13, "cost": 10000000, "time": 907200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 15 }, "trainingTime": 250, "regenerationTimes": [], "dps": [340, 370, 400], "upgrade": { "cost": [9600000, 16500000], "time": [777600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3] }, { "id": 66, "name": "Super Witch", "housingSpace": 40, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2200000, "time": 302400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 5 }, "trainingTime": 400, "regenerationTimes": [], "dps": [360, 390], "upgrade": { "cost": [75000], "time": [518400], "resource": "Dark Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6] }, { "id": 67, "name": "El Primo", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 60, "regenerationTimes": [], "dps": [120], "upgrade": { "cost": [120000], "time": [734400], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] }, { "id": 70, "name": "Hog Glider", "housingSpace": 12, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2000000, "time": 345600, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 11 }, "trainingTime": "", "regenerationTimes": [], "dps": [900, 1100, 1100, 1100, 1100, 1300], "upgrade": { "cost": [4000000, 4200000, 4400000, 5400000, 5800000], "time": [475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 15, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 18, 20] }, { "id": 72, "name": "Party Wizard", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 30, "regenerationTimes": [], "dps": [75, 105, 135, 188, 255, 278, 300, 322, 345, 367, 390], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11] }, { "id": 75, "name": "Siege Barracks", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 13, "cost": 9000000, "time": 864000, "resource": "Elixir", "building": "Workshop", "buildingLevel": 4 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [5000000, 7000000, 8500000], "time": [518400, 734400, 777600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4] }, { "id": 76, "name": "Ice Hound", "housingSpace": 40, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2900000, "time": 388800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 6 }, "trainingTime": 400, "regenerationTimes": [], "dps": [10, 15], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 6, 6, 6, 6] }, { "id": 80, "name": "Super Bowler", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 4000000, "time": 561600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 7 }, "trainingTime": 300, "regenerationTimes": [], "dps": [170, 185, 200, 215], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 4, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7] }, { "id": 81, "name": "Super Dragon", "housingSpace": 40, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 1200000, "time": 129600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 9 }, "trainingTime": 360, "regenerationTimes": [], "dps": [80, 85, 90, 95], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 10, 10, 10, 10, 10] }, { "id": 82, "name": "Headhunter", "housingSpace": 6, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 12, "cost": 9000000, "time": 864000, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 9 }, "trainingTime": 60, "regenerationTimes": [], "dps": [105, 115, 125], "upgrade": { "cost": [115000, 145000], "time": [777600, 864000], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3] }, { "id": 83, "name": "Super Wizard", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 75, "regenerationTimes": [], "dps": [220, 240, 260], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 9, "seasonal": false, "levels": [0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 84, "name": "Super Minion", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 200000, "time": 28800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 1 }, "trainingTime": 108, "regenerationTimes": [], "dps": [300, 325, 350, 360], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 8, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 87, "name": "Log Launcher", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 13, "cost": 10000000, "time": 950400, "resource": "Elixir", "building": "Workshop", "buildingLevel": 5 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [140, 160, 180, 200], "upgrade": { "cost": [4800000, 6500000, 8500000], "time": [518400, 777600, 820800], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4] }, { "id": 91, "name": "Flame Flinger", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 14, "cost": 16500000, "time": 1468800, "resource": "Elixir", "building": "Workshop", "buildingLevel": 6 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [45, 50, 55, 60], "upgrade": { "cost": [7600000, 10500000, 13300000], "time": [820800, 1166400, 1296000], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4] }, { "id": 92, "name": "Battle Drill", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 15, "cost": 19000000, "time": 1555200, "resource": "Elixir", "building": "Workshop", "buildingLevel": 7 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [430, 470, 510, 550], "upgrade": { "cost": [8000000, 11000000, 14000000], "time": [864000, 1209600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4] }, { "id": 94, "name": "Ram Rider", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 1200000, "time": 129600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 9 }, "trainingTime": 60, "regenerationTimes": [], "dps": [100, 125, 150, 175, 200, 225, 250, 275, 300], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9] }, { "id": 95, "name": "Electro Titan", "housingSpace": 32, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 14, "cost": 15000000, "time": 1382400, "resource": "Elixir", "building": "Barracks", "buildingLevel": 16 }, "trainingTime": 360, "regenerationTimes": [], "dps": [180, 200, 220], "upgrade": { "cost": [19500000, 20500000], "time": [1512000, 1555200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3] }, { "id": 97, "name": "Apprentice Warden", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 13, "cost": 13000000, "time": 1123200, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 10 }, "trainingTime": 240, "regenerationTimes": [], "dps": [170, 185, 200, 215], "upgrade": { "cost": [180000, 315000, 340000], "time": [777600, 1447200, 1512000], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4] }, { "id": 98, "name": "Super Hog Rider", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 600000, "time": 86400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 2 }, "trainingTime": 108, "regenerationTimes": [], "dps": [190, 210, 230], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 10, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 12, 12, 12, 12, 12, 12, 12, 12, 12] }, { "id": 106, "name": "Electrofire Wizard", "housingSpace": 14, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 3000000, "time": 432000, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 12 }, "trainingTime": "", "regenerationTimes": [], "dps": [220, 220, 253, 253], "upgrade": { "cost": [4400000, 5400000, 5800000], "time": [518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 17, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 20] }, { "id": 0, "name": "Lightning Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 5, "cost": 150000, "time": 28800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 1 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [50000, 100000, 200000, 600000, 1500000, 2500000, 4200000, 6300000, 16000000], "time": [14400, 28800, 43200, 86400, 345600, 518400, 626400, 691200, 1382400], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 4, 4, 4, 5, 6, 7, 8, 9, 9, 9, 10] }, { "id": 1, "name": "Healing Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 6, "cost": 300000, "time": 86400, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 2 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [75000, 150000, 300000, 900000, 1800000, 3000000, 8500000, 17000000], "time": [18000, 36000, 72000, 129600, 345600, 518400, 820800, 1468800], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 3, 4, 5, 6, 7, 7, 7, 8, 8, 9] }, { "id": 2, "name": "Rage Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 7, "cost": 600000, "time": 172800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 3 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [400000, 800000, 1600000, 2400000, 7000000], "time": [43200, 86400, 172800, 345600, 604800], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 4, 5, 5, 5, 5, 6, 6, 6, 6] }, { "id": 3, "name": "Jump Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 1200000, "time": 302400, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 4 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [2000000, 3400000, 7200000, 16500000], "time": [345600, 518400, 777600, 1425600], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5] }, { "id": 5, "name": "Freeze Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 1200000, "time": 302400, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 4 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [1200000, 1700000, 3000000, 4200000, 6000000, 7000000], "time": [129600, 223200, 367200, 518400, 669600, 691200], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 6, 7, 7, 7, 7] }, { "id": 4, "name": "Santa's Surprise", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 5, "cost": 150000, "time": 28800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 1 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": null, "seasonal": true, "levels": [0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 9, "name": "Poison Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 8, "cost": 150000, "time": 21600, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 1 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [12000, 25000, 43000, 70000, 110000, 155000, 285000, 320000], "time": [28800, 86400, 223200, 540000, 604800, 820800, 1447200, 1512000], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9] }, { "id": 10, "name": "Earthquake Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 8, "cost": 300000, "time": 64800, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 2 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [15000, 30000, 51000, 84000], "time": [64800, 129600, 367200, 669600], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 5, 5, 5, 5] }, { "id": 11, "name": "Haste Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 600000, "time": 172800, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 3 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [20000, 34000, 60000, 77000], "time": [129600, 223200, 432000, 669600], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 5, 5, 5, 5] }, { "id": 16, "name": "Clone Spell", "housingSpace": 3, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 10, "cost": 2000000, "time": 367200, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 5 }, "trainingTime": 540, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [2100000, 3400000, 4200000, 5600000, 7200000, 15500000, 18000000], "time": [151200, 302400, 345600, 604800, 777600, 1360800, 1512000], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 6, 7, 8] }, { "id": 17, "name": "Skeleton Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 1200000, "time": 345600, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 4 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [22000, 34000, 50000, 80000, 100000, 150000, 320000], "time": [115200, 223200, 367200, 475200, 604800, 777600, 1512000], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 6, 7, 7, 8] }, { "id": 22, "name": "Birthday Boom", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 5, "cost": 150000, "time": 28800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 1 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "seasonal": true, "levels": [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] }, { "id": 28, "name": "Bat Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 10, "cost": 2500000, "time": 518400, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 5 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [26000, 51000, 70000, 95000, 330000], "time": [151200, 302400, 453600, 518400, 1555200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 5, 5, 6] }, { "id": 35, "name": "Invisibility Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 11, "cost": 3500000, "time": 432000, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 6 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [5600000, 7500000, 9000000], "time": [475200, 604800, 820800], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 4, 4] }, { "id": 53, "name": "Recall Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 13, "cost": 9000000, "time": 777600, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 7 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [7500000, 14000000, 17500000], "time": [993600, 1339200, 1512000], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4] }, { "id": 0, "name": "Barbarian King", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 7, "cost": 5000, "time": 0, "resource": "Dark Elixir", "building": "Barbarian King", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [600, 600, 600, 600, 720, 720, 720, 720, 720, 840, 840, 840, 840, 840, 960, 960, 960, 960, 960, 1080, 1080, 1080, 1080, 1080, 1200, 1200, 1200, 1200, 1200, 1320, 1320, 1320, 1320, 1320, 1440, 1440, 1440, 1440, 1440, 1560, 1560, 1560, 1560, 1560, 1680, 1680, 1680, 1680, 1680, 1800, 1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760], "dps": [120, 122, 124, 127, 129, 132, 135, 137, 140, 143, 146, 149, 152, 155, 158, 161, 164, 168, 171, 174, 178, 181, 185, 189, 193, 196, 200, 204, 208, 213, 217, 221, 226, 230, 235, 239, 244, 249, 254, 259, 275, 281, 287, 293, 299, 305, 312, 318, 325, 332, 339, 346, 353, 361, 369, 377, 385, 393, 401, 410, 418, 426, 435, 444, 453, 462, 471, 480, 490, 500, 510, 520, 530, 540, 550, 559, 568, 577, 586, 595, 603, 611, 619, 627, 635, 643, 651, 659, 667, 675], "upgrade": { "cost": [6000, 7000, 8000, 10000, 11000, 12000, 13000, 14000, 15000, 17000, 19000, 21000, 23000, 25000, 27000, 29000, 31000, 33000, 35000, 37000, 39000, 41000, 43000, 45000, 47000, 49000, 51000, 53000, 55000, 57000, 59000, 60000, 62000, 64000, 66000, 68000, 70000, 73000, 76000, 80000, 85000, 89000, 94000, 98000, 103000, 109000, 114000, 119000, 125000, 130000, 135000, 140000, 146000, 151000, 158000, 165000, 172000, 180000, 187000, 193000, 200000, 206000, 211000, 216000, 225000, 234000, 243000, 252000, 261000, 267000, 270000, 279000, 284000, 289000, 300000, 305000, 310000, 315000, 320000, 330000, 335000, 340000, 345000, 350000, 352000, 354000, 356000, 358000, 360000], "time": [14400, 21600, 28800, 36000, 43200, 50400, 57600, 64800, 72000, 79200, 86400, 115200, 144000, 172800, 172800, 172800, 172800, 172800, 216000, 216000, 216000, 216000, 216000, 259200, 259200, 259200, 259200, 259200, 345600, 345600, 345600, 345600, 345600, 410400, 410400, 410400, 410400, 410400, 475200, 475200, 475200, 475200, 475200, 496800, 496800, 496800, 496800, 496800, 496800, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 583200, 583200, 583200, 583200, 626400, 626400, 626400, 626400, 626400, 626400, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 5, 10, 30, 40, 50, 65, 75, 80, 90] }, { "id": 1, "name": "Archer Queen", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 9, "cost": 10000, "time": 0, "resource": "Dark Elixir", "building": "Archer Queen", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [600, 600, 600, 600, 720, 720, 720, 720, 720, 840, 840, 840, 840, 840, 960, 960, 960, 960, 960, 1080, 1080, 1080, 1080, 1080, 1200, 1200, 1200, 1200, 1200, 1320, 1320, 1320, 1320, 1320, 1440, 1440, 1440, 1440, 1440, 1560, 1560, 1560, 1560, 1560, 1680, 1680, 1680, 1680, 1680, 1800, 1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760], "dps": [160, 164, 168, 172, 176, 181, 185, 190, 194, 199, 204, 209, 215, 220, 226, 231, 237, 243, 249, 255, 262, 268, 275, 282, 289, 296, 304, 311, 319, 327, 335, 344, 352, 361, 370, 379, 389, 398, 408, 419, 429, 440, 451, 462, 474, 486, 498, 510, 523, 536, 547, 558, 570, 582, 594, 606, 619, 632, 645, 658, 671, 684, 698, 712, 726, 739, 751, 762, 772, 781, 789, 796, 802, 808, 814, 820, 825, 830, 835, 840, 844, 848, 852, 856, 860, 864, 868, 872, 876, 880], "upgrade": { "cost": [11000, 12000, 13000, 15000, 16000, 17000, 18000, 19000, 20000, 22000, 24000, 26000, 28000, 30000, 32000, 34000, 36000, 38000, 40000, 42000, 44000, 46000, 48000, 50000, 52000, 54000, 56000, 58000, 60000, 63000, 65000, 67000, 69000, 72000, 74000, 77000, 79000, 82000, 84000, 89000, 93000, 97000, 101000, 106000, 111000, 116000, 122000, 127000, 132000, 138000, 143000, 148000, 154000, 159000, 166000, 172000, 179000, 186000, 192000, 198000, 203000, 208000, 213000, 219000, 228000, 237000, 246000, 255000, 266000, 269000, 278000, 283000, 288000, 297000, 302000, 308000, 314000, 319000, 325000, 334000, 338000, 342000, 346000, 350000, 352000, 354000, 356000, 358000, 360000], "time": [14400, 21600, 28800, 36000, 43200, 50400, 57600, 64800, 72000, 79200, 86400, 115200, 144000, 172800, 172800, 172800, 172800, 172800, 216000, 216000, 216000, 216000, 216000, 259200, 259200, 259200, 259200, 259200, 345600, 345600, 345600, 345600, 345600, 410400, 410400, 410400, 410400, 410400, 475200, 475200, 475200, 475200, 475200, 496800, 496800, 496800, 496800, 496800, 496800, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 583200, 583200, 583200, 583200, 626400, 626400, 626400, 626400, 626400, 626400, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 30, 40, 50, 65, 75, 80, 90] }, { "id": 2, "name": "Grand Warden", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 11, "cost": 1000000, "time": 0, "resource": "Elixir", "building": "Grand Warden", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [1200, 1200, 1200, 1200, 1320, 1320, 1320, 1320, 1320, 1440, 1440, 1440, 1440, 1440, 1560, 1560, 1560, 1560, 1560, 1680, 1680, 1680, 1680, 1680, 1800, 1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760], "dps": [50, 52, 54, 56, 58, 60, 63, 66, 69, 72, 75, 78, 82, 86, 90, 94, 98, 102, 106, 110, 115, 120, 125, 130, 136, 142, 148, 154, 161, 168, 175, 182, 190, 198, 206, 215, 224, 233, 243, 253, 260, 266, 271, 275, 279, 283, 287, 291, 295, 299, 303, 307, 311, 315, 319, 322, 325, 328, 331, 334, 337, 340, 343, 346, 349], "upgrade": { "cost": [1100000, 1400000, 1600000, 1800000, 2000000, 2200000, 2500000, 2700000, 3100000, 3600000, 4000000, 4400000, 4900000, 5300000, 5700000, 6200000, 6600000, 7100000, 7900000, 8800000, 8900000, 9000000, 9100000, 9200000, 9300000, 9400000, 9500000, 9600000, 9700000, 9800000, 9900000, 10000000, 10100000, 10200000, 10300000, 10400000, 10500000, 10600000, 10700000, 10800000, 11200000, 11600000, 12000000, 12400000, 12800000, 13200000, 13600000, 14300000, 15500000, 16600000, 17100000, 17600000, 18100000, 18600000, 19200000, 19400000, 19600000, 19800000, 20000000, 20200000, 20400000, 20600000, 20800000, 21000000], "time": [7200, 14400, 28800, 43200, 57600, 79200, 100800, 115200, 158400, 194400, 237600, 324000, 388800, 475200, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 540000, 583200, 583200, 583200, 583200, 583200, 626400, 626400, 626400, 626400, 626400, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 40, 50, 55, 65] }, { "id": 3, "name": "Battle Machine", "housingSpace": 25, "village": "builderBase", "category": "hero", "subCategory": "hero", "unlock": { "hall": 5, "cost": 900000, "time": 43200, "resource": "Builder Elixir", "building": "Battle Machine", "buildingLevel": 1 }, "resourceType": "Builder Elixir", "trainingTime": 0, "regenerationTimes": [0], "dps": [125, 127, 130, 132, 135, 137, 140, 142, 145, 147, 150, 154, 157, 160, 164, 167, 170, 174, 177, 180, 186, 192, 198, 204, 210, 218, 226, 234, 242, 250, 258, 266, 274, 282, 290], "upgrade": { "cost": [1000000, 1100000, 1200000, 1300000, 1500000, 1600000, 1700000, 1800000, 1900000, 2100000, 2200000, 2300000, 2400000, 2500000, 2600000, 2700000, 2800000, 2900000, 3000000, 3100000, 3200000, 3300000, 3400000, 3500000, 3600000, 3700000, 3800000, 3900000, 4000000, 4100000, 4200000, 4300000, 4400000, 4500000], "time": [43200, 43200, 86400, 86400, 129600, 129600, 172800, 172800, 216000, 216000, 259200, 259200, 302400, 302400, 345600, 345600, 345600, 345600, 345600, 432000, 432000, 432000, 432000, 432000, 518400, 518400, 518400, 518400, 518400, 604800, 604800, 604800, 604800, 604800], "resource": "Builder Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 5, 10, 20, 25, 30, 35] }, { "id": 4, "name": "Royal Champion", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 13, "cost": 60000, "time": 0, "resource": "Dark Elixir", "building": "Royal Champion", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760], "dps": [374, 383, 392, 401, 410, 418, 426, 434, 442, 450, 458, 466, 474, 482, 490, 498, 506, 514, 522, 530, 535, 540, 545, 550, 555, 560, 565, 570, 575, 580, 584, 588, 592, 596, 600, 604, 608, 612, 616, 620], "upgrade": { "cost": [73000, 89000, 105000, 122000, 140000, 158000, 170000, 182000, 192000, 202000, 211000, 216000, 222000, 228000, 234000, 239000, 245000, 251000, 257000, 262000, 267000, 272000, 277000, 282000, 295000, 300000, 305000, 310000, 315000, 325000, 330000, 335000, 340000, 345000, 347000, 349000, 351000, 353000, 355000], "time": [28800, 57600, 79200, 158400, 237600, 280800, 324000, 367200, 388800, 432000, 475200, 518400, 561600, 561600, 583200, 583200, 583200, 583200, 583200, 626400, 626400, 626400, 626400, 626400, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 30, 40] }, { "id": 5, "name": "Battle Copter", "housingSpace": 25, "village": "builderBase", "category": "hero", "subCategory": "hero", "unlock": { "hall": 8, "cost": 2500000, "time": 0, "resource": "Builder Elixir", "building": "Battle Copter", "buildingLevel": 1 }, "resourceType": "Builder Elixir", "trainingTime": 0, "regenerationTimes": [0], "dps": [112, 116, 119, 123, 126, 130, 134, 137, 141, 144, 148, 153, 157, 162, 166, 171, 175, 180, 184, 189, 193], "upgrade": { "cost": [2600000, 2700000, 2800000, 2900000, 3000000, 3100000, 3200000, 3300000, 3400000, 3500000, 3600000, 3700000, 3800000, 3900000, 4000000, 4100000, 4200000, 4300000, 4400000, 4500000], "time": [432000, 432000, 432000, 432000, 432000, 432000, 432000, 432000, 432000, 432000, 518400, 518400, 518400, 518400, 518400, 604800, 604800, 604800, 604800, 604800], "resource": "Builder Elixir" }, "minLevel": 15, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 25, 30, 35] }, { "id": 0, "name": "L.A.S.S.I", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 14000000, "time": 1058400, "resource": "Elixir", "building": "Pet House", "buildingLevel": 1 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [150, 160, 170, 180, 190, 200, 210, 220, 230, 240, 250, 260, 270, 280, 290], "upgrade": { "cost": [115000, 130000, 145000, 160000, 175000, 190000, 205000, 220000, 235000, 250000, 260000, 270000, 280000, 290000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 15] }, { "id": 1, "name": "Mighty Yak", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 17500000, "time": 1382400, "resource": "Elixir", "building": "Pet House", "buildingLevel": 3 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116], "upgrade": { "cost": [165000, 185000, 205000, 225000, 245000, 255000, 265000, 275000, 285000, 290000, 295000, 300000, 305000, 310000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 15] }, { "id": 2, "name": "Electro Owl", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 16500000, "time": 1231200, "resource": "Elixir", "building": "Pet House", "buildingLevel": 2 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [100, 105, 110, 115, 120, 125, 130, 135, 140, 145], "upgrade": { "cost": [135000, 150000, 165000, 180000, 195000, 210000, 225000, 240000, 255000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10] }, { "id": 3, "name": "Unicorn", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 18500000, "time": 1555200, "resource": "Elixir", "building": "Pet House", "buildingLevel": 4 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [210000, 220000, 230000, 240000, 250000, 260000, 270000, 280000, 290000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10] }, { "id": 4, "name": "Phoenix", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 20500000, "time": 1706400, "resource": "Elixir", "building": "Pet House", "buildingLevel": 8 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [178, 186, 194, 202, 210, 218, 226, 234, 242, 250], "upgrade": { "cost": [230000, 240000, 250000, 260000, 270000, 280000, 290000, 300000, 310000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10] }, { "id": 7, "name": "Poison Lizard", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 20250000, "time": 1684800, "resource": "Elixir", "building": "Pet House", "buildingLevel": 7 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [181, 192, 203, 214, 225, 236, 247, 258, 269, 280], "upgrade": { "cost": [225000, 235000, 245000, 255000, 265000, 275000, 285000, 295000, 305000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10] }, { "id": 8, "name": "Diggy", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 20000000, "time": 1663200, "resource": "Elixir", "building": "Pet House", "buildingLevel": 6 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [105, 110, 115, 120, 125, 130, 135, 140, 145, 150], "upgrade": { "cost": [220000, 230000, 240000, 250000, 260000, 270000, 280000, 290000, 300000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10] }, { "id": 9, "name": "Frosty", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 19750000, "time": 1641600, "resource": "Elixir", "building": "Pet House", "buildingLevel": 5 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [94, 98, 102, 106, 110, 114, 118, 122, 126, 130], "upgrade": { "cost": [215000, 225000, 235000, 245000, 255000, 265000, 275000, 285000, 295000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10] }], "RAW_SUPER_UNITS": [{ "name": "Super Barbarian", "id": 26, "original": "Barbarian", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 5 }, { "name": "Sneaky Goblin", "id": 55, "original": "Goblin", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 3 }, { "name": "Super Giant", "id": 29, "original": "Giant", "minOriginalLevel": 9, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 10 }, { "name": "Super Wall Breaker", "id": 28, "original": "Wall Breaker", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 8 }, { "name": "Super Archer", "id": 27, "original": "Archer", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 12 }, { "name": "Super Witch", "id": 66, "original": "Witch", "minOriginalLevel": 5, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 40 }, { "name": "Inferno Dragon", "id": 63, "original": "Baby Dragon", "minOriginalLevel": 6, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 15 }, { "name": "Super Valkyrie", "id": 64, "original": "Valkyrie", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 20 }, { "name": "Super Minion", "id": 84, "original": "Minion", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 12 }, { "name": "Super Wizard", "id": 83, "original": "Wizard", "minOriginalLevel": 9, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 10 }, { "name": "Ice Hound", "id": 76, "original": "Lava Hound", "minOriginalLevel": 5, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 40 }, { "name": "Rocket Balloon", "id": 57, "original": "Balloon", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 8 }, { "name": "Super Bowler", "id": 80, "original": "Bowler", "minOriginalLevel": 4, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 30 }, { "name": "Super Dragon", "id": 81, "original": "Dragon", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 40 }, { "name": "Super Miner", "id": 56, "original": "Miner", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 24 }, { "name": "Super Hog Rider", "id": 98, "original": "Hog Rider", "minOriginalLevel": 10, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 12 }] }
|
|
1
|
+
{ "RAW_UNITS": [{ "id": 0, "name": "Barbarian", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 5, "regenerationTimes": [], "dps": [8, 11, 14, 18, 23, 26, 30, 34, 38, 42, 45, 48], "upgrade": { "cost": [20000, 60000, 200000, 650000, 1400000, 2100000, 2800000, 5000000, 10000000, 16000000, 18000000], "time": [7200, 18000, 43200, 86400, 129600, 172800, 216000, 302400, 518400, 1036800, 1123200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 10, 11, 12] }, { "id": 1, "name": "Archer", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 500, "time": 60, "resource": "Elixir", "building": "Barracks", "buildingLevel": 2 }, "trainingTime": 6, "regenerationTimes": [], "dps": [7, 9, 12, 16, 20, 22, 25, 28, 31, 34, 37, 40], "upgrade": { "cost": [30000, 80000, 300000, 800000, 2000000, 2500000, 3200000, 5600000, 10200000, 16000000, 18000000], "time": [10800, 21600, 43200, 86400, 129600, 172800, 216000, 302400, 518400, 1036800, 1123200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9, 10, 11, 12] }, { "id": 2, "name": "Goblin", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 5000, "time": 3600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 4 }, "trainingTime": 7, "regenerationTimes": [], "dps": [11, 14, 19, 24, 32, 42, 52, 62, 72], "upgrade": { "cost": [45000, 175000, 500000, 1200000, 2000000, 3000000, 5600000, 16000000], "time": [18000, 32400, 43200, 86400, 129600, 259200, 518400, 1144800], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 1, 2, 2, 3, 3, 4, 5, 6, 7, 7, 8, 8, 8, 9, 9] }, { "id": 3, "name": "Giant", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 30, "regenerationTimes": [], "dps": [11, 14, 19, 24, 31, 43, 55, 62, 70, 78, 86, 94], "upgrade": { "cost": [40000, 150000, 500000, 1200000, 2000000, 3000000, 3500000, 5600000, 8000000, 16500000, 18500000], "time": [14400, 28800, 43200, 86400, 172800, 244800, 345600, 475200, 604800, 1080000, 1209600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11, 12] }, { "id": 4, "name": "Wall Breaker", "housingSpace": 2, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 20000, "time": 28800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 5 }, "trainingTime": 15, "regenerationTimes": [], "dps": [6, 10, 15, 20, 43, 55, 66, 75, 86, 94, 102, 110], "upgrade": { "cost": [100000, 250000, 600000, 1200000, 2500000, 4200000, 6500000, 8000000, 11000000, 16500000, 19000000], "time": [21600, 43200, 64800, 86400, 129600, 183600, 302400, 561600, 1036800, 1080000, 1209600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 1, 2, 2, 3, 4, 5, 5, 6, 7, 8, 9, 10, 11, 12] }, { "id": 5, "name": "Balloon", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 120000, "time": 43200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 6 }, "trainingTime": 30, "regenerationTimes": [], "dps": [25, 32, 48, 72, 108, 162, 198, 236, 256, 276, 290], "upgrade": { "cost": [125000, 400000, 720000, 1300000, 2750000, 4500000, 7000000, 8500000, 17000000, 20000000], "time": [28800, 43200, 64800, 86400, 302400, 345600, 453600, 777600, 1209600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 2, 2, 3, 4, 5, 6, 6, 7, 8, 9, 10, 10, 11] }, { "id": 6, "name": "Wizard", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 30, "regenerationTimes": [], "dps": [50, 70, 90, 125, 170, 185, 200, 215, 230, 245, 260, 275], "upgrade": { "cost": [120000, 320000, 620000, 1200000, 2200000, 3500000, 5000000, 5800000, 8500000, 17200000, 19200000], "time": [28800, 43200, 64800, 86400, 172800, 230400, 302400, 453600, 604800, 1080000, 1209600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11, 12] }, { "id": 7, "name": "Healer", "housingSpace": 14, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 6, "cost": 800000, "time": 86400, "resource": "Elixir", "building": "Barracks", "buildingLevel": 8 }, "trainingTime": 120, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [450000, 900000, 2700000, 4200000, 8000000, 16000000, 18000000, 21000000], "time": [43200, 86400, 172800, 345600, 561600, 1036800, 1144800, 1296000], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 1, 2, 3, 4, 4, 5, 5, 6, 7, 8, 9] }, { "id": 8, "name": "Dragon", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 1000000, "time": 129600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 9 }, "trainingTime": 180, "regenerationTimes": [], "dps": [140, 160, 180, 210, 240, 270, 310, 330, 350, 370, 390], "upgrade": { "cost": [1000000, 2000000, 3000000, 3800000, 4900000, 6300000, 8800000, 17500000, 19500000, 21500000], "time": [64800, 129600, 259200, 345600, 453600, 475200, 604800, 1036800, 1209600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] }, { "id": 9, "name": "P.E.K.K.A", "housingSpace": 25, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1400000, "time": 216000, "resource": "Elixir", "building": "Barracks", "buildingLevel": 10 }, "trainingTime": 180, "regenerationTimes": [], "dps": [260, 290, 320, 360, 410, 470, 540, 610, 680, 750, 810], "upgrade": { "cost": [1200000, 1800000, 2800000, 3200000, 4200000, 5200000, 7000000, 8500000, 18000000, 20500000], "time": [43200, 86400, 172800, 230400, 302400, 410400, 518400, 604800, 1123200, 1252800], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 3, 4, 6, 7, 8, 9, 9, 10, 11] }, { "id": 10, "name": "Minion", "housingSpace": 2, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 200000, "time": 28800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 1 }, "trainingTime": 18, "regenerationTimes": [], "dps": [38, 41, 44, 47, 50, 54, 58, 62, 66, 70, 74], "upgrade": { "cost": [2000, 5000, 10000, 20000, 30000, 63000, 95000, 150000, 210000, 310000], "time": [28800, 57600, 86400, 172800, 230400, 302400, 432000, 604800, 1036800, 1123200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 11] }, { "id": 11, "name": "Hog Rider", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 600000, "time": 86400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 2 }, "trainingTime": 45, "regenerationTimes": [], "dps": [60, 70, 80, 92, 105, 118, 135, 148, 161, 174, 187, 200], "upgrade": { "cost": [4000, 7000, 10000, 20000, 37000, 70000, 95000, 150000, 175000, 240000, 335000], "time": [36000, 72000, 108000, 172800, 230400, 302400, 453600, 604800, 604800, 1036800, 1144800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 9, 10, 11, 12, 12] }, { "id": 12, "name": "Valkyrie", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1000000, "time": 129600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 3 }, "trainingTime": 90, "regenerationTimes": [], "dps": [94, 106, 119, 133, 148, 163, 178, 193, 208, 223, 238], "upgrade": { "cost": [6000, 10000, 20000, 32000, 63000, 110000, 155000, 240000, 320000, 340000], "time": [86400, 172800, 259200, 345600, 367200, 453600, 604800, 1036800, 1144800, 1296000], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 10, 11] }, { "id": 13, "name": "Golem", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1600000, "time": 172800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 4 }, "trainingTime": 300, "regenerationTimes": [], "dps": [35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95], "upgrade": { "cost": [8000, 12000, 20000, 37000, 53000, 77000, 100000, 125000, 160000, 230000, 330000, 350000], "time": [108000, 216000, 259200, 324000, 367200, 432000, 475200, 561600, 604800, 1036800, 1144800, 1296000], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 7, 9, 10, 11, 12, 13] }, { "id": 15, "name": "Witch", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2200000, "time": 302400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 5 }, "trainingTime": 120, "regenerationTimes": [], "dps": [100, 110, 140, 160, 180, 200, 220], "upgrade": { "cost": [40000, 58000, 90000, 125000, 340000, 360000], "time": [345600, 410400, 583200, 648000, 1209600, 1382400], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 5, 5, 6, 7] }, { "id": 17, "name": "Lava Hound", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2900000, "time": 388800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 6 }, "trainingTime": 300, "regenerationTimes": [], "dps": [10, 12, 14, 16, 18, 20], "upgrade": { "cost": [28000, 43000, 85000, 120000, 160000], "time": [216000, 345600, 540000, 604800, 691200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 6, 6, 6] }, { "id": 22, "name": "Bowler", "housingSpace": 6, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 4000000, "time": 561600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 7 }, "trainingTime": 60, "regenerationTimes": [], "dps": [60, 70, 80, 90, 96, 102, 114], "upgrade": { "cost": [65000, 88000, 125000, 170000, 240000, 335000], "time": [259200, 302400, 432000, 604800, 1036800, 1144800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 7] }, { "id": 23, "name": "Baby Dragon", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2600000, "time": 345600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 11 }, "trainingTime": 90, "regenerationTimes": [], "dps": [75, 85, 95, 105, 115, 125, 135, 145, 155], "upgrade": { "cost": [2000000, 2500000, 3400000, 4200000, 5500000, 7200000, 16000000, 18000000], "time": [172800, 302400, 345600, 432000, 540000, 604800, 950400, 1123200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 6, 7, 8, 9, 9] }, { "id": 24, "name": "Miner", "housingSpace": 6, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 3700000, "time": 475200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 12 }, "trainingTime": 30, "regenerationTimes": [], "dps": [80, 88, 96, 104, 112, 120, 128, 136, 144, 152], "upgrade": { "cost": [2500000, 3200000, 3800000, 5000000, 5800000, 8000000, 16500000, 18500000, 20500000], "time": [172800, 259200, 345600, 367200, 604800, 691200, 950400, 1144800, 1296000], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 6, 7, 8, 9, 10] }, { "id": 26, "name": "Super Barbarian", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 25, "regenerationTimes": [], "dps": [180, 200, 220, 240, 260], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 8, "seasonal": false, "levels": [8, 8, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12] }, { "id": 27, "name": "Super Archer", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 500, "time": 60, "resource": "Elixir", "building": "Barracks", "buildingLevel": 2 }, "trainingTime": 72, "regenerationTimes": [], "dps": [120, 132, 144, 156, 162], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 8, "seasonal": false, "levels": [0, 8, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12] }, { "id": 28, "name": "Super Wall Breaker", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 20000, "time": 28800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 5 }, "trainingTime": 60, "regenerationTimes": [], "dps": [78, 100, 120, 130, 140, 150], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12] }, { "id": 29, "name": "Super Giant", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 60, "regenerationTimes": [], "dps": [130, 140, 150, 160], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 9, "seasonal": false, "levels": [0, 9, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12] }, { "id": 30, "name": "Ice Wizard", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 30, "regenerationTimes": [], "dps": [40, 56, 72, 100, 136, 148, 160, 172, 184, 196, 208, 220], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11, 12] }, { "id": 31, "name": "Raged Barbarian", "housingSpace": 4, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 1000, "time": 0, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 1 }, "trainingTime": "", "regenerationTimes": [], "dps": [45, 45, 58, 58, 70, 70, 83, 83, 93, 93, 103, 103, 112, 112, 120, 120, 128, 128, 136, 136], "upgrade": { "cost": [3500, 7000, 10000, 90000, 180000, 300000, 330000, 700000, 900000, 1000000, 1200000, 2000000, 2200000, 3000000, 3200000, 3800000, 4000000, 4600000, 5200000], "time": [300, 900, 18000, 36000, 54000, 72000, 86400, 129600, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 1, "seasonal": false, "levels": [2, 4, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 32, "name": "Sneaky Archer", "housingSpace": 3, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 4000, "time": 60, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 2 }, "trainingTime": "", "regenerationTimes": [], "dps": [60, 60, 66, 66, 72, 72, 79, 79, 86, 86, 95, 95, 104, 104, 112, 112, 119, 119, 125, 125], "upgrade": { "cost": [5000, 8000, 12000, 100000, 200000, 320000, 350000, 800000, 1000000, 1100000, 1300000, 2100000, 2300000, 3100000, 3300000, 3900000, 4100000, 4700000, 5300000], "time": [180, 600, 1800, 21600, 39600, 57600, 75600, 86400, 129600, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 4, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 33, "name": "Beta Minion", "housingSpace": 3, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 25000, "time": 1800, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 4 }, "trainingTime": "", "regenerationTimes": [], "dps": [60, 60, 65, 65, 72, 72, 81, 81, 90, 90, 99, 99, 108, 108, 117, 117, 126, 126], "upgrade": { "cost": [50000, 110000, 220000, 330000, 360000, 900000, 1100000, 1300000, 1500000, 2300000, 2500000, 3300000, 3500000, 4000000, 4200000, 4800000, 5400000], "time": [14400, 28800, 43200, 64800, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 3, "seasonal": false, "levels": [0, 0, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 34, "name": "Boxer Giant", "housingSpace": 18, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 3, "cost": 10000, "time": 600, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 3 }, "trainingTime": "", "regenerationTimes": [], "dps": [65, 65, 70, 70, 76, 76, 83, 83, 91, 91, 100, 100, 109, 109, 119, 119, 129, 129], "upgrade": { "cost": [60000, 120000, 240000, 350000, 380000, 1000000, 1200000, 1300000, 1500000, 2300000, 2500000, 3300000, 3500000, 4000000, 4200000, 4800000, 5400000], "time": [18000, 36000, 57600, 72000, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 3, "seasonal": false, "levels": [0, 0, 6, 8, 10, 12, 14, 16, 18, 20] }, { "id": 35, "name": "Bomber", "housingSpace": 12, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 100000, "time": 10800, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 5 }, "trainingTime": "", "regenerationTimes": [], "dps": [80, 80, 90, 90, 100, 100, 110, 110, 120, 120, 130, 130, 140, 140, 150, 150], "upgrade": { "cost": [320000, 340000, 360000, 900000, 1000000, 1200000, 1400000, 2200000, 2400000, 3200000, 3400000, 3900000, 4100000, 4700000, 5300000], "time": [57600, 72000, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 8, 10, 12, 14, 16, 18, 20] }, { "id": 36, "name": "Power P.E.K.K.A", "housingSpace": 22, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1500000, "time": 259200, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 10 }, "trainingTime": "", "regenerationTimes": [], "dps": [420, 420, 460, 460, 500, 500, 560, 560], "upgrade": { "cost": [3600000, 3800000, 4000000, 4600000, 4800000, 5600000, 5800000], "time": [388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 13, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 16, 18, 20] }, { "id": 37, "name": "Cannon Cart", "housingSpace": 16, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 300000, "time": 32400, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 7 }, "trainingTime": "", "regenerationTimes": [], "dps": [115, 115, 130, 130, 150, 150, 170, 170, 190, 190, 215, 215, 240, 240], "upgrade": { "cost": [1000000, 1100000, 1200000, 1400000, 1600000, 2400000, 2600000, 3400000, 3600000, 4100000, 4300000, 5300000, 5700000], "time": [86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 10, 12, 14, 16, 18, 20] }, { "id": 38, "name": "Drop Ship", "housingSpace": 15, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 1000000, "time": 172800, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 9 }, "trainingTime": "", "regenerationTimes": [], "dps": [10, 10, 10, 10, 10, 10, 10, 10, 10, 10], "upgrade": { "cost": [2400000, 2600000, 2800000, 3600000, 3800000, 4300000, 4500000, 5500000, 5700000], "time": [216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 11, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 14, 16, 18, 20] }, { "id": 41, "name": "Baby Dragon", "housingSpace": 12, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 150000, "time": 21600, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 6 }, "trainingTime": "", "regenerationTimes": [], "dps": [62, 62, 68, 68, 75, 75, 83, 83, 91, 91, 100, 100, 110, 110, 120, 120], "upgrade": { "cost": [360000, 380000, 400000, 1000000, 1200000, 1400000, 1600000, 2400000, 2600000, 3400000, 3600000, 4100000, 4300000, 5100000, 5500000], "time": [57600, 72000, 86400, 129600, 172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 8, 10, 12, 14, 16, 18, 20] }, { "id": 42, "name": "Night Witch", "housingSpace": 14, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 6, "cost": 500000, "time": 86400, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 8 }, "trainingTime": "", "regenerationTimes": [], "dps": [176, 176, 193, 193, 216, 216, 234, 234, 257, 257, 278, 278], "upgrade": { "cost": [1400000, 1600000, 1800000, 2500000, 2700000, 3500000, 3700000, 4200000, 4400000, 5200000, 5600000], "time": [172800, 172800, 216000, 302400, 388800, 475200, 475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 9, "seasonal": false, "levels": [0, 0, 0, 0, 0, 12, 14, 16, 18, 20] }, { "id": 45, "name": "Battle Ram", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 30, "regenerationTimes": [], "dps": [6000], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] }, { "id": 47, "name": "Royal Ghost", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 37, "regenerationTimes": [], "dps": [200, 280, 360, 440, 520, 600, 680], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 1, 2, 2, 3, 4, 5, 6, 7, 7, 7, 7, 7] }, { "id": 48, "name": "Pumpkin Barbarian", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 5, "regenerationTimes": [], "dps": [8, 11, 14, 18, 23, 26, 30], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7] }, { "id": 50, "name": "Giant Skeleton", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 2500, "time": 600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 3 }, "trainingTime": 30, "regenerationTimes": [], "dps": [22, 28, 38, 48, 62, 86, 100, 114, 128, 142, 156], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 1, 1, 2, 2, 3, 4, 5, 6, 7, 8, 9, 9, 10, 11, 11] }, { "id": 51, "name": "Wall Wrecker", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 12, "cost": 3000000, "time": 345600, "resource": "Elixir", "building": "Workshop", "buildingLevel": 1 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [250, 300, 350, 400, 450], "upgrade": { "cost": [3800000, 5000000, 8500000, 15000000], "time": [345600, 432000, 691200, 1123200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 5, 5] }, { "id": 52, "name": "Battle Blimp", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 12, "cost": 5000000, "time": 432000, "resource": "Elixir", "building": "Workshop", "buildingLevel": 2 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [100, 140, 180, 220], "upgrade": { "cost": [3800000, 5000000, 8500000], "time": [345600, 432000, 691200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 4, 4] }, { "id": 53, "name": "Yeti", "housingSpace": 18, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 12, "cost": 8000000, "time": 777600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 14 }, "trainingTime": 180, "regenerationTimes": [], "dps": [230, 250, 270, 290, 310], "upgrade": { "cost": [7000000, 9000000, 17100000, 19000000], "time": [518400, 604800, 1036800, 1188000], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 5] }, { "id": 55, "name": "Sneaky Goblin", "housingSpace": 3, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 2, "cost": 5000, "time": 3600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 4 }, "trainingTime": 21, "regenerationTimes": [], "dps": [155, 170, 180], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9] }, { "id": 56, "name": "Super Miner", "housingSpace": 24, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 3700000, "time": 475200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 12 }, "trainingTime": 120, "regenerationTimes": [], "dps": [170, 185, 200, 215], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 10, 10, 10] }, { "id": 57, "name": "Rocket Balloon", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 120000, "time": 43200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 6 }, "trainingTime": 48, "regenerationTimes": [], "dps": [236, 256, 276, 290], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 8, "seasonal": false, "levels": [0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 58, "name": "Ice Golem", "housingSpace": 15, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 11, "cost": 7500000, "time": 691200, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 8 }, "trainingTime": 150, "regenerationTimes": [], "dps": [24, 28, 32, 36, 40, 44, 48], "upgrade": { "cost": [55000, 85000, 100000, 125000, 240000, 335000], "time": [244800, 345600, 432000, 561600, 950400, 1144800], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 6, 7, 7] }, { "id": 59, "name": "Electro Dragon", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 11, "cost": 6500000, "time": 648000, "resource": "Elixir", "building": "Barracks", "buildingLevel": 13 }, "trainingTime": 360, "regenerationTimes": [], "dps": [240, 270, 300, 330, 360, 390, 420], "upgrade": { "cost": [6300000, 7000000, 9600000, 18000000, 20000000, 22000000], "time": [432000, 475200, 777600, 1036800, 1209600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7] }, { "id": 61, "name": "Skeleton Barrel", "housingSpace": 5, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 4, "cost": 120000, "time": 43200, "resource": "Elixir", "building": "Barracks", "buildingLevel": 6 }, "trainingTime": 30, "regenerationTimes": [], "dps": [75, 96, 144, 216, 324, 486, 594, 708, 768], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 2, 2, 3, 4, 5, 6, 6, 7, 8, 9, 9, 9, 9] }, { "id": 62, "name": "Stone Slammer", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 12, "cost": 7000000, "time": 604800, "resource": "Elixir", "building": "Workshop", "buildingLevel": 3 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [400, 500, 600, 700, 750], "upgrade": { "cost": [3800000, 5000000, 8500000, 15000000], "time": [345600, 432000, 691200, 1123200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 4, 5, 5] }, { "id": 63, "name": "Inferno Dragon", "housingSpace": 15, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2600000, "time": 345600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 11 }, "trainingTime": 135, "regenerationTimes": [], "dps": [75, 79, 83, 85], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 6, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9] }, { "id": 64, "name": "Super Valkyrie", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 8, "cost": 1000000, "time": 129600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 3 }, "trainingTime": 225, "regenerationTimes": [], "dps": [250, 300, 325, 350, 375], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 65, "name": "Dragon Rider", "housingSpace": 25, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 13, "cost": 10000000, "time": 820800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 15 }, "trainingTime": 250, "regenerationTimes": [], "dps": [340, 370, 400, 430], "upgrade": { "cost": [9600000, 16500000, 21500000], "time": [777600, 1209600, 1382400], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 4] }, { "id": 66, "name": "Super Witch", "housingSpace": 40, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2200000, "time": 302400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 5 }, "trainingTime": 400, "regenerationTimes": [], "dps": [360, 390, 420], "upgrade": { "cost": [75000], "time": [518400], "resource": "Dark Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7, 7] }, { "id": 67, "name": "El Primo", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 60, "regenerationTimes": [], "dps": [120], "upgrade": { "cost": [120000], "time": [734400], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] }, { "id": 70, "name": "Hog Glider", "housingSpace": 12, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2000000, "time": 345600, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 11 }, "trainingTime": "", "regenerationTimes": [], "dps": [900, 1100, 1100, 1100, 1100, 1300], "upgrade": { "cost": [4000000, 4200000, 4400000, 5400000, 5800000], "time": [475200, 518400, 518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 15, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 18, 20] }, { "id": 72, "name": "Party Wizard", "housingSpace": 4, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 30, "regenerationTimes": [], "dps": [75, 105, 135, 188, 255, 278, 300, 322, 345, 367, 390], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 11, 11] }, { "id": 75, "name": "Siege Barracks", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 13, "cost": 9000000, "time": 864000, "resource": "Elixir", "building": "Workshop", "buildingLevel": 4 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [5000000, 7000000, 8500000], "time": [432000, 648000, 691200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4] }, { "id": 76, "name": "Ice Hound", "housingSpace": 40, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 9, "cost": 2900000, "time": 388800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 6 }, "trainingTime": 400, "regenerationTimes": [], "dps": [10, 15], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 5, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6] }, { "id": 80, "name": "Super Bowler", "housingSpace": 30, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 4000000, "time": 561600, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 7 }, "trainingTime": 300, "regenerationTimes": [], "dps": [170, 185, 200, 215], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 4, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 7, 7, 7] }, { "id": 81, "name": "Super Dragon", "housingSpace": 40, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 1000000, "time": 129600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 9 }, "trainingTime": 360, "regenerationTimes": [], "dps": [80, 85, 90, 95, 99], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 7, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 82, "name": "Headhunter", "housingSpace": 6, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 12, "cost": 9000000, "time": 864000, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 9 }, "trainingTime": 60, "regenerationTimes": [], "dps": [105, 115, 125], "upgrade": { "cost": [115000, 145000], "time": [777600, 864000], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3] }, { "id": 83, "name": "Super Wizard", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 5, "cost": 270000, "time": 64800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 7 }, "trainingTime": 75, "regenerationTimes": [], "dps": [220, 240, 260, 275], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 9, "seasonal": false, "levels": [0, 0, 0, 0, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12] }, { "id": 84, "name": "Super Minion", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 200000, "time": 28800, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 1 }, "trainingTime": 108, "regenerationTimes": [], "dps": [300, 325, 350, 360], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 8, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 87, "name": "Log Launcher", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 13, "cost": 10000000, "time": 950400, "resource": "Elixir", "building": "Workshop", "buildingLevel": 5 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [140, 160, 180, 200], "upgrade": { "cost": [4800000, 6500000, 8500000], "time": [432000, 648000, 691200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4] }, { "id": 91, "name": "Flame Flinger", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 14, "cost": 14000000, "time": 1123200, "resource": "Elixir", "building": "Workshop", "buildingLevel": 6 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [45, 50, 55, 60], "upgrade": { "cost": [7600000, 10500000, 13300000], "time": [648000, 1036800, 1080000], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4] }, { "id": 92, "name": "Battle Drill", "housingSpace": 1, "village": "home", "category": "troop", "subCategory": "siege", "unlock": { "hall": 15, "cost": 19000000, "time": 1166400, "resource": "Elixir", "building": "Workshop", "buildingLevel": 7 }, "trainingTime": 1200, "regenerationTimes": [], "dps": [430, 470, 510, 550], "upgrade": { "cost": [8000000, 11000000, 14000000], "time": [864000, 1036800, 1080000], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4] }, { "id": 94, "name": "Ram Rider", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 60, "regenerationTimes": [], "dps": [60, 100, 125, 150, 175, 200, 225, 250, 275, 300, 325], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 95, "name": "Electro Titan", "housingSpace": 32, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 14, "cost": 12000000, "time": 1036800, "resource": "Elixir", "building": "Barracks", "buildingLevel": 16 }, "trainingTime": 360, "regenerationTimes": [], "dps": [180, 200, 220], "upgrade": { "cost": [19500000, 20500000], "time": [1123200, 1209600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3] }, { "id": 97, "name": "Apprentice Warden", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 13, "cost": 13000000, "time": 1123200, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 10 }, "trainingTime": 240, "regenerationTimes": [], "dps": [170, 185, 200, 215], "upgrade": { "cost": [180000, 300000, 340000], "time": [777600, 1036800, 1209600], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 4] }, { "id": 98, "name": "Super Hog Rider", "housingSpace": 12, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 7, "cost": 600000, "time": 86400, "resource": "Elixir", "building": "Dark Barracks", "buildingLevel": 2 }, "trainingTime": 108, "regenerationTimes": [], "dps": [190, 210, 230], "upgrade": { "cost": [], "time": [], "resource": "Dark Elixir" }, "minLevel": 10, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12] }, { "id": 101, "name": "Barcher", "housingSpace": 3, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 12, "regenerationTimes": [], "dps": [40, 43, 47, 50, 54, 59, 63, 68, 72, 76], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10] }, { "id": 102, "name": "Witch Golem", "housingSpace": 41, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 300, "regenerationTimes": [], "dps": [130, 143, 156, 169, 182, 195, 208, 221, 234, 247], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10] }, { "id": 103, "name": "Hog Wizard", "housingSpace": 7, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 66, "regenerationTimes": [], "dps": [57, 85, 113, 141, 169, 197, 225, 253, 281, 309], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10] }, { "id": 104, "name": "Lavaloon", "housingSpace": 23, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 90, "regenerationTimes": [], "dps": [50, 70, 90, 110, 130, 150, 170, 190, 210, 230], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10] }, { "id": 106, "name": "Electrofire Wizard", "housingSpace": 14, "village": "builderBase", "category": "troop", "subCategory": "troop", "unlock": { "hall": 10, "cost": 3000000, "time": 432000, "resource": "Builder Elixir", "building": "Builder Barracks", "buildingLevel": 12 }, "trainingTime": "", "regenerationTimes": [], "dps": [220, 220, 253, 253], "upgrade": { "cost": [4400000, 5400000, 5800000], "time": [518400, 561600, 561600], "resource": "Builder Elixir" }, "minLevel": 17, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 20] }, { "id": 110, "name": "Root Rider", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 15, "cost": 16000000, "time": 1209600, "resource": "Elixir", "building": "Barracks", "buildingLevel": 17 }, "trainingTime": 220, "regenerationTimes": [], "dps": [210, 230, 250], "upgrade": { "cost": [19000000, 22000000], "time": [1036800, 1209600], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3] }, { "id": 118, "name": "C.O.O.K.I.E", "housingSpace": 10, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 60, "regenerationTimes": [], "dps": [8200, 8400, 8600, 8800, 9000, 9200, 9400, 9600, 9800, 10000, 10200], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 119, "name": "Firecracker", "housingSpace": 8, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 60, "regenerationTimes": [], "dps": [50, 65, 80, 95, 110, 125, 140, 155, 170, 185, 200], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 120, "name": "Water Dragon", "housingSpace": 50, "village": "home", "category": "troop", "subCategory": "troop", "unlock": { "hall": 1, "cost": 100, "time": 10, "resource": "Elixir", "building": "Barracks", "buildingLevel": 1 }, "trainingTime": 360, "regenerationTimes": [], "dps": [115, 135, 155, 175, 195, 215, 235, 255, 275, 295, 315], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": 1, "seasonal": true, "levels": [1, 1, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 0, "name": "Lightning Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 5, "cost": 150000, "time": 28800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 1 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [50000, 100000, 200000, 600000, 1500000, 2500000, 4200000, 6300000, 16000000, 18500000], "time": [14400, 28800, 43200, 86400, 259200, 345600, 518400, 604800, 1080000, 1209600], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 4, 4, 4, 5, 6, 7, 8, 9, 9, 9, 10, 11] }, { "id": 1, "name": "Healing Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 6, "cost": 300000, "time": 86400, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 2 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [75000, 150000, 300000, 900000, 1800000, 3000000, 8500000, 17000000, 19000000], "time": [18000, 36000, 72000, 129600, 259200, 345600, 518400, 1144800, 1296000], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 3, 4, 5, 6, 7, 7, 7, 8, 8, 9, 10] }, { "id": 2, "name": "Rage Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 7, "cost": 600000, "time": 172800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 3 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [400000, 800000, 1600000, 2400000, 7000000], "time": [43200, 86400, 172800, 345600, 518400], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 4, 5, 5, 5, 5, 6, 6, 6, 6, 6] }, { "id": 3, "name": "Jump Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 1200000, "time": 302400, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 4 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [2000000, 3400000, 7200000, 16500000], "time": [259200, 345600, 518400, 1123200], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5] }, { "id": 5, "name": "Freeze Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 1200000, "time": 302400, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 4 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [1200000, 1700000, 3000000, 4200000, 6000000, 7000000], "time": [129600, 223200, 280800, 345600, 518400, 604800], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 6, 7, 7, 7, 7, 7] }, { "id": 4, "name": "Santa's Surprise", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 5, "cost": 150000, "time": 28800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 1 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": null, "seasonal": true, "levels": [0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 9, "name": "Poison Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 8, "cost": 130000, "time": 21600, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 1 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [10000, 20000, 43000, 70000, 110000, 155000, 230000, 320000, 350000], "time": [28800, 86400, 223200, 345600, 540000, 604800, 864000, 1144800, 1296000], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10] }, { "id": 10, "name": "Earthquake Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 8, "cost": 260000, "time": 64800, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 2 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [12000, 24000, 51000, 84000], "time": [64800, 129600, 367200, 669600], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5, 5, 5, 5, 5, 5] }, { "id": 11, "name": "Haste Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 600000, "time": 172800, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 3 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [16000, 34000, 60000, 77000], "time": [129600, 223200, 432000, 669600], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 5, 5, 5, 5, 5] }, { "id": 16, "name": "Clone Spell", "housingSpace": 3, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 10, "cost": 2000000, "time": 367200, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 5 }, "trainingTime": 540, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [2100000, 3400000, 4200000, 5600000, 7200000, 15500000, 18000000], "time": [151200, 259200, 302400, 345600, 604800, 777600, 1144800], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 6, 7, 8, 8] }, { "id": 17, "name": "Skeleton Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 9, "cost": 1200000, "time": 345600, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 4 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [22000, 34000, 50000, 80000, 100000, 150000, 320000], "time": [115200, 223200, 345600, 367200, 475200, 604800, 1144800], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 6, 7, 7, 8, 8] }, { "id": 22, "name": "Birthday Boom", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 5, "cost": 150000, "time": 28800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 1 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "seasonal": true, "levels": [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] }, { "id": 28, "name": "Bat Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 10, "cost": 2500000, "time": 518400, "resource": "Elixir", "building": "Dark Spell Factory", "buildingLevel": 5 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [26000, 51000, 70000, 95000, 330000], "time": [151200, 302400, 453600, 518400, 1166400], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 5, 5, 6, 6] }, { "id": 35, "name": "Invisibility Spell", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 11, "cost": 3500000, "time": 432000, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 6 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [5600000, 7500000, 9000000], "time": [475200, 518400, 820800], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 4, 4, 4] }, { "id": 53, "name": "Recall Spell", "housingSpace": 2, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 13, "cost": 9000000, "time": 691200, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 7 }, "trainingTime": 360, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [7500000, 14000000, 17500000, 19500000], "time": [820800, 993600, 1144800, 1296000], "resource": "Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 4, 5] }, { "id": 73, "name": "Bag of Frostmites", "housingSpace": 1, "village": "home", "category": "spell", "subCategory": "spell", "unlock": { "hall": 5, "cost": 150000, "time": 28800, "resource": "Elixir", "building": "Spell Factory", "buildingLevel": 1 }, "trainingTime": 180, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [], "time": [], "resource": "Elixir" }, "minLevel": null, "seasonal": true, "levels": [0, 0, 0, 0, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11] }, { "id": 0, "name": "Barbarian King", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 7, "cost": 5000, "time": 0, "resource": "Dark Elixir", "building": "Barbarian King", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [600, 600, 600, 600, 720, 720, 720, 720, 720, 840, 840, 840, 840, 840, 960, 960, 960, 960, 960, 1080, 1080, 1080, 1080, 1080, 1200, 1200, 1200, 1200, 1200, 1320, 1320, 1320, 1320, 1320, 1440, 1440, 1440, 1440, 1440, 1560, 1560, 1560, 1560, 1560, 1680, 1680, 1680, 1680, 1680, 1800, 1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760, 2760, 2760, 2760, 2760, 2880], "dps": [102, 104, 105, 108, 110, 112, 115, 116, 119, 122, 124, 127, 129, 132, 134, 137, 139, 143, 145, 148, 151, 154, 157, 161, 164, 167, 170, 173, 177, 181, 184, 188, 192, 196, 200, 203, 207, 212, 216, 220, 234, 239, 244, 249, 254, 259, 265, 270, 276, 282, 288, 294, 300, 307, 314, 320, 327, 334, 341, 349, 355, 362, 370, 377, 385, 393, 400, 408, 417, 425, 434, 442, 451, 459, 468, 475, 483, 490, 498, 506, 513, 519, 526, 533, 540, 547, 553, 560, 567, 574, 581, 587, 594, 601, 608], "upgrade": { "cost": [5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000, 14000, 15000, 16000, 17000, 18500, 20000, 21500, 23000, 24500, 26000, 28000, 29000, 31000, 32000, 34000, 35000, 37000, 38000, 40000, 41000, 43000, 44000, 46000, 47000, 49000, 50000, 52000, 53000, 55000, 56000, 60000, 64000, 68000, 72000, 76000, 80000, 84000, 88000, 92000, 96000, 100000, 105000, 110000, 115000, 120000, 125000, 130000, 135000, 140000, 145000, 150000, 155000, 160000, 165000, 170000, 175000, 180000, 185000, 190000, 195000, 200000, 205000, 210000, 215000, 220000, 225000, 230000, 235000, 240000, 245000, 250000, 255000, 260000, 265000, 270000, 275000, 278000, 280000, 282000, 285000, 290000, 300000, 310000, 320000, 330000], "time": [14400, 21600, 28800, 36000, 43200, 50400, 57600, 64800, 72000, 79200, 86400, 86400, 86400, 86400, 86400, 129600, 129600, 129600, 172800, 172800, 172800, 172800, 172800, 216000, 216000, 216000, 216000, 216000, 259200, 259200, 259200, 259200, 259200, 302400, 302400, 302400, 302400, 302400, 345600, 345600, 345600, 345600, 345600, 432000, 432000, 432000, 432000, 432000, 432000, 475200, 475200, 475200, 475200, 475200, 496800, 496800, 496800, 496800, 496800, 518400, 518400, 518400, 518400, 518400, 561600, 561600, 561600, 561600, 561600, 604800, 604800, 604800, 604800, 604800, 648000, 648000, 648000, 648000, 648000, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 10, 20, 30, 40, 50, 65, 75, 80, 90, 95] }, { "id": 1, "name": "Archer Queen", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 9, "cost": 10000, "time": 0, "resource": "Dark Elixir", "building": "Archer Queen", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [600, 600, 600, 600, 720, 720, 720, 720, 720, 840, 840, 840, 840, 840, 960, 960, 960, 960, 960, 1080, 1080, 1080, 1080, 1080, 1200, 1200, 1200, 1200, 1200, 1320, 1320, 1320, 1320, 1320, 1440, 1440, 1440, 1440, 1440, 1560, 1560, 1560, 1560, 1560, 1680, 1680, 1680, 1680, 1680, 1800, 1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760, 2760, 2760, 2760, 2760, 2880], "dps": [136, 139, 143, 146, 150, 154, 157, 162, 165, 169, 173, 178, 183, 187, 192, 196, 201, 207, 212, 217, 223, 228, 234, 240, 246, 252, 258, 264, 271, 278, 285, 292, 299, 307, 315, 322, 331, 338, 347, 356, 365, 374, 383, 393, 403, 413, 423, 434, 445, 456, 465, 474, 485, 495, 505, 515, 526, 537, 548, 559, 570, 581, 593, 605, 617, 628, 638, 648, 656, 664, 671, 677, 682, 687, 692, 697, 701, 706, 710, 714, 717, 721, 724, 728, 731, 734, 738, 741, 745, 748, 751, 755, 758, 762, 765], "upgrade": { "cost": [10000, 11000, 12000, 13000, 14000, 15000, 16000, 17000, 18000, 19000, 20000, 21000, 22000, 23000, 24000, 25000, 27000, 28000, 30000, 31000, 33000, 34000, 36000, 37000, 39000, 40000, 42000, 43000, 45000, 47000, 49000, 51000, 53000, 55000, 57000, 59000, 61000, 63000, 65000, 68000, 72000, 75000, 79000, 82000, 86000, 89000, 93000, 98000, 103000, 108000, 113000, 118000, 123000, 128000, 133000, 138000, 143000, 148000, 153000, 158000, 163000, 168000, 173000, 178000, 183000, 188000, 193000, 198000, 203000, 208000, 214000, 221000, 229000, 234000, 239000, 244000, 249000, 254000, 259000, 264000, 268000, 272000, 276000, 280000, 282000, 284000, 286000, 288000, 290000, 300000, 310000, 320000, 330000, 340000], "time": [14400, 21600, 28800, 36000, 43200, 50400, 57600, 64800, 72000, 79200, 86400, 86400, 86400, 86400, 86400, 129600, 129600, 129600, 172800, 172800, 172800, 172800, 172800, 216000, 216000, 216000, 216000, 216000, 259200, 259200, 259200, 259200, 259200, 302400, 302400, 302400, 302400, 302400, 345600, 345600, 345600, 345600, 345600, 432000, 432000, 432000, 432000, 432000, 432000, 475200, 475200, 475200, 475200, 475200, 496800, 496800, 496800, 496800, 496800, 518400, 518400, 518400, 518400, 518400, 561600, 561600, 561600, 561600, 561600, 604800, 604800, 604800, 604800, 604800, 648000, 648000, 648000, 648000, 648000, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 30, 40, 50, 65, 75, 80, 90, 95] }, { "id": 2, "name": "Grand Warden", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 11, "cost": 1000000, "time": 0, "resource": "Elixir", "building": "Grand Warden", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [1200, 1200, 1200, 1200, 1320, 1320, 1320, 1320, 1320, 1440, 1440, 1440, 1440, 1440, 1560, 1560, 1560, 1560, 1560, 1680, 1680, 1680, 1680, 1680, 1800, 1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760, 2760, 2760, 2760, 2760, 2820], "dps": [43, 44, 46, 48, 49, 51, 54, 56, 59, 61, 64, 66, 70, 73, 77, 80, 83, 87, 90, 94, 98, 102, 106, 111, 116, 121, 126, 131, 137, 143, 149, 155, 162, 168, 175, 183, 190, 198, 207, 215, 221, 226, 230, 234, 237, 241, 244, 247, 251, 254, 258, 261, 264, 268, 271, 274, 276, 279, 281, 284, 286, 289, 292, 294, 297, 299, 302, 304, 307, 309], "upgrade": { "cost": [1000000, 1100000, 1200000, 1400000, 1500000, 1700000, 1800000, 2000000, 2300000, 2700000, 3000000, 3400000, 3700000, 4100000, 4400000, 4800000, 5100000, 5500000, 6000000, 6500000, 6600000, 6700000, 6800000, 6900000, 7000000, 7100000, 7200000, 7300000, 7400000, 7500000, 7600000, 7700000, 7800000, 7900000, 8000000, 8100000, 8200000, 8300000, 8400000, 8500000, 8800000, 9100000, 9400000, 9700000, 10000000, 10300000, 10600000, 11000000, 11500000, 12000000, 12500000, 13000000, 13500000, 14000000, 14500000, 15000000, 15500000, 16000000, 16200000, 16700000, 16900000, 17100000, 17300000, 17500000, 18000000, 18500000, 19000000, 19500000, 20000000], "time": [7200, 14400, 28800, 43200, 57600, 79200, 86400, 86400, 129600, 129600, 172800, 172800, 172800, 172800, 237600, 237600, 237600, 237600, 237600, 259200, 259200, 259200, 259200, 259200, 345600, 345600, 345600, 345600, 345600, 432000, 432000, 432000, 432000, 432000, 518400, 518400, 518400, 518400, 518400, 540000, 540000, 540000, 540000, 540000, 583200, 583200, 583200, 583200, 583200, 626400, 626400, 626400, 626400, 626400, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 40, 50, 55, 65, 70] }, { "id": 3, "name": "Battle Machine", "housingSpace": 25, "village": "builderBase", "category": "hero", "subCategory": "hero", "unlock": { "hall": 5, "cost": 900000, "time": 43200, "resource": "Builder Elixir", "building": "Battle Machine", "buildingLevel": 1 }, "resourceType": "Builder Elixir", "trainingTime": 0, "regenerationTimes": [0], "dps": [125, 127, 130, 132, 135, 137, 140, 142, 145, 147, 150, 154, 157, 160, 164, 167, 170, 174, 177, 180, 186, 192, 198, 204, 210, 218, 226, 234, 242, 250, 258, 266, 274, 282, 290], "upgrade": { "cost": [1000000, 1100000, 1200000, 1300000, 1500000, 1600000, 1700000, 1800000, 1900000, 2100000, 2200000, 2300000, 2400000, 2500000, 2600000, 2700000, 2800000, 2900000, 3000000, 3100000, 3200000, 3300000, 3400000, 3500000, 3600000, 3700000, 3800000, 3900000, 4000000, 4100000, 4200000, 4300000, 4400000, 4500000], "time": [43200, 43200, 86400, 86400, 129600, 129600, 172800, 172800, 216000, 216000, 259200, 259200, 302400, 302400, 345600, 345600, 345600, 345600, 345600, 432000, 432000, 432000, 432000, 432000, 518400, 518400, 518400, 518400, 518400, 604800, 604800, 604800, 604800, 604800], "resource": "Builder Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 5, 10, 20, 25, 30, 35] }, { "id": 4, "name": "Royal Champion", "housingSpace": 25, "village": "home", "category": "hero", "subCategory": "hero", "unlock": { "hall": 13, "cost": 50000, "time": 0, "resource": "Dark Elixir", "building": "Royal Champion", "buildingLevel": 1 }, "resourceType": "Elixir", "trainingTime": 0, "regenerationTimes": [1800, 1800, 1800, 1800, 1920, 1920, 1920, 1920, 1920, 2040, 2040, 2040, 2040, 2040, 2160, 2160, 2160, 2160, 2160, 2280, 2280, 2280, 2280, 2280, 2400, 2400, 2400, 2400, 2400, 2520, 2520, 2520, 2520, 2520, 2640, 2640, 2640, 2640, 2640, 2760, 2760, 2760, 2760, 2760, 2880], "dps": [340, 350, 360, 370, 375, 380, 385, 390, 396, 402, 408, 414, 420, 426, 432, 438, 444, 448, 452, 456, 460, 465, 470, 474, 477, 480, 483, 486, 489, 492, 495, 498, 502, 506, 510, 514, 518, 522, 526, 530, 533, 536, 539, 542, 545], "upgrade": { "cost": [70000, 75000, 80000, 90000, 100000, 110000, 120000, 130000, 140000, 150000, 160000, 165000, 170000, 175000, 180000, 185000, 190000, 195000, 200000, 205000, 210000, 215000, 220000, 225000, 230000, 235000, 240000, 245000, 250000, 260000, 265000, 270000, 275000, 280000, 285000, 290000, 295000, 300000, 305000, 315000, 325000, 335000, 345000, 355000], "time": [28800, 43200, 57600, 72000, 158400, 237600, 280800, 324000, 367200, 388800, 432000, 432000, 432000, 475200, 475200, 475200, 518400, 518400, 518400, 561600, 561600, 561600, 561600, 561600, 626400, 626400, 626400, 626400, 626400, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": 1, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 30, 40, 45] }, { "id": 5, "name": "Battle Copter", "housingSpace": 25, "village": "builderBase", "category": "hero", "subCategory": "hero", "unlock": { "hall": 8, "cost": 2500000, "time": 0, "resource": "Builder Elixir", "building": "Battle Copter", "buildingLevel": 1 }, "resourceType": "Builder Elixir", "trainingTime": 0, "regenerationTimes": [0], "dps": [112, 116, 119, 123, 126, 130, 134, 137, 141, 144, 148, 153, 157, 162, 166, 171, 175, 180, 184, 189, 193], "upgrade": { "cost": [2600000, 2700000, 2800000, 2900000, 3000000, 3100000, 3200000, 3300000, 3400000, 3500000, 3600000, 3700000, 3800000, 3900000, 4000000, 4100000, 4200000, 4300000, 4400000, 4500000], "time": [432000, 432000, 432000, 432000, 432000, 432000, 432000, 432000, 432000, 432000, 518400, 518400, 518400, 518400, 518400, 604800, 604800, 604800, 604800, 604800], "resource": "Builder Elixir" }, "minLevel": 15, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 25, 30, 35] }, { "id": 0, "name": "L.A.S.S.I", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 10000000, "time": 1036800, "resource": "Elixir", "building": "Pet House", "buildingLevel": 1 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [150, 160, 170, 180, 190, 200, 210, 220, 230, 240, 250, 260, 270, 280, 290], "upgrade": { "cost": [100000, 110000, 125000, 135000, 150000, 160000, 175000, 185000, 200000, 215000, 230000, 245000, 260000, 275000], "time": [259200, 345600, 388800, 432000, 475200, 518400, 561600, 604800, 648000, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 15, 15] }, { "id": 1, "name": "Mighty Yak", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 14000000, "time": 1101600, "resource": "Elixir", "building": "Pet House", "buildingLevel": 3 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116], "upgrade": { "cost": [140000, 155000, 175000, 190000, 210000, 215000, 225000, 230000, 240000, 250000, 260000, 270000, 280000, 290000], "time": [259200, 345600, 388800, 432000, 475200, 518400, 561600, 604800, 648000, 691200, 691200, 691200, 691200, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 15, 15] }, { "id": 2, "name": "Electro Owl", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 12000000, "time": 1080000, "resource": "Elixir", "building": "Pet House", "buildingLevel": 2 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [100, 105, 110, 115, 120, 125, 130, 135, 140, 145], "upgrade": { "cost": [115000, 130000, 140000, 155000, 165000, 180000, 190000, 205000, 215000], "time": [259200, 345600, 388800, 432000, 475200, 518400, 561600, 604800, 648000], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10] }, { "id": 3, "name": "Unicorn", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 14, "cost": 16000000, "time": 1123200, "resource": "Elixir", "building": "Pet House", "buildingLevel": 4 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [], "upgrade": { "cost": [180000, 190000, 200000, 210000, 220000, 230000, 240000, 250000, 260000], "time": [259200, 345600, 388800, 432000, 475200, 518400, 561600, 604800, 648000], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10] }, { "id": 4, "name": "Phoenix", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 20500000, "time": 1209600, "resource": "Elixir", "building": "Pet House", "buildingLevel": 8 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [178, 186, 194, 202, 210, 218, 226, 234, 242, 250], "upgrade": { "cost": [195000, 205000, 210000, 220000, 225000, 235000, 240000, 250000, 255000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10] }, { "id": 7, "name": "Poison Lizard", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 20250000, "time": 1188000, "resource": "Elixir", "building": "Pet House", "buildingLevel": 7 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [181, 192, 203, 214, 225, 236, 247, 258, 269, 280], "upgrade": { "cost": [190000, 195000, 200000, 210000, 215000, 225000, 230000, 240000, 245000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10] }, { "id": 8, "name": "Diggy", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 20000000, "time": 1166400, "resource": "Elixir", "building": "Pet House", "buildingLevel": 6 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [105, 110, 115, 120, 125, 130, 135, 140, 145, 150], "upgrade": { "cost": [185000, 195000, 200000, 210000, 215000, 225000, 230000, 240000, 245000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10] }, { "id": 9, "name": "Frosty", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 15, "cost": 19750000, "time": 1144800, "resource": "Elixir", "building": "Pet House", "buildingLevel": 5 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [94, 98, 102, 106, 110, 114, 118, 122, 126, 130], "upgrade": { "cost": [185000, 190000, 200000, 210000, 215000, 225000, 235000, 240000, 250000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10] }, { "id": 10, "name": "Spirit Fox", "housingSpace": 20, "village": "home", "category": "troop", "subCategory": "pet", "unlock": { "hall": 16, "cost": 21000000, "time": 1296000, "resource": "Elixir", "building": "Pet House", "buildingLevel": 9 }, "resourceType": "Dark Elixir", "trainingTime": 0, "regenerationTimes": [], "dps": [108, 116, 124, 132, 140, 148, 156, 164, 172, 180], "upgrade": { "cost": [225000, 235000, 245000, 255000, 265000, 275000, 285000, 295000, 315000], "time": [259200, 345600, 432000, 475200, 518400, 561600, 604800, 648000, 691200], "resource": "Dark Elixir" }, "minLevel": null, "seasonal": false, "levels": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10] }], "RAW_SUPER_UNITS": [{ "name": "Super Barbarian", "id": 26, "original": "Barbarian", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 5 }, { "name": "Sneaky Goblin", "id": 55, "original": "Goblin", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 3 }, { "name": "Super Giant", "id": 29, "original": "Giant", "minOriginalLevel": 9, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 10 }, { "name": "Super Wall Breaker", "id": 28, "original": "Wall Breaker", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 8 }, { "name": "Super Archer", "id": 27, "original": "Archer", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 12 }, { "name": "Super Witch", "id": 66, "original": "Witch", "minOriginalLevel": 5, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 40 }, { "name": "Inferno Dragon", "id": 63, "original": "Baby Dragon", "minOriginalLevel": 6, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 15 }, { "name": "Super Valkyrie", "id": 64, "original": "Valkyrie", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 20 }, { "name": "Super Minion", "id": 84, "original": "Minion", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 12 }, { "name": "Super Wizard", "id": 83, "original": "Wizard", "minOriginalLevel": 9, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 10 }, { "name": "Ice Hound", "id": 76, "original": "Lava Hound", "minOriginalLevel": 5, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 40 }, { "name": "Rocket Balloon", "id": 57, "original": "Balloon", "minOriginalLevel": 8, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 8 }, { "name": "Super Bowler", "id": 80, "original": "Bowler", "minOriginalLevel": 4, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 30 }, { "name": "Super Dragon", "id": 81, "original": "Dragon", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 40 }, { "name": "Super Miner", "id": 56, "original": "Miner", "minOriginalLevel": 7, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 24 }, { "name": "Super Hog Rider", "id": 98, "original": "Hog Rider", "minOriginalLevel": 10, "village": "home", "duration": 259200, "cooldown": 259200, "resource": "Dark Elixir", "resourceCost": 25000, "housingSpace": 12 }] }
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
## 3.1.3 (13-08-2023)
|
|
6
|
-
|
|
7
|
-
### Features
|
|
8
|
-
|
|
9
|
-
- Switched to `undici` from `node-fetch` for better performance.
|
|
10
|
-
|
|
11
|
-
## 3.1.0 (2023-07-28)
|
|
12
|
-
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
- Builder base update and new troop levels.
|
|
16
|
-
|
|
17
|
-
## 3.0.2 (2023-01-15)
|
|
18
|
-
|
|
19
|
-
### Bug Fixes
|
|
20
|
-
|
|
21
|
-
- Conflict with the same name of builder base and home base troops. (#123)
|
|
22
|
-
- Fix the issue with the `Client#getLeagueWar()` method.
|
|
23
|
-
- Typings and documentation for clan capital.
|
|
24
|
-
- Fix the issue with the `Clan#clanCapital` property.
|
|
25
|
-
|
|
26
|
-
### Features
|
|
27
|
-
|
|
28
|
-
- Added `Client#getCapitalRaidSeasons()` method.
|
|
29
|
-
- Added `Client#getCapitalLeagues()` method.
|
|
30
|
-
- Added `Client#getClanCapitalRanks()` method.
|
|
31
|
-
- Added new Super Troops in raw.json file.
|
|
32
|
-
|
|
33
|
-
### Breaking Changes
|
|
34
|
-
|
|
35
|
-
- Using PascalCase instead of SCREAMING_SNAKE_CASE ([#115](https://github.com/clashperk/clashofclans.js/pull/115))
|
|
36
|
-
- `Client#events` and `EventManager` have been removed in favor of `PollingClient` ([#117](https://github.com/clashperk/clashofclans.js/pull/117), [#127](https://github.com/clashperk/clashofclans.js/pull/127))
|
|
37
|
-
|
|
38
|
-
## 2.8.0 (2022-07-22)
|
|
39
|
-
|
|
40
|
-
### Features
|
|
41
|
-
|
|
42
|
-
- Better Throttler with JS generator function. ([#111](https://github.com/clashperk/clashofclans.js/pull/111))
|
|
43
|
-
- Updated raw data from game files. ([#111](https://github.com/clashperk/clashofclans.js/pull/111))
|
|
44
|
-
- New method Util#parseArmyLink has been added. ([#110](https://github.com/clashperk/clashofclans.js/pull/110))
|
|
45
|
-
|
|
46
|
-
## 2.7.0 (2022-05-22)
|
|
47
|
-
|
|
48
|
-
### Features
|
|
49
|
-
|
|
50
|
-
- Some useful QOL methods have been added. ([#106](https://github.com/clashperk/clashofclans.js/pull/106))
|
|
51
|
-
|
|
52
|
-
## 2.6.1 (2022-02-03)
|
|
53
|
-
|
|
54
|
-
### Bug Fixes
|
|
55
|
-
|
|
56
|
-
- New value and typings `notInWar` added for `ClanWarLeagueGroup#state` ([#101](https://github.com/clashperk/clashofclans.js/pull/101))
|
|
57
|
-
- Throw error if `Util.formatTag` / `Util.parseTag` is called with invalid argument ([#102](https://github.com/clashperk/clashofclans.js/pull/101))
|
|
58
|
-
|
|
59
|
-
## 2.6.0 (2022-01-29)
|
|
60
|
-
|
|
61
|
-
## Features
|
|
62
|
-
|
|
63
|
-
- Replaced Keyv with customizable cache store ([#99](https://github.com/clashperk/clashofclans.js/pull/99))
|
|
64
|
-
- Guide for [Internal Caching](https://clashofclans.js.org/guide/internal-caching)
|
|
65
|
-
|
|
66
|
-
## 2.5.2 (2022-01-23)
|
|
67
|
-
|
|
68
|
-
### Bug Fixes
|
|
69
|
-
|
|
70
|
-
- Fix `ClanWar#attacksPerMembers` property ([#97](https://github.com/clashperk/clashofclans.js/pull/97))
|
|
71
|
-
- Bump `node-fetch` from 2.6.6 to 2.6.7 ([#96](https://github.com/clashperk/clashofclans.js/pull/96))
|
|
72
|
-
|
|
73
|
-
## 2.5.1 (2022-01-11)
|
|
74
|
-
|
|
75
|
-
### Bug Fixes
|
|
76
|
-
|
|
77
|
-
- Typings for `ClanWarLeagueGroup#state` property. ([#94](https://github.com/clashperk/clashofclans.js/pull/94))
|
|
78
|
-
|
|
79
|
-
## 2.5.0 (2021-12-30)
|
|
80
|
-
|
|
81
|
-
### Bug Fixes
|
|
82
|
-
|
|
83
|
-
- Fix caching issue with unnecessary/invalid query params. ([#91](https://github.com/clashperk/clashofclans.js/pull/91))
|
|
84
|
-
- Added necessary methods to `RESTManager` class. ([#92](https://github.com/clashperk/clashofclans.js/pull/92))
|
|
85
|
-
|
|
86
|
-
## 2.4.0 (2021-12-28)
|
|
87
|
-
|
|
88
|
-
### Features
|
|
89
|
-
|
|
90
|
-
- `ClanWar#getClanWarLeagueGroup`, `ClanWar#isCWL` and `ClanWar#isFriendly` are now available. ([#87](https://github.com/clashperk/clashofclans.js/pull/87))
|
|
91
|
-
- `RESTOptions#rejectIfNotValid` added to perform `res.ok` operations over `RESTManager` methods. [Know more?](https://clashofclans.js.org/guide/access-raw-data#easy-access) ([#87](https://github.com/clashperk/clashofclans.js/pull/87))
|
|
92
|
-
- `Icon#fileName` and `Icon#sizes` are now available in `Icon` class. ([#87](https://github.com/clashperk/clashofclans.js/pull/87))
|
|
93
|
-
- `Badge#fileName` and `Badge#sizes` are now available in `Badge` class. ([#87](https://github.com/clashperk/clashofclans.js/pull/87))
|
|
94
|
-
|
|
95
|
-
### Deprecations
|
|
96
|
-
|
|
97
|
-
- `ClanWarMember#previousBestOpponentAttack` has been deprecated. Use `ClanWarAttack#previousBestAttack` instead. ([#87](https://github.com/clashperk/clashofclans.js/pull/87))
|
|
98
|
-
|
|
99
|
-
## 2.3.0 (2021-12-17)
|
|
100
|
-
|
|
101
|
-
### Features
|
|
102
|
-
|
|
103
|
-
- BigInt literals issue fixed. ([#84](https://github.com/clashperk/clashofclans.js/pull/84))
|
|
104
|
-
- Some Utility methods renamed. ([#84](https://github.com/clashperk/clashofclans.js/pull/84))
|
|
105
|
-
- `Util.encodeTag()` to `Util.encodeURI()`
|
|
106
|
-
- `Util.encodeTagToId()` to `Util.encodeTag()`
|
|
107
|
-
- `Util.decodeIdToTag()` to `Util.decodeTag()`
|
|
108
|
-
- Added `dps`, `resourceType`, `trainingTime` and `regenerationTime` to the `Unit` class. ([#85](https://github.com/clashperk/clashofclans.js/pull/85))
|
|
109
|
-
|
|
110
|
-
## 2.2.0 (2021-12-16)
|
|
111
|
-
|
|
112
|
-
### Bug Fixes
|
|
113
|
-
|
|
114
|
-
- Show units as per in-game orders. ([#82](https://github.com/clashperk/clashofclans.js/pull/82)) ([6e23d2f](https://github.com/clashperk/clashofclans.js/commit/95cf3001059fd3ede9262e249814178631660d5b))
|
|
115
|
-
- Season end time utility method. ([#82](https://github.com/clashperk/clashofclans.js/pull/82)) ([6e23d2f](https://github.com/clashperk/clashofclans.js/commit/95cf3001059fd3ede9262e249814178631660d5b))
|
|
116
|
-
- Updated raw files for new Troops. ([#82](https://github.com/clashperk/clashofclans.js/pull/82)) ([6e23d2f](https://github.com/clashperk/clashofclans.js/commit/95cf3001059fd3ede9262e249814178631660d5b))
|
|
117
|
-
|
|
118
|
-
### Features
|
|
119
|
-
|
|
120
|
-
- Added `seasonal`, `boostable` and `isLoaded` property to `Unit` class. ([#82](https://github.com/clashperk/clashofclans.js/pull/82)) ([6e23d2f](https://github.com/clashperk/clashofclans.js/commit/95cf3001059fd3ede9262e249814178631660d5b))
|
|
121
|
-
|
|
122
|
-
## 2.1.0 (2021-12-06)
|
|
123
|
-
|
|
124
|
-
### Bug Fixes
|
|
125
|
-
|
|
126
|
-
- Consistency of `ClanWar.attacksPerMember` property. ([#75](https://github.com/clashperk/clashofclans.js/pull/75)) ([6e23d2f](https://github.com/clashperk/clashofclans.js/commit/6e23d2fe0373f56268ffa55d5ac2807c9a2dc2fc))
|
|
127
|
-
|
|
128
|
-
### Features
|
|
129
|
-
|
|
130
|
-
- More utility methods added to `Util` class. ([#76](https://github.com/clashperk/clashofclans.js/pull/76)) ([ff41115](https://github.com/clashperk/clashofclans.js/commit/ff4111530d6293ef1fc54aa916436130fc30a09c))
|
|
131
|
-
|
|
132
|
-
- `Util.formatTag(tag: string): string`
|
|
133
|
-
- `Util.formatDate(date: string): Date`
|
|
134
|
-
- `Util.isValidTag(tag: string): boolean`
|
|
135
|
-
- `Util.encodeTagToId(tag: string): string` (Removed on 2.3.0)
|
|
136
|
-
- `Util.decodeIdToTag(id: string): string` (Removed on 2.3.0)
|
|
137
|
-
|
|
138
|
-
- Support of async/await for custom events ([#79](https://github.com/clashperk/clashofclans.js/pull/79)) ([ff41115](https://github.com/clashperk/clashofclans.js/commit/a23db3786bcca44b8547c70f27773bdb1216f990))
|
|
139
|
-
|
|
140
|
-
## 2.0.2 (2021-11-30)
|
|
141
|
-
|
|
142
|
-
### Bug Fixes
|
|
143
|
-
|
|
144
|
-
- Return `null` for `RankedPlayer.clan` if they are not in the clan. ([#73](https://github.com/clashperk/clashofclans.js/pull/73)) ([ba82327](https://github.com/clashperk/clashofclans.js/commit/ba8232740f4ca9af2bcc7971aca3574612ef25b6))
|
|
145
|
-
- `OverrideOptions` added for `Client#getClans` and `RESTManager#getClans` ([#73](https://github.com/clashperk/clashofclans.js/pull/73)) ([ba82327](https://github.com/clashperk/clashofclans.js/commit/ba8232740f4ca9af2bcc7971aca3574612ef25b6))
|
|
146
|
-
- `SeasonRankedPlayer` class for legend league ranking. ([#73](https://github.com/clashperk/clashofclans.js/pull/73)) ([ba82327](https://github.com/clashperk/clashofclans.js/commit/ba8232740f4ca9af2bcc7971aca3574612ef25b6))
|
|
147
|
-
|
|
148
|
-
## 2.0.1 (2021-11-27)
|
|
149
|
-
|
|
150
|
-
### Bug Fixes
|
|
151
|
-
|
|
152
|
-
- IP retrieval method and Event Loop ([#70](https://github.com/clashperk/clashofclans.js/issues/70)) ([82b84ba](https://github.com/clashperk/clashofclans.js/commit/82b84ba5d96505c43b75e53aa07f547ef0b77778))
|
|
153
|
-
|
|
154
|
-
## 2.0.0 (2021-11-26)
|
|
155
|
-
|
|
156
|
-
This new version is a complete TypeScript rewrite to convert everything from plain (literal JSON) objects to class (constructor) objects and support a lot more features.
|
|
157
|
-
|
|
158
|
-
### Features
|
|
159
|
-
|
|
160
|
-
- HTTP Request Request Retries ([#26](https://github.com/clashperk/clashofclans.js/issues/26)) ([94585f3](https://github.com/clashperk/clashofclans.js/commit/94585f3a84a7175b2d07872f9eb9e42372b95e12))
|
|
161
|
-
- Event Manager and Custom Events ([#37](https://github.com/clashperk/clashofclans.js/issues/37)) ([5027ae6](https://github.com/clashperk/clashofclans.js/commit/5027ae663a8e07175e17384c7e5706f4a1a7afb4))
|
|
162
|
-
- Email Password Login ([#31](https://github.com/clashperk/clashofclans.js/issues/31)) ([4153cd3](https://github.com/clashperk/clashofclans.js/commit/4153cd37ea0e1c71550b9e892105b84d5a407e23))
|
|
163
|
-
- Queue Throttler and Batch Throttler ([#34](https://github.com/clashperk/clashofclans.js/issues/34)) ([3a8f051](https://github.com/clashperk/clashofclans.js/commit/3a8f051552e93b98f89bc7d524acdecddf242718))
|
|
164
|
-
- Override Request Options ([#36](https://github.com/clashperk/clashofclans.js/issues/36)) ([42d7fdd](https://github.com/clashperk/clashofclans.js/commit/42d7fdd36262cc46f23b731f8cffb9daea19d3b0))
|
|
165
|
-
- Internal Caching Options ([#53](https://github.com/clashperk/clashofclans.js/issues/53)) ([984451d](https://github.com/clashperk/clashofclans.js/commit/30ea3240c11866008d0dae514468c0fdbb34ffd0))
|
|
166
|
-
- Additional Properties for Player Units ([#65](https://github.com/clashperk/clashofclans.js/pull/65)) ([aa1696](https://github.com/clashperk/clashofclans.js/commit/aa1696243d96d4fed0250b4282c60522a6482343))
|