lol-constants 2.19.0 → 2.20.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/assets/constants/BootsItemNames.js +9 -9
- package/assets/constants/Champion.d.ts +362 -315
- package/assets/constants/Champion.js +1 -1
- package/assets/constants/Item.d.ts +4842 -3135
- package/assets/constants/Item.js +1 -1
- package/assets/constants/LegendaryItemNames.d.ts +4 -1
- package/assets/constants/LegendaryItemNames.js +138 -74
- package/assets/constants/RunesReforged.d.ts +4 -4
- package/assets/constants/RunesReforged.js +1 -1
- package/assets/constants/Summoner.d.ts +1 -1
- package/assets/constants/Summoner.js +1 -1
- package/assets/index.js +0 -1
- package/assets/scripts/generate-categorized-item-keys-num.js +0 -20
- package/assets/scripts/generate-categorized-item-keys.js +1 -22
- package/assets/scripts/generate-categorized-item-names.js +0 -20
- package/core/constants/Champions/ChampionIds.d.ts +1 -0
- package/core/constants/Champions/ChampionIds.js +1 -1
- package/core/constants/Champions/ChampionIdsByName.d.ts +1 -0
- package/core/constants/Champions/ChampionIdsByName.js +1 -1
- package/core/constants/Champions/ChampionKeys.d.ts +1 -0
- package/core/constants/Champions/ChampionKeys.js +1 -1
- package/core/constants/Champions/ChampionKeysNum.d.ts +1 -0
- package/core/constants/Champions/ChampionKeysNum.js +1 -1
- package/core/constants/Champions/ChampionNames.d.ts +1 -0
- package/core/constants/Champions/ChampionNames.js +1 -1
- package/core/constants/DataDragonUrls.d.ts +16 -16
- package/core/constants/DataDragonUrls.js +2 -2
- package/core/constants/Items/ItemKeys.d.ts +50 -42
- package/core/constants/Items/ItemKeys.js +1 -1
- package/core/constants/Items/ItemKeysNum.d.ts +50 -42
- package/core/constants/Items/ItemKeysNum.js +1 -1
- package/core/constants/Items/ItemNames.d.ts +50 -43
- package/core/constants/Items/ItemNames.js +1 -1
- package/core/constants/Items/ItemTypes.d.ts +0 -1
- package/core/constants/Items/ItemTypes.js +0 -1
- package/core/constants/Items/LegendaryItemKeys.d.ts +73 -11
- package/core/constants/Items/LegendaryItemKeys.js +1 -1
- package/core/constants/Items/LegendaryItemKeysNum.d.ts +73 -11
- package/core/constants/Items/LegendaryItemKeysNum.js +1 -1
- package/core/constants/Items/LegendaryItemNames.d.ts +71 -9
- package/core/constants/Items/LegendaryItemNames.js +1 -1
- package/core/constants/Items/OrnnItemKeys.d.ts +0 -8
- package/core/constants/Items/OrnnItemKeys.js +1 -1
- package/core/constants/Items/OrnnItemKeysNum.d.ts +0 -8
- package/core/constants/Items/OrnnItemKeysNum.js +1 -1
- package/core/constants/Items/OrnnItemNames.d.ts +0 -8
- package/core/constants/Items/OrnnItemNames.js +1 -1
- package/core/constants/Runes/NonStatRuneIds.d.ts +1 -1
- package/core/constants/Runes/NonStatRuneIds.js +1 -1
- package/core/constants/Runes/NonStatRuneIdsNum.d.ts +1 -1
- package/core/constants/Runes/NonStatRuneIdsNum.js +1 -1
- package/core/constants/Runes/NonStatRuneNames.d.ts +1 -1
- package/core/constants/Runes/NonStatRuneNames.js +1 -1
- package/core/constants/Runes/RuneIconFileNames.js +1 -1
- package/core/constants/Runes/RuneSets.d.ts +8 -8
- package/core/constants/Runes/RuneSets.js +3 -3
- package/core/constants/Runes/RuneSetsByRuneNames.d.ts +8 -8
- package/core/constants/Runes/RuneSetsByRuneNames.js +3 -3
- package/core/constants/Runes/RuneSetsByRuneNamesNum.d.ts +8 -8
- package/core/constants/Runes/RuneSetsByRuneNamesNum.js +3 -3
- package/core/helpers/makeRiotId.d.ts +4 -0
- package/core/helpers/makeRiotId.js +9 -0
- package/core/helpers/splitRiotId.d.ts +2 -2
- package/core/index.d.ts +1 -5
- package/core/index.js +1 -5
- package/package.json +1 -1
package/README.md
CHANGED
@@ -13,7 +13,7 @@ Advantages:
|
|
13
13
|
# Items
|
14
14
|
| constants | types | getters | type-validators
|
15
15
|
| --- | --- | --- | --- |
|
16
|
-
`BootsItemKeys`, `BootsItemKeysNum`, `BootsItemNames`, `ItemKeys`, `ItemKeysNum`, `ItemNames`, `ItemTypes`, `LegendaryItemKeys`, `LegendaryItemKeysNum`, `LegendaryItemNames`, `
|
16
|
+
`BootsItemKeys`, `BootsItemKeysNum`, `BootsItemNames`, `ItemKeys`, `ItemKeysNum`, `ItemNames`, `ItemTypes`, `LegendaryItemKeys`, `LegendaryItemKeysNum`, `LegendaryItemNames`, `OrnnItemKeys`, `OrnnItemKeysNum`, `OrnnItemNames` | `BootsItemKey`, `BootsItemKeyNum`, `BootsItemName`, `ItemKey`, `ItemKeyNum`, `ItemName`, `ItemType`, `LegendaryItemKey`, `LegendaryItemKeyNum`, `LegendaryItemName`, `OrnnItemKey`, `OrnnItemKeyNum`, `OrnnItemName` | `getItemKeyByName`, `getItemNameByKey` | `isBootsItemKey`, `isBootsItemKeyNum`, `isBootsItemName`, `isItemKey`, `isItemKeyNum`, `isItemName`, `isItemType`, `isLegendaryItemKey`, `isLegendaryItemKeyNum`, `isLegendaryItemName`, `isOrnnItemKey`, `isOrnnItemKeyNum`, `isOrnnItemName`
|
17
17
|
# Runes
|
18
18
|
| constants | types | getters | type-validators
|
19
19
|
| --- | --- | --- | --- |
|
@@ -2,13 +2,13 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.BootsItemNames = void 0;
|
4
4
|
exports.BootsItemNames = [
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
5
|
+
"Boots",
|
6
|
+
"Berserker's Greaves",
|
7
|
+
"Boots of Swiftness",
|
8
|
+
"Ionian Boots of Lucidity",
|
9
|
+
"Mercury's Treads",
|
10
|
+
"Mobility Boots",
|
11
|
+
"Plated Steelcaps",
|
12
|
+
"Sorcerer's Shoes",
|
13
|
+
"Slightly Magical Footwear",
|
14
14
|
];
|