lol-constants 2.12.0 → 2.12.1
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/assets/scripts/generate-categorized-item-keys-num.js +12 -0
- package/assets/scripts/generate-categorized-item-keys.js +12 -0
- package/assets/scripts/generate-categorized-item-names.js +12 -0
- package/assets/scripts/generate-item-keys-num.js +3 -0
- package/assets/scripts/generate-item-keys.js +3 -0
- package/assets/scripts/generate-item-names.js +3 -0
- package/core/constants/Items/BootsItemKeys.d.ts +6 -6
- package/core/constants/Items/BootsItemKeys.js +1 -1
- package/core/constants/Items/BootsItemKeysNum.d.ts +6 -6
- package/core/constants/Items/BootsItemKeysNum.js +1 -1
- package/core/constants/Items/BootsItemNames.d.ts +0 -6
- package/core/constants/Items/BootsItemNames.js +1 -1
- package/core/constants/Items/ItemKeys.d.ts +130 -156
- package/core/constants/Items/ItemKeys.js +1 -1
- package/core/constants/Items/ItemKeysNum.d.ts +130 -156
- package/core/constants/Items/ItemKeysNum.js +1 -1
- package/core/constants/Items/ItemNames.d.ts +0 -162
- package/core/constants/Items/ItemNames.js +1 -1
- package/core/constants/Items/LegendaryItemKeys.d.ts +66 -66
- package/core/constants/Items/LegendaryItemKeys.js +1 -1
- package/core/constants/Items/LegendaryItemKeysNum.d.ts +66 -66
- package/core/constants/Items/LegendaryItemKeysNum.js +1 -1
- package/core/constants/Items/LegendaryItemNames.d.ts +0 -66
- package/core/constants/Items/LegendaryItemNames.js +1 -1
- package/core/constants/Items/MythicItemKeys.d.ts +58 -58
- package/core/constants/Items/MythicItemKeys.js +1 -1
- package/core/constants/Items/MythicItemKeysNum.d.ts +58 -58
- package/core/constants/Items/MythicItemKeysNum.js +1 -1
- package/core/constants/Items/MythicItemNames.d.ts +0 -58
- package/core/constants/Items/MythicItemNames.js +1 -1
- package/core/constants/Items/OrnnItemKeys.d.ts +28 -28
- package/core/constants/Items/OrnnItemKeys.js +1 -1
- package/core/constants/Items/OrnnItemKeysNum.d.ts +28 -28
- package/core/constants/Items/OrnnItemKeysNum.js +1 -1
- package/core/constants/Items/OrnnItemNames.d.ts +0 -28
- package/core/constants/Items/OrnnItemNames.js +1 -1
- package/package.json +1 -1
@@ -19,6 +19,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
19
19
|
let itemKey;
|
20
20
|
for (itemKey in Item_1.Item.data) {
|
21
21
|
const itemData = Item_1.Item.data[itemKey];
|
22
|
+
// Filter out only for Summoner's Rift
|
23
|
+
if (!itemData.maps[11])
|
24
|
+
continue;
|
22
25
|
if (itemData.name == mythicItemName) {
|
23
26
|
itemKeys.mythic[itemData.name] = (0, validateNumber_1.validateNumber)(itemKey, 'mythic-itemKey');
|
24
27
|
}
|
@@ -29,6 +32,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
29
32
|
let itemKey;
|
30
33
|
for (itemKey in Item_1.Item.data) {
|
31
34
|
const itemData = Item_1.Item.data[itemKey];
|
35
|
+
// Filter out only for Summoner's Rift
|
36
|
+
if (!itemData.maps[11])
|
37
|
+
continue;
|
32
38
|
if (itemData.name == itemName) {
|
33
39
|
itemKeys.legendary[itemData.name] = (0, validateNumber_1.validateNumber)(itemKey, 'legendary-itemKey');
|
34
40
|
}
|
@@ -39,6 +45,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
39
45
|
let itemKey;
|
40
46
|
for (itemKey in Item_1.Item.data) {
|
41
47
|
const itemData = Item_1.Item.data[itemKey];
|
48
|
+
// Filter out only for Summoner's Rift
|
49
|
+
if (!itemData.maps[11])
|
50
|
+
continue;
|
42
51
|
if (itemData.name == itemName) {
|
43
52
|
itemKeys.boots[itemData.name] = (0, validateNumber_1.validateNumber)(itemKey, 'boots-itemKey');
|
44
53
|
}
|
@@ -49,6 +58,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
49
58
|
let itemKey;
|
50
59
|
for (itemKey in Item_1.Item.data) {
|
51
60
|
const itemData = Item_1.Item.data[itemKey];
|
61
|
+
// Filter out only for Summoner's Rift
|
62
|
+
if (!itemData.maps[11])
|
63
|
+
continue;
|
52
64
|
if (itemData.name == itemName) {
|
53
65
|
itemKeys.ornn[itemData.name] = (0, validateNumber_1.validateNumber)(itemKey, 'ornn-itemKey');
|
54
66
|
}
|
@@ -18,6 +18,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
18
18
|
let itemKey;
|
19
19
|
for (itemKey in Item_1.Item.data) {
|
20
20
|
const itemData = Item_1.Item.data[itemKey];
|
21
|
+
// Filter out only for Summoner's Rift
|
22
|
+
if (!itemData.maps[11])
|
23
|
+
continue;
|
21
24
|
if (itemData.name == mythicItemName) {
|
22
25
|
itemKeys.mythic[itemData.name] = itemKey;
|
23
26
|
}
|
@@ -28,6 +31,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
28
31
|
let itemKey;
|
29
32
|
for (itemKey in Item_1.Item.data) {
|
30
33
|
const itemData = Item_1.Item.data[itemKey];
|
34
|
+
// Filter out only for Summoner's Rift
|
35
|
+
if (!itemData.maps[11])
|
36
|
+
continue;
|
31
37
|
if (itemData.name == itemName) {
|
32
38
|
itemKeys.legendary[itemData.name] = itemKey;
|
33
39
|
}
|
@@ -38,6 +44,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
38
44
|
let itemKey;
|
39
45
|
for (itemKey in Item_1.Item.data) {
|
40
46
|
const itemData = Item_1.Item.data[itemKey];
|
47
|
+
// Filter out only for Summoner's Rift
|
48
|
+
if (!itemData.maps[11])
|
49
|
+
continue;
|
41
50
|
if (itemData.name == itemName) {
|
42
51
|
itemKeys.boots[itemData.name] = itemKey;
|
43
52
|
}
|
@@ -48,6 +57,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
48
57
|
let itemKey;
|
49
58
|
for (itemKey in Item_1.Item.data) {
|
50
59
|
const itemData = Item_1.Item.data[itemKey];
|
60
|
+
// Filter out only for Summoner's Rift
|
61
|
+
if (!itemData.maps[11])
|
62
|
+
continue;
|
51
63
|
if (itemData.name == itemName) {
|
52
64
|
itemKeys.ornn[itemData.name] = itemKey;
|
53
65
|
}
|
@@ -18,6 +18,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
18
18
|
let itemKey;
|
19
19
|
for (itemKey in Item_1.Item.data) {
|
20
20
|
const itemData = Item_1.Item.data[itemKey];
|
21
|
+
// Filter out only for Summoner's Rift
|
22
|
+
if (!itemData.maps[11])
|
23
|
+
continue;
|
21
24
|
if (itemData.name == mythicItemName) {
|
22
25
|
itemNames.mythic[itemKey] = itemData.name;
|
23
26
|
}
|
@@ -28,6 +31,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
28
31
|
let itemKey;
|
29
32
|
for (itemKey in Item_1.Item.data) {
|
30
33
|
const itemData = Item_1.Item.data[itemKey];
|
34
|
+
// Filter out only for Summoner's Rift
|
35
|
+
if (!itemData.maps[11])
|
36
|
+
continue;
|
31
37
|
if (itemData.name == itemName) {
|
32
38
|
itemNames.legendary[itemKey] = itemData.name;
|
33
39
|
}
|
@@ -38,6 +44,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
38
44
|
let itemKey;
|
39
45
|
for (itemKey in Item_1.Item.data) {
|
40
46
|
const itemData = Item_1.Item.data[itemKey];
|
47
|
+
// Filter out only for Summoner's Rift
|
48
|
+
if (!itemData.maps[11])
|
49
|
+
continue;
|
41
50
|
if (itemData.name == itemName) {
|
42
51
|
itemNames.boots[itemKey] = itemData.name;
|
43
52
|
}
|
@@ -48,6 +57,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
48
57
|
let itemKey;
|
49
58
|
for (itemKey in Item_1.Item.data) {
|
50
59
|
const itemData = Item_1.Item.data[itemKey];
|
60
|
+
// Filter out only for Summoner's Rift
|
61
|
+
if (!itemData.maps[11])
|
62
|
+
continue;
|
51
63
|
if (itemData.name == itemName) {
|
52
64
|
itemNames.ornn[itemKey] = itemData.name;
|
53
65
|
}
|
@@ -9,6 +9,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
9
9
|
let itemKey;
|
10
10
|
for (itemKey in Item_1.Item.data) {
|
11
11
|
const itemData = Item_1.Item.data[itemKey];
|
12
|
+
// Filter out only for Summoner's Rift
|
13
|
+
if (!itemData.maps[11])
|
14
|
+
continue;
|
12
15
|
let htmlEscapedName = itemData.name.replace(/<[^>]*>?/gm, '');
|
13
16
|
itemKeys[htmlEscapedName] = (0, validateNumber_1.validateNumber)(itemKey, 'itemKey');
|
14
17
|
}
|
@@ -8,6 +8,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
8
8
|
let itemKey;
|
9
9
|
for (itemKey in Item_1.Item.data) {
|
10
10
|
const itemData = Item_1.Item.data[itemKey];
|
11
|
+
// Filter out only for Summoner's Rift
|
12
|
+
if (!itemData.maps[11])
|
13
|
+
continue;
|
11
14
|
let htmlEscapedName = itemData.name.replace(/<[^>]*>?/gm, '');
|
12
15
|
itemKeys[htmlEscapedName] = itemKey;
|
13
16
|
}
|
@@ -8,6 +8,9 @@ const writeToTmpFile_1 = require("./helpers/writeToTmpFile");
|
|
8
8
|
let itemKey;
|
9
9
|
for (itemKey in Item_1.Item.data) {
|
10
10
|
const itemData = Item_1.Item.data[itemKey];
|
11
|
+
// Filter out only for Summoner's Rift
|
12
|
+
if (!itemData.maps[11])
|
13
|
+
continue;
|
11
14
|
let htmlEscapedName = itemData.name.replace(/<[^>]*>?/gm, '');
|
12
15
|
itemNames[itemKey] = htmlEscapedName;
|
13
16
|
}
|
@@ -1,12 +1,12 @@
|
|
1
1
|
export declare const BootsItemKeys: {
|
2
2
|
readonly Boots: "1001";
|
3
|
-
readonly "Berserker's Greaves": "
|
4
|
-
readonly "Boots of Swiftness": "
|
5
|
-
readonly "Ionian Boots of Lucidity": "
|
6
|
-
readonly "Mercury's Treads": "
|
3
|
+
readonly "Berserker's Greaves": "3006";
|
4
|
+
readonly "Boots of Swiftness": "3009";
|
5
|
+
readonly "Ionian Boots of Lucidity": "3158";
|
6
|
+
readonly "Mercury's Treads": "3111";
|
7
7
|
readonly "Mobility Boots": "3117";
|
8
|
-
readonly "Plated Steelcaps": "
|
9
|
-
readonly "Sorcerer's Shoes": "
|
8
|
+
readonly "Plated Steelcaps": "3047";
|
9
|
+
readonly "Sorcerer's Shoes": "3020";
|
10
10
|
readonly "Slightly Magical Footwear": "2422";
|
11
11
|
};
|
12
12
|
export type BootsItemKey = typeof BootsItemKeys[keyof typeof BootsItemKeys];
|
@@ -1,4 +1,4 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.BootsItemKeys = void 0;
|
4
|
-
exports.BootsItemKeys = { "Boots": "1001", "Berserker's Greaves": "
|
4
|
+
exports.BootsItemKeys = { "Boots": "1001", "Berserker's Greaves": "3006", "Boots of Swiftness": "3009", "Ionian Boots of Lucidity": "3158", "Mercury's Treads": "3111", "Mobility Boots": "3117", "Plated Steelcaps": "3047", "Sorcerer's Shoes": "3020", "Slightly Magical Footwear": "2422" };
|
@@ -1,12 +1,12 @@
|
|
1
1
|
export declare const BootsItemKeysNum: {
|
2
2
|
readonly Boots: 1001;
|
3
|
-
readonly "Berserker's Greaves":
|
4
|
-
readonly "Boots of Swiftness":
|
5
|
-
readonly "Ionian Boots of Lucidity":
|
6
|
-
readonly "Mercury's Treads":
|
3
|
+
readonly "Berserker's Greaves": 3006;
|
4
|
+
readonly "Boots of Swiftness": 3009;
|
5
|
+
readonly "Ionian Boots of Lucidity": 3158;
|
6
|
+
readonly "Mercury's Treads": 3111;
|
7
7
|
readonly "Mobility Boots": 3117;
|
8
|
-
readonly "Plated Steelcaps":
|
9
|
-
readonly "Sorcerer's Shoes":
|
8
|
+
readonly "Plated Steelcaps": 3047;
|
9
|
+
readonly "Sorcerer's Shoes": 3020;
|
10
10
|
readonly "Slightly Magical Footwear": 2422;
|
11
11
|
};
|
12
12
|
export type BootsItemKeyNum = typeof BootsItemKeysNum[keyof typeof BootsItemKeysNum];
|
@@ -1,4 +1,4 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.BootsItemKeysNum = void 0;
|
4
|
-
exports.BootsItemKeysNum = { "Boots": 1001, "Berserker's Greaves":
|
4
|
+
exports.BootsItemKeysNum = { "Boots": 1001, "Berserker's Greaves": 3006, "Boots of Swiftness": 3009, "Ionian Boots of Lucidity": 3158, "Mercury's Treads": 3111, "Mobility Boots": 3117, "Plated Steelcaps": 3047, "Sorcerer's Shoes": 3020, "Slightly Magical Footwear": 2422 };
|
@@ -8,11 +8,5 @@ export declare const BootsItemNames: {
|
|
8
8
|
readonly "3111": "Mercury's Treads";
|
9
9
|
readonly "3117": "Mobility Boots";
|
10
10
|
readonly "3158": "Ionian Boots of Lucidity";
|
11
|
-
readonly "223006": "Berserker's Greaves";
|
12
|
-
readonly "223009": "Boots of Swiftness";
|
13
|
-
readonly "223020": "Sorcerer's Shoes";
|
14
|
-
readonly "223047": "Plated Steelcaps";
|
15
|
-
readonly "223111": "Mercury's Treads";
|
16
|
-
readonly "223158": "Ionian Boots of Lucidity";
|
17
11
|
};
|
18
12
|
export type BootsItemName = typeof BootsItemNames[keyof typeof BootsItemNames];
|
@@ -1,4 +1,4 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.BootsItemNames = void 0;
|
4
|
-
exports.BootsItemNames = { "1001": "Boots", "2422": "Slightly Magical Footwear", "3006": "Berserker's Greaves", "3009": "Boots of Swiftness", "3020": "Sorcerer's Shoes", "3047": "Plated Steelcaps", "3111": "Mercury's Treads", "3117": "Mobility Boots", "3158": "Ionian Boots of Lucidity"
|
4
|
+
exports.BootsItemNames = { "1001": "Boots", "2422": "Slightly Magical Footwear", "3006": "Berserker's Greaves", "3009": "Boots of Swiftness", "3020": "Sorcerer's Shoes", "3047": "Plated Steelcaps", "3111": "Mercury's Treads", "3117": "Mobility Boots", "3158": "Ionian Boots of Lucidity" };
|
@@ -10,11 +10,9 @@ export declare const ItemKeys: {
|
|
10
10
|
readonly "Cloth Armor": "1029";
|
11
11
|
readonly "Chain Vest": "1031";
|
12
12
|
readonly "Null-Magic Mantle": "1033";
|
13
|
-
readonly Emberknife: "1035";
|
14
13
|
readonly "Long Sword": "1036";
|
15
14
|
readonly Pickaxe: "1037";
|
16
15
|
readonly "B. F. Sword": "1038";
|
17
|
-
readonly Hailblade: "1039";
|
18
16
|
readonly "Obsidian Edge": "1040";
|
19
17
|
readonly Dagger: "1042";
|
20
18
|
readonly "Recurve Bow": "1043";
|
@@ -30,12 +28,10 @@ export declare const ItemKeys: {
|
|
30
28
|
readonly "Scorchclaw Pup": "1101";
|
31
29
|
readonly "Gustwalker Hatchling": "1102";
|
32
30
|
readonly "Mosstomper Seedling": "1103";
|
33
|
-
readonly "Eye of the Herald": "3513";
|
34
31
|
readonly "Penetrating Bullets": "1500";
|
35
32
|
readonly Fortification: "1521";
|
36
33
|
readonly "Reinforced Armor": "1506";
|
37
34
|
readonly "Warden's Eye": "1503";
|
38
|
-
readonly Vanguard: "1504";
|
39
35
|
readonly Overcharged: "1507";
|
40
36
|
readonly "Anti-tower Socks": "1508";
|
41
37
|
readonly Gusto: "1509";
|
@@ -52,133 +48,119 @@ export declare const ItemKeys: {
|
|
52
48
|
readonly "Steel Sigil": "2019";
|
53
49
|
readonly "Refillable Potion": "2031";
|
54
50
|
readonly "Corrupting Potion": "2033";
|
55
|
-
readonly "Guardian's Amulet": "2049";
|
56
|
-
readonly "Guardian's Shroud": "2050";
|
57
|
-
readonly "Guardian's Horn": "222051";
|
58
51
|
readonly "Poro-Snax": "2052";
|
59
52
|
readonly "Control Ward": "2055";
|
60
|
-
readonly "Shurelya's Battlesong": "
|
53
|
+
readonly "Shurelya's Battlesong": "2065";
|
61
54
|
readonly "Elixir of Iron": "2138";
|
62
55
|
readonly "Elixir of Sorcery": "2139";
|
63
56
|
readonly "Elixir of Wrath": "2140";
|
64
|
-
readonly "Cappa Juice": "2141";
|
65
|
-
readonly "Juice of Power": "2142";
|
66
|
-
readonly "Juice of Vitality": "2143";
|
67
|
-
readonly "Juice of Haste": "2144";
|
68
57
|
readonly "Minion Dematerializer": "2403";
|
69
58
|
readonly "Commencing Stopwatch": "2419";
|
70
59
|
readonly Stopwatch: "2420";
|
71
60
|
readonly "Broken Stopwatch": "2424";
|
72
61
|
readonly "Slightly Magical Footwear": "2422";
|
73
62
|
readonly "Perfectly Timed Stopwatch": "2423";
|
74
|
-
readonly Evenshroud: "
|
75
|
-
readonly "Archangel's Staff": "
|
76
|
-
readonly Manamune: "
|
77
|
-
readonly "Berserker's Greaves": "
|
78
|
-
readonly "Boots of Swiftness": "
|
79
|
-
readonly "Chemtech Putrifier": "
|
63
|
+
readonly Evenshroud: "3001";
|
64
|
+
readonly "Archangel's Staff": "3003";
|
65
|
+
readonly Manamune: "3004";
|
66
|
+
readonly "Berserker's Greaves": "3006";
|
67
|
+
readonly "Boots of Swiftness": "3009";
|
68
|
+
readonly "Chemtech Putrifier": "3011";
|
80
69
|
readonly "Chalice of Blessing": "3012";
|
81
|
-
readonly "Sorcerer's Shoes": "
|
70
|
+
readonly "Sorcerer's Shoes": "3020";
|
82
71
|
readonly "Lifewell Pendant": "3023";
|
83
72
|
readonly "Glacial Buckler": "3024";
|
84
|
-
readonly "Guardian Angel": "
|
85
|
-
readonly "Infinity Edge": "
|
86
|
-
readonly "Mortal Reminder": "
|
73
|
+
readonly "Guardian Angel": "3026";
|
74
|
+
readonly "Infinity Edge": "3031";
|
75
|
+
readonly "Mortal Reminder": "3033";
|
87
76
|
readonly "Last Whisper": "3035";
|
88
|
-
readonly "Lord Dominik's Regards": "
|
89
|
-
readonly "Seraph's Embrace": "
|
77
|
+
readonly "Lord Dominik's Regards": "3036";
|
78
|
+
readonly "Seraph's Embrace": "3040";
|
90
79
|
readonly "Mejai's Soulstealer": "3041";
|
91
|
-
readonly Muramana: "
|
80
|
+
readonly Muramana: "3042";
|
92
81
|
readonly Phage: "3044";
|
93
|
-
readonly "Phantom Dancer": "
|
94
|
-
readonly "Plated Steelcaps": "
|
95
|
-
readonly "Zeke's Convergence": "
|
82
|
+
readonly "Phantom Dancer": "3046";
|
83
|
+
readonly "Plated Steelcaps": "3047";
|
84
|
+
readonly "Zeke's Convergence": "3050";
|
96
85
|
readonly "Hearthbound Axe": "3051";
|
97
|
-
readonly "Sterak's Gage": "
|
86
|
+
readonly "Sterak's Gage": "3053";
|
98
87
|
readonly Sheen: "3057";
|
99
|
-
readonly "Spirit Visage": "
|
88
|
+
readonly "Spirit Visage": "3065";
|
100
89
|
readonly "Winged Moonplate": "3066";
|
101
90
|
readonly Kindlegem: "3067";
|
102
|
-
readonly "Sunfire Aegis": "
|
91
|
+
readonly "Sunfire Aegis": "3068";
|
103
92
|
readonly "Tear of the Goddess": "3070";
|
104
|
-
readonly "Black Cleaver": "
|
105
|
-
readonly Bloodthirster: "
|
106
|
-
readonly "Ravenous Hydra": "
|
107
|
-
readonly Thornmail: "
|
93
|
+
readonly "Black Cleaver": "3071";
|
94
|
+
readonly Bloodthirster: "3072";
|
95
|
+
readonly "Ravenous Hydra": "3074";
|
96
|
+
readonly Thornmail: "3075";
|
108
97
|
readonly "Bramble Vest": "3076";
|
109
98
|
readonly Tiamat: "3077";
|
110
|
-
readonly "Trinity Force": "
|
99
|
+
readonly "Trinity Force": "3078";
|
111
100
|
readonly "Warden's Mail": "3082";
|
112
101
|
readonly "Warmog's Armor": "3083";
|
113
|
-
readonly Heartsteel: "
|
114
|
-
readonly "Runaan's Hurricane": "
|
102
|
+
readonly Heartsteel: "3084";
|
103
|
+
readonly "Runaan's Hurricane": "3085";
|
115
104
|
readonly Zeal: "3086";
|
116
|
-
readonly "Statikk Shiv": "
|
117
|
-
readonly "Rabadon's Deathcap": "
|
118
|
-
readonly "Wit's End": "
|
119
|
-
readonly "Rapid Firecannon": "
|
120
|
-
readonly Stormrazor: "
|
121
|
-
readonly "Lich Bane": "
|
122
|
-
readonly "Banshee's Veil": "
|
105
|
+
readonly "Statikk Shiv": "3087";
|
106
|
+
readonly "Rabadon's Deathcap": "3089";
|
107
|
+
readonly "Wit's End": "3091";
|
108
|
+
readonly "Rapid Firecannon": "3094";
|
109
|
+
readonly Stormrazor: "3095";
|
110
|
+
readonly "Lich Bane": "3100";
|
111
|
+
readonly "Banshee's Veil": "3102";
|
123
112
|
readonly "Aegis of the Legion": "3105";
|
124
|
-
readonly Redemption: "
|
113
|
+
readonly Redemption: "3107";
|
125
114
|
readonly "Fiendish Codex": "3108";
|
126
|
-
readonly "Knight's Vow": "
|
127
|
-
readonly "Frozen Heart": "
|
128
|
-
readonly "Mercury's Treads": "
|
129
|
-
readonly "Guardian's Orb": "223112";
|
115
|
+
readonly "Knight's Vow": "3109";
|
116
|
+
readonly "Frozen Heart": "3110";
|
117
|
+
readonly "Mercury's Treads": "3111";
|
130
118
|
readonly "Aether Wisp": "3113";
|
131
119
|
readonly "Forbidden Idol": "3114";
|
132
|
-
readonly "Nashor's Tooth": "
|
133
|
-
readonly "Rylai's Crystal Scepter": "
|
120
|
+
readonly "Nashor's Tooth": "3115";
|
121
|
+
readonly "Rylai's Crystal Scepter": "3116";
|
134
122
|
readonly "Mobility Boots": "3117";
|
135
|
-
readonly "Winter's Approach": "
|
136
|
-
readonly Fimbulwinter: "
|
123
|
+
readonly "Winter's Approach": "3119";
|
124
|
+
readonly Fimbulwinter: "3121";
|
137
125
|
readonly "Executioner's Calling": "3123";
|
138
|
-
readonly "Guinsoo's Rageblade": "
|
139
|
-
readonly "Deathfire Grasp": "3128";
|
126
|
+
readonly "Guinsoo's Rageblade": "3124";
|
140
127
|
readonly "Caulfield's Warhammer": "3133";
|
141
128
|
readonly "Serrated Dirk": "3134";
|
142
|
-
readonly "Void Staff": "
|
143
|
-
readonly "Mercurial Scimitar": "
|
129
|
+
readonly "Void Staff": "3135";
|
130
|
+
readonly "Mercurial Scimitar": "3139";
|
144
131
|
readonly "Quicksilver Sash": "3140";
|
145
|
-
readonly "Youmuu's Ghostblade": "
|
146
|
-
readonly "Randuin's Omen": "
|
132
|
+
readonly "Youmuu's Ghostblade": "3142";
|
133
|
+
readonly "Randuin's Omen": "3143";
|
147
134
|
readonly "Hextech Alternator": "3145";
|
148
|
-
readonly "Hextech Rocketbelt": "
|
149
|
-
readonly "Blade of The Ruined King": "
|
135
|
+
readonly "Hextech Rocketbelt": "3152";
|
136
|
+
readonly "Blade of The Ruined King": "3153";
|
150
137
|
readonly Hexdrinker: "3155";
|
151
|
-
readonly "Maw of Malmortius": "
|
152
|
-
readonly "Zhonya's Hourglass": "
|
153
|
-
readonly "Ionian Boots of Lucidity": "
|
154
|
-
readonly "Spear Of Shojin": "
|
155
|
-
readonly Morellonomicon: "
|
156
|
-
readonly "Guardian's Blade": "223177";
|
138
|
+
readonly "Maw of Malmortius": "3156";
|
139
|
+
readonly "Zhonya's Hourglass": "3157";
|
140
|
+
readonly "Ionian Boots of Lucidity": "3158";
|
141
|
+
readonly "Spear Of Shojin": "3161";
|
142
|
+
readonly Morellonomicon: "3165";
|
157
143
|
readonly "Umbral Glaive": "3179";
|
158
|
-
readonly Hullbreaker: "
|
159
|
-
readonly "
|
160
|
-
readonly "Locket of the Iron Solari": "223190";
|
144
|
+
readonly Hullbreaker: "3181";
|
145
|
+
readonly "Locket of the Iron Solari": "3190";
|
161
146
|
readonly "Seeker's Armguard": "3191";
|
162
|
-
readonly "Gargoyle Stoneplate": "
|
147
|
+
readonly "Gargoyle Stoneplate": "3193";
|
163
148
|
readonly "Spectre's Cowl": "3211";
|
164
|
-
readonly "Mikael's Blessing": "
|
149
|
+
readonly "Mikael's Blessing": "3222";
|
165
150
|
readonly "Scarecrow Effigy": "3330";
|
166
151
|
readonly "Stealth Ward": "3340";
|
167
|
-
readonly "Arcane Sweeper": "3348";
|
168
|
-
readonly "Lucent Singularity": "3349";
|
169
152
|
readonly "Farsight Alteration": "3363";
|
170
153
|
readonly "Oracle Lens": "3364";
|
171
154
|
readonly "Your Cut": "3400";
|
172
|
-
readonly "
|
173
|
-
readonly "
|
174
|
-
readonly "Essence Reaver": "223508";
|
155
|
+
readonly "Ardent Censer": "3504";
|
156
|
+
readonly "Essence Reaver": "3508";
|
175
157
|
readonly "Kalista's Black Spear": "3600";
|
176
|
-
readonly "Dead Man's Plate": "
|
177
|
-
readonly "Titanic Hydra": "
|
158
|
+
readonly "Dead Man's Plate": "3742";
|
159
|
+
readonly "Titanic Hydra": "3748";
|
178
160
|
readonly "Crystalline Bracer": "3801";
|
179
161
|
readonly "Lost Chapter": "3802";
|
180
162
|
readonly "Catalyst of Aeons": "3803";
|
181
|
-
readonly "Edge of Night": "
|
163
|
+
readonly "Edge of Night": "3814";
|
182
164
|
readonly "Spellthief's Edge": "3850";
|
183
165
|
readonly Frostfang: "3851";
|
184
166
|
readonly "Shard of True Ice": "3853";
|
@@ -195,93 +177,85 @@ export declare const ItemKeys: {
|
|
195
177
|
readonly "Death's Daughter500 Silver Serpents": "3902";
|
196
178
|
readonly "Raise Morale500 Silver Serpents": "3903";
|
197
179
|
readonly "Oblivion Orb": "3916";
|
198
|
-
readonly "Imperial Mandate": "
|
199
|
-
readonly "
|
200
|
-
readonly "
|
201
|
-
readonly "
|
202
|
-
readonly "Horizon Focus": "224628";
|
203
|
-
readonly "Cosmic Drive": "224629";
|
180
|
+
readonly "Imperial Mandate": "4005";
|
181
|
+
readonly "Force of Nature": "4401";
|
182
|
+
readonly "Horizon Focus": "4628";
|
183
|
+
readonly "Cosmic Drive": "4629";
|
204
184
|
readonly "Blighting Jewel": "4630";
|
205
185
|
readonly "Verdant Barrier": "4632";
|
206
|
-
readonly Riftmaker: "
|
186
|
+
readonly Riftmaker: "4633";
|
207
187
|
readonly "Leeching Leer": "4635";
|
208
|
-
readonly "Night Harvester": "
|
209
|
-
readonly "Demonic Embrace": "
|
188
|
+
readonly "Night Harvester": "4636";
|
189
|
+
readonly "Demonic Embrace": "4637";
|
210
190
|
readonly "Watchful Wardstone": "4638";
|
211
191
|
readonly "Stirring Wardstone": "4641";
|
212
192
|
readonly "Bandleglass Mirror": "4642";
|
213
193
|
readonly "Vigilant Wardstone": "4643";
|
214
|
-
readonly "Crown of the Shattered Queen": "
|
215
|
-
readonly Shadowflame: "
|
194
|
+
readonly "Crown of the Shattered Queen": "4644";
|
195
|
+
readonly Shadowflame: "4645";
|
216
196
|
readonly "Ironspike Whip": "6029";
|
217
|
-
readonly "Silvermere Dawn": "
|
218
|
-
readonly "Death's Dance": "
|
219
|
-
readonly "Chempunk Chainsword": "
|
220
|
-
readonly "Staff of Flowing Water": "
|
221
|
-
readonly "Moonstone Renewer": "
|
222
|
-
readonly "Echoes of Helia": "
|
223
|
-
readonly Goredrinker: "
|
224
|
-
readonly Stridebreaker: "
|
225
|
-
readonly "Divine Sunderer": "
|
226
|
-
readonly "Liandry's Anguish": "
|
227
|
-
readonly "Luden's Tempest": "
|
228
|
-
readonly Everfrost: "
|
229
|
-
readonly "Rod of Ages": "
|
197
|
+
readonly "Silvermere Dawn": "6035";
|
198
|
+
readonly "Death's Dance": "6333";
|
199
|
+
readonly "Chempunk Chainsword": "6609";
|
200
|
+
readonly "Staff of Flowing Water": "6616";
|
201
|
+
readonly "Moonstone Renewer": "6617";
|
202
|
+
readonly "Echoes of Helia": "6620";
|
203
|
+
readonly Goredrinker: "6630";
|
204
|
+
readonly Stridebreaker: "6631";
|
205
|
+
readonly "Divine Sunderer": "6632";
|
206
|
+
readonly "Liandry's Anguish": "6653";
|
207
|
+
readonly "Luden's Tempest": "6655";
|
208
|
+
readonly Everfrost: "6656";
|
209
|
+
readonly "Rod of Ages": "6657";
|
230
210
|
readonly "Bami's Cinder": "6660";
|
231
|
-
readonly "Iceborn Gauntlet": "
|
232
|
-
readonly "Turbo Chemtank": "
|
233
|
-
readonly "Jak'Sho, The Protean": "
|
234
|
-
readonly "Radiant Virtue": "
|
211
|
+
readonly "Iceborn Gauntlet": "6662";
|
212
|
+
readonly "Turbo Chemtank": "6664";
|
213
|
+
readonly "Jak'Sho, The Protean": "6665";
|
214
|
+
readonly "Radiant Virtue": "6667";
|
235
215
|
readonly Noonquiver: "6670";
|
236
|
-
readonly Galeforce: "
|
237
|
-
readonly "Kraken Slayer": "
|
238
|
-
readonly "Immortal Shieldbow": "
|
239
|
-
readonly "Navori Quickblades": "
|
240
|
-
readonly "The Collector": "
|
216
|
+
readonly Galeforce: "6671";
|
217
|
+
readonly "Kraken Slayer": "6672";
|
218
|
+
readonly "Immortal Shieldbow": "6673";
|
219
|
+
readonly "Navori Quickblades": "6675";
|
220
|
+
readonly "The Collector": "6676";
|
241
221
|
readonly Rageknife: "6677";
|
242
|
-
readonly "Duskblade of Draktharr": "
|
243
|
-
readonly Eclipse: "
|
244
|
-
readonly "Prowler's Claw": "
|
245
|
-
readonly "Serylda's Grudge": "
|
246
|
-
readonly "Serpent's Fang": "
|
247
|
-
readonly "Axiom Arc": "
|
222
|
+
readonly "Duskblade of Draktharr": "6691";
|
223
|
+
readonly Eclipse: "6692";
|
224
|
+
readonly "Prowler's Claw": "6693";
|
225
|
+
readonly "Serylda's Grudge": "6694";
|
226
|
+
readonly "Serpent's Fang": "6695";
|
227
|
+
readonly "Axiom Arc": "6696";
|
248
228
|
readonly "Sandshrike's Claw": "7000";
|
249
|
-
readonly Syzygy: "
|
250
|
-
readonly "Draktharr's Shadowcarver": "
|
251
|
-
readonly "Frozen Fist": "
|
252
|
-
readonly Typhoon: "
|
253
|
-
readonly "Icathia's Curse": "
|
254
|
-
readonly Vespertide: "
|
255
|
-
readonly "Upgraded Aeropack": "
|
256
|
-
readonly "Liandry's Lament": "
|
257
|
-
readonly "Eye of Luden": "
|
258
|
-
readonly "Eternal Winter": "
|
259
|
-
readonly "Ceaseless Hunger": "
|
260
|
-
readonly Dreamshatter: "
|
261
|
-
readonly Deicide: "
|
262
|
-
readonly "Infinity Force": "
|
263
|
-
readonly "Reliquary of the Golden Dawn": "
|
264
|
-
readonly "Shurelya's Requiem": "
|
265
|
-
readonly Starcaster: "
|
266
|
-
readonly Equinox: "
|
267
|
-
readonly Caesura: "
|
268
|
-
readonly Leviathan: "
|
269
|
-
readonly "The Unspoken Parasite": "
|
270
|
-
readonly "Primordial Dawn": "
|
271
|
-
readonly "Infinite Convergence": "
|
272
|
-
readonly "Youmuu's Wake": "
|
273
|
-
readonly "Seething Sorrow": "
|
274
|
-
readonly "Edge of Finality": "
|
275
|
-
readonly Flicker: "
|
276
|
-
readonly "Cry of the Shrieking City": "
|
229
|
+
readonly Syzygy: "7001";
|
230
|
+
readonly "Draktharr's Shadowcarver": "7002";
|
231
|
+
readonly "Frozen Fist": "7005";
|
232
|
+
readonly Typhoon: "7006";
|
233
|
+
readonly "Icathia's Curse": "7009";
|
234
|
+
readonly Vespertide: "7010";
|
235
|
+
readonly "Upgraded Aeropack": "7011";
|
236
|
+
readonly "Liandry's Lament": "7012";
|
237
|
+
readonly "Eye of Luden": "7013";
|
238
|
+
readonly "Eternal Winter": "7014";
|
239
|
+
readonly "Ceaseless Hunger": "7015";
|
240
|
+
readonly Dreamshatter: "7016";
|
241
|
+
readonly Deicide: "7017";
|
242
|
+
readonly "Infinity Force": "7018";
|
243
|
+
readonly "Reliquary of the Golden Dawn": "7019";
|
244
|
+
readonly "Shurelya's Requiem": "7020";
|
245
|
+
readonly Starcaster: "7021";
|
246
|
+
readonly Equinox: "7023";
|
247
|
+
readonly Caesura: "7024";
|
248
|
+
readonly Leviathan: "7025";
|
249
|
+
readonly "The Unspoken Parasite": "7026";
|
250
|
+
readonly "Primordial Dawn": "7027";
|
251
|
+
readonly "Infinite Convergence": "7028";
|
252
|
+
readonly "Youmuu's Wake": "7029";
|
253
|
+
readonly "Seething Sorrow": "7030";
|
254
|
+
readonly "Edge of Finality": "7031";
|
255
|
+
readonly Flicker: "7032";
|
256
|
+
readonly "Cry of the Shrieking City": "7033";
|
277
257
|
readonly "Gangplank Placeholder": "7050";
|
278
|
-
readonly "Anathema's Chains": "
|
279
|
-
readonly "Abyssal Mask": "
|
280
|
-
readonly Ghostcrawlers: "223005";
|
281
|
-
readonly "Atma's Reckoning": "223039";
|
282
|
-
readonly "Hextech Gunblade": "223146";
|
283
|
-
readonly Zephyr: "223172";
|
284
|
-
readonly "Guardian's Dirk": "223185";
|
285
|
-
readonly "Spectral Cutlass": "224004";
|
258
|
+
readonly "Anathema's Chains": "8001";
|
259
|
+
readonly "Abyssal Mask": "8020";
|
286
260
|
};
|
287
261
|
export type ItemKey = typeof ItemKeys[keyof typeof ItemKeys];
|