lol-constants 2.12.0 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/constants/Champion.d.ts +174 -174
- package/assets/constants/Champion.js +1 -1
- package/assets/constants/Item.d.ts +706 -412
- package/assets/constants/Item.js +1 -1
- package/assets/constants/RunesReforged.d.ts +12 -12
- package/assets/constants/RunesReforged.js +1 -1
- package/assets/constants/Summoner.d.ts +4 -4
- package/assets/constants/Summoner.js +1 -1
- 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/assets/scripts/helpers/generateIndexFile.d.ts +1 -0
- package/assets/scripts/helpers/generateIndexFile.js +7 -0
- package/assets/scripts/helpers/writeToTmpFile.d.ts +2 -0
- package/assets/scripts/helpers/writeToTmpFile.js +1 -1
- package/assets/scripts/print-file-names.js +0 -25
- package/core/constants/DataDragonUrls.d.ts +16 -16
- package/core/constants/DataDragonUrls.js +2 -2
- 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 +1 -163
- package/core/constants/Items/ItemNames.js +1 -1
- package/core/constants/Items/LegendaryItemKeys.d.ts +65 -66
- package/core/constants/Items/LegendaryItemKeys.js +1 -1
- package/core/constants/Items/LegendaryItemKeysNum.d.ts +65 -66
- package/core/constants/Items/LegendaryItemKeysNum.js +1 -1
- package/core/constants/Items/LegendaryItemNames.d.ts +0 -67
- 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/core/constants/LeagueTexts.d.ts +49 -0
- package/core/constants/LeagueTexts.js +58 -0
- package/core/index.d.ts +1 -0
- package/core/index.js +1 -0
- package/package.json +2 -2
@@ -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
|
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function generateIndexFile(): void;
|
@@ -6,6 +6,8 @@ export declare function writeToTmpFile(mainConstName: string, ...constants: {
|
|
6
6
|
};
|
7
7
|
typeName?: string;
|
8
8
|
typeComment?: string;
|
9
|
+
validationFnName?: string;
|
10
|
+
validationFnComment?: string;
|
9
11
|
includeAutoTypeName?: boolean;
|
10
12
|
keysToEscape?: (string | number)[];
|
11
13
|
}[]): Promise<void>;
|
@@ -5,7 +5,7 @@ const fs_1 = require("fs");
|
|
5
5
|
const getExportStatement_1 = require("./getExportStatement");
|
6
6
|
function writeToTmpFile(mainConstName, ...constants) {
|
7
7
|
return new Promise((res, rej) => {
|
8
|
-
const exportStatements = constants.reduce((finalSt, { constName, comment, json, keysToEscape, typeName, typeComment, includeAutoTypeName, }, i) => {
|
8
|
+
const exportStatements = constants.reduce((finalSt, { constName, comment, json, keysToEscape, typeName, typeComment, validationFnName, validationFnComment, includeAutoTypeName, }, i) => {
|
9
9
|
let exportStatement = (0, getExportStatement_1.getExportStatement)(constName, json, keysToEscape, comment, typeName, typeComment, includeAutoTypeName);
|
10
10
|
return (finalSt
|
11
11
|
+ exportStatement
|
@@ -11,30 +11,6 @@ const folders2 = [
|
|
11
11
|
'Runes',
|
12
12
|
'Spells',
|
13
13
|
];
|
14
|
-
// TEMP
|
15
|
-
// async function getConstantNames() {
|
16
|
-
// const product: {
|
17
|
-
// [folder1: string]: {
|
18
|
-
// [folder2: string]: string
|
19
|
-
// }
|
20
|
-
// } = {}
|
21
|
-
// async function getFileNames(dir: string): Promise<string> {
|
22
|
-
// const fileNames = await readdir(dir)
|
23
|
-
// // Remove `.ts` extension
|
24
|
-
// const modifiedFileNames = fileNames
|
25
|
-
// .map(name => name.slice(0, name.indexOf('.ts')))
|
26
|
-
// .join('`, `')
|
27
|
-
// return '`' + modifiedFileNames + '`'
|
28
|
-
// }
|
29
|
-
// for (const folder1 of folders1) {
|
30
|
-
// if (product[folder1] == null) product[folder1] = {}
|
31
|
-
// for (const folder2 of folders2) {
|
32
|
-
// const fileNamesSt = await getFileNames(`src/core/${folder1}/${folder2}`)
|
33
|
-
// product[folder1]![folder2] = fileNamesSt
|
34
|
-
// }
|
35
|
-
// }
|
36
|
-
// return product
|
37
|
-
// }
|
38
14
|
function getVariableNamesFromFileContents(contents, exportStatement, endingCharacter) {
|
39
15
|
const typeNames = [];
|
40
16
|
let exportIndex = 0;
|
@@ -88,7 +64,6 @@ async function getOtherVariableInfo() {
|
|
88
64
|
const functions = [];
|
89
65
|
const constantFileNames = (await (0, promises_1.readdir)('src/core/constants'))
|
90
66
|
.filter(fileName => fileName.includes('.ts'));
|
91
|
-
console.log('constantFileNames', constantFileNames); // TEMP
|
92
67
|
for (const fileName of constantFileNames) {
|
93
68
|
const contents = await (0, promises_1.readFile)(`src/core/constants/${fileName}`, { encoding: 'utf-8' });
|
94
69
|
constants.push(...getVariableNamesFromFileContents(contents, 'export const', ' '));
|
@@ -2,50 +2,50 @@
|
|
2
2
|
* Data Dragon CDN Paths.
|
3
3
|
*/
|
4
4
|
export declare const DataDragonUrls: {
|
5
|
-
readonly DATA_DRAGON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
6
|
-
readonly COMMUNITY_DRAGON_BASE: "https://raw.communitydragon.org/13.
|
5
|
+
readonly DATA_DRAGON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1";
|
6
|
+
readonly COMMUNITY_DRAGON_BASE: "https://raw.communitydragon.org/13.20";
|
7
7
|
/**
|
8
8
|
* Append with `/MonkeyKing.png` (`/{championId}.png`).
|
9
9
|
*/
|
10
|
-
readonly CHAMPION_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
10
|
+
readonly CHAMPION_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1/img/champion";
|
11
11
|
/**
|
12
12
|
* Append with `/MonkeyKing_0.png` (`/{championId}_{skinNum}.png`).
|
13
13
|
*/
|
14
|
-
readonly CHAMPION_LOADING_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
14
|
+
readonly CHAMPION_LOADING_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1/img/champion/loading";
|
15
15
|
/**
|
16
16
|
* Append with `/MonkeyKing_0.png` (`/{championId}_{skinNum}.png`).
|
17
17
|
*/
|
18
|
-
readonly CHAMPION_SPLASH_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
18
|
+
readonly CHAMPION_SPLASH_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1/img/champion/splash";
|
19
19
|
/**
|
20
20
|
* Append with `/FlashFrost.png` (`/{abilityKey}.png`).
|
21
21
|
*/
|
22
|
-
readonly ABILITY_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
22
|
+
readonly ABILITY_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1/img/spell";
|
23
23
|
/**
|
24
24
|
* Append with `/685.png` (`/{iconId}.png`).
|
25
25
|
*/
|
26
|
-
readonly PROFILE_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
26
|
+
readonly PROFILE_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1/img/profileicon";
|
27
27
|
/**
|
28
28
|
* Append with `/1001.png` (`/{itemId}.png`).
|
29
29
|
*/
|
30
|
-
readonly ITEM_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
30
|
+
readonly ITEM_ICON_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1/img/item";
|
31
31
|
/**
|
32
32
|
* Append with `/MonkeyKing.json` (`/{championId}.json`).
|
33
33
|
*/
|
34
|
-
readonly CHAMPION_BASE: "https://ddragon.leagueoflegends.com/cdn/13.
|
35
|
-
readonly CHAMPION: "https://ddragon.leagueoflegends.com/cdn/13.
|
36
|
-
readonly ITEM: "https://ddragon.leagueoflegends.com/cdn/13.
|
37
|
-
readonly RUNES_REFORGED: "https://ddragon.leagueoflegends.com/cdn/13.
|
38
|
-
readonly SUMMONER: "https://ddragon.leagueoflegends.com/cdn/13.
|
34
|
+
readonly CHAMPION_BASE: "https://ddragon.leagueoflegends.com/cdn/13.20.1/data/en_US/champion";
|
35
|
+
readonly CHAMPION: "https://ddragon.leagueoflegends.com/cdn/13.20.1/data/en_US/champion.json";
|
36
|
+
readonly ITEM: "https://ddragon.leagueoflegends.com/cdn/13.20.1/data/en_US/item.json";
|
37
|
+
readonly RUNES_REFORGED: "https://ddragon.leagueoflegends.com/cdn/13.20.1/data/en_US/runesReforged.json";
|
38
|
+
readonly SUMMONER: "https://ddragon.leagueoflegends.com/cdn/13.20.1/data/en_US/summoner.json";
|
39
39
|
/**
|
40
40
|
* @see https://raw.communitydragon.org/latest/plugins/rcp-be-lol-game-data/global/default/v1/perk-images/statmods
|
41
41
|
*/
|
42
|
-
readonly STAT_RUNE_ICON_BASE: "https://raw.communitydragon.org/13.
|
42
|
+
readonly STAT_RUNE_ICON_BASE: "https://raw.communitydragon.org/13.20/plugins/rcp-be-lol-game-data/global/default/v1/perk-images/statmods";
|
43
43
|
/**
|
44
44
|
* @see https://raw.communitydragon.org/latest/plugins/rcp-be-lol-game-data/global/default/v1/perk-images/styles
|
45
45
|
*/
|
46
|
-
readonly TREE_RUNE_ICON_BASE: "https://raw.communitydragon.org/13.
|
46
|
+
readonly TREE_RUNE_ICON_BASE: "https://raw.communitydragon.org/13.20/plugins/rcp-be-lol-game-data/global/default/v1/perk-images/styles";
|
47
47
|
/**
|
48
48
|
* @see https://raw.communitydragon.org/latest/plugins/rcp-fe-lol-static-assets/global/default/svg
|
49
49
|
*/
|
50
|
-
readonly POSITION_ICON_BASE: "https://raw.communitydragon.org/13.
|
50
|
+
readonly POSITION_ICON_BASE: "https://raw.communitydragon.org/13.20/plugins/rcp-fe-lol-static-assets/global/default/svg";
|
51
51
|
};
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.DataDragonUrls = void 0;
|
4
|
-
const version = '13.
|
5
|
-
const cdragonVersion = '13.
|
4
|
+
const version = '13.20.1';
|
5
|
+
const cdragonVersion = '13.20';
|
6
6
|
const base = `https://ddragon.leagueoflegends.com/cdn/${version}`;
|
7
7
|
const cdragonBase = `https://raw.communitydragon.org/${cdragonVersion}`;
|
8
8
|
const locale = 'en_US';
|
@@ -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" };
|