lol-constants 1.7.0 → 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- package/assets/BootsItemNames.d.ts +1 -1
- package/assets/BootsItemNames.js +2 -0
- package/dist/Constants/Items/BootsItemKeys.d.ts +2 -0
- package/dist/Constants/Items/BootsItemKeys.js +1 -1
- package/dist/Constants/Items/BootsItemNames.d.ts +2 -0
- package/dist/Constants/Items/BootsItemNames.js +1 -1
- package/package.json +1 -1
@@ -1 +1 @@
|
|
1
|
-
export declare const BootsItemNames: readonly ["Berserker's Greaves", "Boots of Swiftness", "Ionian Boots of Lucidity", "Mercury's Treads", "Mobility Boots", "Plated Steelcaps", "Sorcerer's Shoes"];
|
1
|
+
export declare const BootsItemNames: readonly ["Boots", "Berserker's Greaves", "Boots of Swiftness", "Ionian Boots of Lucidity", "Mercury's Treads", "Mobility Boots", "Plated Steelcaps", "Sorcerer's Shoes", "Slightly Magical Footwear"];
|
package/assets/BootsItemNames.js
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.BootsItemNames = void 0;
|
4
4
|
exports.BootsItemNames = [
|
5
|
+
'Boots',
|
5
6
|
'Berserker\'s Greaves',
|
6
7
|
'Boots of Swiftness',
|
7
8
|
'Ionian Boots of Lucidity',
|
@@ -9,4 +10,5 @@ exports.BootsItemNames = [
|
|
9
10
|
'Mobility Boots',
|
10
11
|
'Plated Steelcaps',
|
11
12
|
'Sorcerer\'s Shoes',
|
13
|
+
'Slightly Magical Footwear',
|
12
14
|
];
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export declare const BootsItemKeys: {
|
2
|
+
readonly Boots: "1001";
|
2
3
|
readonly "Berserker's Greaves": "3006";
|
3
4
|
readonly "Boots of Swiftness": "3009";
|
4
5
|
readonly "Ionian Boots of Lucidity": "3158";
|
@@ -6,4 +7,5 @@ export declare const BootsItemKeys: {
|
|
6
7
|
readonly "Mobility Boots": "3117";
|
7
8
|
readonly "Plated Steelcaps": "3047";
|
8
9
|
readonly "Sorcerer's Shoes": "3020";
|
10
|
+
readonly "Slightly Magical Footwear": "2422";
|
9
11
|
};
|
@@ -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 = { "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" };
|
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,4 +1,4 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.BootsItemNames = void 0;
|
4
|
-
exports.BootsItemNames = { "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" };
|
package/package.json
CHANGED