lol-constants 0.10.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/{dist/Constants → assets}/StatRunes.d.ts +0 -0
- package/{dist/Constants → assets}/StatRunes.js +0 -0
- package/assets/champion.json +1 -0
- package/assets/index.d.ts +17216 -0
- package/assets/index.js +17 -0
- package/assets/item.json +1 -0
- package/assets/runesReforged.json +1 -0
- package/assets/scripts/Helpers/getExportStatement.d.ts +6 -0
- package/assets/scripts/Helpers/getExportStatement.js +10 -0
- package/assets/scripts/generate-all.d.ts +16 -0
- package/assets/scripts/generate-all.js +18 -0
- package/assets/scripts/generate-champion-ids-by-name.d.ts +1 -0
- package/assets/scripts/generate-champion-ids-by-name.js +20 -0
- package/assets/scripts/generate-champion-ids.d.ts +1 -0
- package/assets/scripts/generate-champion-ids.js +20 -0
- package/assets/scripts/generate-champion-keys.d.ts +1 -0
- package/assets/scripts/generate-champion-keys.js +20 -0
- package/assets/scripts/generate-champion-names.d.ts +1 -0
- package/assets/scripts/generate-champion-names.js +20 -0
- package/assets/scripts/generate-item-keys.d.ts +1 -0
- package/assets/scripts/generate-item-keys.js +21 -0
- package/assets/scripts/generate-item-names.d.ts +1 -0
- package/assets/scripts/generate-item-names.js +21 -0
- package/assets/scripts/generate-rune-ids.d.ts +1 -0
- package/assets/scripts/generate-rune-ids.js +29 -0
- package/assets/scripts/generate-rune-names.d.ts +1 -0
- package/assets/scripts/generate-rune-names.js +29 -0
- package/assets/scripts/generate-spell-ids-by-name.d.ts +1 -0
- package/assets/scripts/generate-spell-ids-by-name.js +20 -0
- package/assets/scripts/generate-spell-ids.d.ts +1 -0
- package/assets/scripts/generate-spell-ids.js +20 -0
- package/assets/scripts/generate-spell-keys.d.ts +1 -0
- package/assets/scripts/generate-spell-keys.js +20 -0
- package/assets/scripts/generate-spell-names.d.ts +1 -0
- package/assets/scripts/generate-spell-names.js +20 -0
- package/assets/scripts/generate-stat-rune-ids.d.ts +1 -0
- package/assets/scripts/generate-stat-rune-ids.js +20 -0
- package/assets/scripts/generate-stat-rune-names.d.ts +1 -0
- package/assets/scripts/generate-stat-rune-names.js +20 -0
- package/assets/scripts/generate-tree-rune-ids.d.ts +1 -0
- package/assets/scripts/generate-tree-rune-ids.js +22 -0
- package/assets/scripts/generate-tree-rune-names.d.ts +1 -0
- package/assets/scripts/generate-tree-rune-names.js +22 -0
- package/assets/summoner.json +1 -0
- package/dist/Constants/ChampionIds.d.ts +162 -0
- package/dist/Constants/ChampionIds.js +4 -0
- package/dist/Constants/ChampionIdsByName.d.ts +162 -0
- package/dist/Constants/ChampionIdsByName.js +4 -0
- package/dist/Constants/ChampionKeys.d.ts +162 -2
- package/dist/Constants/ChampionKeys.js +1 -5
- package/dist/Constants/ChampionNames.d.ts +162 -2
- package/dist/Constants/ChampionNames.js +1 -5
- package/dist/Constants/DDPaths.d.ts +27 -5
- package/dist/Constants/DDPaths.js +29 -7
- package/dist/Constants/ItemKeys.d.ts +250 -2
- package/dist/Constants/ItemKeys.js +1 -5
- package/dist/Constants/ItemNames.d.ts +256 -2
- package/dist/Constants/ItemNames.js +1 -5
- package/dist/Constants/RuneIds.d.ts +74 -2
- package/dist/Constants/RuneIds.js +1 -9
- package/dist/Constants/RuneNames.d.ts +74 -2
- package/dist/Constants/RuneNames.js +1 -5
- package/dist/Constants/RuneSets.d.ts +59 -0
- package/dist/Constants/RuneSets.js +188 -144
- package/dist/Constants/SpellIds.d.ts +18 -0
- package/dist/Constants/SpellIds.js +4 -0
- package/dist/Constants/SpellIdsByName.d.ts +17 -0
- package/dist/Constants/SpellIdsByName.js +4 -0
- package/dist/Constants/SpellKeys.d.ts +18 -0
- package/dist/Constants/SpellKeys.js +4 -0
- package/dist/Constants/SpellNames.d.ts +18 -0
- package/dist/Constants/SpellNames.js +4 -0
- package/dist/Constants/StatRuneIds.d.ts +11 -2
- package/dist/Constants/StatRuneIds.js +1 -2
- package/dist/Constants/StatRuneNames.d.ts +11 -2
- package/dist/Constants/StatRuneNames.js +1 -2
- package/dist/Constants/TreeRuneIds.d.ts +65 -2
- package/dist/Constants/TreeRuneIds.js +1 -5
- package/dist/Constants/TreeRuneNames.d.ts +65 -2
- package/dist/Constants/TreeRuneNames.js +1 -5
- package/dist/Helpers/getChampionIdByKey.d.ts +2 -0
- package/dist/Helpers/getChampionIdByKey.js +8 -0
- package/dist/Helpers/getChampionIdByName.d.ts +2 -0
- package/dist/Helpers/getChampionIdByName.js +8 -0
- package/dist/Helpers/getChampionKeyById.d.ts +2 -0
- package/dist/Helpers/getChampionKeyById.js +8 -0
- package/dist/Helpers/getChampionKeyByName.js +3 -5
- package/dist/Helpers/getChampionNameById.d.ts +2 -0
- package/dist/Helpers/getChampionNameById.js +9 -0
- package/dist/Helpers/getChampionNameByKey.js +2 -5
- package/dist/Helpers/getItemKeyByName.js +2 -5
- package/dist/Helpers/getItemNameByKey.js +2 -5
- package/dist/Helpers/getRuneIdByName.js +2 -15
- package/dist/Helpers/getRuneNameById.js +2 -9
- package/dist/Helpers/getSpellIdByKey.d.ts +2 -0
- package/dist/Helpers/getSpellIdByKey.js +8 -0
- package/dist/Helpers/getSpellIdByName.d.ts +2 -0
- package/dist/Helpers/getSpellIdByName.js +8 -0
- package/dist/Helpers/getSpellKeyById.d.ts +2 -0
- package/dist/Helpers/getSpellKeyById.js +8 -0
- package/dist/Helpers/getSpellKeyByName.d.ts +2 -0
- package/dist/Helpers/getSpellKeyByName.js +9 -0
- package/dist/Helpers/getSpellNameById.d.ts +2 -0
- package/dist/Helpers/getSpellNameById.js +9 -0
- package/dist/Helpers/getSpellNameByKey.d.ts +2 -0
- package/dist/Helpers/getSpellNameByKey.js +8 -0
- package/dist/Helpers/getStatRuneIdByName.d.ts +2 -0
- package/dist/Helpers/getStatRuneIdByName.js +8 -0
- package/dist/Helpers/getStatRuneNameById.d.ts +2 -0
- package/dist/Helpers/getStatRuneNameById.js +8 -0
- package/dist/Helpers/getTreeRuneIdByName.d.ts +2 -0
- package/dist/Helpers/getTreeRuneIdByName.js +8 -0
- package/dist/Helpers/getTreeRuneNameById.d.ts +2 -0
- package/dist/Helpers/getTreeRuneNameById.js +8 -0
- package/dist/Helpers/isChampionId.d.ts +2 -0
- package/dist/Helpers/isChampionId.js +8 -0
- package/dist/Helpers/isChampionKey.d.ts +1 -1
- package/dist/Helpers/isChampionKey.js +2 -4
- package/dist/Helpers/isChampionName.d.ts +1 -1
- package/dist/Helpers/isChampionName.js +2 -4
- package/dist/Helpers/isItemKey.d.ts +1 -1
- package/dist/Helpers/isItemKey.js +2 -4
- package/dist/Helpers/isItemName.d.ts +1 -1
- package/dist/Helpers/isItemName.js +2 -4
- package/dist/Helpers/isRuneId.d.ts +1 -1
- package/dist/Helpers/isRuneId.js +2 -4
- package/dist/Helpers/isRuneName.d.ts +1 -1
- package/dist/Helpers/isRuneName.js +2 -4
- package/dist/Helpers/isSpellId.d.ts +2 -0
- package/dist/Helpers/isSpellId.js +8 -0
- package/dist/Helpers/isSpellKey.d.ts +2 -0
- package/dist/Helpers/isSpellKey.js +8 -0
- package/dist/Helpers/isSpellName.d.ts +2 -0
- package/dist/Helpers/isSpellName.js +8 -0
- package/dist/Helpers/isStatRuneId.d.ts +1 -1
- package/dist/Helpers/isStatRuneId.js +2 -4
- package/dist/Helpers/isStatRuneName.d.ts +1 -1
- package/dist/Helpers/isStatRuneName.js +2 -4
- package/dist/Helpers/isTreeRuneId.d.ts +1 -1
- package/dist/Helpers/isTreeRuneId.js +2 -4
- package/dist/Helpers/isTreeRuneName.d.ts +1 -1
- package/dist/Helpers/isTreeRuneName.js +2 -4
- package/dist/assets/StatRunes.d.ts +11 -0
- package/dist/assets/StatRunes.js +14 -0
- package/dist/assets/champion.json +1 -1
- package/dist/assets/index.d.ts +17216 -0
- package/dist/assets/index.js +17 -0
- package/dist/assets/item.json +1 -1
- package/dist/assets/runesReforged.json +1 -1
- package/dist/assets/summoner.json +1 -1
- package/dist/index.d.ts +25 -43394
- package/dist/index.js +80 -46
- package/dist/scripts/Helpers/getExportStatement.d.ts +6 -0
- package/dist/scripts/Helpers/getExportStatement.js +10 -0
- package/dist/scripts/generate-all.d.ts +16 -1
- package/dist/scripts/generate-all.js +16 -17
- package/dist/scripts/generate-champion-ids-by-name.d.ts +1 -0
- package/dist/{Helpers/generateChampionsByKey.js → scripts/generate-champion-ids-by-name.js} +9 -11
- package/dist/scripts/generate-champion-ids.d.ts +1 -0
- package/dist/{Helpers/generateChampionsByName.js → scripts/generate-champion-ids.js} +9 -11
- package/dist/scripts/generate-champion-keys.d.ts +1 -0
- package/dist/scripts/generate-champion-keys.js +20 -0
- package/dist/scripts/generate-champion-names.d.ts +1 -0
- package/dist/scripts/generate-champion-names.js +20 -0
- package/dist/scripts/generate-item-keys.d.ts +1 -0
- package/dist/scripts/generate-item-keys.js +21 -0
- package/dist/scripts/generate-item-names.d.ts +1 -0
- package/dist/scripts/generate-item-names.js +21 -0
- package/dist/scripts/generate-rune-ids.d.ts +1 -0
- package/dist/scripts/generate-rune-ids.js +29 -0
- package/dist/scripts/generate-rune-names.d.ts +1 -0
- package/dist/scripts/generate-rune-names.js +29 -0
- package/dist/scripts/generate-spell-ids-by-name.d.ts +1 -0
- package/dist/scripts/generate-spell-ids-by-name.js +20 -0
- package/dist/scripts/generate-spell-ids.d.ts +1 -0
- package/dist/scripts/generate-spell-ids.js +20 -0
- package/dist/scripts/generate-spell-keys.d.ts +1 -0
- package/dist/scripts/generate-spell-keys.js +20 -0
- package/dist/scripts/generate-spell-names.d.ts +1 -0
- package/dist/scripts/generate-spell-names.js +20 -0
- package/dist/scripts/generate-stat-rune-ids.d.ts +1 -0
- package/dist/scripts/generate-stat-rune-ids.js +20 -0
- package/dist/scripts/generate-stat-rune-names.d.ts +1 -0
- package/dist/scripts/generate-stat-rune-names.js +20 -0
- package/dist/scripts/generate-tree-rune-ids.d.ts +1 -0
- package/dist/{Helpers/generateRunesById.js → scripts/generate-tree-rune-ids.js} +9 -7
- package/dist/scripts/generate-tree-rune-names.d.ts +1 -0
- package/dist/{Helpers/generateRunesByName.js → scripts/generate-tree-rune-names.js} +9 -7
- package/dist/types/Meta.d.ts +25 -0
- package/dist/types/index.d.ts +154 -23
- package/package.json +4 -3
- package/dist/Constants/SummonerIds.d.ts +0 -2
- package/dist/Constants/SummonerIds.js +0 -8
- package/dist/Constants/SummonerKeys.d.ts +0 -2
- package/dist/Constants/SummonerKeys.js +0 -8
- package/dist/Constants/SummonerNames.d.ts +0 -2
- package/dist/Constants/SummonerNames.js +0 -8
- package/dist/Constants/SummonerSpellIds.d.ts +0 -2
- package/dist/Constants/SummonerSpellIds.js +0 -8
- package/dist/Constants/SummonerSpellKeys.d.ts +0 -2
- package/dist/Constants/SummonerSpellKeys.js +0 -8
- package/dist/Constants/SummonerSpellNames.d.ts +0 -2
- package/dist/Constants/SummonerSpellNames.js +0 -8
- package/dist/Helpers/generateChampionsByKey.d.ts +0 -1
- package/dist/Helpers/generateChampionsByName.d.ts +0 -1
- package/dist/Helpers/generateItemsByName.d.ts +0 -1
- package/dist/Helpers/generateItemsByName.js +0 -25
- package/dist/Helpers/generateRunesById.d.ts +0 -1
- package/dist/Helpers/generateRunesByName.d.ts +0 -1
- package/dist/Helpers/generateSummonerSpellsByKey.d.ts +0 -1
- package/dist/Helpers/generateSummonerSpellsByKey.js +0 -24
- package/dist/Helpers/generateSummonerSpellsByName.d.ts +0 -1
- package/dist/Helpers/generateSummonerSpellsByName.js +0 -24
- package/dist/Helpers/generateSummonersByKey.d.ts +0 -1
- package/dist/Helpers/generateSummonersByKey.js +0 -24
- package/dist/Helpers/generateSummonersByName.d.ts +0 -1
- package/dist/Helpers/generateSummonersByName.js +0 -24
- package/dist/Helpers/getSummonerSpellKeyByName.d.ts +0 -2
- package/dist/Helpers/getSummonerSpellKeyByName.js +0 -11
- package/dist/Helpers/getSummonerSpellNameByKey.d.ts +0 -2
- package/dist/Helpers/getSummonerSpellNameByKey.js +0 -11
- package/dist/Helpers/isSummonerId.d.ts +0 -2
- package/dist/Helpers/isSummonerId.js +0 -10
- package/dist/Helpers/isSummonerKey.d.ts +0 -2
- package/dist/Helpers/isSummonerKey.js +0 -10
- package/dist/Helpers/isSummonerName.d.ts +0 -2
- package/dist/Helpers/isSummonerName.js +0 -10
- package/dist/Helpers/isSummonerSpellId.d.ts +0 -2
- package/dist/Helpers/isSummonerSpellId.js +0 -10
- package/dist/Helpers/isSummonerSpellKey.d.ts +0 -2
- package/dist/Helpers/isSummonerSpellKey.js +0 -10
- package/dist/Helpers/isSummonerSpellName.d.ts +0 -2
- package/dist/Helpers/isSummonerSpellName.js +0 -10
- package/dist/generated/championByKey.json +0 -1
- package/dist/generated/championByName.json +0 -1
- package/dist/generated/itemByKey.json +0 -1
- package/dist/generated/itemByName.json +0 -1
- package/dist/generated/runesById.json +0 -1
- package/dist/generated/runesByName.json +0 -1
- package/dist/generated/summonerByKey.json +0 -1
- package/dist/generated/summonerByName.json +0 -1
@@ -1,2 +1,256 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
export declare const ItemNames: {
|
2
|
+
readonly "1001": "Boots";
|
3
|
+
readonly "1004": "Faerie Charm";
|
4
|
+
readonly "1006": "Rejuvenation Bead";
|
5
|
+
readonly "1011": "Giant's Belt";
|
6
|
+
readonly "1018": "Cloak of Agility";
|
7
|
+
readonly "1026": "Blasting Wand";
|
8
|
+
readonly "1027": "Sapphire Crystal";
|
9
|
+
readonly "1028": "Ruby Crystal";
|
10
|
+
readonly "1029": "Cloth Armor";
|
11
|
+
readonly "1031": "Chain Vest";
|
12
|
+
readonly "1033": "Null-Magic Mantle";
|
13
|
+
readonly "1035": "Emberknife";
|
14
|
+
readonly "1036": "Long Sword";
|
15
|
+
readonly "1037": "Pickaxe";
|
16
|
+
readonly "1038": "B. F. Sword";
|
17
|
+
readonly "1039": "Hailblade";
|
18
|
+
readonly "1040": "Obsidian Edge";
|
19
|
+
readonly "1042": "Dagger";
|
20
|
+
readonly "1043": "Recurve Bow";
|
21
|
+
readonly "1052": "Amplifying Tome";
|
22
|
+
readonly "1053": "Vampiric Scepter";
|
23
|
+
readonly "1054": "Doran's Shield";
|
24
|
+
readonly "1055": "Doran's Blade";
|
25
|
+
readonly "1056": "Doran's Ring";
|
26
|
+
readonly "1057": "Negatron Cloak";
|
27
|
+
readonly "1058": "Needlessly Large Rod";
|
28
|
+
readonly "1082": "Dark Seal";
|
29
|
+
readonly "1083": "Cull";
|
30
|
+
readonly "1500": "Penetrating Bullets";
|
31
|
+
readonly "1501": "Fortification";
|
32
|
+
readonly "1502": "Reinforced Armor";
|
33
|
+
readonly "1503": "Warden's Eye";
|
34
|
+
readonly "1504": "Vanguard";
|
35
|
+
readonly "1505": "Lightning Rod";
|
36
|
+
readonly "1506": "Reinforced Armor";
|
37
|
+
readonly "1507": "Overcharged";
|
38
|
+
readonly "1508": "Anti-tower Socks";
|
39
|
+
readonly "1509": "Gusto";
|
40
|
+
readonly "1510": "Phreakish Gusto";
|
41
|
+
readonly "1511": "Super Mech Armor";
|
42
|
+
readonly "1512": "Super Mech Power Field";
|
43
|
+
readonly "1515": "Turret Plating";
|
44
|
+
readonly "1516": "Structure Bounty";
|
45
|
+
readonly "1517": "Structure Bounty";
|
46
|
+
readonly "1518": "Structure Bounty";
|
47
|
+
readonly "1519": "Structure Bounty";
|
48
|
+
readonly "2003": "Health Potion";
|
49
|
+
readonly "2010": "Total Biscuit of Everlasting Will";
|
50
|
+
readonly "2015": "Kircheis Shard";
|
51
|
+
readonly "2031": "Refillable Potion";
|
52
|
+
readonly "2033": "Corrupting Potion";
|
53
|
+
readonly "2051": "Guardian's Horn";
|
54
|
+
readonly "2052": "Poro-Snax";
|
55
|
+
readonly "2055": "Control Ward";
|
56
|
+
readonly "2065": "Shurelya's Battlesong";
|
57
|
+
readonly "2138": "Elixir of Iron";
|
58
|
+
readonly "2139": "Elixir of Sorcery";
|
59
|
+
readonly "2140": "Elixir of Wrath";
|
60
|
+
readonly "2403": "Minion Dematerializer";
|
61
|
+
readonly "2419": "Commencing Stopwatch";
|
62
|
+
readonly "2420": "Stopwatch";
|
63
|
+
readonly "2421": "Broken Stopwatch";
|
64
|
+
readonly "2422": "Slightly Magical Footwear";
|
65
|
+
readonly "2423": "Perfectly Timed Stopwatch";
|
66
|
+
readonly "2424": "Broken Stopwatch";
|
67
|
+
readonly "3001": "Evenshroud";
|
68
|
+
readonly "3003": "Archangel's Staff";
|
69
|
+
readonly "3004": "Manamune";
|
70
|
+
readonly "3006": "Berserker's Greaves";
|
71
|
+
readonly "3009": "Boots of Swiftness";
|
72
|
+
readonly "3011": "Chemtech Putrifier";
|
73
|
+
readonly "3020": "Sorcerer's Shoes";
|
74
|
+
readonly "3024": "Glacial Buckler";
|
75
|
+
readonly "3026": "Guardian Angel";
|
76
|
+
readonly "3031": "Infinity Edge";
|
77
|
+
readonly "3033": "Mortal Reminder";
|
78
|
+
readonly "3035": "Last Whisper";
|
79
|
+
readonly "3036": "Lord Dominik's Regards";
|
80
|
+
readonly "3040": "Seraph's Embrace";
|
81
|
+
readonly "3041": "Mejai's Soulstealer";
|
82
|
+
readonly "3042": "Muramana";
|
83
|
+
readonly "3044": "Phage";
|
84
|
+
readonly "3046": "Phantom Dancer";
|
85
|
+
readonly "3047": "Plated Steelcaps";
|
86
|
+
readonly "3050": "Zeke's Convergence";
|
87
|
+
readonly "3051": "Hearthbound Axe";
|
88
|
+
readonly "3053": "Sterak's Gage";
|
89
|
+
readonly "3057": "Sheen";
|
90
|
+
readonly "3065": "Spirit Visage";
|
91
|
+
readonly "3066": "Winged Moonplate";
|
92
|
+
readonly "3067": "Kindlegem";
|
93
|
+
readonly "3068": "Sunfire Aegis";
|
94
|
+
readonly "3070": "Tear of the Goddess";
|
95
|
+
readonly "3071": "Black Cleaver";
|
96
|
+
readonly "3072": "Bloodthirster";
|
97
|
+
readonly "3074": "Ravenous Hydra";
|
98
|
+
readonly "3075": "Thornmail";
|
99
|
+
readonly "3076": "Bramble Vest";
|
100
|
+
readonly "3077": "Tiamat";
|
101
|
+
readonly "3078": "Trinity Force";
|
102
|
+
readonly "3082": "Warden's Mail";
|
103
|
+
readonly "3083": "Warmog's Armor";
|
104
|
+
readonly "3085": "Runaan's Hurricane";
|
105
|
+
readonly "3086": "Zeal";
|
106
|
+
readonly "3089": "Rabadon's Deathcap";
|
107
|
+
readonly "3091": "Wit's End";
|
108
|
+
readonly "3094": "Rapid Firecannon";
|
109
|
+
readonly "3095": "Stormrazor";
|
110
|
+
readonly "3100": "Lich Bane";
|
111
|
+
readonly "3102": "Banshee's Veil";
|
112
|
+
readonly "3105": "Aegis of the Legion";
|
113
|
+
readonly "3107": "Redemption";
|
114
|
+
readonly "3108": "Fiendish Codex";
|
115
|
+
readonly "3109": "Knight's Vow";
|
116
|
+
readonly "3110": "Frozen Heart";
|
117
|
+
readonly "3111": "Mercury's Treads";
|
118
|
+
readonly "3112": "Guardian's Orb";
|
119
|
+
readonly "3113": "Aether Wisp";
|
120
|
+
readonly "3114": "Forbidden Idol";
|
121
|
+
readonly "3115": "Nashor's Tooth";
|
122
|
+
readonly "3116": "Rylai's Crystal Scepter";
|
123
|
+
readonly "3117": "Mobility Boots";
|
124
|
+
readonly "3119": "Winter's Approach";
|
125
|
+
readonly "3121": "Fimbulwinter";
|
126
|
+
readonly "3123": "Executioner's Calling";
|
127
|
+
readonly "3124": "Guinsoo's Rageblade";
|
128
|
+
readonly "3133": "Caulfield's Warhammer";
|
129
|
+
readonly "3134": "Serrated Dirk";
|
130
|
+
readonly "3135": "Void Staff";
|
131
|
+
readonly "3139": "Mercurial Scimitar";
|
132
|
+
readonly "3140": "Quicksilver Sash";
|
133
|
+
readonly "3142": "Youmuu's Ghostblade";
|
134
|
+
readonly "3143": "Randuin's Omen";
|
135
|
+
readonly "3145": "Hextech Alternator";
|
136
|
+
readonly "3152": "Hextech Rocketbelt";
|
137
|
+
readonly "3153": "Blade of The Ruined King";
|
138
|
+
readonly "3155": "Hexdrinker";
|
139
|
+
readonly "3156": "Maw of Malmortius";
|
140
|
+
readonly "3157": "Zhonya's Hourglass";
|
141
|
+
readonly "3158": "Ionian Boots of Lucidity";
|
142
|
+
readonly "3165": "Morellonomicon";
|
143
|
+
readonly "3177": "Guardian's Blade";
|
144
|
+
readonly "3179": "Umbral Glaive";
|
145
|
+
readonly "3181": "Hullbreaker";
|
146
|
+
readonly "3184": "Guardian's Hammer";
|
147
|
+
readonly "3190": "Locket of the Iron Solari";
|
148
|
+
readonly "3191": "Seeker's Armguard";
|
149
|
+
readonly "3193": "Gargoyle Stoneplate";
|
150
|
+
readonly "3211": "Spectre's Cowl";
|
151
|
+
readonly "3222": "Mikael's Blessing";
|
152
|
+
readonly "3330": "Scarecrow Effigy";
|
153
|
+
readonly "3340": "Stealth Ward";
|
154
|
+
readonly "3363": "Farsight Alteration";
|
155
|
+
readonly "3364": "Oracle Lens";
|
156
|
+
readonly "3400": "Your Cut";
|
157
|
+
readonly "3504": "Ardent Censer";
|
158
|
+
readonly "3508": "Essence Reaver";
|
159
|
+
readonly "3513": "Eye of the Herald";
|
160
|
+
readonly "3599": "Kalista's Black Spear";
|
161
|
+
readonly "3600": "Kalista's Black Spear";
|
162
|
+
readonly "3742": "Dead Man's Plate";
|
163
|
+
readonly "3748": "Titanic Hydra";
|
164
|
+
readonly "3801": "Crystalline Bracer";
|
165
|
+
readonly "3802": "Lost Chapter";
|
166
|
+
readonly "3814": "Edge of Night";
|
167
|
+
readonly "3850": "Spellthief's Edge";
|
168
|
+
readonly "3851": "Frostfang";
|
169
|
+
readonly "3853": "Shard of True Ice";
|
170
|
+
readonly "3854": "Steel Shoulderguards";
|
171
|
+
readonly "3855": "Runesteel Spaulders";
|
172
|
+
readonly "3857": "Pauldrons of Whiterock";
|
173
|
+
readonly "3858": "Relic Shield";
|
174
|
+
readonly "3859": "Targon's Buckler";
|
175
|
+
readonly "3860": "Bulwark of the Mountain";
|
176
|
+
readonly "3862": "Spectral Sickle";
|
177
|
+
readonly "3863": "Harrowing Crescent";
|
178
|
+
readonly "3864": "Black Mist Scythe";
|
179
|
+
readonly "3901": "Fire at Will500 Silver Serpents";
|
180
|
+
readonly "3902": "Death's Daughter500 Silver Serpents";
|
181
|
+
readonly "3903": "Raise Morale500 Silver Serpents";
|
182
|
+
readonly "3916": "Oblivion Orb";
|
183
|
+
readonly "4005": "Imperial Mandate";
|
184
|
+
readonly "4401": "Force of Nature";
|
185
|
+
readonly "4403": "The Golden Spatula";
|
186
|
+
readonly "4628": "Horizon Focus";
|
187
|
+
readonly "4629": "Cosmic Drive";
|
188
|
+
readonly "4630": "Blighting Jewel";
|
189
|
+
readonly "4632": "Verdant Barrier";
|
190
|
+
readonly "4633": "Riftmaker";
|
191
|
+
readonly "4635": "Leeching Leer";
|
192
|
+
readonly "4636": "Night Harvester";
|
193
|
+
readonly "4637": "Demonic Embrace";
|
194
|
+
readonly "4638": "Watchful Wardstone";
|
195
|
+
readonly "4641": "Stirring Wardstone";
|
196
|
+
readonly "4642": "Bandleglass Mirror";
|
197
|
+
readonly "4643": "Vigilant Wardstone";
|
198
|
+
readonly "4644": "Crown of the Shattered Queen";
|
199
|
+
readonly "4645": "Shadowflame";
|
200
|
+
readonly "6029": "Ironspike Whip";
|
201
|
+
readonly "6035": "Silvermere Dawn";
|
202
|
+
readonly "6333": "Death's Dance";
|
203
|
+
readonly "6609": "Chempunk Chainsword";
|
204
|
+
readonly "6616": "Staff of Flowing Water";
|
205
|
+
readonly "6617": "Moonstone Renewer";
|
206
|
+
readonly "6630": "Goredrinker";
|
207
|
+
readonly "6631": "Stridebreaker";
|
208
|
+
readonly "6632": "Divine Sunderer";
|
209
|
+
readonly "6653": "Liandry's Anguish";
|
210
|
+
readonly "6655": "Luden's Tempest";
|
211
|
+
readonly "6656": "Everfrost";
|
212
|
+
readonly "6660": "Bami's Cinder";
|
213
|
+
readonly "6662": "Frostfire Gauntlet";
|
214
|
+
readonly "6664": "Turbo Chemtank";
|
215
|
+
readonly "6670": "Noonquiver";
|
216
|
+
readonly "6671": "Galeforce";
|
217
|
+
readonly "6672": "Kraken Slayer";
|
218
|
+
readonly "6673": "Immortal Shieldbow";
|
219
|
+
readonly "6675": "Navori Quickblades";
|
220
|
+
readonly "6676": "The Collector";
|
221
|
+
readonly "6677": "Rageknife";
|
222
|
+
readonly "6691": "Duskblade of Draktharr";
|
223
|
+
readonly "6692": "Eclipse";
|
224
|
+
readonly "6693": "Prowler's Claw";
|
225
|
+
readonly "6694": "Serylda's Grudge";
|
226
|
+
readonly "6695": "Serpent's Fang";
|
227
|
+
readonly "6696": "Axiom Arc";
|
228
|
+
readonly "7000": "Sandshrike's Claw";
|
229
|
+
readonly "7001": "Syzygy";
|
230
|
+
readonly "7002": "Draktharr's Shadowcarver";
|
231
|
+
readonly "7003": "Turbocharged Hexperiment";
|
232
|
+
readonly "7004": "Forgefire Crest";
|
233
|
+
readonly "7005": "Rimeforged Grasp";
|
234
|
+
readonly "7006": "Typhoon";
|
235
|
+
readonly "7007": "Wyrmfallen Sacrifice";
|
236
|
+
readonly "7008": "Bloodward";
|
237
|
+
readonly "7009": "Icathia's Curse";
|
238
|
+
readonly "7010": "Vespertide";
|
239
|
+
readonly "7011": "Upgraded Aeropack";
|
240
|
+
readonly "7012": "Liandry's Lament";
|
241
|
+
readonly "7013": "Eye of Luden";
|
242
|
+
readonly "7014": "Eternal Winter";
|
243
|
+
readonly "7015": "Ceaseless Hunger";
|
244
|
+
readonly "7016": "Dreamshatter";
|
245
|
+
readonly "7017": "Deicide";
|
246
|
+
readonly "7018": "Infinity Force";
|
247
|
+
readonly "7019": "Reliquary of the Golden Dawn";
|
248
|
+
readonly "7020": "Shurelya's Requiem";
|
249
|
+
readonly "7021": "Starcaster";
|
250
|
+
readonly "7022": "Seat of Command";
|
251
|
+
readonly "7023": "Equinox";
|
252
|
+
readonly "7024": "Caesura";
|
253
|
+
readonly "7050": "Gangplank Placeholder";
|
254
|
+
readonly "8001": "Anathema's Chains";
|
255
|
+
readonly "8020": "Abyssal Mask";
|
256
|
+
};
|
@@ -1,8 +1,4 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
3
|
exports.ItemNames = void 0;
|
7
|
-
|
8
|
-
exports.ItemNames = (Object.keys(itemByName_json_1.default.data).map(name => name));
|
4
|
+
exports.ItemNames = { "1001": "Boots", "1004": "Faerie Charm", "1006": "Rejuvenation Bead", "1011": "Giant's Belt", "1018": "Cloak of Agility", "1026": "Blasting Wand", "1027": "Sapphire Crystal", "1028": "Ruby Crystal", "1029": "Cloth Armor", "1031": "Chain Vest", "1033": "Null-Magic Mantle", "1035": "Emberknife", "1036": "Long Sword", "1037": "Pickaxe", "1038": "B. F. Sword", "1039": "Hailblade", "1040": "Obsidian Edge", "1042": "Dagger", "1043": "Recurve Bow", "1052": "Amplifying Tome", "1053": "Vampiric Scepter", "1054": "Doran's Shield", "1055": "Doran's Blade", "1056": "Doran's Ring", "1057": "Negatron Cloak", "1058": "Needlessly Large Rod", "1082": "Dark Seal", "1083": "Cull", "1500": "Penetrating Bullets", "1501": "Fortification", "1502": "Reinforced Armor", "1503": "Warden's Eye", "1504": "Vanguard", "1505": "Lightning Rod", "1506": "Reinforced Armor", "1507": "Overcharged", "1508": "Anti-tower Socks", "1509": "Gusto", "1510": "Phreakish Gusto", "1511": "Super Mech Armor", "1512": "Super Mech Power Field", "1515": "Turret Plating", "1516": "Structure Bounty", "1517": "Structure Bounty", "1518": "Structure Bounty", "1519": "Structure Bounty", "2003": "Health Potion", "2010": "Total Biscuit of Everlasting Will", "2015": "Kircheis Shard", "2031": "Refillable Potion", "2033": "Corrupting Potion", "2051": "Guardian's Horn", "2052": "Poro-Snax", "2055": "Control Ward", "2065": "Shurelya's Battlesong", "2138": "Elixir of Iron", "2139": "Elixir of Sorcery", "2140": "Elixir of Wrath", "2403": "Minion Dematerializer", "2419": "Commencing Stopwatch", "2420": "Stopwatch", "2421": "Broken Stopwatch", "2422": "Slightly Magical Footwear", "2423": "Perfectly Timed Stopwatch", "2424": "Broken Stopwatch", "3001": "Evenshroud", "3003": "Archangel's Staff", "3004": "Manamune", "3006": "Berserker's Greaves", "3009": "Boots of Swiftness", "3011": "Chemtech Putrifier", "3020": "Sorcerer's Shoes", "3024": "Glacial Buckler", "3026": "Guardian Angel", "3031": "Infinity Edge", "3033": "Mortal Reminder", "3035": "Last Whisper", "3036": "Lord Dominik's Regards", "3040": "Seraph's Embrace", "3041": "Mejai's Soulstealer", "3042": "Muramana", "3044": "Phage", "3046": "Phantom Dancer", "3047": "Plated Steelcaps", "3050": "Zeke's Convergence", "3051": "Hearthbound Axe", "3053": "Sterak's Gage", "3057": "Sheen", "3065": "Spirit Visage", "3066": "Winged Moonplate", "3067": "Kindlegem", "3068": "Sunfire Aegis", "3070": "Tear of the Goddess", "3071": "Black Cleaver", "3072": "Bloodthirster", "3074": "Ravenous Hydra", "3075": "Thornmail", "3076": "Bramble Vest", "3077": "Tiamat", "3078": "Trinity Force", "3082": "Warden's Mail", "3083": "Warmog's Armor", "3085": "Runaan's Hurricane", "3086": "Zeal", "3089": "Rabadon's Deathcap", "3091": "Wit's End", "3094": "Rapid Firecannon", "3095": "Stormrazor", "3100": "Lich Bane", "3102": "Banshee's Veil", "3105": "Aegis of the Legion", "3107": "Redemption", "3108": "Fiendish Codex", "3109": "Knight's Vow", "3110": "Frozen Heart", "3111": "Mercury's Treads", "3112": "Guardian's Orb", "3113": "Aether Wisp", "3114": "Forbidden Idol", "3115": "Nashor's Tooth", "3116": "Rylai's Crystal Scepter", "3117": "Mobility Boots", "3119": "Winter's Approach", "3121": "Fimbulwinter", "3123": "Executioner's Calling", "3124": "Guinsoo's Rageblade", "3133": "Caulfield's Warhammer", "3134": "Serrated Dirk", "3135": "Void Staff", "3139": "Mercurial Scimitar", "3140": "Quicksilver Sash", "3142": "Youmuu's Ghostblade", "3143": "Randuin's Omen", "3145": "Hextech Alternator", "3152": "Hextech Rocketbelt", "3153": "Blade of The Ruined King", "3155": "Hexdrinker", "3156": "Maw of Malmortius", "3157": "Zhonya's Hourglass", "3158": "Ionian Boots of Lucidity", "3165": "Morellonomicon", "3177": "Guardian's Blade", "3179": "Umbral Glaive", "3181": "Hullbreaker", "3184": "Guardian's Hammer", "3190": "Locket of the Iron Solari", "3191": "Seeker's Armguard", "3193": "Gargoyle Stoneplate", "3211": "Spectre's Cowl", "3222": "Mikael's Blessing", "3330": "Scarecrow Effigy", "3340": "Stealth Ward", "3363": "Farsight Alteration", "3364": "Oracle Lens", "3400": "Your Cut", "3504": "Ardent Censer", "3508": "Essence Reaver", "3513": "Eye of the Herald", "3599": "Kalista's Black Spear", "3600": "Kalista's Black Spear", "3742": "Dead Man's Plate", "3748": "Titanic Hydra", "3801": "Crystalline Bracer", "3802": "Lost Chapter", "3814": "Edge of Night", "3850": "Spellthief's Edge", "3851": "Frostfang", "3853": "Shard of True Ice", "3854": "Steel Shoulderguards", "3855": "Runesteel Spaulders", "3857": "Pauldrons of Whiterock", "3858": "Relic Shield", "3859": "Targon's Buckler", "3860": "Bulwark of the Mountain", "3862": "Spectral Sickle", "3863": "Harrowing Crescent", "3864": "Black Mist Scythe", "3901": "Fire at Will500 Silver Serpents", "3902": "Death's Daughter500 Silver Serpents", "3903": "Raise Morale500 Silver Serpents", "3916": "Oblivion Orb", "4005": "Imperial Mandate", "4401": "Force of Nature", "4403": "The Golden Spatula", "4628": "Horizon Focus", "4629": "Cosmic Drive", "4630": "Blighting Jewel", "4632": "Verdant Barrier", "4633": "Riftmaker", "4635": "Leeching Leer", "4636": "Night Harvester", "4637": "Demonic Embrace", "4638": "Watchful Wardstone", "4641": "Stirring Wardstone", "4642": "Bandleglass Mirror", "4643": "Vigilant Wardstone", "4644": "Crown of the Shattered Queen", "4645": "Shadowflame", "6029": "Ironspike Whip", "6035": "Silvermere Dawn", "6333": "Death's Dance", "6609": "Chempunk Chainsword", "6616": "Staff of Flowing Water", "6617": "Moonstone Renewer", "6630": "Goredrinker", "6631": "Stridebreaker", "6632": "Divine Sunderer", "6653": "Liandry's Anguish", "6655": "Luden's Tempest", "6656": "Everfrost", "6660": "Bami's Cinder", "6662": "Frostfire Gauntlet", "6664": "Turbo Chemtank", "6670": "Noonquiver", "6671": "Galeforce", "6672": "Kraken Slayer", "6673": "Immortal Shieldbow", "6675": "Navori Quickblades", "6676": "The Collector", "6677": "Rageknife", "6691": "Duskblade of Draktharr", "6692": "Eclipse", "6693": "Prowler's Claw", "6694": "Serylda's Grudge", "6695": "Serpent's Fang", "6696": "Axiom Arc", "7000": "Sandshrike's Claw", "7001": "Syzygy", "7002": "Draktharr's Shadowcarver", "7003": "Turbocharged Hexperiment", "7004": "Forgefire Crest", "7005": "Rimeforged Grasp", "7006": "Typhoon", "7007": "Wyrmfallen Sacrifice", "7008": "Bloodward", "7009": "Icathia's Curse", "7010": "Vespertide", "7011": "Upgraded Aeropack", "7012": "Liandry's Lament", "7013": "Eye of Luden", "7014": "Eternal Winter", "7015": "Ceaseless Hunger", "7016": "Dreamshatter", "7017": "Deicide", "7018": "Infinity Force", "7019": "Reliquary of the Golden Dawn", "7020": "Shurelya's Requiem", "7021": "Starcaster", "7022": "Seat of Command", "7023": "Equinox", "7024": "Caesura", "7050": "Gangplank Placeholder", "8001": "Anathema's Chains", "8020": "Abyssal Mask" };
|
@@ -1,2 +1,74 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
export declare const RuneIds: {
|
2
|
+
readonly Electrocute: "8112";
|
3
|
+
readonly Predator: "8124";
|
4
|
+
readonly "Dark Harvest": "8128";
|
5
|
+
readonly "Hail of Blades": "9923";
|
6
|
+
readonly "Cheap Shot": "8126";
|
7
|
+
readonly "Taste of Blood": "8139";
|
8
|
+
readonly "Sudden Impact": "8143";
|
9
|
+
readonly "Zombie Ward": "8136";
|
10
|
+
readonly "Ghost Poro": "8120";
|
11
|
+
readonly "Eyeball Collection": "8138";
|
12
|
+
readonly "Treasure Hunter": "8135";
|
13
|
+
readonly "Ingenious Hunter": "8134";
|
14
|
+
readonly "Relentless Hunter": "8105";
|
15
|
+
readonly "Ultimate Hunter": "8106";
|
16
|
+
readonly "Glacial Augment": "8351";
|
17
|
+
readonly "Unsealed Spellbook": "8360";
|
18
|
+
readonly "First Strike": "8369";
|
19
|
+
readonly "Hextech Flashtraption": "8306";
|
20
|
+
readonly "Magical Footwear": "8304";
|
21
|
+
readonly "Perfect Timing": "8313";
|
22
|
+
readonly "Future's Market": "8321";
|
23
|
+
readonly "Minion Dematerializer": "8316";
|
24
|
+
readonly "Biscuit Delivery": "8345";
|
25
|
+
readonly "Cosmic Insight": "8347";
|
26
|
+
readonly "Approach Velocity": "8410";
|
27
|
+
readonly "Time Warp Tonic": "8352";
|
28
|
+
readonly "Press the Attack": "8005";
|
29
|
+
readonly "Lethal Tempo": "8008";
|
30
|
+
readonly "Fleet Footwork": "8021";
|
31
|
+
readonly Conqueror: "8010";
|
32
|
+
readonly Overheal: "9101";
|
33
|
+
readonly Triumph: "9111";
|
34
|
+
readonly "Presence of Mind": "8009";
|
35
|
+
readonly "Legend: Alacrity": "9104";
|
36
|
+
readonly "Legend: Tenacity": "9105";
|
37
|
+
readonly "Legend: Bloodline": "9103";
|
38
|
+
readonly "Coup de Grace": "8014";
|
39
|
+
readonly "Cut Down": "8017";
|
40
|
+
readonly "Last Stand": "8299";
|
41
|
+
readonly "Grasp of the Undying": "8437";
|
42
|
+
readonly Aftershock: "8439";
|
43
|
+
readonly Guardian: "8465";
|
44
|
+
readonly Demolish: "8446";
|
45
|
+
readonly "Font of Life": "8463";
|
46
|
+
readonly "Shield Bash": "8401";
|
47
|
+
readonly Conditioning: "8429";
|
48
|
+
readonly "Second Wind": "8444";
|
49
|
+
readonly "Bone Plating": "8473";
|
50
|
+
readonly Overgrowth: "8451";
|
51
|
+
readonly Revitalize: "8453";
|
52
|
+
readonly Unflinching: "8242";
|
53
|
+
readonly "Summon Aery": "8214";
|
54
|
+
readonly "Arcane Comet": "8229";
|
55
|
+
readonly "Phase Rush": "8230";
|
56
|
+
readonly "Nullifying Orb": "8224";
|
57
|
+
readonly "Manaflow Band": "8226";
|
58
|
+
readonly "Nimbus Cloak": "8275";
|
59
|
+
readonly Transcendence: "8210";
|
60
|
+
readonly Celerity: "8234";
|
61
|
+
readonly "Absolute Focus": "8233";
|
62
|
+
readonly Scorch: "8237";
|
63
|
+
readonly Waterwalking: "8232";
|
64
|
+
readonly "Gathering Storm": "8236";
|
65
|
+
readonly "Defense (HP)": "5001";
|
66
|
+
readonly "Defense (AR)": "5002";
|
67
|
+
readonly "Defense (MR)": "5003";
|
68
|
+
readonly "Offense (AS)": "5005";
|
69
|
+
readonly "Offense (AH)": "5007";
|
70
|
+
readonly "Offense (AF)": "5008";
|
71
|
+
readonly "Flex (AR)": "5002f";
|
72
|
+
readonly "Flex (MR)": "5003f";
|
73
|
+
readonly "Flex (AF)": "5008f";
|
74
|
+
};
|
@@ -1,12 +1,4 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
3
|
exports.RuneIds = void 0;
|
7
|
-
|
8
|
-
const StatRunes_1 = require("./StatRunes");
|
9
|
-
exports.RuneIds = [
|
10
|
-
...Object.keys(runesById_json_1.default).map(id => id),
|
11
|
-
...Object.keys(StatRunes_1.StatRunes).map(id => id),
|
12
|
-
];
|
4
|
+
exports.RuneIds = { "Electrocute": "8112", "Predator": "8124", "Dark Harvest": "8128", "Hail of Blades": "9923", "Cheap Shot": "8126", "Taste of Blood": "8139", "Sudden Impact": "8143", "Zombie Ward": "8136", "Ghost Poro": "8120", "Eyeball Collection": "8138", "Treasure Hunter": "8135", "Ingenious Hunter": "8134", "Relentless Hunter": "8105", "Ultimate Hunter": "8106", "Glacial Augment": "8351", "Unsealed Spellbook": "8360", "First Strike": "8369", "Hextech Flashtraption": "8306", "Magical Footwear": "8304", "Perfect Timing": "8313", "Future's Market": "8321", "Minion Dematerializer": "8316", "Biscuit Delivery": "8345", "Cosmic Insight": "8347", "Approach Velocity": "8410", "Time Warp Tonic": "8352", "Press the Attack": "8005", "Lethal Tempo": "8008", "Fleet Footwork": "8021", "Conqueror": "8010", "Overheal": "9101", "Triumph": "9111", "Presence of Mind": "8009", "Legend: Alacrity": "9104", "Legend: Tenacity": "9105", "Legend: Bloodline": "9103", "Coup de Grace": "8014", "Cut Down": "8017", "Last Stand": "8299", "Grasp of the Undying": "8437", "Aftershock": "8439", "Guardian": "8465", "Demolish": "8446", "Font of Life": "8463", "Shield Bash": "8401", "Conditioning": "8429", "Second Wind": "8444", "Bone Plating": "8473", "Overgrowth": "8451", "Revitalize": "8453", "Unflinching": "8242", "Summon Aery": "8214", "Arcane Comet": "8229", "Phase Rush": "8230", "Nullifying Orb": "8224", "Manaflow Band": "8226", "Nimbus Cloak": "8275", "Transcendence": "8210", "Celerity": "8234", "Absolute Focus": "8233", "Scorch": "8237", "Waterwalking": "8232", "Gathering Storm": "8236", "Defense (HP)": "5001", "Defense (AR)": "5002", "Defense (MR)": "5003", "Offense (AS)": "5005", "Offense (AH)": "5007", "Offense (AF)": "5008", "Flex (AR)": "5002f", "Flex (MR)": "5003f", "Flex (AF)": "5008f" };
|
@@ -1,2 +1,74 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
export declare const RuneNames: {
|
2
|
+
readonly "5001": "Defense (HP)";
|
3
|
+
readonly "5002": "Defense (AR)";
|
4
|
+
readonly "5003": "Defense (MR)";
|
5
|
+
readonly "5005": "Offense (AS)";
|
6
|
+
readonly "5007": "Offense (AH)";
|
7
|
+
readonly "5008": "Offense (AF)";
|
8
|
+
readonly "8005": "Press the Attack";
|
9
|
+
readonly "8008": "Lethal Tempo";
|
10
|
+
readonly "8009": "Presence of Mind";
|
11
|
+
readonly "8010": "Conqueror";
|
12
|
+
readonly "8014": "Coup de Grace";
|
13
|
+
readonly "8017": "Cut Down";
|
14
|
+
readonly "8021": "Fleet Footwork";
|
15
|
+
readonly "8105": "Relentless Hunter";
|
16
|
+
readonly "8106": "Ultimate Hunter";
|
17
|
+
readonly "8112": "Electrocute";
|
18
|
+
readonly "8120": "Ghost Poro";
|
19
|
+
readonly "8124": "Predator";
|
20
|
+
readonly "8126": "Cheap Shot";
|
21
|
+
readonly "8128": "Dark Harvest";
|
22
|
+
readonly "8134": "Ingenious Hunter";
|
23
|
+
readonly "8135": "Treasure Hunter";
|
24
|
+
readonly "8136": "Zombie Ward";
|
25
|
+
readonly "8138": "Eyeball Collection";
|
26
|
+
readonly "8139": "Taste of Blood";
|
27
|
+
readonly "8143": "Sudden Impact";
|
28
|
+
readonly "8210": "Transcendence";
|
29
|
+
readonly "8214": "Summon Aery";
|
30
|
+
readonly "8224": "Nullifying Orb";
|
31
|
+
readonly "8226": "Manaflow Band";
|
32
|
+
readonly "8229": "Arcane Comet";
|
33
|
+
readonly "8230": "Phase Rush";
|
34
|
+
readonly "8232": "Waterwalking";
|
35
|
+
readonly "8233": "Absolute Focus";
|
36
|
+
readonly "8234": "Celerity";
|
37
|
+
readonly "8236": "Gathering Storm";
|
38
|
+
readonly "8237": "Scorch";
|
39
|
+
readonly "8242": "Unflinching";
|
40
|
+
readonly "8275": "Nimbus Cloak";
|
41
|
+
readonly "8299": "Last Stand";
|
42
|
+
readonly "8304": "Magical Footwear";
|
43
|
+
readonly "8306": "Hextech Flashtraption";
|
44
|
+
readonly "8313": "Perfect Timing";
|
45
|
+
readonly "8316": "Minion Dematerializer";
|
46
|
+
readonly "8321": "Future's Market";
|
47
|
+
readonly "8345": "Biscuit Delivery";
|
48
|
+
readonly "8347": "Cosmic Insight";
|
49
|
+
readonly "8351": "Glacial Augment";
|
50
|
+
readonly "8352": "Time Warp Tonic";
|
51
|
+
readonly "8360": "Unsealed Spellbook";
|
52
|
+
readonly "8369": "First Strike";
|
53
|
+
readonly "8401": "Shield Bash";
|
54
|
+
readonly "8410": "Approach Velocity";
|
55
|
+
readonly "8429": "Conditioning";
|
56
|
+
readonly "8437": "Grasp of the Undying";
|
57
|
+
readonly "8439": "Aftershock";
|
58
|
+
readonly "8444": "Second Wind";
|
59
|
+
readonly "8446": "Demolish";
|
60
|
+
readonly "8451": "Overgrowth";
|
61
|
+
readonly "8453": "Revitalize";
|
62
|
+
readonly "8463": "Font of Life";
|
63
|
+
readonly "8465": "Guardian";
|
64
|
+
readonly "8473": "Bone Plating";
|
65
|
+
readonly "9101": "Overheal";
|
66
|
+
readonly "9103": "Legend: Bloodline";
|
67
|
+
readonly "9104": "Legend: Alacrity";
|
68
|
+
readonly "9105": "Legend: Tenacity";
|
69
|
+
readonly "9111": "Triumph";
|
70
|
+
readonly "9923": "Hail of Blades";
|
71
|
+
readonly "5002f": "Flex (AR)";
|
72
|
+
readonly "5003f": "Flex (MR)";
|
73
|
+
readonly "5008f": "Flex (AF)";
|
74
|
+
};
|
@@ -1,8 +1,4 @@
|
|
1
1
|
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
3
|
exports.RuneNames = void 0;
|
7
|
-
|
8
|
-
exports.RuneNames = (Object.keys(runesByName_json_1.default).map(name => name));
|
4
|
+
exports.RuneNames = { "5001": "Defense (HP)", "5002": "Defense (AR)", "5003": "Defense (MR)", "5005": "Offense (AS)", "5007": "Offense (AH)", "5008": "Offense (AF)", "8005": "Press the Attack", "8008": "Lethal Tempo", "8009": "Presence of Mind", "8010": "Conqueror", "8014": "Coup de Grace", "8017": "Cut Down", "8021": "Fleet Footwork", "8105": "Relentless Hunter", "8106": "Ultimate Hunter", "8112": "Electrocute", "8120": "Ghost Poro", "8124": "Predator", "8126": "Cheap Shot", "8128": "Dark Harvest", "8134": "Ingenious Hunter", "8135": "Treasure Hunter", "8136": "Zombie Ward", "8138": "Eyeball Collection", "8139": "Taste of Blood", "8143": "Sudden Impact", "8210": "Transcendence", "8214": "Summon Aery", "8224": "Nullifying Orb", "8226": "Manaflow Band", "8229": "Arcane Comet", "8230": "Phase Rush", "8232": "Waterwalking", "8233": "Absolute Focus", "8234": "Celerity", "8236": "Gathering Storm", "8237": "Scorch", "8242": "Unflinching", "8275": "Nimbus Cloak", "8299": "Last Stand", "8304": "Magical Footwear", "8306": "Hextech Flashtraption", "8313": "Perfect Timing", "8316": "Minion Dematerializer", "8321": "Future's Market", "8345": "Biscuit Delivery", "8347": "Cosmic Insight", "8351": "Glacial Augment", "8352": "Time Warp Tonic", "8360": "Unsealed Spellbook", "8369": "First Strike", "8401": "Shield Bash", "8410": "Approach Velocity", "8429": "Conditioning", "8437": "Grasp of the Undying", "8439": "Aftershock", "8444": "Second Wind", "8446": "Demolish", "8451": "Overgrowth", "8453": "Revitalize", "8463": "Font of Life", "8465": "Guardian", "8473": "Bone Plating", "9101": "Overheal", "9103": "Legend: Bloodline", "9104": "Legend: Alacrity", "9105": "Legend: Tenacity", "9111": "Triumph", "9923": "Hail of Blades", "5002f": "Flex (AR)", "5003f": "Flex (MR)", "5008f": "Flex (AF)" };
|
@@ -1,9 +1,67 @@
|
|
1
|
+
export declare const PrimaryTrees: {
|
2
|
+
/**
|
3
|
+
* There are 13 Precision Runes in the game.
|
4
|
+
*/
|
5
|
+
readonly Precision: readonly ["8005", "8008", "8021", "8010", "9101", "9111", "8009", "9104", "9105", "9103", "8014", "8017", "8299"];
|
6
|
+
/**
|
7
|
+
* There are 13 Domination Runes in the game.
|
8
|
+
*/
|
9
|
+
readonly Domination: readonly ["8112", "8124", "8128", "9923", "8126", "8139", "8143", "8136", "8138", "8135", "8134", "8105", "8106"];
|
10
|
+
/**
|
11
|
+
* There are 12 Sorcery Runes in the game.
|
12
|
+
*/
|
13
|
+
readonly Sorcery: readonly ["8214", "8229", "8230", "8224", "8226", "8275", "8210", "8234", "8233", "8237", "8232", "8236"];
|
14
|
+
/**
|
15
|
+
* There are 11 Resolve Runes in the game.
|
16
|
+
*/
|
17
|
+
readonly Resolve: readonly ["8437", "8439", "8465", "8446", "8463", "8401", "8429", "8444", "8473", "8451", "8453", "8242"];
|
18
|
+
/**
|
19
|
+
* There are 12 Inspiration Runes in the game.
|
20
|
+
*/
|
21
|
+
readonly Inspiration: readonly ["8351", "8360", "8369", "8306", "8304", "8313", "8321", "8316", "8345", "8347", "8410", "8352"];
|
22
|
+
};
|
23
|
+
export declare const SecondaryTrees: {
|
24
|
+
readonly Precision: readonly ["9101", "9111", "8009", "9104", "9105", "9103", "8014", "8017", "8299"];
|
25
|
+
readonly Domination: readonly ["8126", "8139", "8143", "8136", "8138", "8135", "8134", "8105", "8106"];
|
26
|
+
readonly Sorcery: readonly ["8224", "8226", "8275", "8210", "8234", "8233", "8237", "8232", "8236"];
|
27
|
+
readonly Resolve: readonly ["8446", "8463", "8401", "8429", "8444", "8473", "8451", "8453", "8242"];
|
28
|
+
readonly Inspiration: readonly ["8306", "8304", "8313", "8321", "8316", "8345", "8347", "8410", "8352"];
|
29
|
+
};
|
30
|
+
/**
|
31
|
+
* There are 17 Keystone Runes in the game.
|
32
|
+
*/
|
33
|
+
export declare const Keystones: readonly ["8005", "8008", "8021", "8010", "8112", "8124", "8128", "9923", "8214", "8229", "8230", "8437", "8439", "8465", "8351", "8360", "8369"];
|
34
|
+
/**
|
35
|
+
* There are 9 Stat Runes in the game.
|
36
|
+
*/
|
37
|
+
export declare const StatRunes: readonly ["5001", "5002", "5002f", "5003", "5003f", "5005", "5007", "5008", "5008f"];
|
38
|
+
export declare const All: readonly ["8005", "8008", "8021", "8010", "9101", "9111", "8009", "9104", "9105", "9103", "8014", "8017", "8299", "8112", "8124", "8128", "9923", "8126", "8139", "8143", "8136", "8138", "8135", "8134", "8105", "8106", "8214", "8229", "8230", "8224", "8226", "8275", "8210", "8234", "8233", "8237", "8232", "8236", "8437", "8439", "8465", "8446", "8463", "8401", "8429", "8444", "8473", "8451", "8453", "8242", "8351", "8360", "8369", "8306", "8304", "8313", "8321", "8316", "8345", "8347", "8410", "8352", "5001", "5002", "5002f", "5003", "5003f", "5005", "5007", "5008", "5008f"];
|
39
|
+
/**
|
40
|
+
* Contains all Rune IDs
|
41
|
+
* that are known to man in the game of League of Legends.
|
42
|
+
* Sorted by various useful categories.
|
43
|
+
*/
|
1
44
|
export declare const RuneSets: {
|
2
45
|
readonly PrimaryTrees: {
|
46
|
+
/**
|
47
|
+
* There are 13 Precision Runes in the game.
|
48
|
+
*/
|
3
49
|
readonly Precision: readonly ["8005", "8008", "8021", "8010", "9101", "9111", "8009", "9104", "9105", "9103", "8014", "8017", "8299"];
|
50
|
+
/**
|
51
|
+
* There are 13 Domination Runes in the game.
|
52
|
+
*/
|
4
53
|
readonly Domination: readonly ["8112", "8124", "8128", "9923", "8126", "8139", "8143", "8136", "8138", "8135", "8134", "8105", "8106"];
|
54
|
+
/**
|
55
|
+
* There are 12 Sorcery Runes in the game.
|
56
|
+
*/
|
5
57
|
readonly Sorcery: readonly ["8214", "8229", "8230", "8224", "8226", "8275", "8210", "8234", "8233", "8237", "8232", "8236"];
|
58
|
+
/**
|
59
|
+
* There are 11 Resolve Runes in the game.
|
60
|
+
*/
|
6
61
|
readonly Resolve: readonly ["8437", "8439", "8465", "8446", "8463", "8401", "8429", "8444", "8473", "8451", "8453", "8242"];
|
62
|
+
/**
|
63
|
+
* There are 12 Inspiration Runes in the game.
|
64
|
+
*/
|
7
65
|
readonly Inspiration: readonly ["8351", "8360", "8369", "8306", "8304", "8313", "8321", "8316", "8345", "8347", "8410", "8352"];
|
8
66
|
};
|
9
67
|
readonly SecondaryTrees: {
|
@@ -15,4 +73,5 @@ export declare const RuneSets: {
|
|
15
73
|
};
|
16
74
|
readonly Keystones: readonly ["8005", "8008", "8021", "8010", "8112", "8124", "8128", "9923", "8214", "8229", "8230", "8437", "8439", "8465", "8351", "8360", "8369"];
|
17
75
|
readonly StatRunes: readonly ["5001", "5002", "5002f", "5003", "5003f", "5005", "5007", "5008", "5008f"];
|
76
|
+
readonly All: readonly ["8005", "8008", "8021", "8010", "9101", "9111", "8009", "9104", "9105", "9103", "8014", "8017", "8299", "8112", "8124", "8128", "9923", "8126", "8139", "8143", "8136", "8138", "8135", "8134", "8105", "8106", "8214", "8229", "8230", "8224", "8226", "8275", "8210", "8234", "8233", "8237", "8232", "8236", "8437", "8439", "8465", "8446", "8463", "8401", "8429", "8444", "8473", "8451", "8453", "8242", "8351", "8360", "8369", "8306", "8304", "8313", "8321", "8316", "8345", "8347", "8410", "8352", "5001", "5002", "5002f", "5003", "5003f", "5005", "5007", "5008", "5008f"];
|
18
77
|
};
|