lol-constants 3.2.5 → 3.2.7
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/Patch.d.ts +1 -1
- package/dist/Patch.js +1 -1
- package/dist/helpers/champion.d.ts +1 -0
- package/dist/helpers/champion.js +3 -0
- package/dist/helpers/item.d.ts +1 -0
- package/dist/helpers/item.js +3 -0
- package/dist/helpers/rune.d.ts +3 -0
- package/dist/helpers/rune.js +9 -0
- package/dist/helpers/spell.d.ts +1 -0
- package/dist/helpers/spell.js +3 -0
- package/dist/index.d.ts +5 -5
- package/dist/index.js +5 -5
- package/dist/lol.d.ts +17 -1
- package/dist/objects/Queues.d.ts +1 -0
- package/dist/objects/Queues.js +3 -0
- package/dist/objects/generated/Items.d.ts +37 -0
- package/dist/objects/generated/Items.js +3 -3
- package/package.json +1 -1
package/dist/Patch.d.ts
CHANGED
package/dist/Patch.js
CHANGED
|
@@ -4,3 +4,4 @@ export declare function getChampion(id_key_name: ChampionId | ChampionKey | Cham
|
|
|
4
4
|
export declare function isChampionId(id: number | null | undefined): id is ChampionId;
|
|
5
5
|
export declare function isChampionKey(key: string | null | undefined): key is ChampionKey;
|
|
6
6
|
export declare function isChampionName(name: string | null | undefined): name is ChampionName;
|
|
7
|
+
export declare function isChampion(id_key_name: number | string | null | undefined): id_key_name is ChampionId | ChampionKey | ChampionName;
|
package/dist/helpers/champion.js
CHANGED
|
@@ -17,3 +17,6 @@ export function isChampionKey(key) {
|
|
|
17
17
|
export function isChampionName(name) {
|
|
18
18
|
return typeof name == 'string' && name in championNames;
|
|
19
19
|
}
|
|
20
|
+
export function isChampion(id_key_name) {
|
|
21
|
+
return typeof id_key_name == 'number' ? isChampionId(id_key_name) : (isChampionKey(id_key_name) || isChampionName(id_key_name));
|
|
22
|
+
}
|
package/dist/helpers/item.d.ts
CHANGED
|
@@ -37,3 +37,4 @@ export declare function isConsumableItem(item_id_name: typeof ItemsArr[number] |
|
|
|
37
37
|
export declare function isItemAvailableOnMap(itemId: ItemId, mapId: MapId): boolean;
|
|
38
38
|
export declare function isItemId(id: number | null | undefined): id is ItemId;
|
|
39
39
|
export declare function isItemName(name: string | null | undefined): name is ItemName;
|
|
40
|
+
export declare function isItem(id_name: number | string | null | undefined): id_name is ItemId | ItemName;
|
package/dist/helpers/item.js
CHANGED
package/dist/helpers/rune.d.ts
CHANGED
|
@@ -28,9 +28,12 @@ export declare function getRuneTree(id_key_name: RuneTreeId | RuneTreeKey | Rune
|
|
|
28
28
|
export declare function isRuneId(id: number | null | undefined): id is RuneId;
|
|
29
29
|
export declare function isRuneKey(key: string | null | undefined): key is RuneKey;
|
|
30
30
|
export declare function isRuneName(name: string | null | undefined): name is RuneName;
|
|
31
|
+
export declare function isRune(id_key_name: number | string | null | undefined): id_key_name is RuneId | RuneKey | RuneName;
|
|
31
32
|
export declare function isStatRuneId(id: number | null | undefined): id is StatRuneId;
|
|
32
33
|
export declare function isStatRuneName(name: string | null | undefined): name is StatRuneName;
|
|
34
|
+
export declare function isStatRune(id_name: number | string | null | undefined): id_name is StatRuneId | StatRuneName;
|
|
33
35
|
export declare function isRuneTreeId(id: number | null | undefined): id is RuneTreeId;
|
|
34
36
|
export declare function isRuneTreeKey(key: string | null | undefined): key is RuneTreeKey;
|
|
35
37
|
export declare function isRuneTreeName(name: string | null | undefined): name is RuneTreeName;
|
|
38
|
+
export declare function isRuneTree(id_key_name: number | string | null | undefined): id_key_name is RuneTreeId | RuneTreeKey | RuneTreeName;
|
|
36
39
|
export {};
|
package/dist/helpers/rune.js
CHANGED
|
@@ -53,12 +53,18 @@ export function isRuneKey(key) {
|
|
|
53
53
|
export function isRuneName(name) {
|
|
54
54
|
return typeof name == 'string' && name in runeNames;
|
|
55
55
|
}
|
|
56
|
+
export function isRune(id_key_name) {
|
|
57
|
+
return typeof id_key_name == 'number' ? isRuneId(id_key_name) : (isRuneKey(id_key_name) || isRuneName(id_key_name));
|
|
58
|
+
}
|
|
56
59
|
export function isStatRuneId(id) {
|
|
57
60
|
return typeof id == 'number' && id in StatRunes;
|
|
58
61
|
}
|
|
59
62
|
export function isStatRuneName(name) {
|
|
60
63
|
return typeof name == 'string' && name in statRuneNames;
|
|
61
64
|
}
|
|
65
|
+
export function isStatRune(id_name) {
|
|
66
|
+
return typeof id_name == 'number' ? isStatRuneId(id_name) : isStatRuneName(id_name);
|
|
67
|
+
}
|
|
62
68
|
export function isRuneTreeId(id) {
|
|
63
69
|
return typeof id == 'number' && id in RuneTrees;
|
|
64
70
|
}
|
|
@@ -68,3 +74,6 @@ export function isRuneTreeKey(key) {
|
|
|
68
74
|
export function isRuneTreeName(name) {
|
|
69
75
|
return typeof name == 'string' && name in runeTreeNames;
|
|
70
76
|
}
|
|
77
|
+
export function isRuneTree(id_key_name) {
|
|
78
|
+
return typeof id_key_name == 'number' ? isRuneTreeId(id_key_name) : (isRuneTreeKey(id_key_name) || isRuneTreeName(id_key_name));
|
|
79
|
+
}
|
package/dist/helpers/spell.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export declare function getSpell(id_key_name: SpellId | SpellKey | SpellName): t
|
|
|
4
4
|
export declare function isSpellId(id: number | null | undefined): id is SpellId;
|
|
5
5
|
export declare function isSpellKey(key: string | null | undefined): key is SpellKey;
|
|
6
6
|
export declare function isSpellName(name: string | null | undefined): name is SpellName;
|
|
7
|
+
export declare function isSpell(id_key_name: number | string | null | undefined): id_key_name is SpellId | SpellKey | SpellName;
|
package/dist/helpers/spell.js
CHANGED
|
@@ -17,3 +17,6 @@ export function isSpellKey(key) {
|
|
|
17
17
|
export function isSpellName(name) {
|
|
18
18
|
return typeof name == 'string' && name in spellNames;
|
|
19
19
|
}
|
|
20
|
+
export function isSpell(id_key_name) {
|
|
21
|
+
return typeof id_key_name == 'number' ? isSpellId(id_key_name) : (isSpellKey(id_key_name) || isSpellName(id_key_name));
|
|
22
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -8,16 +8,16 @@ export * from './constants/locales';
|
|
|
8
8
|
export * from './constants/participants';
|
|
9
9
|
export { ItemSrTypes } from './enums/ItemSrTypes';
|
|
10
10
|
export { StatRuneSlots } from './enums/StatRuneSlots';
|
|
11
|
-
export { getChampion, isChampionId, isChampionKey, isChampionName, } from './helpers/champion';
|
|
12
|
-
export { getItem, isStarterItem, isBasicItem, isEpicItem, isLegendaryItem, isTrinketItem, isBootsItem, isConsumableItem, isItemAvailableOnMap, isItemId, isItemName, } from './helpers/item';
|
|
11
|
+
export { getChampion, isChampionId, isChampionKey, isChampionName, isChampion, } from './helpers/champion';
|
|
12
|
+
export { getItem, isStarterItem, isBasicItem, isEpicItem, isLegendaryItem, isTrinketItem, isBootsItem, isConsumableItem, isItemAvailableOnMap, isItemId, isItemName, isItem, } from './helpers/item';
|
|
13
13
|
export type { RiotId } from './helpers/riotId';
|
|
14
14
|
export { makeRiotId, splitRiotId, validateRiotId, } from './helpers/riotId';
|
|
15
|
-
export { getRune, getStatRune, getRuneTree, isRuneId, isRuneKey, isRuneName, isStatRuneId, isStatRuneName, isRuneTreeId, isRuneTreeKey, isRuneTreeName, } from './helpers/rune';
|
|
16
|
-
export { getSpell, isSpellId, isSpellKey, isSpellName, } from './helpers/spell';
|
|
15
|
+
export { getRune, getStatRune, getRuneTree, isRuneId, isRuneKey, isRuneName, isRune, isStatRuneId, isStatRuneName, isStatRune, isRuneTreeId, isRuneTreeKey, isRuneTreeName, isRuneTree, } from './helpers/rune';
|
|
16
|
+
export { getSpell, isSpellId, isSpellKey, isSpellName, isSpell, } from './helpers/spell';
|
|
17
17
|
export type { MapId, MapTitle } from './objects/Maps';
|
|
18
18
|
export { MapsArr as Maps, getMap, isMapId, isMapTitle } from './objects/Maps';
|
|
19
19
|
export type { QueueId, QueueTitle } from './objects/Queues';
|
|
20
|
-
export { QueuesArr as Queues, isQueueId, isQueueTitle, getQueue, } from './objects/Queues';
|
|
20
|
+
export { QueuesArr as Queues, isQueueId, isQueueTitle, isQueue, getQueue, } from './objects/Queues';
|
|
21
21
|
export type { Platform, Region } from './objects/Regions';
|
|
22
22
|
export { RegionsArr as Regions, getRegion, isPlatform, isRegion, } from './objects/Regions';
|
|
23
23
|
export { ChampionsArr as Champions } from './objects/generated/Champions';
|
package/dist/index.js
CHANGED
|
@@ -12,13 +12,13 @@ export * from './constants/participants';
|
|
|
12
12
|
export { ItemSrTypes } from './enums/ItemSrTypes';
|
|
13
13
|
export { StatRuneSlots } from './enums/StatRuneSlots';
|
|
14
14
|
// # helpers
|
|
15
|
-
export { getChampion, isChampionId, isChampionKey, isChampionName, } from './helpers/champion';
|
|
16
|
-
export { getItem, isStarterItem, isBasicItem, isEpicItem, isLegendaryItem, isTrinketItem, isBootsItem, isConsumableItem, isItemAvailableOnMap, isItemId, isItemName, } from './helpers/item';
|
|
15
|
+
export { getChampion, isChampionId, isChampionKey, isChampionName, isChampion, } from './helpers/champion';
|
|
16
|
+
export { getItem, isStarterItem, isBasicItem, isEpicItem, isLegendaryItem, isTrinketItem, isBootsItem, isConsumableItem, isItemAvailableOnMap, isItemId, isItemName, isItem, } from './helpers/item';
|
|
17
17
|
export { makeRiotId, splitRiotId, validateRiotId, } from './helpers/riotId';
|
|
18
|
-
export { getRune, getStatRune, getRuneTree, isRuneId, isRuneKey, isRuneName, isStatRuneId, isStatRuneName, isRuneTreeId, isRuneTreeKey, isRuneTreeName, } from './helpers/rune';
|
|
19
|
-
export { getSpell, isSpellId, isSpellKey, isSpellName, } from './helpers/spell';
|
|
18
|
+
export { getRune, getStatRune, getRuneTree, isRuneId, isRuneKey, isRuneName, isRune, isStatRuneId, isStatRuneName, isStatRune, isRuneTreeId, isRuneTreeKey, isRuneTreeName, isRuneTree, } from './helpers/rune';
|
|
19
|
+
export { getSpell, isSpellId, isSpellKey, isSpellName, isSpell, } from './helpers/spell';
|
|
20
20
|
export { MapsArr as Maps, getMap, isMapId, isMapTitle } from './objects/Maps';
|
|
21
|
-
export { QueuesArr as Queues, isQueueId, isQueueTitle, getQueue, } from './objects/Queues';
|
|
21
|
+
export { QueuesArr as Queues, isQueueId, isQueueTitle, isQueue, getQueue, } from './objects/Queues';
|
|
22
22
|
export { RegionsArr as Regions, getRegion, isPlatform, isRegion, } from './objects/Regions';
|
|
23
23
|
// ## generated
|
|
24
24
|
export { ChampionsArr as Champions } from './objects/generated/Champions';
|
package/dist/lol.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const lol: {
|
|
|
22
22
|
* ## Current patch version
|
|
23
23
|
* What patch the library is currently on. *(read-only)*
|
|
24
24
|
*/
|
|
25
|
-
version: "15.
|
|
25
|
+
version: "15.21";
|
|
26
26
|
/**
|
|
27
27
|
* ## Constants
|
|
28
28
|
* Riot API defined constants.
|
|
@@ -1033,6 +1033,10 @@ export declare const lol: {
|
|
|
1033
1033
|
readonly id: 1104;
|
|
1034
1034
|
readonly name: "Eye of the Herald";
|
|
1035
1035
|
readonly srType: -1;
|
|
1036
|
+
} | {
|
|
1037
|
+
readonly id: 1111;
|
|
1038
|
+
readonly name: "Jarvan I's";
|
|
1039
|
+
readonly srType: -1;
|
|
1036
1040
|
} | {
|
|
1037
1041
|
readonly id: 1500;
|
|
1038
1042
|
readonly name: "Penetrating Bullets";
|
|
@@ -2401,6 +2405,14 @@ export declare const lol: {
|
|
|
2401
2405
|
readonly id: 9408;
|
|
2402
2406
|
readonly name: "Carrot Crash";
|
|
2403
2407
|
readonly srType: -1;
|
|
2408
|
+
} | {
|
|
2409
|
+
readonly id: 123430;
|
|
2410
|
+
readonly name: "Rite of Ruin";
|
|
2411
|
+
readonly srType: -1;
|
|
2412
|
+
} | {
|
|
2413
|
+
readonly id: 124011;
|
|
2414
|
+
readonly name: "Sword of Blossoming Dawn";
|
|
2415
|
+
readonly srType: -1;
|
|
2404
2416
|
} | {
|
|
2405
2417
|
readonly id: 126697;
|
|
2406
2418
|
readonly name: "Hubris";
|
|
@@ -3297,6 +3309,10 @@ export declare const lol: {
|
|
|
3297
3309
|
readonly id: 667112;
|
|
3298
3310
|
readonly name: "Flesheater";
|
|
3299
3311
|
readonly srType: -1;
|
|
3312
|
+
} | {
|
|
3313
|
+
readonly id: 994403;
|
|
3314
|
+
readonly name: "Golden Spatula";
|
|
3315
|
+
readonly srType: -1;
|
|
3300
3316
|
})[];
|
|
3301
3317
|
get: typeof getItem;
|
|
3302
3318
|
isStarter: typeof isStarterItem;
|
package/dist/objects/Queues.d.ts
CHANGED
|
@@ -342,5 +342,6 @@ export type QueueId = typeof QueuesArr[number]['id'];
|
|
|
342
342
|
export type QueueTitle = typeof QueuesArr[number]['title'];
|
|
343
343
|
export declare function isQueueId(id: number | null | undefined): id is QueueId;
|
|
344
344
|
export declare function isQueueTitle(title: string | null | undefined): title is QueueTitle;
|
|
345
|
+
export declare function isQueue(id_title: number | string | null | undefined): id_title is QueueId | QueueTitle;
|
|
345
346
|
/** Get queue by its **id** or **title**. */
|
|
346
347
|
export declare function getQueue(id_title: QueueId | QueueTitle): typeof Queues[keyof typeof Queues];
|
package/dist/objects/Queues.js
CHANGED
|
@@ -120,6 +120,9 @@ export function isQueueId(id) {
|
|
|
120
120
|
export function isQueueTitle(title) {
|
|
121
121
|
return typeof title == 'string' && title in queueTitles;
|
|
122
122
|
}
|
|
123
|
+
export function isQueue(id_title) {
|
|
124
|
+
return typeof id_title == 'number' ? isQueueId(id_title) : isQueueTitle(id_title);
|
|
125
|
+
}
|
|
123
126
|
/** Get queue by its **id** or **title**. */
|
|
124
127
|
export function getQueue(id_title) {
|
|
125
128
|
var _a, _b;
|
|
@@ -159,6 +159,11 @@ export declare const Items: {
|
|
|
159
159
|
readonly name: "Eye of the Herald";
|
|
160
160
|
readonly srType: -1;
|
|
161
161
|
};
|
|
162
|
+
readonly 1111: {
|
|
163
|
+
readonly id: 1111;
|
|
164
|
+
readonly name: "Jarvan I's";
|
|
165
|
+
readonly srType: -1;
|
|
166
|
+
};
|
|
162
167
|
readonly 1500: {
|
|
163
168
|
readonly id: 1500;
|
|
164
169
|
readonly name: "Penetrating Bullets";
|
|
@@ -1869,6 +1874,16 @@ export declare const Items: {
|
|
|
1869
1874
|
readonly name: "Carrot Crash";
|
|
1870
1875
|
readonly srType: -1;
|
|
1871
1876
|
};
|
|
1877
|
+
readonly 123430: {
|
|
1878
|
+
readonly id: 123430;
|
|
1879
|
+
readonly name: "Rite of Ruin";
|
|
1880
|
+
readonly srType: -1;
|
|
1881
|
+
};
|
|
1882
|
+
readonly 124011: {
|
|
1883
|
+
readonly id: 124011;
|
|
1884
|
+
readonly name: "Sword of Blossoming Dawn";
|
|
1885
|
+
readonly srType: -1;
|
|
1886
|
+
};
|
|
1872
1887
|
readonly 126697: {
|
|
1873
1888
|
readonly id: 126697;
|
|
1874
1889
|
readonly name: "Hubris";
|
|
@@ -2989,6 +3004,11 @@ export declare const Items: {
|
|
|
2989
3004
|
readonly name: "Flesheater";
|
|
2990
3005
|
readonly srType: -1;
|
|
2991
3006
|
};
|
|
3007
|
+
readonly 994403: {
|
|
3008
|
+
readonly id: 994403;
|
|
3009
|
+
readonly name: "Golden Spatula";
|
|
3010
|
+
readonly srType: -1;
|
|
3011
|
+
};
|
|
2992
3012
|
};
|
|
2993
3013
|
export declare const failsafeItem: {
|
|
2994
3014
|
readonly id: 0;
|
|
@@ -3123,6 +3143,10 @@ export declare const ItemsArr: ({
|
|
|
3123
3143
|
readonly id: 1104;
|
|
3124
3144
|
readonly name: "Eye of the Herald";
|
|
3125
3145
|
readonly srType: -1;
|
|
3146
|
+
} | {
|
|
3147
|
+
readonly id: 1111;
|
|
3148
|
+
readonly name: "Jarvan I's";
|
|
3149
|
+
readonly srType: -1;
|
|
3126
3150
|
} | {
|
|
3127
3151
|
readonly id: 1500;
|
|
3128
3152
|
readonly name: "Penetrating Bullets";
|
|
@@ -4491,6 +4515,14 @@ export declare const ItemsArr: ({
|
|
|
4491
4515
|
readonly id: 9408;
|
|
4492
4516
|
readonly name: "Carrot Crash";
|
|
4493
4517
|
readonly srType: -1;
|
|
4518
|
+
} | {
|
|
4519
|
+
readonly id: 123430;
|
|
4520
|
+
readonly name: "Rite of Ruin";
|
|
4521
|
+
readonly srType: -1;
|
|
4522
|
+
} | {
|
|
4523
|
+
readonly id: 124011;
|
|
4524
|
+
readonly name: "Sword of Blossoming Dawn";
|
|
4525
|
+
readonly srType: -1;
|
|
4494
4526
|
} | {
|
|
4495
4527
|
readonly id: 126697;
|
|
4496
4528
|
readonly name: "Hubris";
|
|
@@ -5387,6 +5419,10 @@ export declare const ItemsArr: ({
|
|
|
5387
5419
|
readonly id: 667112;
|
|
5388
5420
|
readonly name: "Flesheater";
|
|
5389
5421
|
readonly srType: -1;
|
|
5422
|
+
} | {
|
|
5423
|
+
readonly id: 994403;
|
|
5424
|
+
readonly name: "Golden Spatula";
|
|
5425
|
+
readonly srType: -1;
|
|
5390
5426
|
})[];
|
|
5391
5427
|
export type ItemId = typeof ItemsArr[number]['id'];
|
|
5392
5428
|
export type ItemName = typeof ItemsArr[number]['name'];
|
|
@@ -5397,6 +5433,7 @@ export declare const itemNames: {
|
|
|
5397
5433
|
};
|
|
5398
5434
|
export declare const bootsItemIds: {
|
|
5399
5435
|
readonly 1001: true;
|
|
5436
|
+
readonly 1111: true;
|
|
5400
5437
|
readonly 2422: true;
|
|
5401
5438
|
readonly 3005: true;
|
|
5402
5439
|
readonly 3006: true;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export const Items = { 1001: { id: 1001, name: "Boots", srType: 12 }, 1004: { id: 1004, name: "Faerie Charm", srType: 1 }, 1006: { id: 1006, name: "Rejuvenation Bead", srType: 1 }, 1011: { id: 1011, name: "Giant's Belt", srType: 2 }, 1018: { id: 1018, name: "Cloak of Agility", srType: 1 }, 1026: { id: 1026, name: "Blasting Wand", srType: 1 }, 1027: { id: 1027, name: "Sapphire Crystal", srType: 1 }, 1028: { id: 1028, name: "Ruby Crystal", srType: 1 }, 1029: { id: 1029, name: "Cloth Armor", srType: 1 }, 1031: { id: 1031, name: "Chain Vest", srType: 2 }, 1033: { id: 1033, name: "Null-Magic Mantle", srType: 1 }, 1035: { id: 1035, name: "Emberknife", srType: -1 }, 1036: { id: 1036, name: "Long Sword", srType: 1 }, 1037: { id: 1037, name: "Pickaxe", srType: 1 }, 1038: { id: 1038, name: "B. F. Sword", srType: 1 }, 1039: { id: 1039, name: "Hailblade", srType: -1 }, 1040: { id: 1040, name: "Obsidian Edge", srType: -1 }, 1042: { id: 1042, name: "Dagger", srType: 1 }, 1043: { id: 1043, name: "Recurve Bow", srType: 2 }, 1052: { id: 1052, name: "Amplifying Tome", srType: 1 }, 1053: { id: 1053, name: "Vampiric Scepter", srType: 2 }, 1054: { id: 1054, name: "Doran's Shield", srType: 0 }, 1055: { id: 1055, name: "Doran's Blade", srType: 0 }, 1056: { id: 1056, name: "Doran's Ring", srType: 0 }, 1057: { id: 1057, name: "Negatron Cloak", srType: 2 }, 1058: { id: 1058, name: "Needlessly Large Rod", srType: 1 }, 1082: { id: 1082, name: "Dark Seal", srType: 0 }, 1083: { id: 1083, name: "Cull", srType: 0 }, 1101: { id: 1101, name: "Scorchclaw Pup", srType: 0 }, 1102: { id: 1102, name: "Gustwalker Hatchling", srType: 0 }, 1103: { id: 1103, name: "Mosstomper Seedling", srType: 0 }, 1104: { id: 1104, name: "Eye of the Herald", srType: -1 }, 1500: { id: 1500, name: "Penetrating Bullets", srType: -1 }, 1503: { id: 1503, name: "Warden's Eye", srType: -1 }, 1504: { id: 1504, name: "Vanguard", srType: -1 }, 1507: { id: 1507, name: "Overcharged", srType: -1 }, 1508: { id: 1508, name: "Anti-tower Socks", srType: -1 }, 1509: { id: 1509, name: "Gusto", srType: -1 }, 1510: { id: 1510, name: "Phreakish Gusto", srType: -1 }, 1511: { id: 1511, name: "Super Mech Armor", srType: -1 }, 1512: { id: 1512, name: "Super Mech Power Field", srType: -1 }, 1515: { id: 1515, name: "Turret Plating", srType: -1 }, 1520: { id: 1520, name: "OvererchargedHA", srType: -1 }, 1522: { id: 1522, name: "Tower Power-Up", srType: -1 }, 1523: { id: 1523, name: "Overcharged", srType: -1 }, 2003: { id: 2003, name: "Health Potion", srType: 13 }, 2010: { id: 2010, name: "Total Biscuit of Everlasting Will", srType: 13 }, 2015: { id: 2015, name: "Kircheis Shard", srType: -1 }, 2019: { id: 2019, name: "Steel Sigil", srType: 2 }, 2020: { id: 2020, name: "The Brutalizer", srType: 2 }, 2021: { id: 2021, name: "Tunneler", srType: 2 }, 2022: { id: 2022, name: "Glowing Mote", srType: 1 }, 2031: { id: 2031, name: "Refillable Potion", srType: 13 }, 2033: { id: 2033, name: "Corrupting Potion", srType: -1 }, 2049: { id: 2049, name: "Guardian's Amulet", srType: -1 }, 2050: { id: 2050, name: "Guardian's Shroud", srType: -1 }, 2051: { id: 2051, name: "Guardian's Horn", srType: -1 }, 2052: { id: 2052, name: "Poro-Snax", srType: 13 }, 2055: { id: 2055, name: "Control Ward", srType: 13 }, 2056: { id: 2056, name: "Stealth Ward", srType: -1 }, 2065: { id: 2065, name: "Shurelya's Battlesong", srType: 3 }, 2138: { id: 2138, name: "Elixir of Iron", srType: 13 }, 2139: { id: 2139, name: "Elixir of Sorcery", srType: 13 }, 2140: { id: 2140, name: "Elixir of Wrath", srType: 13 }, 2141: { id: 2141, name: "Cappa Juice", srType: 13 }, 2142: { id: 2142, name: "Juice of Power", srType: -1 }, 2143: { id: 2143, name: "Juice of Vitality", srType: -1 }, 2144: { id: 2144, name: "Juice of Haste", srType: -1 }, 2145: { id: 2145, name: "Lucky Dice", srType: -1 }, 2146: { id: 2146, name: "Enhanced Lucky Dice", srType: -1 }, 2150: { id: 2150, name: "Elixir of Skill", srType: 13 }, 2151: { id: 2151, name: "Elixir of Avarice", srType: 13 }, 2152: { id: 2152, name: "Elixir of Force", srType: 13 }, 2161: { id: 2161, name: "Bandle Juice of Power", srType: -1 }, 2162: { id: 2162, name: "Bandle Juice of Vitality", srType: -1 }, 2163: { id: 2163, name: "Bandle Juice of Haste", srType: -1 }, 2403: { id: 2403, name: "Minion Dematerializer", srType: -1 }, 2420: { id: 2420, name: "Seeker's Armguard", srType: 2 }, 2421: { id: 2421, name: "Shattered Armguard", srType: 2 }, 2422: { id: 2422, name: "Slightly Magical Footwear", srType: 12 }, 2501: { id: 2501, name: "Overlord's Bloodmail", srType: 3 }, 2502: { id: 2502, name: "Unending Despair", srType: 3 }, 2503: { id: 2503, name: "Blackfire Torch", srType: 3 }, 2504: { id: 2504, name: "Kaenic Rookern", srType: 3 }, 2508: { id: 2508, name: "Fated Ashes", srType: 2 }, 3001: { id: 3001, name: "Evenshroud", srType: -1 }, 3002: { id: 3002, name: "Trailblazer", srType: 3 }, 3003: { id: 3003, name: "Archangel's Staff", srType: 3 }, 3004: { id: 3004, name: "Manamune", srType: 3 }, 3005: { id: 3005, name: "Ghostcrawlers", srType: -1 }, 3006: { id: 3006, name: "Berserker's Greaves", srType: 12 }, 3009: { id: 3009, name: "Boots of Swiftness", srType: 12 }, 3010: { id: 3010, name: "Symbiotic Soles", srType: 12 }, 3011: { id: 3011, name: "Chemtech Putrifier", srType: -1 }, 3012: { id: 3012, name: "Chalice of Blessing", srType: -1 }, 3013: { id: 3013, name: "Synchronized Souls", srType: 12 }, 3020: { id: 3020, name: "Sorcerer's Shoes", srType: 12 }, 3023: { id: 3023, name: "Lifewell Pendant", srType: -1 }, 3024: { id: 3024, name: "Glacial Buckler", srType: 2 }, 3026: { id: 3026, name: "Guardian Angel", srType: 3 }, 3031: { id: 3031, name: "Infinity Edge", srType: 3 }, 3032: { id: 3032, name: "Yun Tal Wildarrows", srType: 3 }, 3033: { id: 3033, name: "Mortal Reminder", srType: 3 }, 3035: { id: 3035, name: "Last Whisper", srType: 2 }, 3036: { id: 3036, name: "Lord Dominik's Regards", srType: 3 }, 3039: { id: 3039, name: "Atma's Reckoning", srType: -1 }, 3040: { id: 3040, name: "Seraph's Embrace", srType: 3 }, 3041: { id: 3041, name: "Mejai's Soulstealer", srType: 3 }, 3042: { id: 3042, name: "Muramana", srType: 3 }, 3044: { id: 3044, name: "Phage", srType: 2 }, 3046: { id: 3046, name: "Phantom Dancer", srType: 3 }, 3047: { id: 3047, name: "Plated Steelcaps", srType: 12 }, 3050: { id: 3050, name: "Zeke's Convergence", srType: 3 }, 3051: { id: 3051, name: "Hearthbound Axe", srType: 2 }, 3053: { id: 3053, name: "Sterak's Gage", srType: 3 }, 3057: { id: 3057, name: "Sheen", srType: 2 }, 3065: { id: 3065, name: "Spirit Visage", srType: 3 }, 3066: { id: 3066, name: "Winged Moonplate", srType: 2 }, 3067: { id: 3067, name: "Kindlegem", srType: 2 }, 3068: { id: 3068, name: "Sunfire Aegis", srType: 3 }, 3070: { id: 3070, name: "Tear of the Goddess", srType: 0 }, 3071: { id: 3071, name: "Black Cleaver", srType: 3 }, 3072: { id: 3072, name: "Bloodthirster", srType: 3 }, 3073: { id: 3073, name: "Experimental Hexplate", srType: 3 }, 3074: { id: 3074, name: "Ravenous Hydra", srType: 3 }, 3075: { id: 3075, name: "Thornmail", srType: 3 }, 3076: { id: 3076, name: "Bramble Vest", srType: 2 }, 3077: { id: 3077, name: "Tiamat", srType: 2 }, 3078: { id: 3078, name: "Trinity Force", srType: 3 }, 3082: { id: 3082, name: "Warden's Mail", srType: 2 }, 3083: { id: 3083, name: "Warmog's Armor", srType: 3 }, 3084: { id: 3084, name: "Heartsteel", srType: 3 }, 3085: { id: 3085, name: "Runaan's Hurricane", srType: 3 }, 3086: { id: 3086, name: "Zeal", srType: 2 }, 3087: { id: 3087, name: "Statikk Shiv", srType: 3 }, 3089: { id: 3089, name: "Rabadon's Deathcap", srType: 3 }, 3091: { id: 3091, name: "Wit's End", srType: 3 }, 3094: { id: 3094, name: "Rapid Firecannon", srType: 3 }, 3095: { id: 3095, name: "Stormrazor", srType: -1 }, 3100: { id: 3100, name: "Lich Bane", srType: 3 }, 3102: { id: 3102, name: "Banshee's Veil", srType: 3 }, 3105: { id: 3105, name: "Aegis of the Legion", srType: 2 }, 3107: { id: 3107, name: "Redemption", srType: 3 }, 3108: { id: 3108, name: "Fiendish Codex", srType: 2 }, 3109: { id: 3109, name: "Knight's Vow", srType: 3 }, 3110: { id: 3110, name: "Frozen Heart", srType: 3 }, 3111: { id: 3111, name: "Mercury's Treads", srType: 12 }, 3112: { id: 3112, name: "Guardian's Orb", srType: -1 }, 3113: { id: 3113, name: "Aether Wisp", srType: 2 }, 3114: { id: 3114, name: "Forbidden Idol", srType: 2 }, 3115: { id: 3115, name: "Nashor's Tooth", srType: 3 }, 3116: { id: 3116, name: "Rylai's Crystal Scepter", srType: 3 }, 3117: { id: 3117, name: "Mobility Boots", srType: -1 }, 3118: { id: 3118, name: "Malignance", srType: 3 }, 3119: { id: 3119, name: "Winter's Approach", srType: 3 }, 3121: { id: 3121, name: "Fimbulwinter", srType: 3 }, 3123: { id: 3123, name: "Executioner's Calling", srType: 2 }, 3124: { id: 3124, name: "Guinsoo's Rageblade", srType: 3 }, 3128: { id: 3128, name: "Deathfire Grasp", srType: -1 }, 3131: { id: 3131, name: "Sword of the Divine", srType: -1 }, 3133: { id: 3133, name: "Caulfield's Warhammer", srType: 2 }, 3134: { id: 3134, name: "Serrated Dirk", srType: 2 }, 3135: { id: 3135, name: "Void Staff", srType: 3 }, 3137: { id: 3137, name: "Cryptbloom", srType: 3 }, 3139: { id: 3139, name: "Mercurial Scimitar", srType: 3 }, 3140: { id: 3140, name: "Quicksilver Sash", srType: 2 }, 3142: { id: 3142, name: "Youmuu's Ghostblade", srType: 3 }, 3143: { id: 3143, name: "Randuin's Omen", srType: 3 }, 3144: { id: 3144, name: "Scout's Slingshot", srType: 2 }, 3145: { id: 3145, name: "Hextech Alternator", srType: 2 }, 3146: { id: 3146, name: "Hextech Gunblade", srType: -1 }, 3147: { id: 3147, name: "Haunting Guise", srType: 2 }, 3152: { id: 3152, name: "Hextech Rocketbelt", srType: 3 }, 3153: { id: 3153, name: "Blade of The Ruined King", srType: 3 }, 3155: { id: 3155, name: "Hexdrinker", srType: 2 }, 3156: { id: 3156, name: "Maw of Malmortius", srType: 3 }, 3157: { id: 3157, name: "Zhonya's Hourglass", srType: 3 }, 3158: { id: 3158, name: "Ionian Boots of Lucidity", srType: 12 }, 3161: { id: 3161, name: "Spear of Shojin", srType: 3 }, 3165: { id: 3165, name: "Morellonomicon", srType: 3 }, 3170: { id: 3170, name: "Swiftmarch", srType: 12 }, 3171: { id: 3171, name: "Crimson Lucidity", srType: 12 }, 3172: { id: 3172, name: "Gunmetal Greaves", srType: 12 }, 3173: { id: 3173, name: "Chainlaced Crushers", srType: 12 }, 3174: { id: 3174, name: "Armored Advance", srType: 12 }, 3175: { id: 3175, name: "Spellslinger's Shoes", srType: 12 }, 3176: { id: 3176, name: "Forever Forward", srType: 12 }, 3177: { id: 3177, name: "Guardian's Blade", srType: -1 }, 3179: { id: 3179, name: "Umbral Glaive", srType: 3 }, 3181: { id: 3181, name: "Hullbreaker", srType: 3 }, 3184: { id: 3184, name: "Guardian's Hammer", srType: -1 }, 3190: { id: 3190, name: "Locket of the Iron Solari", srType: 3 }, 3193: { id: 3193, name: "Gargoyle Stoneplate", srType: -1 }, 3211: { id: 3211, name: "Spectre's Cowl", srType: 2 }, 3222: { id: 3222, name: "Mikael's Blessing", srType: 3 }, 3302: { id: 3302, name: "Terminus", srType: 3 }, 3330: { id: 3330, name: "Scarecrow Effigy", srType: -1 }, 3340: { id: 3340, name: "Stealth Ward", srType: 11 }, 3348: { id: 3348, name: "Arcane Sweeper", srType: -1 }, 3349: { id: 3349, name: "Lucent Singularity", srType: -1 }, 3363: { id: 3363, name: "Farsight Alteration", srType: 11 }, 3364: { id: 3364, name: "Oracle Lens", srType: 11 }, 3398: { id: 3398, name: "Small Party Favor", srType: -1 }, 3399: { id: 3399, name: "Party Favor", srType: -1 }, 3400: { id: 3400, name: "Your Cut", srType: 13 }, 3430: { id: 3430, name: "Rite Of Ruin", srType: -1 }, 3504: { id: 3504, name: "Ardent Censer", srType: 3 }, 3508: { id: 3508, name: "Essence Reaver", srType: 3 }, 3513: { id: 3513, name: "Eye of the Herald", srType: -1 }, 3599: { id: 3599, name: "Kalista's Black Spear", srType: -1 }, 3600: { id: 3600, name: "Sylas' Black Spear", srType: -1 }, 3742: { id: 3742, name: "Dead Man's Plate", srType: 3 }, 3748: { id: 3748, name: "Titanic Hydra", srType: 3 }, 3801: { id: 3801, name: "Crystalline Bracer", srType: 2 }, 3802: { id: 3802, name: "Lost Chapter", srType: 2 }, 3803: { id: 3803, name: "Catalyst of Aeons", srType: 2 }, 3814: { id: 3814, name: "Edge of Night", srType: 3 }, 3850: { id: 3850, name: "Spellthief's Edge", srType: -1 }, 3851: { id: 3851, name: "Frostfang", srType: -1 }, 3853: { id: 3853, name: "Shard of True Ice", srType: -1 }, 3854: { id: 3854, name: "Steel Shoulderguards", srType: -1 }, 3855: { id: 3855, name: "Runesteel Spaulders", srType: -1 }, 3857: { id: 3857, name: "Pauldrons of Whiterock", srType: -1 }, 3858: { id: 3858, name: "Relic Shield", srType: -1 }, 3859: { id: 3859, name: "Targon's Buckler", srType: -1 }, 3860: { id: 3860, name: "Bulwark of the Mountain", srType: -1 }, 3862: { id: 3862, name: "Spectral Sickle", srType: -1 }, 3863: { id: 3863, name: "Harrowing Crescent", srType: -1 }, 3864: { id: 3864, name: "Black Mist Scythe", srType: -1 }, 3865: { id: 3865, name: "World Atlas", srType: 0 }, 3866: { id: 3866, name: "Runic Compass", srType: 2 }, 3867: { id: 3867, name: "Bounty of Worlds", srType: 3 }, 3869: { id: 3869, name: "Celestial Opposition", srType: 3 }, 3870: { id: 3870, name: "Dream Maker", srType: 3 }, 3871: { id: 3871, name: "Zaz'Zak's Realmspike", srType: 3 }, 3876: { id: 3876, name: "Solstice Sleigh", srType: 3 }, 3877: { id: 3877, name: "Bloodsong", srType: 3 }, 3901: { id: 3901, name: "Fire at Will", srType: -1 }, 3902: { id: 3902, name: "Death's Daughter", srType: -1 }, 3903: { id: 3903, name: "Raise Morale", srType: -1 }, 3916: { id: 3916, name: "Oblivion Orb", srType: 2 }, 4003: { id: 4003, name: "Lifeline", srType: -1 }, 4004: { id: 4004, name: "Spectral Cutlass", srType: -1 }, 4005: { id: 4005, name: "Imperial Mandate", srType: 3 }, 4010: { id: 4010, name: "Bloodletter's Curse", srType: -1 }, 4011: { id: 4011, name: "Sword of Blossoming Dawn", srType: -1 }, 4012: { id: 4012, name: "Sin Eater", srType: -1 }, 4013: { id: 4013, name: "Lightning Braid", srType: -1 }, 4014: { id: 4014, name: "Frozen Mallet", srType: -1 }, 4015: { id: 4015, name: "Perplexity", srType: -1 }, 4016: { id: 4016, name: "Wordless Promise", srType: -1 }, 4017: { id: 4017, name: "Hellfire Hatchet", srType: -1 }, 4401: { id: 4401, name: "Force of Nature", srType: 3 }, 4402: { id: 4402, name: "Innervating Locket", srType: -1 }, 4403: { id: 4403, name: "The Golden Spatula", srType: -1 }, 4628: { id: 4628, name: "Horizon Focus", srType: 3 }, 4629: { id: 4629, name: "Cosmic Drive", srType: 3 }, 4630: { id: 4630, name: "Blighting Jewel", srType: 2 }, 4632: { id: 4632, name: "Verdant Barrier", srType: 2 }, 4633: { id: 4633, name: "Riftmaker", srType: 3 }, 4635: { id: 4635, name: "Leeching Leer", srType: -1 }, 4636: { id: 4636, name: "Night Harvester", srType: -1 }, 4637: { id: 4637, name: "Demonic Embrace", srType: -1 }, 4638: { id: 4638, name: "Watchful Wardstone", srType: 2 }, 4641: { id: 4641, name: "Stirring Wardstone", srType: -1 }, 4642: { id: 4642, name: "Bandleglass Mirror", srType: 2 }, 4643: { id: 4643, name: "Vigilant Wardstone", srType: 3 }, 4644: { id: 4644, name: "Crown of the Shattered Queen", srType: -1 }, 4645: { id: 4645, name: "Shadowflame", srType: 3 }, 4646: { id: 4646, name: "Stormsurge", srType: 3 }, 6029: { id: 6029, name: "Ironspike Whip", srType: -1 }, 6035: { id: 6035, name: "Silvermere Dawn", srType: -1 }, 6333: { id: 6333, name: "Death's Dance", srType: 3 }, 6609: { id: 6609, name: "Chempunk Chainsword", srType: 3 }, 6610: { id: 6610, name: "Sundered Sky", srType: 3 }, 6616: { id: 6616, name: "Staff of Flowing Water", srType: 3 }, 6617: { id: 6617, name: "Moonstone Renewer", srType: 3 }, 6620: { id: 6620, name: "Echoes of Helia", srType: 3 }, 6621: { id: 6621, name: "Dawncore", srType: 3 }, 6630: { id: 6630, name: "Goredrinker", srType: -1 }, 6631: { id: 6631, name: "Stridebreaker", srType: 3 }, 6632: { id: 6632, name: "Divine Sunderer", srType: -1 }, 6653: { id: 6653, name: "Liandry's Torment", srType: 3 }, 6655: { id: 6655, name: "Luden's Companion", srType: 3 }, 6656: { id: 6656, name: "Everfrost", srType: -1 }, 6657: { id: 6657, name: "Rod of Ages", srType: 3 }, 6660: { id: 6660, name: "Bami's Cinder", srType: 2 }, 6662: { id: 6662, name: "Iceborn Gauntlet", srType: 3 }, 6664: { id: 6664, name: "Hollow Radiance", srType: 3 }, 6665: { id: 6665, name: "Jak'Sho, The Protean", srType: 3 }, 6667: { id: 6667, name: "Radiant Virtue", srType: -1 }, 6670: { id: 6670, name: "Noonquiver", srType: 2 }, 6671: { id: 6671, name: "Galeforce", srType: -1 }, 6672: { id: 6672, name: "Kraken Slayer", srType: 3 }, 6673: { id: 6673, name: "Immortal Shieldbow", srType: 3 }, 6675: { id: 6675, name: "Navori Flickerblade", srType: 3 }, 6676: { id: 6676, name: "The Collector", srType: 3 }, 6677: { id: 6677, name: "Rageknife", srType: -1 }, 6690: { id: 6690, name: "Rectrix", srType: 2 }, 6691: { id: 6691, name: "Duskblade of Draktharr", srType: -1 }, 6692: { id: 6692, name: "Eclipse", srType: 3 }, 6693: { id: 6693, name: "Prowler's Claw", srType: -1 }, 6694: { id: 6694, name: "Serylda's Grudge", srType: 3 }, 6695: { id: 6695, name: "Serpent's Fang", srType: 3 }, 6696: { id: 6696, name: "Axiom Arc", srType: 3 }, 6697: { id: 6697, name: "Hubris", srType: 3 }, 6698: { id: 6698, name: "Profane Hydra", srType: 3 }, 6699: { id: 6699, name: "Voltaic Cyclosword", srType: 3 }, 6700: { id: 6700, name: "Shield of the Rakkor", srType: -1 }, 6701: { id: 6701, name: "Opportunity", srType: 3 }, 6702: { id: 6702, name: "Scouting Ahead", srType: -1 }, 7050: { id: 7050, name: "Gangplank Placeholder", srType: -1 }, 8001: { id: 8001, name: "Anathema's Chains", srType: -1 }, 8010: { id: 8010, name: "Bloodletter's Curse", srType: 3 }, 8020: { id: 8020, name: "Abyssal Mask", srType: 3 }, 9168: { id: 9168, name: "Locked Weapon Slot", srType: -1 }, 9171: { id: 9171, name: "Cyclonic Slicers", srType: -1 }, 9172: { id: 9172, name: "YuumiBot", srType: -1 }, 9173: { id: 9173, name: "Radiant Field", srType: -1 }, 9174: { id: 9174, name: "Statikk Sword", srType: -1 }, 9175: { id: 9175, name: "Lioness's Lament", srType: -1 }, 9176: { id: 9176, name: "Gatling Bunny-Guns", srType: -1 }, 9177: { id: 9177, name: "Searing Shortbow", srType: -1 }, 9178: { id: 9178, name: "The Annihilator", srType: -1 }, 9179: { id: 9179, name: "Battle Bunny Crossbow", srType: -1 }, 9180: { id: 9180, name: "UwU Blaster", srType: -1 }, 9181: { id: 9181, name: "Vortex Glove", srType: -1 }, 9183: { id: 9183, name: "Blade-o-rang", srType: -1 }, 9184: { id: 9184, name: "Bunny Mega-Blast", srType: -1 }, 9185: { id: 9185, name: "Anti-Shark Sea Mine", srType: -1 }, 9187: { id: 9187, name: "T.I.B.B.E.R.S", srType: -1 }, 9188: { id: 9188, name: "Ani-Mines", srType: -1 }, 9189: { id: 9189, name: "Final City Transit", srType: -1 }, 9190: { id: 9190, name: "Echoing Batblades", srType: -1 }, 9192: { id: 9192, name: "Paw Print Poisoner", srType: -1 }, 9193: { id: 9193, name: "Iceblast Armor", srType: -1 }, 9271: { id: 9271, name: "Unceasing Cyclone", srType: -1 }, 9272: { id: 9272, name: "YuumiBot_Final_FINAL", srType: -1 }, 9273: { id: 9273, name: "Explosive Embrace", srType: -1 }, 9274: { id: 9274, name: "Prumbis's Electrocarver", srType: -1 }, 9275: { id: 9275, name: "Enveloping Light", srType: -1 }, 9276: { id: 9276, name: "Double Bun-Bun Barrage", srType: -1 }, 9277: { id: 9277, name: "Evolved Embershot", srType: -1 }, 9278: { id: 9278, name: "Animapocalypse", srType: -1 }, 9279: { id: 9279, name: "Bunny Prime Ballista", srType: -1 }, 9280: { id: 9280, name: "OwO Blaster", srType: -1 }, 9281: { id: 9281, name: "Tempest's Gauntlet", srType: -1 }, 9283: { id: 9283, name: "Quad-o-rang", srType: -1 }, 9284: { id: 9284, name: "Rapid Rabbit Raindown", srType: -1 }, 9285: { id: 9285, name: "Neverending Mobstomper", srType: -1 }, 9287: { id: 9287, name: "T.I.B.B.E.R.S (B.E.E.G Edition)", srType: -1 }, 9288: { id: 9288, name: "Jinx's Tri-Namite", srType: -1 }, 9289: { id: 9289, name: "FC Limited Express", srType: -1 }, 9290: { id: 9290, name: "Vayne's Chromablades", srType: -1 }, 9292: { id: 9292, name: "Bearfoot Chem-Dispenser", srType: -1 }, 9293: { id: 9293, name: "Deep Freeze", srType: -1 }, 9300: { id: 9300, name: "Meow Meow", srType: -1 }, 9301: { id: 9301, name: "Shield Slam", srType: -1 }, 9302: { id: 9302, name: "Sound Wave", srType: -1 }, 9303: { id: 9303, name: "Pillory Swipe", srType: -1 }, 9304: { id: 9304, name: "Steel Tempest", srType: -1 }, 9305: { id: 9305, name: "Tentacle Slam", srType: -1 }, 9306: { id: 9306, name: "Winged Dagger", srType: -1 }, 9307: { id: 9307, name: "Guiding Hex", srType: -1 }, 9308: { id: 9308, name: "Bunny Hop", srType: -1 }, 9400: { id: 9400, name: "Battle Cat Barrage", srType: -1 }, 9401: { id: 9401, name: "Light of the Lion", srType: -1 }, 9402: { id: 9402, name: "Anima Echo", srType: -1 }, 9403: { id: 9403, name: "Savage Slice", srType: -1 }, 9404: { id: 9404, name: "Wandering Storms", srType: -1 }, 9405: { id: 9405, name: "Grizzly Smash", srType: -1 }, 9406: { id: 9406, name: "Lover's Ricochet", srType: -1 }, 9407: { id: 9407, name: "Hopped-Up Hex", srType: -1 }, 9408: { id: 9408, name: "Carrot Crash", srType: -1 }, 126697: { id: 126697, name: "Hubris", srType: -1 }, 220000: { id: 220000, name: "Stat Bonus", srType: -1 }, 220001: { id: 220001, name: "Legendary Fighter Item", srType: -1 }, 220002: { id: 220002, name: "Legendary Marksman Item", srType: -1 }, 220003: { id: 220003, name: "Legendary Assassin Item", srType: -1 }, 220004: { id: 220004, name: "Legendary Mage Item", srType: -1 }, 220005: { id: 220005, name: "Legendary Tank Item", srType: -1 }, 220006: { id: 220006, name: "Legendary Support Item", srType: -1 }, 220007: { id: 220007, name: "Prismatic Item", srType: -1 }, 220008: { id: 220008, name: "Anvil Voucher", srType: -1 }, 220009: { id: 220009, name: "Gold Stat Anvil Voucher", srType: -1 }, 220010: { id: 220010, name: "Prismatic Stat Voucher", srType: -1 }, 220011: { id: 220011, name: "Bravery Voucher", srType: -1 }, 221011: { id: 221011, name: "Giant's Belt", srType: -1 }, 221026: { id: 221026, name: "Blasting Wand", srType: -1 }, 221031: { id: 221031, name: "Chain Vest", srType: -1 }, 221038: { id: 221038, name: "B. F. Sword", srType: -1 }, 221043: { id: 221043, name: "Recurve Bow", srType: -1 }, 221053: { id: 221053, name: "Vampiric Scepter", srType: -1 }, 221057: { id: 221057, name: "Negatron Cloak", srType: -1 }, 221058: { id: 221058, name: "Needlessly Large Rod", srType: -1 }, 222022: { id: 222022, name: "Glowing Mote", srType: -1 }, 222051: { id: 222051, name: "Guardian's Horn", srType: -1 }, 222065: { id: 222065, name: "Shurelya's Battlesong", srType: -1 }, 222141: { id: 222141, name: "Cappa Juice", srType: -1 }, 222502: { id: 222502, name: "Unending Despair", srType: -1 }, 222503: { id: 222503, name: "Blackfire Torch", srType: -1 }, 222504: { id: 222504, name: "Kaenic Rookern", srType: -1 }, 223001: { id: 223001, name: "Evenshroud", srType: -1 }, 223002: { id: 223002, name: "Trailblazer", srType: -1 }, 223003: { id: 223003, name: "Archangel's Staff", srType: -1 }, 223004: { id: 223004, name: "Manamune", srType: -1 }, 223005: { id: 223005, name: "Ghostcrawlers", srType: -1 }, 223006: { id: 223006, name: "Berserker's Greaves", srType: -1 }, 223009: { id: 223009, name: "Boots of Swiftness", srType: -1 }, 223011: { id: 223011, name: "Chemtech Putrifier", srType: -1 }, 223020: { id: 223020, name: "Sorcerer's Shoes", srType: -1 }, 223026: { id: 223026, name: "Guardian Angel", srType: -1 }, 223031: { id: 223031, name: "Infinity Edge", srType: -1 }, 223032: { id: 223032, name: "Yun Tal Wildarrows", srType: -1 }, 223033: { id: 223033, name: "Mortal Reminder", srType: -1 }, 223036: { id: 223036, name: "Lord Dominik's Regards", srType: -1 }, 223039: { id: 223039, name: "Atma's Reckoning", srType: -1 }, 223040: { id: 223040, name: "Seraph's Embrace", srType: -1 }, 223042: { id: 223042, name: "Muramana", srType: -1 }, 223046: { id: 223046, name: "Phantom Dancer", srType: -1 }, 223047: { id: 223047, name: "Plated Steelcaps", srType: -1 }, 223050: { id: 223050, name: "Zeke's Convergence", srType: -1 }, 223053: { id: 223053, name: "Sterak's Gage", srType: -1 }, 223057: { id: 223057, name: "Sheen", srType: -1 }, 223065: { id: 223065, name: "Spirit Visage", srType: -1 }, 223067: { id: 223067, name: "Kindlegem", srType: -1 }, 223068: { id: 223068, name: "Sunfire Aegis", srType: -1 }, 223071: { id: 223071, name: "Black Cleaver", srType: -1 }, 223072: { id: 223072, name: "Bloodthirster", srType: -1 }, 223073: { id: 223073, name: "Experimental Hexplate", srType: -1 }, 223074: { id: 223074, name: "Ravenous Hydra", srType: -1 }, 223075: { id: 223075, name: "Thornmail", srType: -1 }, 223078: { id: 223078, name: "Trinity Force", srType: -1 }, 223084: { id: 223084, name: "Heartsteel", srType: -1 }, 223085: { id: 223085, name: "Runaan's Hurricane", srType: -1 }, 223087: { id: 223087, name: "Statikk Shiv", srType: -1 }, 223089: { id: 223089, name: "Rabadon's Deathcap", srType: -1 }, 223091: { id: 223091, name: "Wit's End", srType: -1 }, 223094: { id: 223094, name: "Rapid Firecannon", srType: -1 }, 223095: { id: 223095, name: "Stormrazor", srType: -1 }, 223100: { id: 223100, name: "Lich Bane", srType: -1 }, 223102: { id: 223102, name: "Banshee's Veil", srType: -1 }, 223105: { id: 223105, name: "Aegis of the Legion", srType: -1 }, 223107: { id: 223107, name: "Redemption", srType: -1 }, 223109: { id: 223109, name: "Knight's Vow", srType: -1 }, 223110: { id: 223110, name: "Frozen Heart", srType: -1 }, 223111: { id: 223111, name: "Mercury's Treads", srType: -1 }, 223112: { id: 223112, name: "Guardian's Orb", srType: -1 }, 223115: { id: 223115, name: "Nashor's Tooth", srType: -1 }, 223116: { id: 223116, name: "Rylai's Crystal Scepter", srType: -1 }, 223118: { id: 223118, name: "Malignance", srType: -1 }, 223119: { id: 223119, name: "Winter's Approach", srType: -1 }, 223121: { id: 223121, name: "Fimbulwinter", srType: -1 }, 223124: { id: 223124, name: "Guinsoo's Rageblade", srType: -1 }, 223135: { id: 223135, name: "Void Staff", srType: -1 }, 223137: { id: 223137, name: "Cryptbloom", srType: -1 }, 223139: { id: 223139, name: "Mercurial Scimitar", srType: -1 }, 223142: { id: 223142, name: "Youmuu's Ghostblade", srType: -1 }, 223143: { id: 223143, name: "Randuin's Omen", srType: -1 }, 223146: { id: 223146, name: "Hextech Gunblade", srType: -1 }, 223152: { id: 223152, name: "Hextech Rocketbelt", srType: -1 }, 223153: { id: 223153, name: "Blade of The Ruined King", srType: -1 }, 223156: { id: 223156, name: "Maw of Malmortius", srType: -1 }, 223157: { id: 223157, name: "Zhonya's Hourglass", srType: -1 }, 223158: { id: 223158, name: "Ionian Boots of Lucidity", srType: -1 }, 223161: { id: 223161, name: "Spear of Shojin", srType: -1 }, 223165: { id: 223165, name: "Morellonomicon", srType: -1 }, 223172: { id: 223172, name: "Zephyr", srType: -1 }, 223177: { id: 223177, name: "Guardian's Blade", srType: -1 }, 223181: { id: 223181, name: "Hullbreaker", srType: -1 }, 223184: { id: 223184, name: "Guardian's Hammer", srType: -1 }, 223185: { id: 223185, name: "Guardian's Dirk", srType: -1 }, 223190: { id: 223190, name: "Locket of the Iron Solari", srType: -1 }, 223193: { id: 223193, name: "Gargoyle Stoneplate", srType: -1 }, 223222: { id: 223222, name: "Mikael's Blessing", srType: -1 }, 223302: { id: 223302, name: "Terminus", srType: -1 }, 223504: { id: 223504, name: "Ardent Censer", srType: -1 }, 223508: { id: 223508, name: "Essence Reaver", srType: -1 }, 223742: { id: 223742, name: "Dead Man's Plate", srType: -1 }, 223748: { id: 223748, name: "Titanic Hydra", srType: -1 }, 223814: { id: 223814, name: "Edge of Night", srType: -1 }, 224004: { id: 224004, name: "Spectral Cutlass", srType: -1 }, 224005: { id: 224005, name: "Imperial Mandate", srType: -1 }, 224401: { id: 224401, name: "Force of Nature", srType: -1 }, 224403: { id: 224403, name: "The Golden Spatula", srType: -1 }, 224628: { id: 224628, name: "Horizon Focus", srType: -1 }, 224629: { id: 224629, name: "Cosmic Drive", srType: -1 }, 224633: { id: 224633, name: "Riftmaker", srType: -1 }, 224636: { id: 224636, name: "Night Harvester", srType: -1 }, 224637: { id: 224637, name: "Demonic Embrace", srType: -1 }, 224644: { id: 224644, name: "Crown of the Shattered Queen", srType: -1 }, 224645: { id: 224645, name: "Shadowflame", srType: -1 }, 224646: { id: 224646, name: "Stormsurge", srType: -1 }, 226035: { id: 226035, name: "Silvermere Dawn", srType: -1 }, 226333: { id: 226333, name: "Death's Dance", srType: -1 }, 226609: { id: 226609, name: "Chempunk Chainsword", srType: -1 }, 226610: { id: 226610, name: "Sundered Sky", srType: -1 }, 226616: { id: 226616, name: "Staff of Flowing Water", srType: -1 }, 226617: { id: 226617, name: "Moonstone Renewer", srType: -1 }, 226620: { id: 226620, name: "Echoes of Helia", srType: -1 }, 226621: { id: 226621, name: "Dawncore", srType: -1 }, 226630: { id: 226630, name: "Goredrinker", srType: -1 }, 226631: { id: 226631, name: "Stridebreaker", srType: -1 }, 226632: { id: 226632, name: "Divine Sunderer", srType: -1 }, 226653: { id: 226653, name: "Liandry's Anguish", srType: -1 }, 226655: { id: 226655, name: "Luden's Companion", srType: -1 }, 226656: { id: 226656, name: "Everfrost", srType: -1 }, 226657: { id: 226657, name: "Rod of Ages", srType: -1 }, 226662: { id: 226662, name: "Iceborn Gauntlet", srType: -1 }, 226664: { id: 226664, name: "Hollow Radiance", srType: -1 }, 226665: { id: 226665, name: "Jak'Sho, The Protean", srType: -1 }, 226667: { id: 226667, name: "Radiant Virtue", srType: -1 }, 226671: { id: 226671, name: "Galeforce", srType: -1 }, 226672: { id: 226672, name: "Kraken Slayer", srType: -1 }, 226673: { id: 226673, name: "Immortal Shieldbow", srType: -1 }, 226675: { id: 226675, name: "Navori Flickerblades", srType: -1 }, 226676: { id: 226676, name: "The Collector", srType: -1 }, 226691: { id: 226691, name: "Duskblade of Draktharr", srType: -1 }, 226692: { id: 226692, name: "Eclipse", srType: -1 }, 226693: { id: 226693, name: "Prowler's Claw", srType: -1 }, 226694: { id: 226694, name: "Serylda's Grudge", srType: -1 }, 226695: { id: 226695, name: "Serpent's Fang", srType: -1 }, 226696: { id: 226696, name: "Axiom Arc", srType: -1 }, 226697: { id: 226697, name: "Hubris", srType: -1 }, 226698: { id: 226698, name: "Profane Hydra", srType: -1 }, 226699: { id: 226699, name: "Voltaic Cyclosword", srType: -1 }, 226701: { id: 226701, name: "Opportunity", srType: -1 }, 228001: { id: 228001, name: "Anathema's Chains", srType: -1 }, 228002: { id: 228002, name: "Wooglet's Witchcap", srType: -1 }, 228003: { id: 228003, name: "Deathblade", srType: -1 }, 228004: { id: 228004, name: "Adaptive Helm", srType: -1 }, 228005: { id: 228005, name: "Obsidian Cleaver", srType: -1 }, 228006: { id: 228006, name: "Sanguine Blade", srType: -1 }, 228008: { id: 228008, name: "Runeglaive", srType: -1 }, 228020: { id: 228020, name: "Abyssal Mask", srType: -1 }, 443054: { id: 443054, name: "Darksteel Talons", srType: -1 }, 443055: { id: 443055, name: "Fulmination", srType: -1 }, 443056: { id: 443056, name: "Demon King's Crown", srType: -1 }, 443058: { id: 443058, name: "Shield of Molten Stone", srType: -1 }, 443059: { id: 443059, name: "Cloak of Starry Night", srType: -1 }, 443060: { id: 443060, name: "Sword of the Divine", srType: -1 }, 443061: { id: 443061, name: "Force Of Entropy", srType: -1 }, 443062: { id: 443062, name: "Sanguine Gift", srType: -1 }, 443063: { id: 443063, name: "Eleisa's Miracle", srType: -1 }, 443064: { id: 443064, name: "Talisman Of Ascension", srType: -1 }, 443069: { id: 443069, name: "Hamstringer", srType: -1 }, 443079: { id: 443079, name: "Turbo Chemtank", srType: -1 }, 443080: { id: 443080, name: "Twin Mask", srType: -1 }, 443081: { id: 443081, name: "Hexbolt Companion", srType: -1 }, 443083: { id: 443083, name: "Warmog's Armor", srType: -1 }, 443090: { id: 443090, name: "Reaper's Toll", srType: -1 }, 443193: { id: 443193, name: "Gargoyle Stoneplate", srType: -1 }, 444636: { id: 444636, name: "Night Harvester", srType: -1 }, 444637: { id: 444637, name: "Demonic Embrace", srType: -1 }, 444644: { id: 444644, name: "Crown of the Shattered Queen", srType: -1 }, 446632: { id: 446632, name: "Divine Sunderer", srType: -1 }, 446656: { id: 446656, name: "Everfrost", srType: -1 }, 446667: { id: 446667, name: "Radiant Virtue", srType: -1 }, 446671: { id: 446671, name: "Galeforce", srType: -1 }, 446691: { id: 446691, name: "Duskblade of Draktharr", srType: -1 }, 446693: { id: 446693, name: "Prowler's Claw", srType: -1 }, 447100: { id: 447100, name: "Mirage Blade", srType: -1 }, 447101: { id: 447101, name: "Gambler's Blade", srType: -1 }, 447102: { id: 447102, name: "Reality Fracture", srType: -1 }, 447103: { id: 447103, name: "Hemomancer's Helm", srType: -1 }, 447104: { id: 447104, name: "Innervating Locket", srType: -1 }, 447106: { id: 447106, name: "Dragonheart", srType: -1 }, 447107: { id: 447107, name: "Decapitator", srType: -1 }, 447108: { id: 447108, name: "Runecarver", srType: -1 }, 447109: { id: 447109, name: "Cruelty", srType: -1 }, 447110: { id: 447110, name: "Moonflair Spellblade", srType: -1 }, 447111: { id: 447111, name: "Overlord's Bloodmail", srType: -1 }, 447112: { id: 447112, name: "Flesheater", srType: -1 }, 447113: { id: 447113, name: "Detonation Orb", srType: -1 }, 447114: { id: 447114, name: "Reverberation", srType: -1 }, 447115: { id: 447115, name: "Regicide", srType: -1 }, 447116: { id: 447116, name: "Kinkou Jitte", srType: -1 }, 447118: { id: 447118, name: "Pyromancer's Cloak", srType: -1 }, 447119: { id: 447119, name: "Lightning Rod", srType: -1 }, 447120: { id: 447120, name: "Diamond-Tipped Spear", srType: -1 }, 447121: { id: 447121, name: "Twilight's Edge", srType: -1 }, 447122: { id: 447122, name: "Black Hole Gauntlet", srType: -1 }, 447123: { id: 447123, name: "Puppeteer", srType: -1 }, 663039: { id: 663039, name: "Atma's Reckoning", srType: -1 }, 663056: { id: 663056, name: "Demon King's Crown", srType: -1 }, 663058: { id: 663058, name: "Shield of Molten Stone", srType: -1 }, 663059: { id: 663059, name: "Cloak of Starry Night", srType: -1 }, 663060: { id: 663060, name: "Sword of the Divine", srType: -1 }, 663064: { id: 663064, name: "Veigar's Talisman of Ascension", srType: -1 }, 663146: { id: 663146, name: "Hextech Gunblade", srType: -1 }, 663172: { id: 663172, name: "Zephyr", srType: -1 }, 663193: { id: 663193, name: "Gargoyle Stoneplate", srType: -1 }, 664011: { id: 664011, name: "Sword of Blossoming Dawn", srType: -1 }, 664403: { id: 664403, name: "The Golden Spatula", srType: -1 }, 664644: { id: 664644, name: "Crown of the Shattered Queen", srType: -1 }, 667101: { id: 667101, name: "Gambler's Blade", srType: -1 }, 667109: { id: 667109, name: "Cruelty", srType: -1 }, 667112: { id: 667112, name: "Flesheater", srType: -1 } };
|
|
1
|
+
export const Items = { 1001: { id: 1001, name: "Boots", srType: 12 }, 1004: { id: 1004, name: "Faerie Charm", srType: 1 }, 1006: { id: 1006, name: "Rejuvenation Bead", srType: 1 }, 1011: { id: 1011, name: "Giant's Belt", srType: 2 }, 1018: { id: 1018, name: "Cloak of Agility", srType: 1 }, 1026: { id: 1026, name: "Blasting Wand", srType: 1 }, 1027: { id: 1027, name: "Sapphire Crystal", srType: 1 }, 1028: { id: 1028, name: "Ruby Crystal", srType: 1 }, 1029: { id: 1029, name: "Cloth Armor", srType: 1 }, 1031: { id: 1031, name: "Chain Vest", srType: 2 }, 1033: { id: 1033, name: "Null-Magic Mantle", srType: 1 }, 1035: { id: 1035, name: "Emberknife", srType: -1 }, 1036: { id: 1036, name: "Long Sword", srType: 1 }, 1037: { id: 1037, name: "Pickaxe", srType: 1 }, 1038: { id: 1038, name: "B. F. Sword", srType: 1 }, 1039: { id: 1039, name: "Hailblade", srType: -1 }, 1040: { id: 1040, name: "Obsidian Edge", srType: -1 }, 1042: { id: 1042, name: "Dagger", srType: 1 }, 1043: { id: 1043, name: "Recurve Bow", srType: 2 }, 1052: { id: 1052, name: "Amplifying Tome", srType: 1 }, 1053: { id: 1053, name: "Vampiric Scepter", srType: 2 }, 1054: { id: 1054, name: "Doran's Shield", srType: 0 }, 1055: { id: 1055, name: "Doran's Blade", srType: 0 }, 1056: { id: 1056, name: "Doran's Ring", srType: 0 }, 1057: { id: 1057, name: "Negatron Cloak", srType: 2 }, 1058: { id: 1058, name: "Needlessly Large Rod", srType: 1 }, 1082: { id: 1082, name: "Dark Seal", srType: 0 }, 1083: { id: 1083, name: "Cull", srType: 0 }, 1101: { id: 1101, name: "Scorchclaw Pup", srType: 0 }, 1102: { id: 1102, name: "Gustwalker Hatchling", srType: 0 }, 1103: { id: 1103, name: "Mosstomper Seedling", srType: 0 }, 1104: { id: 1104, name: "Eye of the Herald", srType: -1 }, 1111: { id: 1111, name: "Jarvan I's", srType: -1 }, 1500: { id: 1500, name: "Penetrating Bullets", srType: -1 }, 1503: { id: 1503, name: "Warden's Eye", srType: -1 }, 1504: { id: 1504, name: "Vanguard", srType: -1 }, 1507: { id: 1507, name: "Overcharged", srType: -1 }, 1508: { id: 1508, name: "Anti-tower Socks", srType: -1 }, 1509: { id: 1509, name: "Gusto", srType: -1 }, 1510: { id: 1510, name: "Phreakish Gusto", srType: -1 }, 1511: { id: 1511, name: "Super Mech Armor", srType: -1 }, 1512: { id: 1512, name: "Super Mech Power Field", srType: -1 }, 1515: { id: 1515, name: "Turret Plating", srType: -1 }, 1520: { id: 1520, name: "OvererchargedHA", srType: -1 }, 1522: { id: 1522, name: "Tower Power-Up", srType: -1 }, 1523: { id: 1523, name: "Overcharged", srType: -1 }, 2003: { id: 2003, name: "Health Potion", srType: 13 }, 2010: { id: 2010, name: "Total Biscuit of Everlasting Will", srType: 13 }, 2015: { id: 2015, name: "Kircheis Shard", srType: -1 }, 2019: { id: 2019, name: "Steel Sigil", srType: 2 }, 2020: { id: 2020, name: "The Brutalizer", srType: 2 }, 2021: { id: 2021, name: "Tunneler", srType: 2 }, 2022: { id: 2022, name: "Glowing Mote", srType: 1 }, 2031: { id: 2031, name: "Refillable Potion", srType: 13 }, 2033: { id: 2033, name: "Corrupting Potion", srType: -1 }, 2049: { id: 2049, name: "Guardian's Amulet", srType: -1 }, 2050: { id: 2050, name: "Guardian's Shroud", srType: -1 }, 2051: { id: 2051, name: "Guardian's Horn", srType: -1 }, 2052: { id: 2052, name: "Poro-Snax", srType: 13 }, 2055: { id: 2055, name: "Control Ward", srType: 13 }, 2056: { id: 2056, name: "Stealth Ward", srType: -1 }, 2065: { id: 2065, name: "Shurelya's Battlesong", srType: 3 }, 2138: { id: 2138, name: "Elixir of Iron", srType: 13 }, 2139: { id: 2139, name: "Elixir of Sorcery", srType: 13 }, 2140: { id: 2140, name: "Elixir of Wrath", srType: 13 }, 2141: { id: 2141, name: "Cappa Juice", srType: 13 }, 2142: { id: 2142, name: "Juice of Power", srType: -1 }, 2143: { id: 2143, name: "Juice of Vitality", srType: -1 }, 2144: { id: 2144, name: "Juice of Haste", srType: -1 }, 2145: { id: 2145, name: "Lucky Dice", srType: -1 }, 2146: { id: 2146, name: "Enhanced Lucky Dice", srType: -1 }, 2150: { id: 2150, name: "Elixir of Skill", srType: 13 }, 2151: { id: 2151, name: "Elixir of Avarice", srType: 13 }, 2152: { id: 2152, name: "Elixir of Force", srType: 13 }, 2161: { id: 2161, name: "Bandle Juice of Power", srType: -1 }, 2162: { id: 2162, name: "Bandle Juice of Vitality", srType: -1 }, 2163: { id: 2163, name: "Bandle Juice of Haste", srType: -1 }, 2403: { id: 2403, name: "Minion Dematerializer", srType: -1 }, 2420: { id: 2420, name: "Seeker's Armguard", srType: 2 }, 2421: { id: 2421, name: "Shattered Armguard", srType: 2 }, 2422: { id: 2422, name: "Slightly Magical Footwear", srType: 12 }, 2501: { id: 2501, name: "Overlord's Bloodmail", srType: 3 }, 2502: { id: 2502, name: "Unending Despair", srType: 3 }, 2503: { id: 2503, name: "Blackfire Torch", srType: 3 }, 2504: { id: 2504, name: "Kaenic Rookern", srType: 3 }, 2508: { id: 2508, name: "Fated Ashes", srType: 2 }, 3001: { id: 3001, name: "Evenshroud", srType: -1 }, 3002: { id: 3002, name: "Trailblazer", srType: 3 }, 3003: { id: 3003, name: "Archangel's Staff", srType: 3 }, 3004: { id: 3004, name: "Manamune", srType: 3 }, 3005: { id: 3005, name: "Ghostcrawlers", srType: -1 }, 3006: { id: 3006, name: "Berserker's Greaves", srType: 12 }, 3009: { id: 3009, name: "Boots of Swiftness", srType: 12 }, 3010: { id: 3010, name: "Symbiotic Soles", srType: 12 }, 3011: { id: 3011, name: "Chemtech Putrifier", srType: -1 }, 3012: { id: 3012, name: "Chalice of Blessing", srType: -1 }, 3013: { id: 3013, name: "Synchronized Souls", srType: 12 }, 3020: { id: 3020, name: "Sorcerer's Shoes", srType: 12 }, 3023: { id: 3023, name: "Lifewell Pendant", srType: -1 }, 3024: { id: 3024, name: "Glacial Buckler", srType: 2 }, 3026: { id: 3026, name: "Guardian Angel", srType: 3 }, 3031: { id: 3031, name: "Infinity Edge", srType: 3 }, 3032: { id: 3032, name: "Yun Tal Wildarrows", srType: 3 }, 3033: { id: 3033, name: "Mortal Reminder", srType: 3 }, 3035: { id: 3035, name: "Last Whisper", srType: 2 }, 3036: { id: 3036, name: "Lord Dominik's Regards", srType: 3 }, 3039: { id: 3039, name: "Atma's Reckoning", srType: -1 }, 3040: { id: 3040, name: "Seraph's Embrace", srType: 3 }, 3041: { id: 3041, name: "Mejai's Soulstealer", srType: 3 }, 3042: { id: 3042, name: "Muramana", srType: 3 }, 3044: { id: 3044, name: "Phage", srType: 2 }, 3046: { id: 3046, name: "Phantom Dancer", srType: 3 }, 3047: { id: 3047, name: "Plated Steelcaps", srType: 12 }, 3050: { id: 3050, name: "Zeke's Convergence", srType: 3 }, 3051: { id: 3051, name: "Hearthbound Axe", srType: 2 }, 3053: { id: 3053, name: "Sterak's Gage", srType: 3 }, 3057: { id: 3057, name: "Sheen", srType: 2 }, 3065: { id: 3065, name: "Spirit Visage", srType: 3 }, 3066: { id: 3066, name: "Winged Moonplate", srType: 2 }, 3067: { id: 3067, name: "Kindlegem", srType: 2 }, 3068: { id: 3068, name: "Sunfire Aegis", srType: 3 }, 3070: { id: 3070, name: "Tear of the Goddess", srType: 0 }, 3071: { id: 3071, name: "Black Cleaver", srType: 3 }, 3072: { id: 3072, name: "Bloodthirster", srType: 3 }, 3073: { id: 3073, name: "Experimental Hexplate", srType: 3 }, 3074: { id: 3074, name: "Ravenous Hydra", srType: 3 }, 3075: { id: 3075, name: "Thornmail", srType: 3 }, 3076: { id: 3076, name: "Bramble Vest", srType: 2 }, 3077: { id: 3077, name: "Tiamat", srType: 2 }, 3078: { id: 3078, name: "Trinity Force", srType: 3 }, 3082: { id: 3082, name: "Warden's Mail", srType: 2 }, 3083: { id: 3083, name: "Warmog's Armor", srType: 3 }, 3084: { id: 3084, name: "Heartsteel", srType: 3 }, 3085: { id: 3085, name: "Runaan's Hurricane", srType: 3 }, 3086: { id: 3086, name: "Zeal", srType: 2 }, 3087: { id: 3087, name: "Statikk Shiv", srType: 3 }, 3089: { id: 3089, name: "Rabadon's Deathcap", srType: 3 }, 3091: { id: 3091, name: "Wit's End", srType: 3 }, 3094: { id: 3094, name: "Rapid Firecannon", srType: 3 }, 3095: { id: 3095, name: "Stormrazor", srType: -1 }, 3100: { id: 3100, name: "Lich Bane", srType: 3 }, 3102: { id: 3102, name: "Banshee's Veil", srType: 3 }, 3105: { id: 3105, name: "Aegis of the Legion", srType: 2 }, 3107: { id: 3107, name: "Redemption", srType: 3 }, 3108: { id: 3108, name: "Fiendish Codex", srType: 2 }, 3109: { id: 3109, name: "Knight's Vow", srType: 3 }, 3110: { id: 3110, name: "Frozen Heart", srType: 3 }, 3111: { id: 3111, name: "Mercury's Treads", srType: 12 }, 3112: { id: 3112, name: "Guardian's Orb", srType: -1 }, 3113: { id: 3113, name: "Aether Wisp", srType: 2 }, 3114: { id: 3114, name: "Forbidden Idol", srType: 2 }, 3115: { id: 3115, name: "Nashor's Tooth", srType: 3 }, 3116: { id: 3116, name: "Rylai's Crystal Scepter", srType: 3 }, 3117: { id: 3117, name: "Mobility Boots", srType: -1 }, 3118: { id: 3118, name: "Malignance", srType: 3 }, 3119: { id: 3119, name: "Winter's Approach", srType: 3 }, 3121: { id: 3121, name: "Fimbulwinter", srType: 3 }, 3123: { id: 3123, name: "Executioner's Calling", srType: 2 }, 3124: { id: 3124, name: "Guinsoo's Rageblade", srType: 3 }, 3128: { id: 3128, name: "Deathfire Grasp", srType: -1 }, 3131: { id: 3131, name: "Sword of the Divine", srType: -1 }, 3133: { id: 3133, name: "Caulfield's Warhammer", srType: 2 }, 3134: { id: 3134, name: "Serrated Dirk", srType: 2 }, 3135: { id: 3135, name: "Void Staff", srType: 3 }, 3137: { id: 3137, name: "Cryptbloom", srType: 3 }, 3139: { id: 3139, name: "Mercurial Scimitar", srType: 3 }, 3140: { id: 3140, name: "Quicksilver Sash", srType: 2 }, 3142: { id: 3142, name: "Youmuu's Ghostblade", srType: 3 }, 3143: { id: 3143, name: "Randuin's Omen", srType: 3 }, 3144: { id: 3144, name: "Scout's Slingshot", srType: 2 }, 3145: { id: 3145, name: "Hextech Alternator", srType: 2 }, 3146: { id: 3146, name: "Hextech Gunblade", srType: -1 }, 3147: { id: 3147, name: "Haunting Guise", srType: 2 }, 3152: { id: 3152, name: "Hextech Rocketbelt", srType: 3 }, 3153: { id: 3153, name: "Blade of The Ruined King", srType: 3 }, 3155: { id: 3155, name: "Hexdrinker", srType: 2 }, 3156: { id: 3156, name: "Maw of Malmortius", srType: 3 }, 3157: { id: 3157, name: "Zhonya's Hourglass", srType: 3 }, 3158: { id: 3158, name: "Ionian Boots of Lucidity", srType: 12 }, 3161: { id: 3161, name: "Spear of Shojin", srType: 3 }, 3165: { id: 3165, name: "Morellonomicon", srType: 3 }, 3170: { id: 3170, name: "Swiftmarch", srType: 12 }, 3171: { id: 3171, name: "Crimson Lucidity", srType: 12 }, 3172: { id: 3172, name: "Gunmetal Greaves", srType: 12 }, 3173: { id: 3173, name: "Chainlaced Crushers", srType: 12 }, 3174: { id: 3174, name: "Armored Advance", srType: 12 }, 3175: { id: 3175, name: "Spellslinger's Shoes", srType: 12 }, 3176: { id: 3176, name: "Forever Forward", srType: 12 }, 3177: { id: 3177, name: "Guardian's Blade", srType: -1 }, 3179: { id: 3179, name: "Umbral Glaive", srType: 3 }, 3181: { id: 3181, name: "Hullbreaker", srType: 3 }, 3184: { id: 3184, name: "Guardian's Hammer", srType: -1 }, 3190: { id: 3190, name: "Locket of the Iron Solari", srType: 3 }, 3193: { id: 3193, name: "Gargoyle Stoneplate", srType: -1 }, 3211: { id: 3211, name: "Spectre's Cowl", srType: 2 }, 3222: { id: 3222, name: "Mikael's Blessing", srType: 3 }, 3302: { id: 3302, name: "Terminus", srType: 3 }, 3330: { id: 3330, name: "Scarecrow Effigy", srType: -1 }, 3340: { id: 3340, name: "Stealth Ward", srType: 11 }, 3348: { id: 3348, name: "Arcane Sweeper", srType: -1 }, 3349: { id: 3349, name: "Lucent Singularity", srType: -1 }, 3363: { id: 3363, name: "Farsight Alteration", srType: 11 }, 3364: { id: 3364, name: "Oracle Lens", srType: 11 }, 3398: { id: 3398, name: "Small Party Favor", srType: -1 }, 3399: { id: 3399, name: "Party Favor", srType: -1 }, 3400: { id: 3400, name: "Your Cut", srType: 13 }, 3430: { id: 3430, name: "Rite Of Ruin", srType: -1 }, 3504: { id: 3504, name: "Ardent Censer", srType: 3 }, 3508: { id: 3508, name: "Essence Reaver", srType: 3 }, 3513: { id: 3513, name: "Eye of the Herald", srType: -1 }, 3599: { id: 3599, name: "Kalista's Black Spear", srType: -1 }, 3600: { id: 3600, name: "Sylas' Black Spear", srType: -1 }, 3742: { id: 3742, name: "Dead Man's Plate", srType: 3 }, 3748: { id: 3748, name: "Titanic Hydra", srType: 3 }, 3801: { id: 3801, name: "Crystalline Bracer", srType: 2 }, 3802: { id: 3802, name: "Lost Chapter", srType: 2 }, 3803: { id: 3803, name: "Catalyst of Aeons", srType: 2 }, 3814: { id: 3814, name: "Edge of Night", srType: 3 }, 3850: { id: 3850, name: "Spellthief's Edge", srType: -1 }, 3851: { id: 3851, name: "Frostfang", srType: -1 }, 3853: { id: 3853, name: "Shard of True Ice", srType: -1 }, 3854: { id: 3854, name: "Steel Shoulderguards", srType: -1 }, 3855: { id: 3855, name: "Runesteel Spaulders", srType: -1 }, 3857: { id: 3857, name: "Pauldrons of Whiterock", srType: -1 }, 3858: { id: 3858, name: "Relic Shield", srType: -1 }, 3859: { id: 3859, name: "Targon's Buckler", srType: -1 }, 3860: { id: 3860, name: "Bulwark of the Mountain", srType: -1 }, 3862: { id: 3862, name: "Spectral Sickle", srType: -1 }, 3863: { id: 3863, name: "Harrowing Crescent", srType: -1 }, 3864: { id: 3864, name: "Black Mist Scythe", srType: -1 }, 3865: { id: 3865, name: "World Atlas", srType: 0 }, 3866: { id: 3866, name: "Runic Compass", srType: 2 }, 3867: { id: 3867, name: "Bounty of Worlds", srType: 3 }, 3869: { id: 3869, name: "Celestial Opposition", srType: 3 }, 3870: { id: 3870, name: "Dream Maker", srType: 3 }, 3871: { id: 3871, name: "Zaz'Zak's Realmspike", srType: 3 }, 3876: { id: 3876, name: "Solstice Sleigh", srType: 3 }, 3877: { id: 3877, name: "Bloodsong", srType: 3 }, 3901: { id: 3901, name: "Fire at Will", srType: -1 }, 3902: { id: 3902, name: "Death's Daughter", srType: -1 }, 3903: { id: 3903, name: "Raise Morale", srType: -1 }, 3916: { id: 3916, name: "Oblivion Orb", srType: 2 }, 4003: { id: 4003, name: "Lifeline", srType: -1 }, 4004: { id: 4004, name: "Spectral Cutlass", srType: -1 }, 4005: { id: 4005, name: "Imperial Mandate", srType: 3 }, 4010: { id: 4010, name: "Bloodletter's Curse", srType: -1 }, 4011: { id: 4011, name: "Sword of Blossoming Dawn", srType: -1 }, 4012: { id: 4012, name: "Sin Eater", srType: -1 }, 4013: { id: 4013, name: "Lightning Braid", srType: -1 }, 4014: { id: 4014, name: "Frozen Mallet", srType: -1 }, 4015: { id: 4015, name: "Perplexity", srType: -1 }, 4016: { id: 4016, name: "Wordless Promise", srType: -1 }, 4017: { id: 4017, name: "Hellfire Hatchet", srType: -1 }, 4401: { id: 4401, name: "Force of Nature", srType: 3 }, 4402: { id: 4402, name: "Innervating Locket", srType: -1 }, 4403: { id: 4403, name: "The Golden Spatula", srType: -1 }, 4628: { id: 4628, name: "Horizon Focus", srType: 3 }, 4629: { id: 4629, name: "Cosmic Drive", srType: 3 }, 4630: { id: 4630, name: "Blighting Jewel", srType: 2 }, 4632: { id: 4632, name: "Verdant Barrier", srType: 2 }, 4633: { id: 4633, name: "Riftmaker", srType: 3 }, 4635: { id: 4635, name: "Leeching Leer", srType: -1 }, 4636: { id: 4636, name: "Night Harvester", srType: -1 }, 4637: { id: 4637, name: "Demonic Embrace", srType: -1 }, 4638: { id: 4638, name: "Watchful Wardstone", srType: 2 }, 4641: { id: 4641, name: "Stirring Wardstone", srType: -1 }, 4642: { id: 4642, name: "Bandleglass Mirror", srType: 2 }, 4643: { id: 4643, name: "Vigilant Wardstone", srType: 3 }, 4644: { id: 4644, name: "Crown of the Shattered Queen", srType: -1 }, 4645: { id: 4645, name: "Shadowflame", srType: 3 }, 4646: { id: 4646, name: "Stormsurge", srType: 3 }, 6029: { id: 6029, name: "Ironspike Whip", srType: -1 }, 6035: { id: 6035, name: "Silvermere Dawn", srType: -1 }, 6333: { id: 6333, name: "Death's Dance", srType: 3 }, 6609: { id: 6609, name: "Chempunk Chainsword", srType: 3 }, 6610: { id: 6610, name: "Sundered Sky", srType: 3 }, 6616: { id: 6616, name: "Staff of Flowing Water", srType: 3 }, 6617: { id: 6617, name: "Moonstone Renewer", srType: 3 }, 6620: { id: 6620, name: "Echoes of Helia", srType: 3 }, 6621: { id: 6621, name: "Dawncore", srType: 3 }, 6630: { id: 6630, name: "Goredrinker", srType: -1 }, 6631: { id: 6631, name: "Stridebreaker", srType: 3 }, 6632: { id: 6632, name: "Divine Sunderer", srType: -1 }, 6653: { id: 6653, name: "Liandry's Torment", srType: 3 }, 6655: { id: 6655, name: "Luden's Companion", srType: 3 }, 6656: { id: 6656, name: "Everfrost", srType: -1 }, 6657: { id: 6657, name: "Rod of Ages", srType: 3 }, 6660: { id: 6660, name: "Bami's Cinder", srType: 2 }, 6662: { id: 6662, name: "Iceborn Gauntlet", srType: 3 }, 6664: { id: 6664, name: "Hollow Radiance", srType: 3 }, 6665: { id: 6665, name: "Jak'Sho, The Protean", srType: 3 }, 6667: { id: 6667, name: "Radiant Virtue", srType: -1 }, 6670: { id: 6670, name: "Noonquiver", srType: 2 }, 6671: { id: 6671, name: "Galeforce", srType: -1 }, 6672: { id: 6672, name: "Kraken Slayer", srType: 3 }, 6673: { id: 6673, name: "Immortal Shieldbow", srType: 3 }, 6675: { id: 6675, name: "Navori Flickerblade", srType: 3 }, 6676: { id: 6676, name: "The Collector", srType: 3 }, 6677: { id: 6677, name: "Rageknife", srType: -1 }, 6690: { id: 6690, name: "Rectrix", srType: 2 }, 6691: { id: 6691, name: "Duskblade of Draktharr", srType: -1 }, 6692: { id: 6692, name: "Eclipse", srType: 3 }, 6693: { id: 6693, name: "Prowler's Claw", srType: -1 }, 6694: { id: 6694, name: "Serylda's Grudge", srType: 3 }, 6695: { id: 6695, name: "Serpent's Fang", srType: 3 }, 6696: { id: 6696, name: "Axiom Arc", srType: 3 }, 6697: { id: 6697, name: "Hubris", srType: 3 }, 6698: { id: 6698, name: "Profane Hydra", srType: 3 }, 6699: { id: 6699, name: "Voltaic Cyclosword", srType: 3 }, 6700: { id: 6700, name: "Shield of the Rakkor", srType: -1 }, 6701: { id: 6701, name: "Opportunity", srType: 3 }, 6702: { id: 6702, name: "Scouting Ahead", srType: -1 }, 7050: { id: 7050, name: "Gangplank Placeholder", srType: -1 }, 8001: { id: 8001, name: "Anathema's Chains", srType: -1 }, 8010: { id: 8010, name: "Bloodletter's Curse", srType: 3 }, 8020: { id: 8020, name: "Abyssal Mask", srType: 3 }, 9168: { id: 9168, name: "Locked Weapon Slot", srType: -1 }, 9171: { id: 9171, name: "Cyclonic Slicers", srType: -1 }, 9172: { id: 9172, name: "YuumiBot", srType: -1 }, 9173: { id: 9173, name: "Radiant Field", srType: -1 }, 9174: { id: 9174, name: "Statikk Sword", srType: -1 }, 9175: { id: 9175, name: "Lioness's Lament", srType: -1 }, 9176: { id: 9176, name: "Gatling Bunny-Guns", srType: -1 }, 9177: { id: 9177, name: "Searing Shortbow", srType: -1 }, 9178: { id: 9178, name: "The Annihilator", srType: -1 }, 9179: { id: 9179, name: "Battle Bunny Crossbow", srType: -1 }, 9180: { id: 9180, name: "UwU Blaster", srType: -1 }, 9181: { id: 9181, name: "Vortex Glove", srType: -1 }, 9183: { id: 9183, name: "Blade-o-rang", srType: -1 }, 9184: { id: 9184, name: "Bunny Mega-Blast", srType: -1 }, 9185: { id: 9185, name: "Anti-Shark Sea Mine", srType: -1 }, 9187: { id: 9187, name: "T.I.B.B.E.R.S", srType: -1 }, 9188: { id: 9188, name: "Ani-Mines", srType: -1 }, 9189: { id: 9189, name: "Final City Transit", srType: -1 }, 9190: { id: 9190, name: "Echoing Batblades", srType: -1 }, 9192: { id: 9192, name: "Paw Print Poisoner", srType: -1 }, 9193: { id: 9193, name: "Iceblast Armor", srType: -1 }, 9271: { id: 9271, name: "Unceasing Cyclone", srType: -1 }, 9272: { id: 9272, name: "YuumiBot_Final_FINAL", srType: -1 }, 9273: { id: 9273, name: "Explosive Embrace", srType: -1 }, 9274: { id: 9274, name: "Prumbis's Electrocarver", srType: -1 }, 9275: { id: 9275, name: "Enveloping Light", srType: -1 }, 9276: { id: 9276, name: "Double Bun-Bun Barrage", srType: -1 }, 9277: { id: 9277, name: "Evolved Embershot", srType: -1 }, 9278: { id: 9278, name: "Animapocalypse", srType: -1 }, 9279: { id: 9279, name: "Bunny Prime Ballista", srType: -1 }, 9280: { id: 9280, name: "OwO Blaster", srType: -1 }, 9281: { id: 9281, name: "Tempest's Gauntlet", srType: -1 }, 9283: { id: 9283, name: "Quad-o-rang", srType: -1 }, 9284: { id: 9284, name: "Rapid Rabbit Raindown", srType: -1 }, 9285: { id: 9285, name: "Neverending Mobstomper", srType: -1 }, 9287: { id: 9287, name: "T.I.B.B.E.R.S (B.E.E.G Edition)", srType: -1 }, 9288: { id: 9288, name: "Jinx's Tri-Namite", srType: -1 }, 9289: { id: 9289, name: "FC Limited Express", srType: -1 }, 9290: { id: 9290, name: "Vayne's Chromablades", srType: -1 }, 9292: { id: 9292, name: "Bearfoot Chem-Dispenser", srType: -1 }, 9293: { id: 9293, name: "Deep Freeze", srType: -1 }, 9300: { id: 9300, name: "Meow Meow", srType: -1 }, 9301: { id: 9301, name: "Shield Slam", srType: -1 }, 9302: { id: 9302, name: "Sound Wave", srType: -1 }, 9303: { id: 9303, name: "Pillory Swipe", srType: -1 }, 9304: { id: 9304, name: "Steel Tempest", srType: -1 }, 9305: { id: 9305, name: "Tentacle Slam", srType: -1 }, 9306: { id: 9306, name: "Winged Dagger", srType: -1 }, 9307: { id: 9307, name: "Guiding Hex", srType: -1 }, 9308: { id: 9308, name: "Bunny Hop", srType: -1 }, 9400: { id: 9400, name: "Battle Cat Barrage", srType: -1 }, 9401: { id: 9401, name: "Light of the Lion", srType: -1 }, 9402: { id: 9402, name: "Anima Echo", srType: -1 }, 9403: { id: 9403, name: "Savage Slice", srType: -1 }, 9404: { id: 9404, name: "Wandering Storms", srType: -1 }, 9405: { id: 9405, name: "Grizzly Smash", srType: -1 }, 9406: { id: 9406, name: "Lover's Ricochet", srType: -1 }, 9407: { id: 9407, name: "Hopped-Up Hex", srType: -1 }, 9408: { id: 9408, name: "Carrot Crash", srType: -1 }, 123430: { id: 123430, name: "Rite of Ruin", srType: -1 }, 124011: { id: 124011, name: "Sword of Blossoming Dawn", srType: -1 }, 126697: { id: 126697, name: "Hubris", srType: -1 }, 220000: { id: 220000, name: "Stat Bonus", srType: -1 }, 220001: { id: 220001, name: "Legendary Fighter Item", srType: -1 }, 220002: { id: 220002, name: "Legendary Marksman Item", srType: -1 }, 220003: { id: 220003, name: "Legendary Assassin Item", srType: -1 }, 220004: { id: 220004, name: "Legendary Mage Item", srType: -1 }, 220005: { id: 220005, name: "Legendary Tank Item", srType: -1 }, 220006: { id: 220006, name: "Legendary Support Item", srType: -1 }, 220007: { id: 220007, name: "Prismatic Item", srType: -1 }, 220008: { id: 220008, name: "Anvil Voucher", srType: -1 }, 220009: { id: 220009, name: "Gold Stat Anvil Voucher", srType: -1 }, 220010: { id: 220010, name: "Prismatic Stat Voucher", srType: -1 }, 220011: { id: 220011, name: "Bravery Voucher", srType: -1 }, 221011: { id: 221011, name: "Giant's Belt", srType: -1 }, 221026: { id: 221026, name: "Blasting Wand", srType: -1 }, 221031: { id: 221031, name: "Chain Vest", srType: -1 }, 221038: { id: 221038, name: "B. F. Sword", srType: -1 }, 221043: { id: 221043, name: "Recurve Bow", srType: -1 }, 221053: { id: 221053, name: "Vampiric Scepter", srType: -1 }, 221057: { id: 221057, name: "Negatron Cloak", srType: -1 }, 221058: { id: 221058, name: "Needlessly Large Rod", srType: -1 }, 222022: { id: 222022, name: "Glowing Mote", srType: -1 }, 222051: { id: 222051, name: "Guardian's Horn", srType: -1 }, 222065: { id: 222065, name: "Shurelya's Battlesong", srType: -1 }, 222141: { id: 222141, name: "Cappa Juice", srType: -1 }, 222502: { id: 222502, name: "Unending Despair", srType: -1 }, 222503: { id: 222503, name: "Blackfire Torch", srType: -1 }, 222504: { id: 222504, name: "Kaenic Rookern", srType: -1 }, 223001: { id: 223001, name: "Evenshroud", srType: -1 }, 223002: { id: 223002, name: "Trailblazer", srType: -1 }, 223003: { id: 223003, name: "Archangel's Staff", srType: -1 }, 223004: { id: 223004, name: "Manamune", srType: -1 }, 223005: { id: 223005, name: "Ghostcrawlers", srType: -1 }, 223006: { id: 223006, name: "Berserker's Greaves", srType: -1 }, 223009: { id: 223009, name: "Boots of Swiftness", srType: -1 }, 223011: { id: 223011, name: "Chemtech Putrifier", srType: -1 }, 223020: { id: 223020, name: "Sorcerer's Shoes", srType: -1 }, 223026: { id: 223026, name: "Guardian Angel", srType: -1 }, 223031: { id: 223031, name: "Infinity Edge", srType: -1 }, 223032: { id: 223032, name: "Yun Tal Wildarrows", srType: -1 }, 223033: { id: 223033, name: "Mortal Reminder", srType: -1 }, 223036: { id: 223036, name: "Lord Dominik's Regards", srType: -1 }, 223039: { id: 223039, name: "Atma's Reckoning", srType: -1 }, 223040: { id: 223040, name: "Seraph's Embrace", srType: -1 }, 223042: { id: 223042, name: "Muramana", srType: -1 }, 223046: { id: 223046, name: "Phantom Dancer", srType: -1 }, 223047: { id: 223047, name: "Plated Steelcaps", srType: -1 }, 223050: { id: 223050, name: "Zeke's Convergence", srType: -1 }, 223053: { id: 223053, name: "Sterak's Gage", srType: -1 }, 223057: { id: 223057, name: "Sheen", srType: -1 }, 223065: { id: 223065, name: "Spirit Visage", srType: -1 }, 223067: { id: 223067, name: "Kindlegem", srType: -1 }, 223068: { id: 223068, name: "Sunfire Aegis", srType: -1 }, 223071: { id: 223071, name: "Black Cleaver", srType: -1 }, 223072: { id: 223072, name: "Bloodthirster", srType: -1 }, 223073: { id: 223073, name: "Experimental Hexplate", srType: -1 }, 223074: { id: 223074, name: "Ravenous Hydra", srType: -1 }, 223075: { id: 223075, name: "Thornmail", srType: -1 }, 223078: { id: 223078, name: "Trinity Force", srType: -1 }, 223084: { id: 223084, name: "Heartsteel", srType: -1 }, 223085: { id: 223085, name: "Runaan's Hurricane", srType: -1 }, 223087: { id: 223087, name: "Statikk Shiv", srType: -1 }, 223089: { id: 223089, name: "Rabadon's Deathcap", srType: -1 }, 223091: { id: 223091, name: "Wit's End", srType: -1 }, 223094: { id: 223094, name: "Rapid Firecannon", srType: -1 }, 223095: { id: 223095, name: "Stormrazor", srType: -1 }, 223100: { id: 223100, name: "Lich Bane", srType: -1 }, 223102: { id: 223102, name: "Banshee's Veil", srType: -1 }, 223105: { id: 223105, name: "Aegis of the Legion", srType: -1 }, 223107: { id: 223107, name: "Redemption", srType: -1 }, 223109: { id: 223109, name: "Knight's Vow", srType: -1 }, 223110: { id: 223110, name: "Frozen Heart", srType: -1 }, 223111: { id: 223111, name: "Mercury's Treads", srType: -1 }, 223112: { id: 223112, name: "Guardian's Orb", srType: -1 }, 223115: { id: 223115, name: "Nashor's Tooth", srType: -1 }, 223116: { id: 223116, name: "Rylai's Crystal Scepter", srType: -1 }, 223118: { id: 223118, name: "Malignance", srType: -1 }, 223119: { id: 223119, name: "Winter's Approach", srType: -1 }, 223121: { id: 223121, name: "Fimbulwinter", srType: -1 }, 223124: { id: 223124, name: "Guinsoo's Rageblade", srType: -1 }, 223135: { id: 223135, name: "Void Staff", srType: -1 }, 223137: { id: 223137, name: "Cryptbloom", srType: -1 }, 223139: { id: 223139, name: "Mercurial Scimitar", srType: -1 }, 223142: { id: 223142, name: "Youmuu's Ghostblade", srType: -1 }, 223143: { id: 223143, name: "Randuin's Omen", srType: -1 }, 223146: { id: 223146, name: "Hextech Gunblade", srType: -1 }, 223152: { id: 223152, name: "Hextech Rocketbelt", srType: -1 }, 223153: { id: 223153, name: "Blade of The Ruined King", srType: -1 }, 223156: { id: 223156, name: "Maw of Malmortius", srType: -1 }, 223157: { id: 223157, name: "Zhonya's Hourglass", srType: -1 }, 223158: { id: 223158, name: "Ionian Boots of Lucidity", srType: -1 }, 223161: { id: 223161, name: "Spear of Shojin", srType: -1 }, 223165: { id: 223165, name: "Morellonomicon", srType: -1 }, 223172: { id: 223172, name: "Zephyr", srType: -1 }, 223177: { id: 223177, name: "Guardian's Blade", srType: -1 }, 223181: { id: 223181, name: "Hullbreaker", srType: -1 }, 223184: { id: 223184, name: "Guardian's Hammer", srType: -1 }, 223185: { id: 223185, name: "Guardian's Dirk", srType: -1 }, 223190: { id: 223190, name: "Locket of the Iron Solari", srType: -1 }, 223193: { id: 223193, name: "Gargoyle Stoneplate", srType: -1 }, 223222: { id: 223222, name: "Mikael's Blessing", srType: -1 }, 223302: { id: 223302, name: "Terminus", srType: -1 }, 223504: { id: 223504, name: "Ardent Censer", srType: -1 }, 223508: { id: 223508, name: "Essence Reaver", srType: -1 }, 223742: { id: 223742, name: "Dead Man's Plate", srType: -1 }, 223748: { id: 223748, name: "Titanic Hydra", srType: -1 }, 223814: { id: 223814, name: "Edge of Night", srType: -1 }, 224004: { id: 224004, name: "Spectral Cutlass", srType: -1 }, 224005: { id: 224005, name: "Imperial Mandate", srType: -1 }, 224401: { id: 224401, name: "Force of Nature", srType: -1 }, 224403: { id: 224403, name: "The Golden Spatula", srType: -1 }, 224628: { id: 224628, name: "Horizon Focus", srType: -1 }, 224629: { id: 224629, name: "Cosmic Drive", srType: -1 }, 224633: { id: 224633, name: "Riftmaker", srType: -1 }, 224636: { id: 224636, name: "Night Harvester", srType: -1 }, 224637: { id: 224637, name: "Demonic Embrace", srType: -1 }, 224644: { id: 224644, name: "Crown of the Shattered Queen", srType: -1 }, 224645: { id: 224645, name: "Shadowflame", srType: -1 }, 224646: { id: 224646, name: "Stormsurge", srType: -1 }, 226035: { id: 226035, name: "Silvermere Dawn", srType: -1 }, 226333: { id: 226333, name: "Death's Dance", srType: -1 }, 226609: { id: 226609, name: "Chempunk Chainsword", srType: -1 }, 226610: { id: 226610, name: "Sundered Sky", srType: -1 }, 226616: { id: 226616, name: "Staff of Flowing Water", srType: -1 }, 226617: { id: 226617, name: "Moonstone Renewer", srType: -1 }, 226620: { id: 226620, name: "Echoes of Helia", srType: -1 }, 226621: { id: 226621, name: "Dawncore", srType: -1 }, 226630: { id: 226630, name: "Goredrinker", srType: -1 }, 226631: { id: 226631, name: "Stridebreaker", srType: -1 }, 226632: { id: 226632, name: "Divine Sunderer", srType: -1 }, 226653: { id: 226653, name: "Liandry's Anguish", srType: -1 }, 226655: { id: 226655, name: "Luden's Companion", srType: -1 }, 226656: { id: 226656, name: "Everfrost", srType: -1 }, 226657: { id: 226657, name: "Rod of Ages", srType: -1 }, 226662: { id: 226662, name: "Iceborn Gauntlet", srType: -1 }, 226664: { id: 226664, name: "Hollow Radiance", srType: -1 }, 226665: { id: 226665, name: "Jak'Sho, The Protean", srType: -1 }, 226667: { id: 226667, name: "Radiant Virtue", srType: -1 }, 226671: { id: 226671, name: "Galeforce", srType: -1 }, 226672: { id: 226672, name: "Kraken Slayer", srType: -1 }, 226673: { id: 226673, name: "Immortal Shieldbow", srType: -1 }, 226675: { id: 226675, name: "Navori Flickerblades", srType: -1 }, 226676: { id: 226676, name: "The Collector", srType: -1 }, 226691: { id: 226691, name: "Duskblade of Draktharr", srType: -1 }, 226692: { id: 226692, name: "Eclipse", srType: -1 }, 226693: { id: 226693, name: "Prowler's Claw", srType: -1 }, 226694: { id: 226694, name: "Serylda's Grudge", srType: -1 }, 226695: { id: 226695, name: "Serpent's Fang", srType: -1 }, 226696: { id: 226696, name: "Axiom Arc", srType: -1 }, 226697: { id: 226697, name: "Hubris", srType: -1 }, 226698: { id: 226698, name: "Profane Hydra", srType: -1 }, 226699: { id: 226699, name: "Voltaic Cyclosword", srType: -1 }, 226701: { id: 226701, name: "Opportunity", srType: -1 }, 228001: { id: 228001, name: "Anathema's Chains", srType: -1 }, 228002: { id: 228002, name: "Wooglet's Witchcap", srType: -1 }, 228003: { id: 228003, name: "Deathblade", srType: -1 }, 228004: { id: 228004, name: "Adaptive Helm", srType: -1 }, 228005: { id: 228005, name: "Obsidian Cleaver", srType: -1 }, 228006: { id: 228006, name: "Sanguine Blade", srType: -1 }, 228008: { id: 228008, name: "Runeglaive", srType: -1 }, 228020: { id: 228020, name: "Abyssal Mask", srType: -1 }, 443054: { id: 443054, name: "Darksteel Talons", srType: -1 }, 443055: { id: 443055, name: "Fulmination", srType: -1 }, 443056: { id: 443056, name: "Demon King's Crown", srType: -1 }, 443058: { id: 443058, name: "Shield of Molten Stone", srType: -1 }, 443059: { id: 443059, name: "Cloak of Starry Night", srType: -1 }, 443060: { id: 443060, name: "Sword of the Divine", srType: -1 }, 443061: { id: 443061, name: "Force Of Entropy", srType: -1 }, 443062: { id: 443062, name: "Sanguine Gift", srType: -1 }, 443063: { id: 443063, name: "Eleisa's Miracle", srType: -1 }, 443064: { id: 443064, name: "Talisman Of Ascension", srType: -1 }, 443069: { id: 443069, name: "Hamstringer", srType: -1 }, 443079: { id: 443079, name: "Turbo Chemtank", srType: -1 }, 443080: { id: 443080, name: "Twin Mask", srType: -1 }, 443081: { id: 443081, name: "Hexbolt Companion", srType: -1 }, 443083: { id: 443083, name: "Warmog's Armor", srType: -1 }, 443090: { id: 443090, name: "Reaper's Toll", srType: -1 }, 443193: { id: 443193, name: "Gargoyle Stoneplate", srType: -1 }, 444636: { id: 444636, name: "Night Harvester", srType: -1 }, 444637: { id: 444637, name: "Demonic Embrace", srType: -1 }, 444644: { id: 444644, name: "Crown of the Shattered Queen", srType: -1 }, 446632: { id: 446632, name: "Divine Sunderer", srType: -1 }, 446656: { id: 446656, name: "Everfrost", srType: -1 }, 446667: { id: 446667, name: "Radiant Virtue", srType: -1 }, 446671: { id: 446671, name: "Galeforce", srType: -1 }, 446691: { id: 446691, name: "Duskblade of Draktharr", srType: -1 }, 446693: { id: 446693, name: "Prowler's Claw", srType: -1 }, 447100: { id: 447100, name: "Mirage Blade", srType: -1 }, 447101: { id: 447101, name: "Gambler's Blade", srType: -1 }, 447102: { id: 447102, name: "Reality Fracture", srType: -1 }, 447103: { id: 447103, name: "Hemomancer's Helm", srType: -1 }, 447104: { id: 447104, name: "Innervating Locket", srType: -1 }, 447106: { id: 447106, name: "Dragonheart", srType: -1 }, 447107: { id: 447107, name: "Decapitator", srType: -1 }, 447108: { id: 447108, name: "Runecarver", srType: -1 }, 447109: { id: 447109, name: "Cruelty", srType: -1 }, 447110: { id: 447110, name: "Moonflair Spellblade", srType: -1 }, 447111: { id: 447111, name: "Overlord's Bloodmail", srType: -1 }, 447112: { id: 447112, name: "Flesheater", srType: -1 }, 447113: { id: 447113, name: "Detonation Orb", srType: -1 }, 447114: { id: 447114, name: "Reverberation", srType: -1 }, 447115: { id: 447115, name: "Regicide", srType: -1 }, 447116: { id: 447116, name: "Kinkou Jitte", srType: -1 }, 447118: { id: 447118, name: "Pyromancer's Cloak", srType: -1 }, 447119: { id: 447119, name: "Lightning Rod", srType: -1 }, 447120: { id: 447120, name: "Diamond-Tipped Spear", srType: -1 }, 447121: { id: 447121, name: "Twilight's Edge", srType: -1 }, 447122: { id: 447122, name: "Black Hole Gauntlet", srType: -1 }, 447123: { id: 447123, name: "Puppeteer", srType: -1 }, 663039: { id: 663039, name: "Atma's Reckoning", srType: -1 }, 663056: { id: 663056, name: "Demon King's Crown", srType: -1 }, 663058: { id: 663058, name: "Shield of Molten Stone", srType: -1 }, 663059: { id: 663059, name: "Cloak of Starry Night", srType: -1 }, 663060: { id: 663060, name: "Sword of the Divine", srType: -1 }, 663064: { id: 663064, name: "Veigar's Talisman of Ascension", srType: -1 }, 663146: { id: 663146, name: "Hextech Gunblade", srType: -1 }, 663172: { id: 663172, name: "Zephyr", srType: -1 }, 663193: { id: 663193, name: "Gargoyle Stoneplate", srType: -1 }, 664011: { id: 664011, name: "Sword of Blossoming Dawn", srType: -1 }, 664403: { id: 664403, name: "The Golden Spatula", srType: -1 }, 664644: { id: 664644, name: "Crown of the Shattered Queen", srType: -1 }, 667101: { id: 667101, name: "Gambler's Blade", srType: -1 }, 667109: { id: 667109, name: "Cruelty", srType: -1 }, 667112: { id: 667112, name: "Flesheater", srType: -1 }, 994403: { id: 994403, name: "Golden Spatula", srType: -1 } };
|
|
2
2
|
export const failsafeItem = { id: 0, name: "", srType: -1 };
|
|
3
3
|
export const ItemsArr = Object.values(Items);
|
|
4
|
-
export const itemNames = { Boots: { 11: 1001, 12: 1001, 21: 1001, 35: 1001 }, "Faerie Charm": { 11: 1004, 12: 1004, 21: 1004, 35: 1004 }, "Rejuvenation Bead": { 11: 1006, 12: 1006, 21: 1006, 35: 1006 }, "Giant's Belt": { 11: 1011, 12: 1011, 21: 1011, 35: 1011 }, "Cloak of Agility": { 11: 1018, 12: 1018, 21: 1018, 35: 1018 }, "Blasting Wand": { 11: 1026, 12: 1026, 21: 1026, 30: 221026, 35: 1026 }, "Sapphire Crystal": { 11: 1027, 12: 1027, 21: 1027, 35: 1027 }, "Ruby Crystal": { 11: 1028, 12: 1028, 21: 1028, 35: 1028 }, "Cloth Armor": { 11: 1029, 12: 1029, 21: 1029, 35: 1029 }, "Chain Vest": { 11: 1031, 12: 1031, 21: 1031, 35: 1031 }, "Null-Magic Mantle": { 11: 1033, 12: 1033, 21: 1033, 35: 1033 }, Emberknife: 1035, "Long Sword": { 11: 1036, 12: 1036, 21: 1036, 35: 1036 }, Pickaxe: { 11: 1037, 12: 1037, 21: 1037, 35: 1037 }, "B. F. Sword": { 11: 1038, 12: 1038, 21: 1038, 35: 1038 }, Hailblade: 1039, "Obsidian Edge": 1040, Dagger: { 11: 1042, 12: 1042, 21: 1042, 35: 1042 }, "Recurve Bow": { 11: 1043, 12: 1043, 21: 1043, 35: 1043 }, "Amplifying Tome": { 11: 1052, 12: 1052, 21: 1052, 35: 1052 }, "Vampiric Scepter": { 11: 1053, 12: 1053, 21: 1053, 35: 1053 }, "Doran's Shield": { 11: 1054, 12: 1054, 21: 1054 }, "Doran's Blade": { 11: 1055, 12: 1055, 21: 1055 }, "Doran's Ring": { 11: 1056, 12: 1056, 21: 1056 }, "Negatron Cloak": { 11: 1057, 12: 1057, 21: 1057, 35: 1057 }, "Needlessly Large Rod": { 11: 1058, 12: 1058, 21: 1058, 30: 221058, 35: 1058 }, "Dark Seal": { 11: 1082 }, Cull: { 11: 1083 }, "Scorchclaw Pup": { 11: 1101, 21: 1101 }, "Gustwalker Hatchling": { 11: 1102, 21: 1102 }, "Mosstomper Seedling": { 11: 1103, 21: 1103 }, "Eye of the Herald": 1104, "Penetrating Bullets": { 11: 1500, 12: 1500, 21: 1500, 30: 1500, 35: 1500 }, "Warden's Eye": { 11: 1503, 12: 1503, 21: 1503, 30: 1503, 35: 1503 }, Vanguard: 1504, Overcharged: { 11: 1507, 12: 1507, 21: 1507, 30: 1507, 35: 1507 }, "Anti-tower Socks": { 11: 1508, 12: 1508, 21: 1508, 30: 1508, 35: 1508 }, Gusto: { 11: 1509, 12: 1509, 21: 1509, 30: 1509, 35: 1509 }, "Phreakish Gusto": { 11: 1510, 12: 1510, 21: 1510, 30: 1510, 35: 1510 }, "Super Mech Armor": { 11: 1511, 12: 1511, 21: 1511, 30: 1511, 35: 1511 }, "Super Mech Power Field": { 11: 1512, 12: 1512, 21: 1512, 30: 1512, 35: 1512 }, "Turret Plating": { 11: 1515, 12: 1515, 21: 1515, 30: 1515, 35: 1515 }, OvererchargedHA: { 11: 1520, 12: 1520, 21: 1520, 30: 1520, 35: 1520 }, "Tower Power-Up": { 11: 1522, 12: 1522, 21: 1522, 30: 1522, 35: 1522 }, "Health Potion": { 11: 2003, 12: 2003, 21: 2003 }, "Total Biscuit of Everlasting Will": { 11: 2010, 12: 2010, 21: 2010, 30: 2010, 35: 2010 }, "Kircheis Shard": 2015, "Steel Sigil": { 11: 2019, 12: 2019, 21: 2019, 35: 2019 }, "The Brutalizer": { 11: 2020, 12: 2020, 21: 2020, 35: 2020 }, Tunneler: { 11: 2021, 12: 2021, 21: 2021, 35: 2021 }, "Glowing Mote": { 11: 2022, 12: 2022, 21: 2022, 35: 2022 }, "Refillable Potion": { 11: 2031, 12: 2031, 21: 2031 }, "Corrupting Potion": { 11: 2033, 21: 2033 }, "Guardian's Amulet": { 30: 2049 }, "Guardian's Shroud": { 30: 2050 }, "Guardian's Horn": { 12: 2051, 30: 222051, 35: 2051 }, "Poro-Snax": { 11: 2052, 12: 2052, 21: 2052, 30: 2052, 35: 2052 }, "Control Ward": { 11: 2055 }, "Stealth Ward": { 11: 3340, 21: 3340 }, "Shurelya's Battlesong": { 11: 2065, 12: 2065, 21: 2065, 30: 222065, 35: 2065 }, "Elixir of Iron": { 11: 2138, 12: 2138, 21: 2138 }, "Elixir of Sorcery": { 11: 2139, 12: 2139, 21: 2139 }, "Elixir of Wrath": { 11: 2140, 12: 2140, 21: 2140 }, "Cappa Juice": { 11: 2141, 12: 2141, 30: 222141 }, "Juice of Power": { 30: 2142 }, "Juice of Vitality": { 30: 2143 }, "Juice of Haste": { 30: 2144 }, "Lucky Dice": { 30: 2145 }, "Enhanced Lucky Dice": { 30: 2146 }, "Elixir of Skill": { 11: 2150, 12: 2150, 21: 2150, 35: 2150 }, "Elixir of Avarice": { 11: 2151, 12: 2151, 21: 2151, 35: 2151 }, "Elixir of Force": { 11: 2152, 12: 2152, 21: 2152, 35: 2152 }, "Bandle Juice of Power": { 35: 2161 }, "Bandle Juice of Vitality": { 35: 2162 }, "Bandle Juice of Haste": { 35: 2163 }, "Minion Dematerializer": { 11: 2403, 12: 2403, 21: 2403, 35: 2403 }, "Seeker's Armguard": { 11: 2420, 12: 2420, 21: 2420, 35: 2420 }, "Shattered Armguard": { 11: 2421, 12: 2421, 21: 2421, 35: 2421 }, "Slightly Magical Footwear": { 11: 2422, 12: 2422, 21: 2422, 35: 2422 }, "Overlord's Bloodmail": { 11: 2501, 12: 2501, 21: 2501, 30: 447111, 35: 2501 }, "Unending Despair": { 11: 2502, 12: 2502, 21: 2502, 30: 222502, 35: 2502 }, "Blackfire Torch": { 11: 2503, 12: 2503, 21: 2503, 30: 222503, 35: 2503 }, "Kaenic Rookern": { 11: 2504, 12: 2504, 21: 2504, 30: 222504, 35: 2504 }, "Fated Ashes": { 11: 2508, 12: 2508, 21: 2508, 35: 2508 }, Evenshroud: 3001, Trailblazer: { 11: 3002, 12: 3002, 21: 3002, 35: 3002 }, "Archangel's Staff": { 11: 3003, 12: 3003, 21: 3003, 30: 223003, 35: 3003 }, Manamune: { 11: 3004, 12: 3004, 21: 3004, 30: 223004, 35: 3004 }, Ghostcrawlers: { 21: 3005, 30: 223005 }, "Berserker's Greaves": { 11: 3006, 12: 3006, 21: 3006, 30: 223006, 35: 3006 }, "Boots of Swiftness": { 11: 3009, 12: 3009, 21: 3009, 30: 223009, 35: 3009 }, "Symbiotic Soles": { 11: 3010, 21: 3010 }, "Chemtech Putrifier": { 11: 3011, 12: 3011, 21: 3011, 30: 223011, 35: 3011 }, "Chalice of Blessing": 3012, "Synchronized Souls": { 11: 3013, 21: 3013 }, "Sorcerer's Shoes": { 11: 3020, 12: 3020, 21: 3020, 30: 223020, 35: 3020 }, "Lifewell Pendant": 3023, "Glacial Buckler": { 11: 3024, 12: 3024, 21: 3024, 35: 3024 }, "Guardian Angel": { 11: 3026, 30: 223026 }, "Infinity Edge": { 11: 3031, 12: 3031, 21: 3031, 30: 223031, 35: 3031 }, "Yun Tal Wildarrows": { 11: 3032, 12: 3032, 21: 3032, 30: 223032, 35: 3032 }, "Mortal Reminder": { 11: 3033, 12: 3033, 21: 3033, 30: 223033, 35: 3033 }, "Last Whisper": { 11: 3035, 12: 3035, 21: 3035, 35: 3035 }, "Lord Dominik's Regards": { 11: 3036, 12: 3036, 21: 3036, 30: 223036, 35: 3036 }, "Atma's Reckoning": { 11: 663039, 21: 3039, 30: 223039 }, "Seraph's Embrace": { 11: 3040, 12: 3040, 21: 3040, 30: 223040, 35: 3040 }, "Mejai's Soulstealer": { 11: 3041 }, Muramana: { 11: 3042, 12: 3042, 21: 3042, 30: 223042, 35: 3042 }, Phage: { 11: 3044, 12: 3044, 21: 3044, 35: 3044 }, "Phantom Dancer": { 11: 3046, 12: 3046, 21: 3046, 30: 223046, 35: 3046 }, "Plated Steelcaps": { 11: 3047, 12: 3047, 21: 3047, 30: 223047, 35: 3047 }, "Zeke's Convergence": { 11: 3050, 12: 3050, 21: 3050, 30: 223050, 35: 3050 }, "Hearthbound Axe": { 11: 3051, 12: 3051, 21: 3051, 35: 3051 }, "Sterak's Gage": { 11: 3053, 12: 3053, 21: 3053, 30: 223053, 35: 3053 }, Sheen: { 11: 3057, 12: 3057, 21: 3057, 35: 3057 }, "Spirit Visage": { 11: 3065, 12: 3065, 21: 3065, 30: 223065, 35: 3065 }, "Winged Moonplate": { 11: 3066, 12: 3066, 21: 3066, 35: 3066 }, Kindlegem: { 11: 3067, 12: 3067, 21: 3067, 35: 3067 }, "Sunfire Aegis": { 11: 3068, 12: 3068, 21: 3068, 30: 223068, 35: 3068 }, "Tear of the Goddess": { 11: 3070, 12: 3070, 21: 3070, 35: 3070 }, "Black Cleaver": { 11: 3071, 12: 3071, 21: 3071, 30: 223071, 35: 3071 }, Bloodthirster: { 11: 3072, 12: 3072, 21: 3072, 30: 223072, 35: 3072 }, "Experimental Hexplate": { 11: 3073, 12: 3073, 21: 3073, 30: 223073, 35: 3073 }, "Ravenous Hydra": { 11: 3074, 12: 3074, 21: 3074, 30: 223074, 35: 3074 }, Thornmail: { 11: 3075, 12: 3075, 21: 3075, 30: 223075, 35: 3075 }, "Bramble Vest": { 11: 3076, 12: 3076, 21: 3076, 35: 3076 }, Tiamat: { 11: 3077, 12: 3077, 21: 3077, 35: 3077 }, "Trinity Force": { 11: 3078, 12: 3078, 21: 3078, 30: 223078, 35: 3078 }, "Warden's Mail": { 11: 3082, 12: 3082, 21: 3082, 35: 3082 }, "Warmog's Armor": { 11: 3083, 12: 3083, 21: 3083, 30: 443083, 35: 3083 }, Heartsteel: { 11: 3084, 12: 3084, 21: 3084, 30: 223084, 35: 3084 }, "Runaan's Hurricane": { 11: 3085, 12: 3085, 21: 3085, 30: 223085, 35: 3085 }, Zeal: { 11: 3086, 12: 3086, 21: 3086, 35: 3086 }, "Statikk Shiv": { 11: 3087, 12: 3087, 21: 3087, 30: 223087, 35: 3087 }, "Rabadon's Deathcap": { 11: 3089, 12: 3089, 21: 3089, 30: 223089, 35: 3089 }, "Wit's End": { 11: 3091, 12: 3091, 21: 3091, 30: 223091, 35: 3091 }, "Rapid Firecannon": { 11: 3094, 12: 3094, 21: 3094, 30: 223094, 35: 3094 }, Stormrazor: { 30: 223095 }, "Lich Bane": { 11: 3100, 12: 3100, 21: 3100, 30: 223100, 35: 3100 }, "Banshee's Veil": { 11: 3102, 12: 3102, 21: 3102, 30: 223102, 35: 3102 }, "Aegis of the Legion": { 11: 3105, 12: 3105, 21: 3105, 35: 3105 }, Redemption: { 11: 3107, 12: 3107, 21: 3107, 30: 223107, 35: 3107 }, "Fiendish Codex": { 11: 3108, 12: 3108, 21: 3108, 35: 3108 }, "Knight's Vow": { 11: 3109, 12: 3109, 21: 3109, 30: 223109, 35: 3109 }, "Frozen Heart": { 11: 3110, 12: 3110, 21: 3110, 30: 223110, 35: 3110 }, "Mercury's Treads": { 11: 3111, 12: 3111, 21: 3111, 30: 223111, 35: 3111 }, "Guardian's Orb": { 12: 3112, 30: 223112, 35: 3112 }, "Aether Wisp": { 11: 3113, 12: 3113, 21: 3113, 35: 3113 }, "Forbidden Idol": { 11: 3114, 12: 3114, 21: 3114, 35: 3114 }, "Nashor's Tooth": { 11: 3115, 12: 3115, 21: 3115, 30: 223115, 35: 3115 }, "Rylai's Crystal Scepter": { 11: 3116, 12: 3116, 21: 3116, 30: 223116, 35: 3116 }, "Mobility Boots": { 11: 3117, 12: 3117, 21: 3117, 35: 3117 }, Malignance: { 11: 3118, 12: 3118, 21: 3118, 30: 223118, 35: 3118 }, "Winter's Approach": { 11: 3119, 12: 3119, 21: 3119, 30: 223119, 35: 3119 }, Fimbulwinter: { 11: 3121, 12: 3121, 21: 3121, 30: 223121, 35: 3121 }, "Executioner's Calling": { 11: 3123, 12: 3123, 21: 3123, 35: 3123 }, "Guinsoo's Rageblade": { 11: 3124, 12: 3124, 21: 3124, 30: 223124, 35: 3124 }, "Deathfire Grasp": { 21: 3128 }, "Sword of the Divine": { 11: 663060, 21: 3131, 30: 443060 }, "Caulfield's Warhammer": { 11: 3133, 12: 3133, 21: 3133, 35: 3133 }, "Serrated Dirk": { 11: 3134, 12: 3134, 21: 3134, 35: 3134 }, "Void Staff": { 11: 3135, 12: 3135, 21: 3135, 30: 223135, 35: 3135 }, Cryptbloom: { 11: 3137, 12: 3137, 21: 3137, 30: 223137, 35: 3137 }, "Mercurial Scimitar": { 11: 3139, 12: 3139, 21: 3139, 30: 223139, 35: 3139 }, "Quicksilver Sash": { 11: 3140, 12: 3140, 21: 3140, 35: 3140 }, "Youmuu's Ghostblade": { 11: 3142, 12: 3142, 21: 3142, 30: 223142, 35: 3142 }, "Randuin's Omen": { 11: 3143, 12: 3143, 21: 3143, 30: 223143, 35: 3143 }, "Scout's Slingshot": { 11: 3144, 12: 3144, 21: 3144, 35: 3144 }, "Hextech Alternator": { 11: 3145, 12: 3145, 21: 3145, 35: 3145 }, "Hextech Gunblade": { 11: 663146, 21: 3146, 30: 223146 }, "Haunting Guise": { 11: 3147, 12: 3147, 21: 3147, 35: 3147 }, "Hextech Rocketbelt": { 11: 3152, 12: 3152, 21: 3152, 30: 223152, 35: 3152 }, "Blade of The Ruined King": { 11: 3153, 12: 3153, 21: 3153, 30: 223153, 35: 3153 }, Hexdrinker: { 11: 3155, 12: 3155, 21: 3155, 35: 3155 }, "Maw of Malmortius": { 11: 3156, 12: 3156, 21: 3156, 30: 223156, 35: 3156 }, "Zhonya's Hourglass": { 11: 3157, 12: 3157, 21: 3157, 30: 223157, 35: 3157 }, "Ionian Boots of Lucidity": { 11: 3158, 12: 3158, 21: 3158, 30: 223158, 35: 3158 }, "Spear of Shojin": { 11: 3161, 12: 3161, 21: 3161, 30: 223161, 35: 3161 }, Morellonomicon: { 11: 3165, 12: 3165, 21: 3165, 30: 223165, 35: 3165 }, Swiftmarch: { 11: 3170 }, "Crimson Lucidity": { 11: 3171 }, "Gunmetal Greaves": { 11: 3172, 21: 3172, 35: 3172 }, "Chainlaced Crushers": { 11: 3173 }, "Armored Advance": { 11: 3174 }, "Spellslinger's Shoes": { 11: 3175 }, "Forever Forward": { 11: 3176 }, "Guardian's Blade": { 12: 3177, 30: 223177, 35: 3177 }, "Umbral Glaive": { 11: 3179, 12: 3179, 21: 3179, 35: 3179 }, Hullbreaker: { 11: 3181, 12: 3181, 21: 3181, 30: 223181 }, "Guardian's Hammer": { 12: 3184, 30: 223184, 35: 3184 }, "Locket of the Iron Solari": { 11: 3190, 12: 3190, 21: 3190, 30: 223190, 35: 3190 }, "Gargoyle Stoneplate": { 11: 663193, 30: 443193 }, "Spectre's Cowl": { 11: 3211, 12: 3211, 21: 3211, 35: 3211 }, "Mikael's Blessing": { 11: 3222, 12: 3222, 21: 3222, 30: 223222, 35: 3222 }, Terminus: { 11: 3302, 12: 3302, 21: 3302, 30: 223302, 35: 3302 }, "Scarecrow Effigy": { 11: 3330, 12: 3330, 21: 3330, 30: 3330, 35: 3330 }, "Arcane Sweeper": { 30: 3348 }, "Lucent Singularity": 3349, "Farsight Alteration": { 11: 3363, 12: 3363, 21: 3363 }, "Oracle Lens": { 11: 3364, 21: 3364 }, "Small Party Favor": 3398, "Party Favor": 3399, "Your Cut": { 11: 3400, 12: 3400, 21: 3400, 30: 3400, 35: 3400 }, "Rite Of Ruin": { 30: 3430 }, "Ardent Censer": { 11: 3504, 12: 3504, 21: 3504, 30: 223504, 35: 3504 }, "Essence Reaver": { 11: 3508, 12: 3508, 21: 3508, 30: 223508, 35: 3508 }, "Kalista's Black Spear": { 11: 3599, 12: 3599, 21: 3599, 30: 3599, 35: 3599 }, "Sylas' Black Spear": { 11: 3600, 12: 3600, 21: 3600, 30: 3600, 35: 3600 }, "Dead Man's Plate": { 11: 3742, 12: 3742, 21: 3742, 30: 223742, 35: 3742 }, "Titanic Hydra": { 11: 3748, 12: 3748, 21: 3748, 30: 223748, 35: 3748 }, "Crystalline Bracer": { 11: 3801, 12: 3801, 21: 3801, 35: 3801 }, "Lost Chapter": { 11: 3802, 12: 3802, 21: 3802, 35: 3802 }, "Catalyst of Aeons": { 11: 3803, 12: 3803, 21: 3803, 35: 3803 }, "Edge of Night": { 11: 3814, 12: 3814, 21: 3814, 30: 223814, 35: 3814 }, "Spellthief's Edge": 3850, Frostfang: 3851, "Shard of True Ice": 3853, "Steel Shoulderguards": 3854, "Runesteel Spaulders": 3855, "Pauldrons of Whiterock": 3857, "Relic Shield": 3858, "Targon's Buckler": 3859, "Bulwark of the Mountain": 3860, "Spectral Sickle": 3862, "Harrowing Crescent": 3863, "Black Mist Scythe": 3864, "World Atlas": { 11: 3865 }, "Runic Compass": { 11: 3866 }, "Bounty of Worlds": { 11: 3867 }, "Celestial Opposition": { 11: 3869 }, "Dream Maker": { 11: 3870 }, "Zaz'Zak's Realmspike": { 11: 3871 }, "Solstice Sleigh": { 11: 3876 }, Bloodsong: { 11: 3877 }, "Fire at Will": { 11: 3901, 12: 3901, 21: 3901, 30: 3901, 35: 3901 }, "Death's Daughter": { 11: 3902, 12: 3902, 21: 3902, 30: 3902, 35: 3902 }, "Raise Morale": { 11: 3903, 12: 3903, 21: 3903, 30: 3903, 35: 3903 }, "Oblivion Orb": { 11: 3916, 12: 3916, 21: 3916, 35: 3916 }, Lifeline: { 12: 4003, 21: 4003, 35: 4003 }, "Spectral Cutlass": { 12: 4004, 21: 4004, 30: 224004, 35: 4004 }, "Imperial Mandate": { 11: 4005, 12: 4005, 21: 4005, 30: 224005, 35: 4005 }, "Bloodletter's Curse": { 11: 8010, 12: 8010, 21: 8010, 30: 4010, 35: 8010 }, "Sword of Blossoming Dawn": { 11: 664011, 30: 4011 }, "Sin Eater": 4012, "Lightning Braid": 4013, "Frozen Mallet": 4014, Perplexity: { 30: 4015 }, "Wordless Promise": { 30: 4016 }, "Hellfire Hatchet": { 30: 4017 }, "Force of Nature": { 11: 4401, 12: 4401, 21: 4401, 30: 224401, 35: 4401 }, "Innervating Locket": { 21: 4402, 30: 447104 }, "The Golden Spatula": { 11: 664403, 21: 4403, 30: 224403 }, "Horizon Focus": { 11: 4628, 12: 4628, 21: 4628, 30: 224628, 35: 4628 }, "Cosmic Drive": { 11: 4629, 12: 4629, 21: 4629, 30: 224629, 35: 4629 }, "Blighting Jewel": { 11: 4630, 12: 4630, 21: 4630, 35: 4630 }, "Verdant Barrier": { 11: 4632, 12: 4632, 21: 4632, 35: 4632 }, Riftmaker: { 11: 4633, 12: 4633, 21: 4633, 30: 224633, 35: 4633 }, "Leeching Leer": { 11: 4635, 12: 4635, 21: 4635, 35: 4635 }, "Night Harvester": { 11: 4636, 12: 4636, 21: 4636, 30: 444636, 35: 4636 }, "Demonic Embrace": { 11: 4637, 12: 4637, 21: 4637, 30: 444637, 35: 4637 }, "Watchful Wardstone": { 11: 4638 }, "Stirring Wardstone": { 11: 4641 }, "Bandleglass Mirror": { 11: 4642, 12: 4642, 21: 4642, 35: 4642 }, "Vigilant Wardstone": { 11: 4643 }, "Crown of the Shattered Queen": { 11: 664644, 30: 444644 }, Shadowflame: { 11: 4645, 12: 4645, 21: 4645, 30: 224645, 35: 4645 }, Stormsurge: { 11: 4646, 12: 4646, 21: 4646, 30: 224646, 35: 4646 }, "Ironspike Whip": 6029, "Silvermere Dawn": 6035, "Death's Dance": { 11: 6333, 12: 6333, 21: 6333, 30: 226333, 35: 6333 }, "Chempunk Chainsword": { 11: 6609, 12: 6609, 21: 6609, 30: 226609, 35: 6609 }, "Sundered Sky": { 11: 6610, 12: 6610, 21: 6610, 30: 226610, 35: 6610 }, "Staff of Flowing Water": { 11: 6616, 12: 6616, 21: 6616, 30: 226616, 35: 6616 }, "Moonstone Renewer": { 11: 6617, 12: 6617, 21: 6617, 30: 226617, 35: 6617 }, "Echoes of Helia": { 11: 6620, 12: 6620, 21: 6620, 30: 226620, 35: 6620 }, Dawncore: { 11: 6621, 12: 6621, 21: 6621, 30: 226621, 35: 6621 }, Goredrinker: { 30: 226630 }, Stridebreaker: { 11: 6631, 12: 6631, 21: 6631, 30: 226631, 35: 6631 }, "Divine Sunderer": { 30: 446632 }, "Liandry's Torment": { 11: 6653, 12: 6653, 21: 6653, 35: 6653 }, "Luden's Companion": { 11: 6655, 12: 6655, 21: 6655, 30: 226655, 35: 6655 }, Everfrost: { 30: 446656 }, "Rod of Ages": { 11: 6657, 12: 6657, 21: 6657, 30: 226657, 35: 6657 }, "Bami's Cinder": { 11: 6660, 12: 6660, 21: 6660, 35: 6660 }, "Iceborn Gauntlet": { 11: 6662, 12: 6662, 21: 6662, 30: 226662, 35: 6662 }, "Hollow Radiance": { 11: 6664, 12: 6664, 21: 6664, 30: 226664, 35: 6664 }, "Jak'Sho, The Protean": { 11: 6665, 12: 6665, 21: 6665, 30: 226665, 35: 6665 }, "Radiant Virtue": { 30: 446667 }, Noonquiver: { 11: 6670, 12: 6670, 21: 6670, 35: 6670 }, Galeforce: { 30: 446671 }, "Kraken Slayer": { 11: 6672, 12: 6672, 21: 6672, 30: 226672, 35: 6672 }, "Immortal Shieldbow": { 11: 6673, 12: 6673, 21: 6673, 30: 226673, 35: 6673 }, "Navori Flickerblade": { 11: 6675, 12: 6675, 21: 6675, 35: 6675 }, "The Collector": { 11: 6676, 12: 6676, 21: 6676, 30: 226676, 35: 6676 }, Rageknife: 6677, Rectrix: { 11: 6690, 12: 6690, 21: 6690, 35: 6690 }, "Duskblade of Draktharr": { 30: 446691 }, Eclipse: { 11: 6692, 12: 6692, 21: 6692, 30: 226692, 35: 6692 }, "Prowler's Claw": { 11: 6693, 12: 6693, 21: 6693, 30: 226693, 35: 6693 }, "Serylda's Grudge": { 11: 6694, 12: 6694, 21: 6694, 30: 226694, 35: 6694 }, "Serpent's Fang": { 11: 6695, 12: 6695, 21: 6695, 30: 226695, 35: 6695 }, "Axiom Arc": { 11: 6696, 12: 6696, 21: 6696, 30: 226696, 35: 6696 }, Hubris: { 11: 6697, 12: 126697, 21: 6697, 30: 226697, 35: 126697 }, "Profane Hydra": { 11: 6698, 12: 6698, 21: 6698, 30: 226698, 35: 6698 }, "Voltaic Cyclosword": { 11: 6699, 12: 6699, 21: 6699, 30: 226699, 35: 6699 }, "Shield of the Rakkor": 6700, Opportunity: { 11: 6701, 12: 6701, 21: 6701, 30: 226701, 35: 6701 }, "Scouting Ahead": { 35: 6702 }, "Gangplank Placeholder": { 11: 7050, 12: 7050, 21: 7050, 30: 7050, 35: 7050 }, "Anathema's Chains": { 11: 8001, 12: 8001, 21: 8001, 30: 228001, 35: 8001 }, "Abyssal Mask": { 11: 8020, 12: 8020, 21: 8020, 30: 228020, 35: 8020 }, "Locked Weapon Slot": { 33: 9168 }, "Cyclonic Slicers": { 33: 9171 }, YuumiBot: { 33: 9172 }, "Radiant Field": { 33: 9173 }, "Statikk Sword": { 33: 9174 }, "Lioness's Lament": { 33: 9175 }, "Gatling Bunny-Guns": { 33: 9176 }, "Searing Shortbow": { 33: 9177 }, "The Annihilator": { 33: 9178 }, "Battle Bunny Crossbow": { 33: 9179 }, "UwU Blaster": { 33: 9180 }, "Vortex Glove": { 33: 9181 }, "Blade-o-rang": { 33: 9183 }, "Bunny Mega-Blast": { 33: 9184 }, "Anti-Shark Sea Mine": { 33: 9185 }, "T.I.B.B.E.R.S": { 33: 9187 }, "Ani-Mines": { 33: 9188 }, "Final City Transit": { 33: 9189 }, "Echoing Batblades": { 33: 9190 }, "Paw Print Poisoner": { 33: 9192 }, "Iceblast Armor": { 33: 9193 }, "Unceasing Cyclone": { 33: 9271 }, YuumiBot_Final_FINAL: { 33: 9272 }, "Explosive Embrace": { 33: 9273 }, "Prumbis's Electrocarver": { 33: 9274 }, "Enveloping Light": { 33: 9275 }, "Double Bun-Bun Barrage": { 33: 9276 }, "Evolved Embershot": { 33: 9277 }, Animapocalypse: { 33: 9278 }, "Bunny Prime Ballista": { 33: 9279 }, "OwO Blaster": { 33: 9280 }, "Tempest's Gauntlet": { 33: 9281 }, "Quad-o-rang": { 33: 9283 }, "Rapid Rabbit Raindown": { 33: 9284 }, "Neverending Mobstomper": { 33: 9285 }, "T.I.B.B.E.R.S (B.E.E.G Edition)": { 33: 9287 }, "Jinx's Tri-Namite": { 33: 9288 }, "FC Limited Express": { 33: 9289 }, "Vayne's Chromablades": { 33: 9290 }, "Bearfoot Chem-Dispenser": { 33: 9292 }, "Deep Freeze": { 33: 9293 }, "Meow Meow": { 33: 9300 }, "Shield Slam": { 33: 9301 }, "Sound Wave": { 33: 9302 }, "Pillory Swipe": { 33: 9303 }, "Steel Tempest": { 33: 9304 }, "Tentacle Slam": { 33: 9305 }, "Winged Dagger": { 33: 9306 }, "Guiding Hex": { 33: 9307 }, "Bunny Hop": { 33: 9308 }, "Battle Cat Barrage": { 33: 9400 }, "Light of the Lion": { 33: 9401 }, "Anima Echo": { 33: 9402 }, "Savage Slice": { 33: 9403 }, "Wandering Storms": { 33: 9404 }, "Grizzly Smash": { 33: 9405 }, "Lover's Ricochet": { 33: 9406 }, "Hopped-Up Hex": { 33: 9407 }, "Carrot Crash": { 33: 9408 }, "Stat Bonus": { 30: 220000 }, "Legendary Fighter Item": { 30: 220001 }, "Legendary Marksman Item": { 30: 220002 }, "Legendary Assassin Item": { 30: 220003 }, "Legendary Mage Item": { 30: 220004 }, "Legendary Tank Item": { 30: 220005 }, "Legendary Support Item": { 30: 220006 }, "Prismatic Item": { 30: 220007 }, "Anvil Voucher": { 30: 220008 }, "Gold Stat Anvil Voucher": { 30: 220009 }, "Prismatic Stat Voucher": { 30: 220010 }, "Bravery Voucher": { 30: 220011 }, Zephyr: { 11: 663172, 30: 223172 }, "Guardian's Dirk": { 30: 223185 }, "Liandry's Anguish": { 30: 226653 }, "Navori Flickerblades": { 30: 226675 }, "Wooglet's Witchcap": { 30: 228002 }, Deathblade: { 30: 228003 }, "Adaptive Helm": { 30: 228004 }, "Obsidian Cleaver": { 30: 228005 }, "Sanguine Blade": { 30: 228006 }, Runeglaive: { 30: 228008 }, "Darksteel Talons": { 30: 443054 }, Fulmination: { 30: 443055 }, "Demon King's Crown": { 11: 663056, 30: 443056 }, "Shield of Molten Stone": { 11: 663058, 30: 443058 }, "Cloak of Starry Night": { 11: 663059, 30: 443059 }, "Force Of Entropy": { 30: 443061 }, "Sanguine Gift": { 30: 443062 }, "Eleisa's Miracle": { 30: 443063 }, "Talisman Of Ascension": { 30: 443064 }, Hamstringer: { 30: 443069 }, "Turbo Chemtank": { 30: 443079 }, "Twin Mask": { 30: 443080 }, "Hexbolt Companion": { 30: 443081 }, "Reaper's Toll": { 30: 443090 }, "Mirage Blade": { 30: 447100 }, "Gambler's Blade": { 11: 667101, 30: 447101 }, "Reality Fracture": { 30: 447102 }, "Hemomancer's Helm": { 30: 447103 }, Dragonheart: { 30: 447106 }, Decapitator: { 30: 447107 }, Runecarver: { 30: 447108 }, Cruelty: { 11: 667109, 30: 447109 }, "Moonflair Spellblade": { 30: 447110 }, Flesheater: { 11: 667112, 30: 447112 }, "Detonation Orb": { 30: 447113 }, Reverberation: { 30: 447114 }, Regicide: { 30: 447115 }, "Kinkou Jitte": { 30: 447116 }, "Pyromancer's Cloak": { 30: 447118 }, "Lightning Rod": { 30: 447119 }, "Diamond-Tipped Spear": { 30: 447120 }, "Twilight's Edge": { 30: 447121 }, "Black Hole Gauntlet": { 30: 447122 }, Puppeteer: { 30: 447123 }, "Veigar's Talisman of Ascension": { 11: 663064 } };
|
|
5
|
-
export const bootsItemIds = { 1001: true, 2422: true, 3005: true, 3006: true, 3009: true, 3010: true, 3013: true, 3020: true, 3047: true, 3111: true, 3117: true, 3158: true, 3170: true, 3171: true, 3173: true, 3174: true, 3175: true, 3176: true, 223005: true, 223006: true, 223009: true, 223020: true, 223047: true, 223111: true, 223158: true, 223172: true, 663172: true };
|
|
4
|
+
export const itemNames = { Boots: { 11: 1001, 12: 1001, 21: 1001, 35: 1001 }, "Faerie Charm": { 11: 1004, 12: 1004, 21: 1004, 35: 1004 }, "Rejuvenation Bead": { 11: 1006, 12: 1006, 21: 1006, 35: 1006 }, "Giant's Belt": { 11: 1011, 12: 1011, 21: 1011, 35: 1011 }, "Cloak of Agility": { 11: 1018, 12: 1018, 21: 1018, 35: 1018 }, "Blasting Wand": { 11: 1026, 12: 1026, 21: 1026, 30: 221026, 35: 1026 }, "Sapphire Crystal": { 11: 1027, 12: 1027, 21: 1027, 35: 1027 }, "Ruby Crystal": { 11: 1028, 12: 1028, 21: 1028, 35: 1028 }, "Cloth Armor": { 11: 1029, 12: 1029, 21: 1029, 35: 1029 }, "Chain Vest": { 11: 1031, 12: 1031, 21: 1031, 35: 1031 }, "Null-Magic Mantle": { 11: 1033, 12: 1033, 21: 1033, 35: 1033 }, Emberknife: 1035, "Long Sword": { 11: 1036, 12: 1036, 21: 1036, 35: 1036 }, Pickaxe: { 11: 1037, 12: 1037, 21: 1037, 35: 1037 }, "B. F. Sword": { 11: 1038, 12: 1038, 21: 1038, 35: 1038 }, Hailblade: 1039, "Obsidian Edge": 1040, Dagger: { 11: 1042, 12: 1042, 21: 1042, 35: 1042 }, "Recurve Bow": { 11: 1043, 12: 1043, 21: 1043, 35: 1043 }, "Amplifying Tome": { 11: 1052, 12: 1052, 21: 1052, 35: 1052 }, "Vampiric Scepter": { 11: 1053, 12: 1053, 21: 1053, 35: 1053 }, "Doran's Shield": { 11: 1054, 12: 1054, 21: 1054 }, "Doran's Blade": { 11: 1055, 12: 1055, 21: 1055 }, "Doran's Ring": { 11: 1056, 12: 1056, 21: 1056 }, "Negatron Cloak": { 11: 1057, 12: 1057, 21: 1057, 35: 1057 }, "Needlessly Large Rod": { 11: 1058, 12: 1058, 21: 1058, 30: 221058, 35: 1058 }, "Dark Seal": { 11: 1082 }, Cull: { 11: 1083 }, "Scorchclaw Pup": { 11: 1101, 21: 1101 }, "Gustwalker Hatchling": { 11: 1102, 21: 1102 }, "Mosstomper Seedling": { 11: 1103, 21: 1103 }, "Eye of the Herald": 1104, "Jarvan I's": { 12: 1111 }, "Penetrating Bullets": { 11: 1500, 12: 1500, 21: 1500, 30: 1500, 35: 1500 }, "Warden's Eye": { 11: 1503, 12: 1503, 21: 1503, 30: 1503, 35: 1503 }, Vanguard: 1504, Overcharged: { 11: 1507, 12: 1507, 21: 1507, 30: 1507, 35: 1507 }, "Anti-tower Socks": { 11: 1508, 12: 1508, 21: 1508, 30: 1508, 35: 1508 }, Gusto: { 11: 1509, 12: 1509, 21: 1509, 30: 1509, 35: 1509 }, "Phreakish Gusto": { 11: 1510, 12: 1510, 21: 1510, 30: 1510, 35: 1510 }, "Super Mech Armor": { 11: 1511, 12: 1511, 21: 1511, 30: 1511, 35: 1511 }, "Super Mech Power Field": { 11: 1512, 12: 1512, 21: 1512, 30: 1512, 35: 1512 }, "Turret Plating": { 11: 1515, 12: 1515, 21: 1515, 30: 1515, 35: 1515 }, OvererchargedHA: { 11: 1520, 12: 1520, 21: 1520, 30: 1520, 35: 1520 }, "Tower Power-Up": { 11: 1522, 12: 1522, 21: 1522, 30: 1522, 35: 1522 }, "Health Potion": { 11: 2003, 12: 2003, 21: 2003 }, "Total Biscuit of Everlasting Will": { 11: 2010, 12: 2010, 21: 2010, 30: 2010, 35: 2010 }, "Kircheis Shard": 2015, "Steel Sigil": { 11: 2019, 12: 2019, 21: 2019, 35: 2019 }, "The Brutalizer": { 11: 2020, 12: 2020, 21: 2020, 35: 2020 }, Tunneler: { 11: 2021, 12: 2021, 21: 2021, 35: 2021 }, "Glowing Mote": { 11: 2022, 12: 2022, 21: 2022, 35: 2022 }, "Refillable Potion": { 11: 2031, 12: 2031, 21: 2031 }, "Corrupting Potion": { 11: 2033, 21: 2033 }, "Guardian's Amulet": { 30: 2049 }, "Guardian's Shroud": { 30: 2050 }, "Guardian's Horn": { 12: 2051, 30: 222051, 35: 2051 }, "Poro-Snax": { 11: 2052, 12: 2052, 21: 2052, 30: 2052, 35: 2052 }, "Control Ward": { 11: 2055 }, "Stealth Ward": { 11: 3340, 21: 3340 }, "Shurelya's Battlesong": { 11: 2065, 12: 2065, 21: 2065, 30: 222065, 35: 2065 }, "Elixir of Iron": { 11: 2138, 12: 2138, 21: 2138 }, "Elixir of Sorcery": { 11: 2139, 12: 2139, 21: 2139 }, "Elixir of Wrath": { 11: 2140, 12: 2140, 21: 2140 }, "Cappa Juice": { 11: 2141, 12: 2141, 30: 222141 }, "Juice of Power": { 30: 2142 }, "Juice of Vitality": { 30: 2143 }, "Juice of Haste": { 30: 2144 }, "Lucky Dice": { 30: 2145 }, "Enhanced Lucky Dice": { 30: 2146 }, "Elixir of Skill": { 11: 2150, 12: 2150, 21: 2150, 35: 2150 }, "Elixir of Avarice": { 11: 2151, 12: 2151, 21: 2151, 35: 2151 }, "Elixir of Force": { 11: 2152, 12: 2152, 21: 2152, 35: 2152 }, "Bandle Juice of Power": { 35: 2161 }, "Bandle Juice of Vitality": { 35: 2162 }, "Bandle Juice of Haste": { 35: 2163 }, "Minion Dematerializer": { 11: 2403, 12: 2403, 21: 2403, 35: 2403 }, "Seeker's Armguard": { 11: 2420, 12: 2420, 21: 2420, 35: 2420 }, "Shattered Armguard": { 11: 2421, 12: 2421, 21: 2421, 35: 2421 }, "Slightly Magical Footwear": { 11: 2422, 12: 2422, 21: 2422, 35: 2422 }, "Overlord's Bloodmail": { 11: 2501, 12: 2501, 21: 2501, 30: 447111, 35: 2501 }, "Unending Despair": { 11: 2502, 12: 2502, 21: 2502, 30: 222502, 35: 2502 }, "Blackfire Torch": { 11: 2503, 12: 2503, 21: 2503, 30: 222503, 35: 2503 }, "Kaenic Rookern": { 11: 2504, 12: 2504, 21: 2504, 30: 222504, 35: 2504 }, "Fated Ashes": { 11: 2508, 12: 2508, 21: 2508, 35: 2508 }, Evenshroud: 3001, Trailblazer: { 11: 3002, 12: 3002, 21: 3002, 35: 3002 }, "Archangel's Staff": { 11: 3003, 12: 3003, 21: 3003, 30: 223003, 35: 3003 }, Manamune: { 11: 3004, 12: 3004, 21: 3004, 30: 223004, 35: 3004 }, Ghostcrawlers: { 21: 3005, 30: 223005 }, "Berserker's Greaves": { 11: 3006, 12: 3006, 21: 3006, 30: 223006, 35: 3006 }, "Boots of Swiftness": { 11: 3009, 12: 3009, 21: 3009, 30: 223009, 35: 3009 }, "Symbiotic Soles": { 11: 3010, 21: 3010 }, "Chemtech Putrifier": { 11: 3011, 12: 3011, 21: 3011, 30: 223011, 35: 3011 }, "Chalice of Blessing": 3012, "Synchronized Souls": { 11: 3013, 21: 3013 }, "Sorcerer's Shoes": { 11: 3020, 12: 3020, 21: 3020, 30: 223020, 35: 3020 }, "Lifewell Pendant": 3023, "Glacial Buckler": { 11: 3024, 12: 3024, 21: 3024, 35: 3024 }, "Guardian Angel": { 11: 3026, 30: 223026 }, "Infinity Edge": { 11: 3031, 12: 3031, 21: 3031, 30: 223031, 35: 3031 }, "Yun Tal Wildarrows": { 11: 3032, 12: 3032, 21: 3032, 30: 223032, 35: 3032 }, "Mortal Reminder": { 11: 3033, 12: 3033, 21: 3033, 30: 223033, 35: 3033 }, "Last Whisper": { 11: 3035, 12: 3035, 21: 3035, 35: 3035 }, "Lord Dominik's Regards": { 11: 3036, 12: 3036, 21: 3036, 30: 223036, 35: 3036 }, "Atma's Reckoning": { 11: 663039, 12: 3039, 21: 3039, 30: 223039 }, "Seraph's Embrace": { 11: 3040, 12: 3040, 21: 3040, 30: 223040, 35: 3040 }, "Mejai's Soulstealer": { 11: 3041 }, Muramana: { 11: 3042, 12: 3042, 21: 3042, 30: 223042, 35: 3042 }, Phage: { 11: 3044, 12: 3044, 21: 3044, 35: 3044 }, "Phantom Dancer": { 11: 3046, 12: 3046, 21: 3046, 30: 223046, 35: 3046 }, "Plated Steelcaps": { 11: 3047, 12: 3047, 21: 3047, 30: 223047, 35: 3047 }, "Zeke's Convergence": { 11: 3050, 12: 3050, 21: 3050, 30: 223050, 35: 3050 }, "Hearthbound Axe": { 11: 3051, 12: 3051, 21: 3051, 35: 3051 }, "Sterak's Gage": { 11: 3053, 12: 3053, 21: 3053, 30: 223053, 35: 3053 }, Sheen: { 11: 3057, 12: 3057, 21: 3057, 35: 3057 }, "Spirit Visage": { 11: 3065, 12: 3065, 21: 3065, 30: 223065, 35: 3065 }, "Winged Moonplate": { 11: 3066, 12: 3066, 21: 3066, 35: 3066 }, Kindlegem: { 11: 3067, 12: 3067, 21: 3067, 35: 3067 }, "Sunfire Aegis": { 11: 3068, 12: 3068, 21: 3068, 30: 223068, 35: 3068 }, "Tear of the Goddess": { 11: 3070, 12: 3070, 21: 3070, 35: 3070 }, "Black Cleaver": { 11: 3071, 12: 3071, 21: 3071, 30: 223071, 35: 3071 }, Bloodthirster: { 11: 3072, 12: 3072, 21: 3072, 30: 223072, 35: 3072 }, "Experimental Hexplate": { 11: 3073, 12: 3073, 21: 3073, 30: 223073, 35: 3073 }, "Ravenous Hydra": { 11: 3074, 12: 3074, 21: 3074, 30: 223074, 35: 3074 }, Thornmail: { 11: 3075, 12: 3075, 21: 3075, 30: 223075, 35: 3075 }, "Bramble Vest": { 11: 3076, 12: 3076, 21: 3076, 35: 3076 }, Tiamat: { 11: 3077, 12: 3077, 21: 3077, 35: 3077 }, "Trinity Force": { 11: 3078, 12: 3078, 21: 3078, 30: 223078, 35: 3078 }, "Warden's Mail": { 11: 3082, 12: 3082, 21: 3082, 35: 3082 }, "Warmog's Armor": { 11: 3083, 12: 3083, 21: 3083, 30: 443083, 35: 3083 }, Heartsteel: { 11: 3084, 12: 3084, 21: 3084, 30: 223084, 35: 3084 }, "Runaan's Hurricane": { 11: 3085, 12: 3085, 21: 3085, 30: 223085, 35: 3085 }, Zeal: { 11: 3086, 12: 3086, 21: 3086, 35: 3086 }, "Statikk Shiv": { 11: 3087, 12: 3087, 21: 3087, 30: 223087, 35: 3087 }, "Rabadon's Deathcap": { 11: 3089, 12: 3089, 21: 3089, 30: 223089, 35: 3089 }, "Wit's End": { 11: 3091, 12: 3091, 21: 3091, 30: 223091, 35: 3091 }, "Rapid Firecannon": { 11: 3094, 12: 3094, 21: 3094, 30: 223094, 35: 3094 }, Stormrazor: { 12: 3095, 30: 223095 }, "Lich Bane": { 11: 3100, 12: 3100, 21: 3100, 30: 223100, 35: 3100 }, "Banshee's Veil": { 11: 3102, 12: 3102, 21: 3102, 30: 223102, 35: 3102 }, "Aegis of the Legion": { 11: 3105, 12: 3105, 21: 3105, 35: 3105 }, Redemption: { 11: 3107, 12: 3107, 21: 3107, 30: 223107, 35: 3107 }, "Fiendish Codex": { 11: 3108, 12: 3108, 21: 3108, 35: 3108 }, "Knight's Vow": { 11: 3109, 12: 3109, 21: 3109, 30: 223109, 35: 3109 }, "Frozen Heart": { 11: 3110, 12: 3110, 21: 3110, 30: 223110, 35: 3110 }, "Mercury's Treads": { 11: 3111, 12: 3111, 21: 3111, 30: 223111, 35: 3111 }, "Guardian's Orb": { 12: 3112, 30: 223112, 35: 3112 }, "Aether Wisp": { 11: 3113, 12: 3113, 21: 3113, 35: 3113 }, "Forbidden Idol": { 11: 3114, 12: 3114, 21: 3114, 35: 3114 }, "Nashor's Tooth": { 11: 3115, 12: 3115, 21: 3115, 30: 223115, 35: 3115 }, "Rylai's Crystal Scepter": { 11: 3116, 12: 3116, 21: 3116, 30: 223116, 35: 3116 }, "Mobility Boots": { 11: 3117, 12: 3117, 21: 3117, 35: 3117 }, Malignance: { 11: 3118, 12: 3118, 21: 3118, 30: 223118, 35: 3118 }, "Winter's Approach": { 11: 3119, 12: 3119, 21: 3119, 30: 223119, 35: 3119 }, Fimbulwinter: { 11: 3121, 12: 3121, 21: 3121, 30: 223121, 35: 3121 }, "Executioner's Calling": { 11: 3123, 12: 3123, 21: 3123, 35: 3123 }, "Guinsoo's Rageblade": { 11: 3124, 12: 3124, 21: 3124, 30: 223124, 35: 3124 }, "Deathfire Grasp": { 21: 3128 }, "Sword of the Divine": { 11: 663060, 21: 3131, 30: 443060 }, "Caulfield's Warhammer": { 11: 3133, 12: 3133, 21: 3133, 35: 3133 }, "Serrated Dirk": { 11: 3134, 12: 3134, 21: 3134, 35: 3134 }, "Void Staff": { 11: 3135, 12: 3135, 21: 3135, 30: 223135, 35: 3135 }, Cryptbloom: { 11: 3137, 12: 3137, 21: 3137, 30: 223137, 35: 3137 }, "Mercurial Scimitar": { 11: 3139, 12: 3139, 21: 3139, 30: 223139, 35: 3139 }, "Quicksilver Sash": { 11: 3140, 12: 3140, 21: 3140, 35: 3140 }, "Youmuu's Ghostblade": { 11: 3142, 12: 3142, 21: 3142, 30: 223142, 35: 3142 }, "Randuin's Omen": { 11: 3143, 12: 3143, 21: 3143, 30: 223143, 35: 3143 }, "Scout's Slingshot": { 11: 3144, 12: 3144, 21: 3144, 35: 3144 }, "Hextech Alternator": { 11: 3145, 12: 3145, 21: 3145, 35: 3145 }, "Hextech Gunblade": { 11: 663146, 21: 3146, 30: 223146 }, "Haunting Guise": { 11: 3147, 12: 3147, 21: 3147, 35: 3147 }, "Hextech Rocketbelt": { 11: 3152, 12: 3152, 21: 3152, 30: 223152, 35: 3152 }, "Blade of The Ruined King": { 11: 3153, 12: 3153, 21: 3153, 30: 223153, 35: 3153 }, Hexdrinker: { 11: 3155, 12: 3155, 21: 3155, 35: 3155 }, "Maw of Malmortius": { 11: 3156, 12: 3156, 21: 3156, 30: 223156, 35: 3156 }, "Zhonya's Hourglass": { 11: 3157, 12: 3157, 21: 3157, 30: 223157, 35: 3157 }, "Ionian Boots of Lucidity": { 11: 3158, 12: 3158, 21: 3158, 30: 223158, 35: 3158 }, "Spear of Shojin": { 11: 3161, 12: 3161, 21: 3161, 30: 223161, 35: 3161 }, Morellonomicon: { 11: 3165, 12: 3165, 21: 3165, 30: 223165, 35: 3165 }, Swiftmarch: { 11: 3170 }, "Crimson Lucidity": { 11: 3171 }, "Gunmetal Greaves": { 11: 3172, 21: 3172, 35: 3172 }, "Chainlaced Crushers": { 11: 3173 }, "Armored Advance": { 11: 3174 }, "Spellslinger's Shoes": { 11: 3175 }, "Forever Forward": { 11: 3176 }, "Guardian's Blade": { 12: 3177, 30: 223177, 35: 3177 }, "Umbral Glaive": { 11: 3179, 12: 3179, 21: 3179, 35: 3179 }, Hullbreaker: { 11: 3181, 12: 3181, 21: 3181, 30: 223181 }, "Guardian's Hammer": { 12: 3184, 30: 223184, 35: 3184 }, "Locket of the Iron Solari": { 11: 3190, 12: 3190, 21: 3190, 30: 223190, 35: 3190 }, "Gargoyle Stoneplate": { 11: 663193, 30: 443193 }, "Spectre's Cowl": { 11: 3211, 12: 3211, 21: 3211, 35: 3211 }, "Mikael's Blessing": { 11: 3222, 12: 3222, 21: 3222, 30: 223222, 35: 3222 }, Terminus: { 11: 3302, 12: 3302, 21: 3302, 30: 223302, 35: 3302 }, "Scarecrow Effigy": { 11: 3330, 12: 3330, 21: 3330, 30: 3330, 35: 3330 }, "Arcane Sweeper": { 30: 3348 }, "Lucent Singularity": 3349, "Farsight Alteration": { 11: 3363, 12: 3363, 21: 3363 }, "Oracle Lens": { 11: 3364, 21: 3364 }, "Small Party Favor": 3398, "Party Favor": 3399, "Your Cut": { 11: 3400, 12: 3400, 21: 3400, 30: 3400, 35: 3400 }, "Rite Of Ruin": { 30: 3430 }, "Ardent Censer": { 11: 3504, 12: 3504, 21: 3504, 30: 223504, 35: 3504 }, "Essence Reaver": { 11: 3508, 12: 3508, 21: 3508, 30: 223508, 35: 3508 }, "Kalista's Black Spear": { 11: 3599, 12: 3599, 21: 3599, 30: 3599, 35: 3599 }, "Sylas' Black Spear": { 11: 3600, 12: 3600, 21: 3600, 30: 3600, 35: 3600 }, "Dead Man's Plate": { 11: 3742, 12: 3742, 21: 3742, 30: 223742, 35: 3742 }, "Titanic Hydra": { 11: 3748, 12: 3748, 21: 3748, 30: 223748, 35: 3748 }, "Crystalline Bracer": { 11: 3801, 12: 3801, 21: 3801, 35: 3801 }, "Lost Chapter": { 11: 3802, 12: 3802, 21: 3802, 35: 3802 }, "Catalyst of Aeons": { 11: 3803, 12: 3803, 21: 3803, 35: 3803 }, "Edge of Night": { 11: 3814, 12: 3814, 21: 3814, 30: 223814, 35: 3814 }, "Spellthief's Edge": 3850, Frostfang: 3851, "Shard of True Ice": 3853, "Steel Shoulderguards": 3854, "Runesteel Spaulders": 3855, "Pauldrons of Whiterock": 3857, "Relic Shield": 3858, "Targon's Buckler": 3859, "Bulwark of the Mountain": 3860, "Spectral Sickle": 3862, "Harrowing Crescent": 3863, "Black Mist Scythe": 3864, "World Atlas": { 11: 3865 }, "Runic Compass": { 11: 3866 }, "Bounty of Worlds": { 11: 3867 }, "Celestial Opposition": { 11: 3869 }, "Dream Maker": { 11: 3870 }, "Zaz'Zak's Realmspike": { 11: 3871 }, "Solstice Sleigh": { 11: 3876 }, Bloodsong: { 11: 3877 }, "Fire at Will": { 11: 3901, 12: 3901, 21: 3901, 30: 3901, 35: 3901 }, "Death's Daughter": { 11: 3902, 12: 3902, 21: 3902, 30: 3902, 35: 3902 }, "Raise Morale": { 11: 3903, 12: 3903, 21: 3903, 30: 3903, 35: 3903 }, "Oblivion Orb": { 11: 3916, 12: 3916, 21: 3916, 35: 3916 }, Lifeline: { 12: 4003, 21: 4003, 35: 4003 }, "Spectral Cutlass": { 12: 4004, 21: 4004, 30: 224004, 35: 4004 }, "Imperial Mandate": { 11: 4005, 12: 4005, 21: 4005, 30: 224005, 35: 4005 }, "Bloodletter's Curse": { 11: 8010, 12: 8010, 21: 8010, 30: 4010, 35: 8010 }, "Sword of Blossoming Dawn": { 11: 664011, 30: 4011 }, "Sin Eater": 4012, "Lightning Braid": 4013, "Frozen Mallet": 4014, Perplexity: { 30: 4015 }, "Wordless Promise": { 30: 4016 }, "Hellfire Hatchet": { 30: 4017 }, "Force of Nature": { 11: 4401, 12: 4401, 21: 4401, 30: 224401, 35: 4401 }, "Innervating Locket": { 21: 4402, 30: 447104 }, "The Golden Spatula": { 11: 664403, 21: 4403, 30: 224403 }, "Horizon Focus": { 11: 4628, 12: 4628, 21: 4628, 30: 224628, 35: 4628 }, "Cosmic Drive": { 11: 4629, 12: 4629, 21: 4629, 30: 224629, 35: 4629 }, "Blighting Jewel": { 11: 4630, 12: 4630, 21: 4630, 35: 4630 }, "Verdant Barrier": { 11: 4632, 12: 4632, 21: 4632, 35: 4632 }, Riftmaker: { 11: 4633, 12: 4633, 21: 4633, 30: 224633, 35: 4633 }, "Leeching Leer": { 11: 4635, 12: 4635, 21: 4635, 35: 4635 }, "Night Harvester": { 11: 4636, 12: 4636, 21: 4636, 30: 444636, 35: 4636 }, "Demonic Embrace": { 11: 4637, 12: 4637, 21: 4637, 30: 444637, 35: 4637 }, "Watchful Wardstone": { 11: 4638 }, "Stirring Wardstone": { 11: 4641 }, "Bandleglass Mirror": { 11: 4642, 12: 4642, 21: 4642, 35: 4642 }, "Vigilant Wardstone": { 11: 4643 }, "Crown of the Shattered Queen": { 11: 664644, 30: 444644 }, Shadowflame: { 11: 4645, 12: 4645, 21: 4645, 30: 224645, 35: 4645 }, Stormsurge: { 11: 4646, 12: 4646, 21: 4646, 30: 224646, 35: 4646 }, "Ironspike Whip": 6029, "Silvermere Dawn": 6035, "Death's Dance": { 11: 6333, 12: 6333, 21: 6333, 30: 226333, 35: 6333 }, "Chempunk Chainsword": { 11: 6609, 12: 6609, 21: 6609, 30: 226609, 35: 6609 }, "Sundered Sky": { 11: 6610, 12: 6610, 21: 6610, 30: 226610, 35: 6610 }, "Staff of Flowing Water": { 11: 6616, 12: 6616, 21: 6616, 30: 226616, 35: 6616 }, "Moonstone Renewer": { 11: 6617, 12: 6617, 21: 6617, 30: 226617, 35: 6617 }, "Echoes of Helia": { 11: 6620, 12: 6620, 21: 6620, 30: 226620, 35: 6620 }, Dawncore: { 11: 6621, 12: 6621, 21: 6621, 30: 226621, 35: 6621 }, Goredrinker: { 30: 226630 }, Stridebreaker: { 11: 6631, 12: 6631, 21: 6631, 30: 226631, 35: 6631 }, "Divine Sunderer": { 30: 446632 }, "Liandry's Torment": { 11: 6653, 12: 6653, 21: 6653, 35: 6653 }, "Luden's Companion": { 11: 6655, 12: 6655, 21: 6655, 30: 226655, 35: 6655 }, Everfrost: { 30: 446656 }, "Rod of Ages": { 11: 6657, 12: 6657, 21: 6657, 30: 226657, 35: 6657 }, "Bami's Cinder": { 11: 6660, 12: 6660, 21: 6660, 35: 6660 }, "Iceborn Gauntlet": { 11: 6662, 12: 6662, 21: 6662, 30: 226662, 35: 6662 }, "Hollow Radiance": { 11: 6664, 12: 6664, 21: 6664, 30: 226664, 35: 6664 }, "Jak'Sho, The Protean": { 11: 6665, 12: 6665, 21: 6665, 30: 226665, 35: 6665 }, "Radiant Virtue": { 30: 446667 }, Noonquiver: { 11: 6670, 12: 6670, 21: 6670, 35: 6670 }, Galeforce: { 30: 446671 }, "Kraken Slayer": { 11: 6672, 12: 6672, 21: 6672, 30: 226672, 35: 6672 }, "Immortal Shieldbow": { 11: 6673, 12: 6673, 21: 6673, 30: 226673, 35: 6673 }, "Navori Flickerblade": { 11: 6675, 12: 6675, 21: 6675, 35: 6675 }, "The Collector": { 11: 6676, 12: 6676, 21: 6676, 30: 226676, 35: 6676 }, Rageknife: 6677, Rectrix: { 11: 6690, 12: 6690, 21: 6690, 35: 6690 }, "Duskblade of Draktharr": { 30: 446691 }, Eclipse: { 11: 6692, 12: 6692, 21: 6692, 30: 226692, 35: 6692 }, "Prowler's Claw": { 11: 6693, 12: 6693, 21: 6693, 30: 226693, 35: 6693 }, "Serylda's Grudge": { 11: 6694, 12: 6694, 21: 6694, 30: 226694, 35: 6694 }, "Serpent's Fang": { 11: 6695, 12: 6695, 21: 6695, 30: 226695, 35: 6695 }, "Axiom Arc": { 11: 6696, 12: 6696, 21: 6696, 30: 226696, 35: 6696 }, Hubris: { 11: 6697, 12: 126697, 21: 6697, 30: 226697, 35: 126697 }, "Profane Hydra": { 11: 6698, 12: 6698, 21: 6698, 30: 226698, 35: 6698 }, "Voltaic Cyclosword": { 11: 6699, 12: 6699, 21: 6699, 30: 226699, 35: 6699 }, "Shield of the Rakkor": 6700, Opportunity: { 11: 6701, 12: 6701, 21: 6701, 30: 226701, 35: 6701 }, "Scouting Ahead": { 35: 6702 }, "Gangplank Placeholder": { 11: 7050, 12: 7050, 21: 7050, 30: 7050, 35: 7050 }, "Anathema's Chains": { 11: 8001, 12: 8001, 21: 8001, 30: 228001, 35: 8001 }, "Abyssal Mask": { 11: 8020, 12: 8020, 21: 8020, 30: 228020, 35: 8020 }, "Locked Weapon Slot": { 33: 9168 }, "Cyclonic Slicers": { 33: 9171 }, YuumiBot: { 33: 9172 }, "Radiant Field": { 33: 9173 }, "Statikk Sword": { 33: 9174 }, "Lioness's Lament": { 33: 9175 }, "Gatling Bunny-Guns": { 33: 9176 }, "Searing Shortbow": { 33: 9177 }, "The Annihilator": { 33: 9178 }, "Battle Bunny Crossbow": { 33: 9179 }, "UwU Blaster": { 33: 9180 }, "Vortex Glove": { 33: 9181 }, "Blade-o-rang": { 33: 9183 }, "Bunny Mega-Blast": { 33: 9184 }, "Anti-Shark Sea Mine": { 33: 9185 }, "T.I.B.B.E.R.S": { 33: 9187 }, "Ani-Mines": { 33: 9188 }, "Final City Transit": { 33: 9189 }, "Echoing Batblades": { 33: 9190 }, "Paw Print Poisoner": { 33: 9192 }, "Iceblast Armor": { 33: 9193 }, "Unceasing Cyclone": { 33: 9271 }, YuumiBot_Final_FINAL: { 33: 9272 }, "Explosive Embrace": { 33: 9273 }, "Prumbis's Electrocarver": { 33: 9274 }, "Enveloping Light": { 33: 9275 }, "Double Bun-Bun Barrage": { 33: 9276 }, "Evolved Embershot": { 33: 9277 }, Animapocalypse: { 33: 9278 }, "Bunny Prime Ballista": { 33: 9279 }, "OwO Blaster": { 33: 9280 }, "Tempest's Gauntlet": { 33: 9281 }, "Quad-o-rang": { 33: 9283 }, "Rapid Rabbit Raindown": { 33: 9284 }, "Neverending Mobstomper": { 33: 9285 }, "T.I.B.B.E.R.S (B.E.E.G Edition)": { 33: 9287 }, "Jinx's Tri-Namite": { 33: 9288 }, "FC Limited Express": { 33: 9289 }, "Vayne's Chromablades": { 33: 9290 }, "Bearfoot Chem-Dispenser": { 33: 9292 }, "Deep Freeze": { 33: 9293 }, "Meow Meow": { 33: 9300 }, "Shield Slam": { 33: 9301 }, "Sound Wave": { 33: 9302 }, "Pillory Swipe": { 33: 9303 }, "Steel Tempest": { 33: 9304 }, "Tentacle Slam": { 33: 9305 }, "Winged Dagger": { 33: 9306 }, "Guiding Hex": { 33: 9307 }, "Bunny Hop": { 33: 9308 }, "Battle Cat Barrage": { 33: 9400 }, "Light of the Lion": { 33: 9401 }, "Anima Echo": { 33: 9402 }, "Savage Slice": { 33: 9403 }, "Wandering Storms": { 33: 9404 }, "Grizzly Smash": { 33: 9405 }, "Lover's Ricochet": { 33: 9406 }, "Hopped-Up Hex": { 33: 9407 }, "Carrot Crash": { 33: 9408 }, "Rite of Ruin": { 12: 123430 }, "Stat Bonus": { 30: 220000 }, "Legendary Fighter Item": { 30: 220001 }, "Legendary Marksman Item": { 30: 220002 }, "Legendary Assassin Item": { 30: 220003 }, "Legendary Mage Item": { 30: 220004 }, "Legendary Tank Item": { 30: 220005 }, "Legendary Support Item": { 30: 220006 }, "Prismatic Item": { 30: 220007 }, "Anvil Voucher": { 30: 220008 }, "Gold Stat Anvil Voucher": { 30: 220009 }, "Prismatic Stat Voucher": { 30: 220010 }, "Bravery Voucher": { 30: 220011 }, Zephyr: { 11: 663172, 30: 223172 }, "Guardian's Dirk": { 30: 223185 }, "Liandry's Anguish": { 30: 226653 }, "Navori Flickerblades": { 30: 226675 }, "Wooglet's Witchcap": { 12: 228002, 30: 228002 }, Deathblade: { 30: 228003 }, "Adaptive Helm": { 30: 228004 }, "Obsidian Cleaver": { 30: 228005 }, "Sanguine Blade": { 30: 228006 }, Runeglaive: { 30: 228008 }, "Darksteel Talons": { 30: 443054 }, Fulmination: { 30: 443055 }, "Demon King's Crown": { 11: 663056, 30: 443056 }, "Shield of Molten Stone": { 11: 663058, 30: 443058 }, "Cloak of Starry Night": { 11: 663059, 30: 443059 }, "Force Of Entropy": { 30: 443061 }, "Sanguine Gift": { 30: 443062 }, "Eleisa's Miracle": { 30: 443063 }, "Talisman Of Ascension": { 30: 443064 }, Hamstringer: { 30: 443069 }, "Turbo Chemtank": { 30: 443079 }, "Twin Mask": { 30: 443080 }, "Hexbolt Companion": { 30: 443081 }, "Reaper's Toll": { 30: 443090 }, "Mirage Blade": { 30: 447100 }, "Gambler's Blade": { 11: 667101, 30: 447101 }, "Reality Fracture": { 30: 447102 }, "Hemomancer's Helm": { 30: 447103 }, Dragonheart: { 30: 447106 }, Decapitator: { 30: 447107 }, Runecarver: { 30: 447108 }, Cruelty: { 11: 667109, 30: 447109 }, "Moonflair Spellblade": { 30: 447110 }, Flesheater: { 11: 667112, 30: 447112 }, "Detonation Orb": { 30: 447113 }, Reverberation: { 30: 447114 }, Regicide: { 30: 447115 }, "Kinkou Jitte": { 30: 447116 }, "Pyromancer's Cloak": { 30: 447118 }, "Lightning Rod": { 30: 447119 }, "Diamond-Tipped Spear": { 30: 447120 }, "Twilight's Edge": { 30: 447121 }, "Black Hole Gauntlet": { 30: 447122 }, Puppeteer: { 30: 447123 }, "Veigar's Talisman of Ascension": { 11: 663064 }, "Golden Spatula": { 12: 994403 } };
|
|
5
|
+
export const bootsItemIds = { 1001: true, 1111: true, 2422: true, 3005: true, 3006: true, 3009: true, 3010: true, 3013: true, 3020: true, 3047: true, 3111: true, 3117: true, 3158: true, 3170: true, 3171: true, 3173: true, 3174: true, 3175: true, 3176: true, 223005: true, 223006: true, 223009: true, 223020: true, 223047: true, 223111: true, 223158: true, 223172: true, 663172: true };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lol-constants",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.7",
|
|
4
4
|
"description": "League of Legends constants, functions, and types. Provides a plathera of functions to easily convert between ID, Name, and Key for champions, items, summoner spells, and runes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|