lol-constants 3.0.0 → 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -125,6 +125,6 @@ Besides being an easy-to-update library with each League patch and to stay updat
125
125
  + Enable total backwards compatibility with older patches (i.e. no missing items or something for last couple of patches, preferably two years, which is the limit set by Riot API)
126
126
  + Fulfill any missing types and constants within the context of Riot API. Perhaps provide interfaces for Riot API responses.
127
127
  + More detailed champions, items, runes, and spells information. Would require using an own database of those instead of relying on DataDragon.
128
- + Optimized library size/splitting (currently library should be around ~100KB).
128
+ + Optimized library size/splitting (currently library should be around ~100KB tscompiled).
129
129
 
130
130
  So, why not give this library a star and see where it goes?
package/dist/Patch.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  export declare const Patch: {
2
- readonly version: "14.19";
2
+ readonly version: "14.20";
3
3
  };
package/dist/Patch.js CHANGED
@@ -1,3 +1,3 @@
1
1
  export const Patch = {
2
- version: '14.19',
2
+ version: '14.20',
3
3
  };
@@ -26,13 +26,13 @@ import { MapId } from '../objects/Maps';
26
26
  * Use `lol.item.isAvailable` to determine whether item is available on a certain map.
27
27
  */
28
28
  export declare function getItem(id_name: ItemId | ItemName, mapId?: MapId): typeof Items[keyof typeof Items];
29
- export declare function isStarterItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName): boolean;
30
- export declare function isBasicItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName): boolean;
31
- export declare function isEpicItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName): boolean;
32
- export declare function isLegendaryItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName): boolean;
33
- export declare function isTrinketItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName): boolean;
34
- export declare function isBootsItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName): boolean;
35
- export declare function isConsumableItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName): boolean;
29
+ export declare function isStarterItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName | 0): boolean;
30
+ export declare function isBasicItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName | 0): boolean;
31
+ export declare function isEpicItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName | 0): boolean;
32
+ export declare function isLegendaryItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName | 0): boolean;
33
+ export declare function isTrinketItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName | 0): boolean;
34
+ export declare function isBootsItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName | 0): boolean;
35
+ export declare function isConsumableItem(item_id_name: typeof ItemsArr[number] | ItemId | ItemName | 0): boolean;
36
36
  /** Check whether item is available on a certain map. */
37
37
  export declare function isItemAvailableOnMap(itemId: ItemId, mapId: MapId): boolean;
38
38
  export declare function isItemId(id: number | null | undefined): id is ItemId;
@@ -62,31 +62,43 @@ function getItemIdByName(itemName, mapId = 11) {
62
62
  }
63
63
  }
64
64
  export function isStarterItem(item_id_name) {
65
+ if (item_id_name == 0)
66
+ return false;
65
67
  if (typeof item_id_name == 'object')
66
68
  return item_id_name.srType == ItemSrTypes.STARTER;
67
69
  return getItem(item_id_name).srType == ItemSrTypes.STARTER;
68
70
  }
69
71
  export function isBasicItem(item_id_name) {
72
+ if (item_id_name == 0)
73
+ return false;
70
74
  if (typeof item_id_name == 'object')
71
75
  return item_id_name.srType == ItemSrTypes.BASIC;
72
76
  return getItem(item_id_name).srType == ItemSrTypes.BASIC;
73
77
  }
74
78
  export function isEpicItem(item_id_name) {
79
+ if (item_id_name == 0)
80
+ return false;
75
81
  if (typeof item_id_name == 'object')
76
82
  return item_id_name.srType == ItemSrTypes.EPIC;
77
83
  return getItem(item_id_name).srType == ItemSrTypes.EPIC;
78
84
  }
79
85
  export function isLegendaryItem(item_id_name) {
86
+ if (item_id_name == 0)
87
+ return false;
80
88
  if (typeof item_id_name == 'object')
81
89
  return item_id_name.srType == ItemSrTypes.LEGENDARY;
82
90
  return getItem(item_id_name).srType == ItemSrTypes.LEGENDARY;
83
91
  }
84
92
  export function isTrinketItem(item_id_name) {
93
+ if (item_id_name == 0)
94
+ return false;
85
95
  if (typeof item_id_name == 'object')
86
96
  return item_id_name.srType == ItemSrTypes.TRINKET;
87
97
  return getItem(item_id_name).srType == ItemSrTypes.TRINKET;
88
98
  }
89
99
  export function isBootsItem(item_id_name) {
100
+ if (item_id_name == 0)
101
+ return false;
90
102
  if (typeof item_id_name == 'object')
91
103
  return item_id_name.id in bootsItemIds;
92
104
  if (typeof item_id_name == 'number')
@@ -94,6 +106,8 @@ export function isBootsItem(item_id_name) {
94
106
  return getItemIdByName(item_id_name) in bootsItemIds;
95
107
  }
96
108
  export function isConsumableItem(item_id_name) {
109
+ if (item_id_name == 0)
110
+ return false;
97
111
  if (typeof item_id_name == 'object')
98
112
  return item_id_name.srType == ItemSrTypes.CONSUMABLE;
99
113
  return getItem(item_id_name).srType == ItemSrTypes.CONSUMABLE;
package/dist/lol.d.ts CHANGED
@@ -22,7 +22,7 @@ export declare const lol: {
22
22
  * ## Current patch version
23
23
  * What patch the library is currently on. *(read-only)*
24
24
  */
25
- version: "14.19";
25
+ version: "14.20";
26
26
  /**
27
27
  * ## Constants
28
28
  * Riot API defined constants.
@@ -1,4 +1,4 @@
1
1
  export const Items = { 1001: { id: 1001, name: "Boots", srType: 12 }, 1004: { id: 1004, name: "Faerie Charm", srType: 1 }, 1006: { id: 1006, name: "Rejuvenation Bead", srType: 1 }, 1011: { id: 1011, name: "Giant's Belt", srType: 2 }, 1018: { id: 1018, name: "Cloak of Agility", srType: 1 }, 1026: { id: 1026, name: "Blasting Wand", srType: 1 }, 1027: { id: 1027, name: "Sapphire Crystal", srType: 1 }, 1028: { id: 1028, name: "Ruby Crystal", srType: 1 }, 1029: { id: 1029, name: "Cloth Armor", srType: 1 }, 1031: { id: 1031, name: "Chain Vest", srType: 2 }, 1033: { id: 1033, name: "Null-Magic Mantle", srType: 1 }, 1035: { id: 1035, name: "Emberknife", srType: -1 }, 1036: { id: 1036, name: "Long Sword", srType: 1 }, 1037: { id: 1037, name: "Pickaxe", srType: 1 }, 1038: { id: 1038, name: "B. F. Sword", srType: 1 }, 1039: { id: 1039, name: "Hailblade", srType: -1 }, 1040: { id: 1040, name: "Obsidian Edge", srType: -1 }, 1042: { id: 1042, name: "Dagger", srType: 1 }, 1043: { id: 1043, name: "Recurve Bow", srType: 2 }, 1052: { id: 1052, name: "Amplifying Tome", srType: 1 }, 1053: { id: 1053, name: "Vampiric Scepter", srType: 2 }, 1054: { id: 1054, name: "Doran's Shield", srType: 0 }, 1055: { id: 1055, name: "Doran's Blade", srType: 0 }, 1056: { id: 1056, name: "Doran's Ring", srType: 0 }, 1057: { id: 1057, name: "Negatron Cloak", srType: 2 }, 1058: { id: 1058, name: "Needlessly Large Rod", srType: 1 }, 1082: { id: 1082, name: "Dark Seal", srType: 0 }, 1083: { id: 1083, name: "Cull", srType: 0 }, 1101: { id: 1101, name: "Scorchclaw Pup", srType: 0 }, 1102: { id: 1102, name: "Gustwalker Hatchling", srType: 0 }, 1103: { id: 1103, name: "Mosstomper Seedling", srType: 0 }, 1104: { id: 1104, name: "Eye of the Herald", srType: -1 }, 1500: { id: 1500, name: "Penetrating Bullets", srType: -1 }, 1503: { id: 1503, name: "Warden's Eye", srType: -1 }, 1504: { id: 1504, name: "Vanguard", srType: -1 }, 1507: { id: 1507, name: "Overcharged", srType: -1 }, 1508: { id: 1508, name: "Anti-tower Socks", srType: -1 }, 1509: { id: 1509, name: "Gusto", srType: -1 }, 1510: { id: 1510, name: "Phreakish Gusto", srType: -1 }, 1511: { id: 1511, name: "Super Mech Armor", srType: -1 }, 1512: { id: 1512, name: "Super Mech Power Field", srType: -1 }, 1515: { id: 1515, name: "Turret Plating", srType: -1 }, 1520: { id: 1520, name: "OvererchargedHA", srType: -1 }, 1522: { id: 1522, name: "Tower Power-Up", srType: -1 }, 2003: { id: 2003, name: "Health Potion", srType: 13 }, 2010: { id: 2010, name: "Total Biscuit of Everlasting Will", srType: 13 }, 2015: { id: 2015, name: "Kircheis Shard", srType: -1 }, 2019: { id: 2019, name: "Steel Sigil", srType: 2 }, 2020: { id: 2020, name: "The Brutalizer", srType: 2 }, 2021: { id: 2021, name: "Tunneler", srType: 2 }, 2022: { id: 2022, name: "Glowing Mote", srType: 1 }, 2031: { id: 2031, name: "Refillable Potion", srType: 13 }, 2033: { id: 2033, name: "Corrupting Potion", srType: -1 }, 2049: { id: 2049, name: "Guardian's Amulet", srType: -1 }, 2050: { id: 2050, name: "Guardian's Shroud", srType: -1 }, 2051: { id: 2051, name: "Guardian's Horn", srType: -1 }, 2052: { id: 2052, name: "Poro-Snax", srType: 13 }, 2055: { id: 2055, name: "Control Ward", srType: 13 }, 2056: { id: 2056, name: "Stealth Ward", srType: -1 }, 2065: { id: 2065, name: "Shurelya's Battlesong", srType: 3 }, 2138: { id: 2138, name: "Elixir of Iron", srType: 13 }, 2139: { id: 2139, name: "Elixir of Sorcery", srType: 13 }, 2140: { id: 2140, name: "Elixir of Wrath", srType: 13 }, 2141: { id: 2141, name: "Cappa Juice", srType: -1 }, 2142: { id: 2142, name: "Juice of Power", srType: -1 }, 2143: { id: 2143, name: "Juice of Vitality", srType: -1 }, 2144: { id: 2144, name: "Juice of Haste", srType: -1 }, 2145: { id: 2145, name: "Lucky Dice", srType: -1 }, 2150: { id: 2150, name: "Elixir of Skill", srType: 13 }, 2151: { id: 2151, name: "Elixir of Avarice", srType: 13 }, 2152: { id: 2152, name: "Elixir of Force", srType: 13 }, 2403: { id: 2403, name: "Minion Dematerializer", srType: -1 }, 2420: { id: 2420, name: "Seeker's Armguard", srType: 2 }, 2421: { id: 2421, name: "Shattered Armguard", srType: 2 }, 2422: { id: 2422, name: "Slightly Magical Footwear", srType: 12 }, 2501: { id: 2501, name: "Overlord's Bloodmail", srType: 3 }, 2502: { id: 2502, name: "Unending Despair", srType: 3 }, 2503: { id: 2503, name: "Blackfire Torch", srType: 3 }, 2504: { id: 2504, name: "Kaenic Rookern", srType: 3 }, 2508: { id: 2508, name: "Fated Ashes", srType: 2 }, 3001: { id: 3001, name: "Evenshroud", srType: -1 }, 3002: { id: 3002, name: "Trailblazer", srType: 3 }, 3003: { id: 3003, name: "Archangel's Staff", srType: 3 }, 3004: { id: 3004, name: "Manamune", srType: 3 }, 3005: { id: 3005, name: "Ghostcrawlers", srType: -1 }, 3006: { id: 3006, name: "Berserker's Greaves", srType: 12 }, 3009: { id: 3009, name: "Boots of Swiftness", srType: 12 }, 3010: { id: 3010, name: "Symbiotic Soles", srType: 12 }, 3011: { id: 3011, name: "Chemtech Putrifier", srType: -1 }, 3012: { id: 3012, name: "Chalice of Blessing", srType: -1 }, 3013: { id: 3013, name: "Synchronized Souls", srType: 12 }, 3020: { id: 3020, name: "Sorcerer's Shoes", srType: 12 }, 3023: { id: 3023, name: "Lifewell Pendant", srType: -1 }, 3024: { id: 3024, name: "Glacial Buckler", srType: 2 }, 3026: { id: 3026, name: "Guardian Angel", srType: 3 }, 3031: { id: 3031, name: "Infinity Edge", srType: 3 }, 3032: { id: 3032, name: "Yun Tal Wildarrows", srType: 3 }, 3033: { id: 3033, name: "Mortal Reminder", srType: 3 }, 3035: { id: 3035, name: "Last Whisper", srType: 2 }, 3036: { id: 3036, name: "Lord Dominik's Regards", srType: 3 }, 3039: { id: 3039, name: "Atma's Reckoning", srType: -1 }, 3040: { id: 3040, name: "Seraph's Embrace", srType: 3 }, 3041: { id: 3041, name: "Mejai's Soulstealer", srType: 3 }, 3042: { id: 3042, name: "Muramana", srType: 3 }, 3044: { id: 3044, name: "Phage", srType: 2 }, 3046: { id: 3046, name: "Phantom Dancer", srType: 3 }, 3047: { id: 3047, name: "Plated Steelcaps", srType: 12 }, 3050: { id: 3050, name: "Zeke's Convergence", srType: 3 }, 3051: { id: 3051, name: "Hearthbound Axe", srType: 2 }, 3053: { id: 3053, name: "Sterak's Gage", srType: 3 }, 3057: { id: 3057, name: "Sheen", srType: 2 }, 3065: { id: 3065, name: "Spirit Visage", srType: 3 }, 3066: { id: 3066, name: "Winged Moonplate", srType: 2 }, 3067: { id: 3067, name: "Kindlegem", srType: 2 }, 3068: { id: 3068, name: "Sunfire Aegis", srType: 3 }, 3070: { id: 3070, name: "Tear of the Goddess", srType: 0 }, 3071: { id: 3071, name: "Black Cleaver", srType: 3 }, 3072: { id: 3072, name: "Bloodthirster", srType: 3 }, 3073: { id: 3073, name: "Experimental Hexplate", srType: 3 }, 3074: { id: 3074, name: "Ravenous Hydra", srType: 3 }, 3075: { id: 3075, name: "Thornmail", srType: 3 }, 3076: { id: 3076, name: "Bramble Vest", srType: 2 }, 3077: { id: 3077, name: "Tiamat", srType: 2 }, 3078: { id: 3078, name: "Trinity Force", srType: 3 }, 3082: { id: 3082, name: "Warden's Mail", srType: 2 }, 3083: { id: 3083, name: "Warmog's Armor", srType: 3 }, 3084: { id: 3084, name: "Heartsteel", srType: 3 }, 3085: { id: 3085, name: "Runaan's Hurricane", srType: 3 }, 3086: { id: 3086, name: "Zeal", srType: 2 }, 3087: { id: 3087, name: "Statikk Shiv", srType: 3 }, 3089: { id: 3089, name: "Rabadon's Deathcap", srType: 3 }, 3091: { id: 3091, name: "Wit's End", srType: 3 }, 3094: { id: 3094, name: "Rapid Firecannon", srType: 3 }, 3095: { id: 3095, name: "Stormrazor", srType: -1 }, 3100: { id: 3100, name: "Lich Bane", srType: 3 }, 3102: { id: 3102, name: "Banshee's Veil", srType: 3 }, 3105: { id: 3105, name: "Aegis of the Legion", srType: -1 }, 3107: { id: 3107, name: "Redemption", srType: 3 }, 3108: { id: 3108, name: "Fiendish Codex", srType: 2 }, 3109: { id: 3109, name: "Knight's Vow", srType: 3 }, 3110: { id: 3110, name: "Frozen Heart", srType: 3 }, 3111: { id: 3111, name: "Mercury's Treads", srType: 12 }, 3112: { id: 3112, name: "Guardian's Orb", srType: -1 }, 3113: { id: 3113, name: "Aether Wisp", srType: 2 }, 3114: { id: 3114, name: "Forbidden Idol", srType: 2 }, 3115: { id: 3115, name: "Nashor's Tooth", srType: 3 }, 3116: { id: 3116, name: "Rylai's Crystal Scepter", srType: 3 }, 3117: { id: 3117, name: "Mobility Boots", srType: -1 }, 3118: { id: 3118, name: "Malignance", srType: 3 }, 3119: { id: 3119, name: "Winter's Approach", srType: 3 }, 3121: { id: 3121, name: "Fimbulwinter", srType: 3 }, 3123: { id: 3123, name: "Executioner's Calling", srType: 2 }, 3124: { id: 3124, name: "Guinsoo's Rageblade", srType: 3 }, 3128: { id: 3128, name: "Deathfire Grasp", srType: -1 }, 3131: { id: 3131, name: "Sword of the Divine", srType: -1 }, 3133: { id: 3133, name: "Caulfield's Warhammer", srType: 2 }, 3134: { id: 3134, name: "Serrated Dirk", srType: 2 }, 3135: { id: 3135, name: "Void Staff", srType: 3 }, 3137: { id: 3137, name: "Cryptbloom", srType: 3 }, 3139: { id: 3139, name: "Mercurial Scimitar", srType: 3 }, 3140: { id: 3140, name: "Quicksilver Sash", srType: 2 }, 3142: { id: 3142, name: "Youmuu's Ghostblade", srType: 3 }, 3143: { id: 3143, name: "Randuin's Omen", srType: 3 }, 3144: { id: 3144, name: "Scout's Slingshot", srType: 2 }, 3145: { id: 3145, name: "Hextech Alternator", srType: 2 }, 3146: { id: 3146, name: "Hextech Gunblade", srType: -1 }, 3147: { id: 3147, name: "Haunting Guise", srType: 2 }, 3152: { id: 3152, name: "Hextech Rocketbelt", srType: 3 }, 3153: { id: 3153, name: "Blade of The Ruined King", srType: 3 }, 3155: { id: 3155, name: "Hexdrinker", srType: 2 }, 3156: { id: 3156, name: "Maw of Malmortius", srType: 3 }, 3157: { id: 3157, name: "Zhonya's Hourglass", srType: 3 }, 3158: { id: 3158, name: "Ionian Boots of Lucidity", srType: 12 }, 3161: { id: 3161, name: "Spear of Shojin", srType: 3 }, 3165: { id: 3165, name: "Morellonomicon", srType: 3 }, 3172: { id: 3172, name: "Zephyr", srType: 12 }, 3177: { id: 3177, name: "Guardian's Blade", srType: -1 }, 3179: { id: 3179, name: "Umbral Glaive", srType: 3 }, 3181: { id: 3181, name: "Hullbreaker", srType: 3 }, 3184: { id: 3184, name: "Guardian's Hammer", srType: -1 }, 3190: { id: 3190, name: "Locket of the Iron Solari", srType: 3 }, 3193: { id: 3193, name: "Gargoyle Stoneplate", srType: -1 }, 3211: { id: 3211, name: "Spectre's Cowl", srType: 2 }, 3222: { id: 3222, name: "Mikael's Blessing", srType: 3 }, 3302: { id: 3302, name: "Terminus", srType: 3 }, 3330: { id: 3330, name: "Scarecrow Effigy", srType: -1 }, 3340: { id: 3340, name: "Stealth Ward", srType: 11 }, 3348: { id: 3348, name: "Arcane Sweeper", srType: -1 }, 3349: { id: 3349, name: "Lucent Singularity", srType: -1 }, 3363: { id: 3363, name: "Farsight Alteration", srType: 11 }, 3364: { id: 3364, name: "Oracle Lens", srType: 11 }, 3400: { id: 3400, name: "Your Cut", srType: 13 }, 3430: { id: 3430, name: "Rite Of Ruin", srType: -1 }, 3504: { id: 3504, name: "Ardent Censer", srType: 3 }, 3508: { id: 3508, name: "Essence Reaver", srType: 3 }, 3513: { id: 3513, name: "Eye of the Herald", srType: -1 }, 3599: { id: 3599, name: "Kalista's Black Spear", srType: -1 }, 3600: { id: 3600, name: "Sylas' Black Spear", srType: -1 }, 3742: { id: 3742, name: "Dead Man's Plate", srType: 3 }, 3748: { id: 3748, name: "Titanic Hydra", srType: 3 }, 3801: { id: 3801, name: "Crystalline Bracer", srType: 2 }, 3802: { id: 3802, name: "Lost Chapter", srType: 2 }, 3803: { id: 3803, name: "Catalyst of Aeons", srType: 2 }, 3814: { id: 3814, name: "Edge of Night", srType: 3 }, 3850: { id: 3850, name: "Spellthief's Edge", srType: -1 }, 3851: { id: 3851, name: "Frostfang", srType: -1 }, 3853: { id: 3853, name: "Shard of True Ice", srType: -1 }, 3854: { id: 3854, name: "Steel Shoulderguards", srType: -1 }, 3855: { id: 3855, name: "Runesteel Spaulders", srType: -1 }, 3857: { id: 3857, name: "Pauldrons of Whiterock", srType: -1 }, 3858: { id: 3858, name: "Relic Shield", srType: -1 }, 3859: { id: 3859, name: "Targon's Buckler", srType: -1 }, 3860: { id: 3860, name: "Bulwark of the Mountain", srType: -1 }, 3862: { id: 3862, name: "Spectral Sickle", srType: -1 }, 3863: { id: 3863, name: "Harrowing Crescent", srType: -1 }, 3864: { id: 3864, name: "Black Mist Scythe", srType: -1 }, 3865: { id: 3865, name: "World Atlas", srType: 0 }, 3866: { id: 3866, name: "Runic Compass", srType: 2 }, 3867: { id: 3867, name: "Bounty of Worlds", srType: 3 }, 3869: { id: 3869, name: "Celestial Opposition", srType: 3 }, 3870: { id: 3870, name: "Dream Maker", srType: 3 }, 3871: { id: 3871, name: "Zaz'Zak's Realmspike", srType: 3 }, 3876: { id: 3876, name: "Solstice Sleigh", srType: 3 }, 3877: { id: 3877, name: "Bloodsong", srType: 3 }, 3901: { id: 3901, name: "Fire at Will", srType: -1 }, 3902: { id: 3902, name: "Death's Daughter", srType: -1 }, 3903: { id: 3903, name: "Raise Morale", srType: -1 }, 3916: { id: 3916, name: "Oblivion Orb", srType: 2 }, 4003: { id: 4003, name: "Lifeline", srType: -1 }, 4004: { id: 4004, name: "Spectral Cutlass", srType: -1 }, 4005: { id: 4005, name: "Imperial Mandate", srType: 3 }, 4010: { id: 4010, name: "Bloodletter's Curse", srType: -1 }, 4011: { id: 4011, name: "Sword of Blossoming Dawn", srType: -1 }, 4012: { id: 4012, name: "Sin Eater", srType: -1 }, 4013: { id: 4013, name: "Lightning Braid", srType: -1 }, 4014: { id: 4014, name: "Frozen Mallet", srType: -1 }, 4015: { id: 4015, name: "Perplexity", srType: -1 }, 4016: { id: 4016, name: "Wordless Promise", srType: -1 }, 4017: { id: 4017, name: "Hellfire Hatchet", srType: -1 }, 4401: { id: 4401, name: "Force of Nature", srType: 3 }, 4402: { id: 4402, name: "Innervating Locket", srType: -1 }, 4403: { id: 4403, name: "The Golden Spatula", srType: -1 }, 4628: { id: 4628, name: "Horizon Focus", srType: 3 }, 4629: { id: 4629, name: "Cosmic Drive", srType: 3 }, 4630: { id: 4630, name: "Blighting Jewel", srType: 2 }, 4632: { id: 4632, name: "Verdant Barrier", srType: 2 }, 4633: { id: 4633, name: "Riftmaker", srType: 3 }, 4635: { id: 4635, name: "Leeching Leer", srType: -1 }, 4636: { id: 4636, name: "Night Harvester", srType: -1 }, 4637: { id: 4637, name: "Demonic Embrace", srType: -1 }, 4638: { id: 4638, name: "Watchful Wardstone", srType: 2 }, 4641: { id: 4641, name: "Stirring Wardstone", srType: -1 }, 4642: { id: 4642, name: "Bandleglass Mirror", srType: 2 }, 4643: { id: 4643, name: "Vigilant Wardstone", srType: 3 }, 4644: { id: 4644, name: "Crown of the Shattered Queen", srType: -1 }, 4645: { id: 4645, name: "Shadowflame", srType: 3 }, 4646: { id: 4646, name: "Stormsurge", srType: 3 }, 6029: { id: 6029, name: "Ironspike Whip", srType: -1 }, 6035: { id: 6035, name: "Silvermere Dawn", srType: -1 }, 6333: { id: 6333, name: "Death's Dance", srType: 3 }, 6609: { id: 6609, name: "Chempunk Chainsword", srType: 3 }, 6610: { id: 6610, name: "Sundered Sky", srType: 3 }, 6616: { id: 6616, name: "Staff of Flowing Water", srType: 3 }, 6617: { id: 6617, name: "Moonstone Renewer", srType: 3 }, 6620: { id: 6620, name: "Echoes of Helia", srType: 3 }, 6621: { id: 6621, name: "Dawncore", srType: 3 }, 6630: { id: 6630, name: "Goredrinker", srType: -1 }, 6631: { id: 6631, name: "Stridebreaker", srType: 3 }, 6632: { id: 6632, name: "Divine Sunderer", srType: -1 }, 6653: { id: 6653, name: "Liandry's Torment", srType: 3 }, 6655: { id: 6655, name: "Luden's Companion", srType: 3 }, 6656: { id: 6656, name: "Everfrost", srType: -1 }, 6657: { id: 6657, name: "Rod of Ages", srType: 3 }, 6660: { id: 6660, name: "Bami's Cinder", srType: 2 }, 6662: { id: 6662, name: "Iceborn Gauntlet", srType: 3 }, 6664: { id: 6664, name: "Hollow Radiance", srType: 3 }, 6665: { id: 6665, name: "Jak'Sho, The Protean", srType: 3 }, 6667: { id: 6667, name: "Radiant Virtue", srType: -1 }, 6670: { id: 6670, name: "Noonquiver", srType: 2 }, 6671: { id: 6671, name: "Galeforce", srType: -1 }, 6672: { id: 6672, name: "Kraken Slayer", srType: 3 }, 6673: { id: 6673, name: "Immortal Shieldbow", srType: 3 }, 6675: { id: 6675, name: "Navori Flickerblade", srType: 3 }, 6676: { id: 6676, name: "The Collector", srType: 3 }, 6677: { id: 6677, name: "Rageknife", srType: -1 }, 6690: { id: 6690, name: "Rectrix", srType: 2 }, 6691: { id: 6691, name: "Duskblade of Draktharr", srType: -1 }, 6692: { id: 6692, name: "Eclipse", srType: 3 }, 6693: { id: 6693, name: "Prowler's Claw", srType: -1 }, 6694: { id: 6694, name: "Serylda's Grudge", srType: 3 }, 6695: { id: 6695, name: "Serpent's Fang", srType: 3 }, 6696: { id: 6696, name: "Axiom Arc", srType: 3 }, 6697: { id: 6697, name: "Hubris", srType: 3 }, 6698: { id: 6698, name: "Profane Hydra", srType: 3 }, 6699: { id: 6699, name: "Voltaic Cyclosword", srType: 3 }, 6700: { id: 6700, name: "Shield of the Rakkor", srType: -1 }, 6701: { id: 6701, name: "Opportunity", srType: 3 }, 7050: { id: 7050, name: "Gangplank Placeholder", srType: -1 }, 8001: { id: 8001, name: "Anathema's Chains", srType: -1 }, 8020: { id: 8020, name: "Abyssal Mask", srType: 3 }, 9168: { id: 9168, name: "Locked Weapon Slot", srType: -1 }, 9171: { id: 9171, name: "Cyclonic Slicers", srType: -1 }, 9172: { id: 9172, name: "YuumiBot", srType: -1 }, 9173: { id: 9173, name: "Radiant Field", srType: -1 }, 9174: { id: 9174, name: "Statikk Sword", srType: -1 }, 9175: { id: 9175, name: "Lioness's Lament", srType: -1 }, 9176: { id: 9176, name: "Gatling Bunny-Guns", srType: -1 }, 9177: { id: 9177, name: "Searing Shortbow", srType: -1 }, 9178: { id: 9178, name: "The Annihilator", srType: -1 }, 9179: { id: 9179, name: "Battle Bunny Crossbow", srType: -1 }, 9180: { id: 9180, name: "UwU Blaster", srType: -1 }, 9181: { id: 9181, name: "Vortex Glove", srType: -1 }, 9183: { id: 9183, name: "Blade-o-rang", srType: -1 }, 9184: { id: 9184, name: "Bunny Mega-Blast", srType: -1 }, 9185: { id: 9185, name: "Anti-Shark Sea Mine", srType: -1 }, 9187: { id: 9187, name: "T.I.B.B.E.R.S", srType: -1 }, 9188: { id: 9188, name: "Ani-Mines", srType: -1 }, 9189: { id: 9189, name: "Final City Transit", srType: -1 }, 9190: { id: 9190, name: "Echoing Batblades", srType: -1 }, 9192: { id: 9192, name: "Paw Print Poisoner", srType: -1 }, 9193: { id: 9193, name: "Iceblast Armor", srType: -1 }, 9271: { id: 9271, name: "Unceasing Cyclone", srType: -1 }, 9272: { id: 9272, name: "YuumiBot_Final_FINAL", srType: -1 }, 9273: { id: 9273, name: "Explosive Embrace", srType: -1 }, 9274: { id: 9274, name: "Prumbis's Electrocarver", srType: -1 }, 9275: { id: 9275, name: "Enveloping Light", srType: -1 }, 9276: { id: 9276, name: "Double Bun-Bun Barrage", srType: -1 }, 9277: { id: 9277, name: "Evolved Embershot", srType: -1 }, 9278: { id: 9278, name: "Animapocalypse", srType: -1 }, 9279: { id: 9279, name: "Bunny Prime Ballista", srType: -1 }, 9280: { id: 9280, name: "OwO Blaster", srType: -1 }, 9281: { id: 9281, name: "Tempest's Gauntlet", srType: -1 }, 9283: { id: 9283, name: "Quad-o-rang", srType: -1 }, 9284: { id: 9284, name: "Rapid Rabbit Raindown", srType: -1 }, 9285: { id: 9285, name: "Neverending Mobstomper", srType: -1 }, 9287: { id: 9287, name: "T.I.B.B.E.R.S (B.E.E.G Edition)", srType: -1 }, 9288: { id: 9288, name: "Jinx's Tri-Namite", srType: -1 }, 9289: { id: 9289, name: "FC Limited Express", srType: -1 }, 9290: { id: 9290, name: "Vayne's Chromablades", srType: -1 }, 9292: { id: 9292, name: "Bearfoot Chem-Dispenser", srType: -1 }, 9293: { id: 9293, name: "Deep Freeze", srType: -1 }, 9300: { id: 9300, name: "Meow Meow", srType: -1 }, 9301: { id: 9301, name: "Shield Slam", srType: -1 }, 9302: { id: 9302, name: "Sound Wave", srType: -1 }, 9303: { id: 9303, name: "Pillory Swipe", srType: -1 }, 9304: { id: 9304, name: "Steel Tempest", srType: -1 }, 9305: { id: 9305, name: "Tentacle Slam", srType: -1 }, 9306: { id: 9306, name: "Winged Dagger", srType: -1 }, 9307: { id: 9307, name: "Guiding Hex", srType: -1 }, 9308: { id: 9308, name: "Bunny Hop", srType: -1 }, 9400: { id: 9400, name: "Battle Cat Barrage", srType: -1 }, 9401: { id: 9401, name: "Light of the Lion", srType: -1 }, 9402: { id: 9402, name: "Anima Echo", srType: -1 }, 9403: { id: 9403, name: "Savage Slice", srType: -1 }, 9404: { id: 9404, name: "Wandering Storms", srType: -1 }, 9405: { id: 9405, name: "Grizzly Smash", srType: -1 }, 9406: { id: 9406, name: "Lover's Ricochet", srType: -1 }, 9407: { id: 9407, name: "Hopped-Up Hex", srType: -1 }, 9408: { id: 9408, name: "Carrot Crash", srType: -1 }, 126697: { id: 126697, name: "Hubris", srType: -1 }, 220000: { id: 220000, name: "Stat Bonus", srType: -1 }, 220001: { id: 220001, name: "Legendary Fighter Item", srType: -1 }, 220002: { id: 220002, name: "Legendary Marksman Item", srType: -1 }, 220003: { id: 220003, name: "Legendary Assassin Item", srType: -1 }, 220004: { id: 220004, name: "Legendary Mage Item", srType: -1 }, 220005: { id: 220005, name: "Legendary Tank Item", srType: -1 }, 220006: { id: 220006, name: "Legendary Support Item", srType: -1 }, 220007: { id: 220007, name: "Prismatic Item", srType: -1 }, 221011: { id: 221011, name: "Giant's Belt", srType: -1 }, 221026: { id: 221026, name: "Blasting Wand", srType: -1 }, 221031: { id: 221031, name: "Chain Vest", srType: -1 }, 221038: { id: 221038, name: "B. F. Sword", srType: -1 }, 221043: { id: 221043, name: "Recurve Bow", srType: -1 }, 221053: { id: 221053, name: "Vampiric Scepter", srType: -1 }, 221057: { id: 221057, name: "Negatron Cloak", srType: -1 }, 221058: { id: 221058, name: "Needlessly Large Rod", srType: -1 }, 222022: { id: 222022, name: "Glowing Mote", srType: -1 }, 222051: { id: 222051, name: "Guardian's Horn", srType: -1 }, 222065: { id: 222065, name: "Shurelya's Battlesong", srType: -1 }, 222141: { id: 222141, name: "Cappa Juice", srType: -1 }, 222502: { id: 222502, name: "Unending Despair", srType: -1 }, 222503: { id: 222503, name: "Blackfire Torch", srType: -1 }, 222504: { id: 222504, name: "Kaenic Rookern", srType: -1 }, 223001: { id: 223001, name: "Evenshroud", srType: -1 }, 223002: { id: 223002, name: "Trailblazer", srType: -1 }, 223003: { id: 223003, name: "Archangel's Staff", srType: -1 }, 223004: { id: 223004, name: "Manamune", srType: -1 }, 223005: { id: 223005, name: "Ghostcrawlers", srType: -1 }, 223006: { id: 223006, name: "Berserker's Greaves", srType: -1 }, 223009: { id: 223009, name: "Boots of Swiftness", srType: -1 }, 223011: { id: 223011, name: "Chemtech Putrifier", srType: -1 }, 223020: { id: 223020, name: "Sorcerer's Shoes", srType: -1 }, 223026: { id: 223026, name: "Guardian Angel", srType: -1 }, 223031: { id: 223031, name: "Infinity Edge", srType: -1 }, 223032: { id: 223032, name: "Yun Tal Wildarrows", srType: -1 }, 223033: { id: 223033, name: "Mortal Reminder", srType: -1 }, 223036: { id: 223036, name: "Lord Dominik's Regards", srType: -1 }, 223039: { id: 223039, name: "Atma's Reckoning", srType: -1 }, 223040: { id: 223040, name: "Seraph's Embrace", srType: -1 }, 223042: { id: 223042, name: "Muramana", srType: -1 }, 223046: { id: 223046, name: "Phantom Dancer", srType: -1 }, 223047: { id: 223047, name: "Plated Steelcaps", srType: -1 }, 223050: { id: 223050, name: "Zeke's Convergence", srType: -1 }, 223053: { id: 223053, name: "Sterak's Gage", srType: -1 }, 223057: { id: 223057, name: "Sheen", srType: -1 }, 223065: { id: 223065, name: "Spirit Visage", srType: -1 }, 223067: { id: 223067, name: "Kindlegem", srType: -1 }, 223068: { id: 223068, name: "Sunfire Aegis", srType: -1 }, 223071: { id: 223071, name: "Black Cleaver", srType: -1 }, 223072: { id: 223072, name: "Bloodthirster", srType: -1 }, 223073: { id: 223073, name: "Experimental Hexplate", srType: -1 }, 223074: { id: 223074, name: "Ravenous Hydra", srType: -1 }, 223075: { id: 223075, name: "Thornmail", srType: -1 }, 223078: { id: 223078, name: "Trinity Force", srType: -1 }, 223084: { id: 223084, name: "Heartsteel", srType: -1 }, 223085: { id: 223085, name: "Runaan's Hurricane", srType: -1 }, 223087: { id: 223087, name: "Statikk Shiv", srType: -1 }, 223089: { id: 223089, name: "Rabadon's Deathcap", srType: -1 }, 223091: { id: 223091, name: "Wit's End", srType: -1 }, 223094: { id: 223094, name: "Rapid Firecannon", srType: -1 }, 223095: { id: 223095, name: "Stormrazor", srType: -1 }, 223100: { id: 223100, name: "Lich Bane", srType: -1 }, 223102: { id: 223102, name: "Banshee's Veil", srType: -1 }, 223105: { id: 223105, name: "Aegis of the Legion", srType: -1 }, 223107: { id: 223107, name: "Redemption", srType: -1 }, 223109: { id: 223109, name: "Knight's Vow", srType: -1 }, 223110: { id: 223110, name: "Frozen Heart", srType: -1 }, 223111: { id: 223111, name: "Mercury's Treads", srType: -1 }, 223112: { id: 223112, name: "Guardian's Orb", srType: -1 }, 223115: { id: 223115, name: "Nashor's Tooth", srType: -1 }, 223116: { id: 223116, name: "Rylai's Crystal Scepter", srType: -1 }, 223118: { id: 223118, name: "Malignance", srType: -1 }, 223119: { id: 223119, name: "Winter's Approach", srType: -1 }, 223121: { id: 223121, name: "Fimbulwinter", srType: -1 }, 223124: { id: 223124, name: "Guinsoo's Rageblade", srType: -1 }, 223135: { id: 223135, name: "Void Staff", srType: -1 }, 223137: { id: 223137, name: "Cryptbloom", srType: -1 }, 223139: { id: 223139, name: "Mercurial Scimitar", srType: -1 }, 223142: { id: 223142, name: "Youmuu's Ghostblade", srType: -1 }, 223143: { id: 223143, name: "Randuin's Omen", srType: -1 }, 223146: { id: 223146, name: "Hextech Gunblade", srType: -1 }, 223152: { id: 223152, name: "Hextech Rocketbelt", srType: -1 }, 223153: { id: 223153, name: "Blade of The Ruined King", srType: -1 }, 223156: { id: 223156, name: "Maw of Malmortius", srType: -1 }, 223157: { id: 223157, name: "Zhonya's Hourglass", srType: -1 }, 223158: { id: 223158, name: "Ionian Boots of Lucidity", srType: -1 }, 223161: { id: 223161, name: "Spear of Shojin", srType: -1 }, 223165: { id: 223165, name: "Morellonomicon", srType: -1 }, 223172: { id: 223172, name: "Zephyr", srType: -1 }, 223177: { id: 223177, name: "Guardian's Blade", srType: -1 }, 223181: { id: 223181, name: "Hullbreaker", srType: -1 }, 223184: { id: 223184, name: "Guardian's Hammer", srType: -1 }, 223185: { id: 223185, name: "Guardian's Dirk", srType: -1 }, 223190: { id: 223190, name: "Locket of the Iron Solari", srType: -1 }, 223193: { id: 223193, name: "Gargoyle Stoneplate", srType: -1 }, 223222: { id: 223222, name: "Mikael's Blessing", srType: -1 }, 223302: { id: 223302, name: "Terminus", srType: -1 }, 223504: { id: 223504, name: "Ardent Censer", srType: -1 }, 223508: { id: 223508, name: "Essence Reaver", srType: -1 }, 223742: { id: 223742, name: "Dead Man's Plate", srType: -1 }, 223748: { id: 223748, name: "Titanic Hydra", srType: -1 }, 223814: { id: 223814, name: "Edge of Night", srType: -1 }, 224004: { id: 224004, name: "Spectral Cutlass", srType: -1 }, 224005: { id: 224005, name: "Imperial Mandate", srType: -1 }, 224401: { id: 224401, name: "Force of Nature", srType: -1 }, 224403: { id: 224403, name: "The Golden Spatula", srType: -1 }, 224628: { id: 224628, name: "Horizon Focus", srType: -1 }, 224629: { id: 224629, name: "Cosmic Drive", srType: -1 }, 224633: { id: 224633, name: "Riftmaker", srType: -1 }, 224636: { id: 224636, name: "Night Harvester", srType: -1 }, 224637: { id: 224637, name: "Demonic Embrace", srType: -1 }, 224644: { id: 224644, name: "Crown of the Shattered Queen", srType: -1 }, 224645: { id: 224645, name: "Shadowflame", srType: -1 }, 224646: { id: 224646, name: "Stormsurge", srType: -1 }, 226035: { id: 226035, name: "Silvermere Dawn", srType: -1 }, 226333: { id: 226333, name: "Death's Dance", srType: -1 }, 226609: { id: 226609, name: "Chempunk Chainsword", srType: -1 }, 226610: { id: 226610, name: "Sundered Sky", srType: -1 }, 226616: { id: 226616, name: "Staff of Flowing Water", srType: -1 }, 226617: { id: 226617, name: "Moonstone Renewer", srType: -1 }, 226620: { id: 226620, name: "Echoes of Helia", srType: -1 }, 226621: { id: 226621, name: "Dawncore", srType: -1 }, 226630: { id: 226630, name: "Goredrinker", srType: -1 }, 226631: { id: 226631, name: "Stridebreaker", srType: -1 }, 226632: { id: 226632, name: "Divine Sunderer", srType: -1 }, 226653: { id: 226653, name: "Liandry's Torment", srType: -1 }, 226655: { id: 226655, name: "Luden's Companion", srType: -1 }, 226656: { id: 226656, name: "Everfrost", srType: -1 }, 226657: { id: 226657, name: "Rod of Ages", srType: -1 }, 226662: { id: 226662, name: "Iceborn Gauntlet", srType: -1 }, 226664: { id: 226664, name: "Hollow Radiance", srType: -1 }, 226665: { id: 226665, name: "Jak'Sho, The Protean", srType: -1 }, 226667: { id: 226667, name: "Radiant Virtue", srType: -1 }, 226671: { id: 226671, name: "Galeforce", srType: -1 }, 226672: { id: 226672, name: "Kraken Slayer", srType: -1 }, 226673: { id: 226673, name: "Immortal Shieldbow", srType: -1 }, 226675: { id: 226675, name: "Navori Flickerblade", srType: -1 }, 226676: { id: 226676, name: "The Collector", srType: -1 }, 226691: { id: 226691, name: "Duskblade of Draktharr", srType: -1 }, 226692: { id: 226692, name: "Eclipse", srType: -1 }, 226693: { id: 226693, name: "Prowler's Claw", srType: -1 }, 226694: { id: 226694, name: "Serylda's Grudge", srType: -1 }, 226695: { id: 226695, name: "Serpent's Fang", srType: -1 }, 226696: { id: 226696, name: "Axiom Arc", srType: -1 }, 226697: { id: 226697, name: "Hubris", srType: -1 }, 226698: { id: 226698, name: "Profane Hydra", srType: -1 }, 226699: { id: 226699, name: "Voltaic Cyclosword", srType: -1 }, 226701: { id: 226701, name: "Opportunity", srType: -1 }, 228001: { id: 228001, name: "Anathema's Chains", srType: -1 }, 228002: { id: 228002, name: "Wooglet's Witchcap", srType: -1 }, 228003: { id: 228003, name: "Deathblade", srType: -1 }, 228004: { id: 228004, name: "Adaptive Helm", srType: -1 }, 228005: { id: 228005, name: "Obsidian Cleaver", srType: -1 }, 228006: { id: 228006, name: "Sanguine Blade", srType: -1 }, 228008: { id: 228008, name: "Runeglaive", srType: -1 }, 228020: { id: 228020, name: "Abyssal Mask", srType: -1 }, 443054: { id: 443054, name: "Darksteel Talons", srType: -1 }, 443055: { id: 443055, name: "Fulmination", srType: -1 }, 443056: { id: 443056, name: "Demon King's Crown", srType: -1 }, 443058: { id: 443058, name: "Shield of Molten Stone", srType: -1 }, 443059: { id: 443059, name: "Cloak of Starry Night", srType: -1 }, 443060: { id: 443060, name: "Sword of the Divine", srType: -1 }, 443061: { id: 443061, name: "Force Of Entropy", srType: -1 }, 443062: { id: 443062, name: "Sanguine Gift", srType: -1 }, 443063: { id: 443063, name: "Eleisa's Miracle", srType: -1 }, 443064: { id: 443064, name: "Talisman Of Ascension", srType: -1 }, 443069: { id: 443069, name: "Hamstringer", srType: -1 }, 443079: { id: 443079, name: "Turbo Chemtank", srType: -1 }, 443080: { id: 443080, name: "Twin Mask", srType: -1 }, 443081: { id: 443081, name: "Hexbolt Companion", srType: -1 }, 443090: { id: 443090, name: "Reaper's Toll", srType: -1 }, 443193: { id: 443193, name: "Gargoyle Stoneplate", srType: -1 }, 444636: { id: 444636, name: "Night Harvester", srType: -1 }, 444637: { id: 444637, name: "Demonic Embrace", srType: -1 }, 444644: { id: 444644, name: "Crown of the Shattered Queen", srType: -1 }, 446632: { id: 446632, name: "Divine Sunderer", srType: -1 }, 446656: { id: 446656, name: "Everfrost", srType: -1 }, 446667: { id: 446667, name: "Radiant Virtue", srType: -1 }, 446671: { id: 446671, name: "Galeforce", srType: -1 }, 446691: { id: 446691, name: "Duskblade of Draktharr", srType: -1 }, 446693: { id: 446693, name: "Prowler's Claw", srType: -1 }, 447100: { id: 447100, name: "Mirage Blade", srType: -1 }, 447101: { id: 447101, name: "Gambler's Blade", srType: -1 }, 447102: { id: 447102, name: "Reality Fracture", srType: -1 }, 447103: { id: 447103, name: "Hemomancer's Helm", srType: -1 }, 447104: { id: 447104, name: "Innervating Locket", srType: -1 }, 447105: { id: 447105, name: "Empyrean Promise", srType: -1 }, 447106: { id: 447106, name: "Dragonheart", srType: -1 }, 447107: { id: 447107, name: "Decapitator", srType: -1 }, 447108: { id: 447108, name: "Runecarver", srType: -1 }, 447109: { id: 447109, name: "Cruelty", srType: -1 }, 447110: { id: 447110, name: "Moonflair Spellblade", srType: -1 }, 447111: { id: 447111, name: "Overlord's Bloodmail", srType: -1 }, 447112: { id: 447112, name: "Flesheater", srType: -1 }, 447113: { id: 447113, name: "Detonation Orb", srType: -1 }, 447114: { id: 447114, name: "Reverberation", srType: -1 }, 447115: { id: 447115, name: "Regicide", srType: -1 }, 447116: { id: 447116, name: "Kinkou Jitte", srType: -1 }, 447118: { id: 447118, name: "Pyromancer's Cloak", srType: -1 }, 447119: { id: 447119, name: "Lightning Rod", srType: -1 }, 447120: { id: 447120, name: "Diamond-Tipped Spear", srType: -1 }, 447121: { id: 447121, name: "Twilight's Edge", srType: -1 }, 447122: { id: 447122, name: "Black Hole Gauntlet", srType: -1 }, 447123: { id: 447123, name: "Puppeteer", srType: -1 } };
2
2
  export const ItemsArr = Object.values(Items);
3
- export const itemNames = { Boots: { 11: 1001, 12: 1001, 21: 1001 }, "Faerie Charm": { 11: 1004, 12: 1004, 21: 1004 }, "Rejuvenation Bead": { 11: 1006, 12: 1006, 21: 1006 }, "Giant's Belt": { 11: 1011, 12: 1011, 21: 1011, 30: 221011 }, "Cloak of Agility": { 11: 1018, 12: 1018, 21: 1018 }, "Blasting Wand": { 11: 1026, 12: 1026, 21: 1026, 30: 221026 }, "Sapphire Crystal": { 11: 1027, 12: 1027, 21: 1027 }, "Ruby Crystal": { 11: 1028, 12: 1028, 21: 1028 }, "Cloth Armor": { 11: 1029, 12: 1029, 21: 1029 }, "Chain Vest": { 11: 1031, 12: 1031, 21: 1031, 30: 221031 }, "Null-Magic Mantle": { 11: 1033, 12: 1033, 21: 1033 }, Emberknife: 1035, "Long Sword": { 11: 1036, 12: 1036, 21: 1036 }, Pickaxe: { 11: 1037, 12: 1037, 21: 1037 }, "B. F. Sword": { 11: 1038, 12: 1038, 21: 1038, 30: 221038 }, Hailblade: 1039, "Obsidian Edge": 1040, Dagger: { 11: 1042, 12: 1042, 21: 1042 }, "Recurve Bow": { 11: 1043, 12: 1043, 21: 1043, 30: 221043 }, "Amplifying Tome": { 11: 1052, 12: 1052, 21: 1052 }, "Vampiric Scepter": { 11: 1053, 12: 1053, 21: 1053, 30: 221053 }, "Doran's Shield": { 11: 1054, 12: 1054, 21: 1054 }, "Doran's Blade": { 11: 1055, 12: 1055, 21: 1055 }, "Doran's Ring": { 11: 1056, 12: 1056, 21: 1056 }, "Negatron Cloak": { 11: 1057, 12: 1057, 21: 1057, 30: 221057 }, "Needlessly Large Rod": { 11: 1058, 12: 1058, 21: 1058, 30: 221058 }, "Dark Seal": { 11: 1082 }, Cull: { 11: 1083 }, "Scorchclaw Pup": { 11: 1101, 21: 1101 }, "Gustwalker Hatchling": { 11: 1102, 21: 1102 }, "Mosstomper Seedling": { 11: 1103, 21: 1103 }, "Eye of the Herald": 1104, "Penetrating Bullets": { 11: 1500, 12: 1500, 21: 1500, 30: 1500 }, "Warden's Eye": { 11: 1503, 12: 1503, 21: 1503, 30: 1503 }, Vanguard: 1504, Overcharged: { 11: 1507, 12: 1507, 21: 1507, 30: 1507 }, "Anti-tower Socks": { 11: 1508, 12: 1508, 21: 1508, 30: 1508 }, Gusto: { 11: 1509, 12: 1509, 21: 1509, 30: 1509 }, "Phreakish Gusto": { 11: 1510, 12: 1510, 21: 1510, 30: 1510 }, "Super Mech Armor": { 11: 1511, 12: 1511, 21: 1511, 30: 1511 }, "Super Mech Power Field": { 11: 1512, 12: 1512, 21: 1512, 30: 1512 }, "Turret Plating": { 11: 1515, 12: 1515, 21: 1515, 30: 1515 }, OvererchargedHA: { 11: 1520, 12: 1520, 21: 1520, 30: 1520 }, "Tower Power-Up": { 11: 1522, 12: 1522, 21: 1522, 30: 1522 }, "Health Potion": { 11: 2003, 12: 2003, 21: 2003 }, "Total Biscuit of Everlasting Will": { 11: 2010, 12: 2010, 21: 2010, 30: 2010 }, "Kircheis Shard": 2015, "Steel Sigil": { 11: 2019, 12: 2019, 21: 2019 }, "The Brutalizer": { 11: 2020, 12: 2020, 21: 2020 }, Tunneler: { 11: 2021, 12: 2021, 21: 2021 }, "Glowing Mote": { 11: 2022, 12: 2022, 21: 2022, 30: 222022 }, "Refillable Potion": { 11: 2031, 12: 2031, 21: 2031 }, "Corrupting Potion": { 11: 2033, 21: 2033 }, "Guardian's Amulet": { 30: 2049 }, "Guardian's Shroud": { 30: 2050 }, "Guardian's Horn": { 12: 2051, 30: 222051 }, "Poro-Snax": { 11: 2052, 12: 2052, 21: 2052, 30: 2052 }, "Control Ward": { 11: 2055 }, "Stealth Ward": { 11: 3340, 21: 3340 }, "Shurelya's Battlesong": { 11: 2065, 12: 2065, 21: 2065, 30: 222065 }, "Elixir of Iron": { 11: 2138, 12: 2138, 21: 2138 }, "Elixir of Sorcery": { 11: 2139, 12: 2139, 21: 2139 }, "Elixir of Wrath": { 11: 2140, 12: 2140, 21: 2140 }, "Cappa Juice": { 12: 2141, 30: 222141 }, "Juice of Power": { 30: 2142 }, "Juice of Vitality": { 30: 2143 }, "Juice of Haste": { 30: 2144 }, "Lucky Dice": { 30: 2145 }, "Elixir of Skill": { 11: 2150, 12: 2150, 21: 2150 }, "Elixir of Avarice": { 11: 2151, 12: 2151, 21: 2151 }, "Elixir of Force": { 11: 2152, 12: 2152, 21: 2152 }, "Minion Dematerializer": { 11: 2403, 12: 2403, 21: 2403 }, "Seeker's Armguard": { 11: 2420, 12: 2420, 21: 2420 }, "Shattered Armguard": { 11: 2421, 12: 2421, 21: 2421 }, "Slightly Magical Footwear": { 11: 2422, 12: 2422, 21: 2422 }, "Overlord's Bloodmail": { 11: 2501, 12: 2501, 21: 2501, 30: 447111 }, "Unending Despair": { 11: 2502, 12: 2502, 21: 2502, 30: 222502 }, "Blackfire Torch": { 11: 2503, 12: 2503, 21: 2503, 30: 222503 }, "Kaenic Rookern": { 11: 2504, 12: 2504, 21: 2504, 30: 222504 }, "Fated Ashes": { 11: 2508, 12: 2508, 21: 2508 }, Evenshroud: 3001, Trailblazer: { 11: 3002, 12: 3002, 21: 3002 }, "Archangel's Staff": { 11: 3003, 12: 3003, 21: 3003, 30: 223003 }, Manamune: { 11: 3004, 12: 3004, 21: 3004, 30: 223004 }, Ghostcrawlers: { 21: 3005, 30: 223005 }, "Berserker's Greaves": { 11: 3006, 12: 3006, 21: 3006, 30: 223006 }, "Boots of Swiftness": { 11: 3009, 12: 3009, 21: 3009, 30: 223009 }, "Symbiotic Soles": { 11: 3010, 21: 3010 }, "Chemtech Putrifier": { 11: 3011, 12: 3011, 21: 3011, 30: 223011 }, "Chalice of Blessing": 3012, "Synchronized Souls": { 11: 3013, 21: 3013 }, "Sorcerer's Shoes": { 11: 3020, 12: 3020, 21: 3020, 30: 223020 }, "Lifewell Pendant": 3023, "Glacial Buckler": { 11: 3024, 12: 3024, 21: 3024 }, "Guardian Angel": { 11: 3026, 30: 223026 }, "Infinity Edge": { 11: 3031, 12: 3031, 21: 3031, 30: 223031 }, "Yun Tal Wildarrows": { 11: 3032, 12: 3032, 21: 3032 }, "Mortal Reminder": { 11: 3033, 12: 3033, 21: 3033, 30: 223033 }, "Last Whisper": { 11: 3035, 12: 3035, 21: 3035 }, "Lord Dominik's Regards": { 11: 3036, 12: 3036, 21: 3036, 30: 223036 }, "Atma's Reckoning": { 21: 3039, 30: 223039 }, "Seraph's Embrace": { 11: 3040, 12: 3040, 21: 3040, 30: 223040 }, "Mejai's Soulstealer": { 11: 3041 }, Muramana: { 11: 3042, 12: 3042, 21: 3042, 30: 223042 }, Phage: { 11: 3044, 12: 3044, 21: 3044 }, "Phantom Dancer": { 11: 3046, 12: 3046, 21: 3046, 30: 223046 }, "Plated Steelcaps": { 11: 3047, 12: 3047, 21: 3047, 30: 223047 }, "Zeke's Convergence": { 11: 3050, 12: 3050, 21: 3050, 30: 223050 }, "Hearthbound Axe": { 11: 3051, 12: 3051, 21: 3051 }, "Sterak's Gage": { 11: 3053, 12: 3053, 21: 3053, 30: 223053 }, Sheen: { 11: 3057, 12: 3057, 21: 3057, 30: 223057 }, "Spirit Visage": { 11: 3065, 12: 3065, 21: 3065, 30: 223065 }, "Winged Moonplate": { 11: 3066, 12: 3066, 21: 3066 }, Kindlegem: { 11: 3067, 12: 3067, 21: 3067, 30: 223067 }, "Sunfire Aegis": { 11: 3068, 12: 3068, 21: 3068, 30: 223068 }, "Tear of the Goddess": { 11: 3070, 12: 3070, 21: 3070 }, "Black Cleaver": { 11: 3071, 12: 3071, 21: 3071, 30: 223071 }, Bloodthirster: { 11: 3072, 12: 3072, 21: 3072, 30: 223072 }, "Experimental Hexplate": { 11: 3073, 12: 3073, 21: 3073, 30: 223073 }, "Ravenous Hydra": { 11: 3074, 12: 3074, 21: 3074, 30: 223074 }, Thornmail: { 11: 3075, 12: 3075, 21: 3075, 30: 223075 }, "Bramble Vest": { 11: 3076, 12: 3076, 21: 3076 }, Tiamat: { 11: 3077, 12: 3077, 21: 3077 }, "Trinity Force": { 11: 3078, 12: 3078, 21: 3078, 30: 223078 }, "Warden's Mail": { 11: 3082, 12: 3082, 21: 3082 }, "Warmog's Armor": { 11: 3083, 12: 3083, 21: 3083 }, Heartsteel: { 11: 3084, 12: 3084, 21: 3084, 30: 223084 }, "Runaan's Hurricane": { 11: 3085, 12: 3085, 21: 3085, 30: 223085 }, Zeal: { 11: 3086, 12: 3086, 21: 3086 }, "Statikk Shiv": { 11: 3087, 12: 3087, 21: 3087, 30: 223087 }, "Rabadon's Deathcap": { 11: 3089, 12: 3089, 21: 3089, 30: 223089 }, "Wit's End": { 11: 3091, 12: 3091, 21: 3091, 30: 223091 }, "Rapid Firecannon": { 11: 3094, 12: 3094, 21: 3094, 30: 223094 }, Stormrazor: { 30: 223095 }, "Lich Bane": { 11: 3100, 12: 3100, 21: 3100, 30: 223100 }, "Banshee's Veil": { 11: 3102, 12: 3102, 21: 3102, 30: 223102 }, "Aegis of the Legion": { 30: 223105 }, Redemption: { 11: 3107, 12: 3107, 21: 3107, 30: 223107 }, "Fiendish Codex": { 11: 3108, 12: 3108, 21: 3108 }, "Knight's Vow": { 11: 3109, 12: 3109, 21: 3109, 30: 223109 }, "Frozen Heart": { 11: 3110, 12: 3110, 21: 3110, 30: 223110 }, "Mercury's Treads": { 11: 3111, 12: 3111, 21: 3111, 30: 223111 }, "Guardian's Orb": { 12: 3112, 30: 223112 }, "Aether Wisp": { 11: 3113, 12: 3113, 21: 3113 }, "Forbidden Idol": { 11: 3114, 12: 3114, 21: 3114 }, "Nashor's Tooth": { 11: 3115, 12: 3115, 21: 3115, 30: 223115 }, "Rylai's Crystal Scepter": { 11: 3116, 12: 3116, 21: 3116, 30: 223116 }, "Mobility Boots": { 11: 3117, 12: 3117, 21: 3117 }, Malignance: { 11: 3118, 12: 3118, 21: 3118, 30: 223118 }, "Winter's Approach": { 11: 3119, 12: 3119, 21: 3119, 30: 223119 }, Fimbulwinter: { 11: 3121, 12: 3121, 21: 3121, 30: 223121 }, "Executioner's Calling": { 11: 3123, 12: 3123, 21: 3123 }, "Guinsoo's Rageblade": { 11: 3124, 12: 3124, 21: 3124, 30: 223124 }, "Deathfire Grasp": { 21: 3128 }, "Sword of the Divine": { 21: 3131, 30: 443060 }, "Caulfield's Warhammer": { 11: 3133, 12: 3133, 21: 3133 }, "Serrated Dirk": { 11: 3134, 12: 3134, 21: 3134 }, "Void Staff": { 11: 3135, 12: 3135, 21: 3135, 30: 223135 }, Cryptbloom: { 11: 3137, 12: 3137, 21: 3137, 30: 223137 }, "Mercurial Scimitar": { 11: 3139, 12: 3139, 21: 3139, 30: 223139 }, "Quicksilver Sash": { 11: 3140, 12: 3140, 21: 3140 }, "Youmuu's Ghostblade": { 11: 3142, 12: 3142, 21: 3142, 30: 223142 }, "Randuin's Omen": { 11: 3143, 12: 3143, 21: 3143, 30: 223143 }, "Scout's Slingshot": { 11: 3144, 12: 3144, 21: 3144 }, "Hextech Alternator": { 11: 3145, 12: 3145, 21: 3145 }, "Hextech Gunblade": { 21: 3146, 30: 223146 }, "Haunting Guise": { 11: 3147, 12: 3147, 21: 3147 }, "Hextech Rocketbelt": { 11: 3152, 12: 3152, 21: 3152, 30: 223152 }, "Blade of The Ruined King": { 11: 3153, 12: 3153, 21: 3153, 30: 223153 }, Hexdrinker: { 11: 3155, 12: 3155, 21: 3155 }, "Maw of Malmortius": { 11: 3156, 12: 3156, 21: 3156, 30: 223156 }, "Zhonya's Hourglass": { 11: 3157, 12: 3157, 21: 3157, 30: 223157 }, "Ionian Boots of Lucidity": { 11: 3158, 12: 3158, 21: 3158, 30: 223158 }, "Spear of Shojin": { 11: 3161, 12: 3161, 21: 3161, 30: 223161 }, Morellonomicon: { 11: 3165, 12: 3165, 21: 3165, 30: 223165 }, Zephyr: { 11: 3172, 12: 3172, 21: 3172 }, "Guardian's Blade": { 12: 3177, 30: 223177 }, "Umbral Glaive": { 11: 3179, 12: 3179, 21: 3179 }, Hullbreaker: { 11: 3181, 12: 3181, 21: 3181, 30: 223181 }, "Guardian's Hammer": { 12: 3184, 30: 223184 }, "Locket of the Iron Solari": { 11: 3190, 12: 3190, 21: 3190, 30: 223190 }, "Gargoyle Stoneplate": { 30: 443193 }, "Spectre's Cowl": { 11: 3211, 12: 3211, 21: 3211 }, "Mikael's Blessing": { 11: 3222, 12: 3222, 21: 3222, 30: 223222 }, Terminus: { 11: 3302, 12: 3302, 21: 3302, 30: 223302 }, "Scarecrow Effigy": { 11: 3330, 12: 3330, 21: 3330, 30: 3330 }, "Arcane Sweeper": { 30: 3348 }, "Lucent Singularity": 3349, "Farsight Alteration": { 11: 3363, 12: 3363, 21: 3363 }, "Oracle Lens": { 11: 3364, 21: 3364 }, "Your Cut": { 11: 3400, 12: 3400, 21: 3400, 30: 3400 }, "Rite Of Ruin": { 30: 3430 }, "Ardent Censer": { 11: 3504, 12: 3504, 21: 3504, 30: 223504 }, "Essence Reaver": { 11: 3508, 12: 3508, 21: 3508, 30: 223508 }, "Kalista's Black Spear": { 11: 3599, 12: 3599, 21: 3599, 30: 3599 }, "Sylas' Black Spear": { 11: 3600, 12: 3600, 21: 3600, 30: 3600 }, "Dead Man's Plate": { 11: 3742, 12: 3742, 21: 3742, 30: 223742 }, "Titanic Hydra": { 11: 3748, 12: 3748, 21: 3748, 30: 223748 }, "Crystalline Bracer": { 11: 3801, 12: 3801, 21: 3801 }, "Lost Chapter": { 11: 3802, 12: 3802, 21: 3802 }, "Catalyst of Aeons": { 11: 3803, 12: 3803, 21: 3803 }, "Edge of Night": { 11: 3814, 12: 3814, 21: 3814, 30: 223814 }, "Spellthief's Edge": 3850, Frostfang: 3851, "Shard of True Ice": 3853, "Steel Shoulderguards": 3854, "Runesteel Spaulders": 3855, "Pauldrons of Whiterock": 3857, "Relic Shield": 3858, "Targon's Buckler": 3859, "Bulwark of the Mountain": 3860, "Spectral Sickle": 3862, "Harrowing Crescent": 3863, "Black Mist Scythe": 3864, "World Atlas": { 11: 3865 }, "Runic Compass": { 11: 3866 }, "Bounty of Worlds": { 11: 3867 }, "Celestial Opposition": { 11: 3869 }, "Dream Maker": { 11: 3870 }, "Zaz'Zak's Realmspike": { 11: 3871 }, "Solstice Sleigh": { 11: 3876 }, Bloodsong: { 11: 3877 }, "Fire at Will": { 11: 3901, 12: 3901, 21: 3901, 30: 3901 }, "Death's Daughter": { 11: 3902, 12: 3902, 21: 3902, 30: 3902 }, "Raise Morale": { 11: 3903, 12: 3903, 21: 3903, 30: 3903 }, "Oblivion Orb": { 11: 3916, 12: 3916, 21: 3916 }, Lifeline: { 21: 4003 }, "Spectral Cutlass": { 21: 4004, 30: 224004 }, "Imperial Mandate": { 11: 4005, 12: 4005, 21: 4005, 30: 224005 }, "Bloodletter's Curse": { 30: 4010 }, "Sword of Blossoming Dawn": { 30: 4011 }, "Sin Eater": 4012, "Lightning Braid": 4013, "Frozen Mallet": 4014, Perplexity: { 30: 4015 }, "Wordless Promise": { 30: 4016 }, "Hellfire Hatchet": { 30: 4017 }, "Force of Nature": { 11: 4401, 12: 4401, 21: 4401, 30: 224401 }, "Innervating Locket": { 21: 4402, 30: 447104 }, "The Golden Spatula": { 21: 4403, 30: 224403 }, "Horizon Focus": { 11: 4628, 12: 4628, 21: 4628, 30: 224628 }, "Cosmic Drive": { 11: 4629, 12: 4629, 21: 4629, 30: 224629 }, "Blighting Jewel": { 11: 4630, 12: 4630, 21: 4630 }, "Verdant Barrier": { 11: 4632, 12: 4632, 21: 4632 }, Riftmaker: { 11: 4633, 12: 4633, 21: 4633, 30: 224633 }, "Leeching Leer": { 11: 4635, 12: 4635, 21: 4635 }, "Night Harvester": { 11: 4636, 12: 4636, 21: 4636, 30: 444636 }, "Demonic Embrace": { 11: 4637, 12: 4637, 21: 4637, 30: 444637 }, "Watchful Wardstone": { 11: 4638 }, "Stirring Wardstone": { 11: 4641 }, "Bandleglass Mirror": { 11: 4642, 12: 4642, 21: 4642 }, "Vigilant Wardstone": { 11: 4643 }, "Crown of the Shattered Queen": { 30: 444644 }, Shadowflame: { 11: 4645, 12: 4645, 21: 4645, 30: 224645 }, Stormsurge: { 11: 4646, 12: 4646, 21: 4646, 30: 224646 }, "Ironspike Whip": 6029, "Silvermere Dawn": 6035, "Death's Dance": { 11: 6333, 12: 6333, 21: 6333, 30: 226333 }, "Chempunk Chainsword": { 11: 6609, 12: 6609, 21: 6609, 30: 226609 }, "Sundered Sky": { 11: 6610, 12: 6610, 21: 6610, 30: 226610 }, "Staff of Flowing Water": { 11: 6616, 12: 6616, 21: 6616, 30: 226616 }, "Moonstone Renewer": { 11: 6617, 12: 6617, 21: 6617, 30: 226617 }, "Echoes of Helia": { 11: 6620, 12: 6620, 21: 6620, 30: 226620 }, Dawncore: { 11: 6621, 12: 6621, 21: 6621, 30: 226621 }, Goredrinker: { 30: 226630 }, Stridebreaker: { 11: 6631, 12: 6631, 21: 6631, 30: 226631 }, "Divine Sunderer": { 30: 446632 }, "Liandry's Torment": { 11: 6653, 12: 6653, 21: 6653, 30: 226653 }, "Luden's Companion": { 11: 6655, 12: 6655, 21: 6655, 30: 226655 }, Everfrost: { 30: 446656 }, "Rod of Ages": { 11: 6657, 12: 6657, 21: 6657, 30: 226657 }, "Bami's Cinder": { 11: 6660, 12: 6660, 21: 6660 }, "Iceborn Gauntlet": { 11: 6662, 12: 6662, 21: 6662, 30: 226662 }, "Hollow Radiance": { 11: 6664, 12: 6664, 21: 6664, 30: 226664 }, "Jak'Sho, The Protean": { 11: 6665, 12: 6665, 21: 6665, 30: 226665 }, "Radiant Virtue": { 30: 446667 }, Noonquiver: { 11: 6670, 12: 6670, 21: 6670 }, Galeforce: { 30: 446671 }, "Kraken Slayer": { 11: 6672, 12: 6672, 21: 6672, 30: 226672 }, "Immortal Shieldbow": { 11: 6673, 12: 6673, 21: 6673, 30: 226673 }, "Navori Flickerblade": { 11: 6675, 12: 6675, 21: 6675, 30: 226675 }, "The Collector": { 11: 6676, 12: 6676, 21: 6676, 30: 226676 }, Rageknife: 6677, Rectrix: { 11: 6690, 12: 6690, 21: 6690 }, "Duskblade of Draktharr": { 30: 446691 }, Eclipse: { 11: 6692, 12: 6692, 21: 6692, 30: 226692 }, "Prowler's Claw": { 11: 6693, 12: 6693, 21: 6693, 30: 446693 }, "Serylda's Grudge": { 11: 6694, 12: 6694, 21: 6694, 30: 226694 }, "Serpent's Fang": { 11: 6695, 12: 6695, 21: 6695, 30: 226695 }, "Axiom Arc": { 11: 6696, 12: 6696, 21: 6696, 30: 226696 }, Hubris: { 11: 6697, 12: 126697, 21: 6697, 30: 226697 }, "Profane Hydra": { 11: 6698, 12: 6698, 21: 6698, 30: 226698 }, "Voltaic Cyclosword": { 11: 6699, 12: 6699, 21: 6699, 30: 226699 }, "Shield of the Rakkor": 6700, Opportunity: { 11: 6701, 12: 6701, 21: 6701, 30: 226701 }, "Gangplank Placeholder": { 11: 7050, 12: 7050, 21: 7050, 30: 7050 }, "Anathema's Chains": { 11: 8001, 12: 8001, 21: 8001, 30: 228001 }, "Abyssal Mask": { 11: 8020, 12: 8020, 21: 8020, 30: 228020 }, "Locked Weapon Slot": { 33: 9168 }, "Cyclonic Slicers": { 33: 9171 }, YuumiBot: { 33: 9172 }, "Radiant Field": { 33: 9173 }, "Statikk Sword": { 33: 9174 }, "Lioness's Lament": { 33: 9175 }, "Gatling Bunny-Guns": { 33: 9176 }, "Searing Shortbow": { 33: 9177 }, "The Annihilator": { 33: 9178 }, "Battle Bunny Crossbow": { 33: 9179 }, "UwU Blaster": { 33: 9180 }, "Vortex Glove": { 33: 9181 }, "Blade-o-rang": { 33: 9183 }, "Bunny Mega-Blast": { 33: 9184 }, "Anti-Shark Sea Mine": { 33: 9185 }, "T.I.B.B.E.R.S": { 33: 9187 }, "Ani-Mines": { 33: 9188 }, "Final City Transit": { 33: 9189 }, "Echoing Batblades": { 33: 9190 }, "Paw Print Poisoner": { 33: 9192 }, "Iceblast Armor": { 33: 9193 }, "Unceasing Cyclone": { 33: 9271 }, YuumiBot_Final_FINAL: { 33: 9272 }, "Explosive Embrace": { 33: 9273 }, "Prumbis's Electrocarver": { 33: 9274 }, "Enveloping Light": { 33: 9275 }, "Double Bun-Bun Barrage": { 33: 9276 }, "Evolved Embershot": { 33: 9277 }, Animapocalypse: { 33: 9278 }, "Bunny Prime Ballista": { 33: 9279 }, "OwO Blaster": { 33: 9280 }, "Tempest's Gauntlet": { 33: 9281 }, "Quad-o-rang": { 33: 9283 }, "Rapid Rabbit Raindown": { 33: 9284 }, "Neverending Mobstomper": { 33: 9285 }, "T.I.B.B.E.R.S (B.E.E.G Edition)": { 33: 9287 }, "Jinx's Tri-Namite": { 33: 9288 }, "FC Limited Express": { 33: 9289 }, "Vayne's Chromablades": { 33: 9290 }, "Bearfoot Chem-Dispenser": { 33: 9292 }, "Deep Freeze": { 33: 9293 }, "Meow Meow": { 33: 9300 }, "Shield Slam": { 33: 9301 }, "Sound Wave": { 33: 9302 }, "Pillory Swipe": { 33: 9303 }, "Steel Tempest": { 33: 9304 }, "Tentacle Slam": { 33: 9305 }, "Winged Dagger": { 33: 9306 }, "Guiding Hex": { 33: 9307 }, "Bunny Hop": { 33: 9308 }, "Battle Cat Barrage": { 33: 9400 }, "Light of the Lion": { 33: 9401 }, "Anima Echo": { 33: 9402 }, "Savage Slice": { 33: 9403 }, "Wandering Storms": { 33: 9404 }, "Grizzly Smash": { 33: 9405 }, "Lover's Ricochet": { 33: 9406 }, "Hopped-Up Hex": { 33: 9407 }, "Carrot Crash": { 33: 9408 }, "Stat Bonus": { 30: 220000 }, "Legendary Fighter Item": { 30: 220001 }, "Legendary Marksman Item": { 30: 220002 }, "Legendary Assassin Item": { 30: 220003 }, "Legendary Mage Item": { 30: 220004 }, "Legendary Tank Item": { 30: 220005 }, "Legendary Support Item": { 30: 220006 }, "Prismatic Item": { 30: 220007 }, "Guardian's Dirk": { 30: 223185 }, "Wooglet's Witchcap": { 30: 228002 }, Deathblade: { 30: 228003 }, "Adaptive Helm": { 30: 228004 }, "Obsidian Cleaver": { 30: 228005 }, "Sanguine Blade": { 30: 228006 }, Runeglaive: { 30: 228008 }, "Darksteel Talons": { 30: 443054 }, Fulmination: { 30: 443055 }, "Demon King's Crown": { 30: 443056 }, "Shield of Molten Stone": { 30: 443058 }, "Cloak of Starry Night": { 30: 443059 }, "Force Of Entropy": { 30: 443061 }, "Sanguine Gift": { 30: 443062 }, "Eleisa's Miracle": { 30: 443063 }, "Talisman Of Ascension": { 30: 443064 }, Hamstringer: { 30: 443069 }, "Turbo Chemtank": { 30: 443079 }, "Twin Mask": { 30: 443080 }, "Hexbolt Companion": { 30: 443081 }, "Reaper's Toll": { 30: 443090 }, "Mirage Blade": { 30: 447100 }, "Gambler's Blade": { 30: 447101 }, "Reality Fracture": { 30: 447102 }, "Hemomancer's Helm": { 30: 447103 }, "Empyrean Promise": { 30: 447105 }, Dragonheart: { 30: 447106 }, Decapitator: { 30: 447107 }, Runecarver: 447108, Cruelty: { 30: 447109 }, "Moonflair Spellblade": { 30: 447110 }, Flesheater: { 30: 447112 }, "Detonation Orb": { 30: 447113 }, Reverberation: { 30: 447114 }, Regicide: { 30: 447115 }, "Kinkou Jitte": { 30: 447116 }, "Pyromancer's Cloak": { 30: 447118 }, "Lightning Rod": { 30: 447119 }, "Diamond-Tipped Spear": { 30: 447120 }, "Twilight's Edge": { 30: 447121 }, "Black Hole Gauntlet": { 30: 447122 }, Puppeteer: { 30: 447123 } };
3
+ export const itemNames = { Boots: { 11: 1001, 12: 1001, 21: 1001 }, "Faerie Charm": { 11: 1004, 12: 1004, 21: 1004 }, "Rejuvenation Bead": { 11: 1006, 12: 1006, 21: 1006 }, "Giant's Belt": { 11: 1011, 12: 1011, 21: 1011, 30: 221011 }, "Cloak of Agility": { 11: 1018, 12: 1018, 21: 1018 }, "Blasting Wand": { 11: 1026, 12: 1026, 21: 1026, 30: 221026 }, "Sapphire Crystal": { 11: 1027, 12: 1027, 21: 1027 }, "Ruby Crystal": { 11: 1028, 12: 1028, 21: 1028 }, "Cloth Armor": { 11: 1029, 12: 1029, 21: 1029 }, "Chain Vest": { 11: 1031, 12: 1031, 21: 1031, 30: 221031 }, "Null-Magic Mantle": { 11: 1033, 12: 1033, 21: 1033 }, Emberknife: 1035, "Long Sword": { 11: 1036, 12: 1036, 21: 1036 }, Pickaxe: { 11: 1037, 12: 1037, 21: 1037 }, "B. F. Sword": { 11: 1038, 12: 1038, 21: 1038, 30: 221038 }, Hailblade: 1039, "Obsidian Edge": 1040, Dagger: { 11: 1042, 12: 1042, 21: 1042 }, "Recurve Bow": { 11: 1043, 12: 1043, 21: 1043, 30: 221043 }, "Amplifying Tome": { 11: 1052, 12: 1052, 21: 1052 }, "Vampiric Scepter": { 11: 1053, 12: 1053, 21: 1053, 30: 221053 }, "Doran's Shield": { 11: 1054, 12: 1054, 21: 1054 }, "Doran's Blade": { 11: 1055, 12: 1055, 21: 1055 }, "Doran's Ring": { 11: 1056, 12: 1056, 21: 1056 }, "Negatron Cloak": { 11: 1057, 12: 1057, 21: 1057, 30: 221057 }, "Needlessly Large Rod": { 11: 1058, 12: 1058, 21: 1058, 30: 221058 }, "Dark Seal": { 11: 1082 }, Cull: { 11: 1083 }, "Scorchclaw Pup": { 11: 1101, 21: 1101 }, "Gustwalker Hatchling": { 11: 1102, 21: 1102 }, "Mosstomper Seedling": { 11: 1103, 21: 1103 }, "Eye of the Herald": 1104, "Penetrating Bullets": { 11: 1500, 12: 1500, 21: 1500, 30: 1500 }, "Warden's Eye": { 11: 1503, 12: 1503, 21: 1503, 30: 1503 }, Vanguard: 1504, Overcharged: { 11: 1507, 12: 1507, 21: 1507, 30: 1507 }, "Anti-tower Socks": { 11: 1508, 12: 1508, 21: 1508, 30: 1508 }, Gusto: { 11: 1509, 12: 1509, 21: 1509, 30: 1509 }, "Phreakish Gusto": { 11: 1510, 12: 1510, 21: 1510, 30: 1510 }, "Super Mech Armor": { 11: 1511, 12: 1511, 21: 1511, 30: 1511 }, "Super Mech Power Field": { 11: 1512, 12: 1512, 21: 1512, 30: 1512 }, "Turret Plating": { 11: 1515, 12: 1515, 21: 1515, 30: 1515 }, OvererchargedHA: { 11: 1520, 12: 1520, 21: 1520, 30: 1520 }, "Tower Power-Up": { 11: 1522, 12: 1522, 21: 1522, 30: 1522 }, "Health Potion": { 11: 2003, 12: 2003, 21: 2003 }, "Total Biscuit of Everlasting Will": { 11: 2010, 12: 2010, 21: 2010, 30: 2010 }, "Kircheis Shard": 2015, "Steel Sigil": { 11: 2019, 12: 2019, 21: 2019 }, "The Brutalizer": { 11: 2020, 12: 2020, 21: 2020 }, Tunneler: { 11: 2021, 12: 2021, 21: 2021 }, "Glowing Mote": { 11: 2022, 12: 2022, 21: 2022, 30: 222022 }, "Refillable Potion": { 11: 2031, 12: 2031, 21: 2031 }, "Corrupting Potion": { 11: 2033, 21: 2033 }, "Guardian's Amulet": { 30: 2049 }, "Guardian's Shroud": { 30: 2050 }, "Guardian's Horn": { 12: 2051, 30: 222051 }, "Poro-Snax": { 11: 2052, 12: 2052, 21: 2052, 30: 2052 }, "Control Ward": { 11: 2055 }, "Stealth Ward": { 11: 3340, 21: 3340 }, "Shurelya's Battlesong": { 11: 2065, 12: 2065, 21: 2065, 30: 222065 }, "Elixir of Iron": { 11: 2138, 12: 2138, 21: 2138 }, "Elixir of Sorcery": { 11: 2139, 12: 2139, 21: 2139 }, "Elixir of Wrath": { 11: 2140, 12: 2140, 21: 2140 }, "Cappa Juice": { 12: 2141, 30: 222141 }, "Juice of Power": { 30: 2142 }, "Juice of Vitality": { 30: 2143 }, "Juice of Haste": { 30: 2144 }, "Lucky Dice": { 30: 2145 }, "Elixir of Skill": { 11: 2150, 12: 2150, 21: 2150 }, "Elixir of Avarice": { 11: 2151, 12: 2151, 21: 2151 }, "Elixir of Force": { 11: 2152, 12: 2152, 21: 2152 }, "Minion Dematerializer": { 11: 2403, 12: 2403, 21: 2403 }, "Seeker's Armguard": { 11: 2420, 12: 2420, 21: 2420 }, "Shattered Armguard": { 11: 2421, 12: 2421, 21: 2421 }, "Slightly Magical Footwear": { 11: 2422, 12: 2422, 21: 2422 }, "Overlord's Bloodmail": { 11: 2501, 12: 2501, 21: 2501, 30: 447111 }, "Unending Despair": { 11: 2502, 12: 2502, 21: 2502, 30: 222502 }, "Blackfire Torch": { 11: 2503, 12: 2503, 21: 2503, 30: 222503 }, "Kaenic Rookern": { 11: 2504, 12: 2504, 21: 2504, 30: 222504 }, "Fated Ashes": { 11: 2508, 12: 2508, 21: 2508 }, Evenshroud: 3001, Trailblazer: { 11: 3002, 12: 3002, 21: 3002 }, "Archangel's Staff": { 11: 3003, 12: 3003, 21: 3003, 30: 223003 }, Manamune: { 11: 3004, 12: 3004, 21: 3004, 30: 223004 }, Ghostcrawlers: { 21: 3005, 30: 223005 }, "Berserker's Greaves": { 11: 3006, 12: 3006, 21: 3006, 30: 223006 }, "Boots of Swiftness": { 11: 3009, 12: 3009, 21: 3009, 30: 223009 }, "Symbiotic Soles": { 11: 3010, 21: 3010 }, "Chemtech Putrifier": { 11: 3011, 12: 3011, 21: 3011, 30: 223011 }, "Chalice of Blessing": 3012, "Synchronized Souls": { 11: 3013, 21: 3013 }, "Sorcerer's Shoes": { 11: 3020, 12: 3020, 21: 3020, 30: 223020 }, "Lifewell Pendant": 3023, "Glacial Buckler": { 11: 3024, 12: 3024, 21: 3024 }, "Guardian Angel": { 11: 3026, 30: 223026 }, "Infinity Edge": { 11: 3031, 12: 3031, 21: 3031, 30: 223031 }, "Yun Tal Wildarrows": { 11: 3032, 12: 3032, 21: 3032 }, "Mortal Reminder": { 11: 3033, 12: 3033, 21: 3033, 30: 223033 }, "Last Whisper": { 11: 3035, 12: 3035, 21: 3035 }, "Lord Dominik's Regards": { 11: 3036, 12: 3036, 21: 3036, 30: 223036 }, "Atma's Reckoning": { 21: 3039, 30: 223039 }, "Seraph's Embrace": { 11: 3040, 12: 3040, 21: 3040, 30: 223040 }, "Mejai's Soulstealer": { 11: 3041 }, Muramana: { 11: 3042, 12: 3042, 21: 3042, 30: 223042 }, Phage: { 11: 3044, 12: 3044, 21: 3044 }, "Phantom Dancer": { 11: 3046, 12: 3046, 21: 3046, 30: 223046 }, "Plated Steelcaps": { 11: 3047, 12: 3047, 21: 3047, 30: 223047 }, "Zeke's Convergence": { 11: 3050, 12: 3050, 21: 3050, 30: 223050 }, "Hearthbound Axe": { 11: 3051, 12: 3051, 21: 3051 }, "Sterak's Gage": { 11: 3053, 12: 3053, 21: 3053, 30: 223053 }, Sheen: { 11: 3057, 12: 3057, 21: 3057, 30: 223057 }, "Spirit Visage": { 11: 3065, 12: 3065, 21: 3065, 30: 223065 }, "Winged Moonplate": { 11: 3066, 12: 3066, 21: 3066 }, Kindlegem: { 11: 3067, 12: 3067, 21: 3067, 30: 223067 }, "Sunfire Aegis": { 11: 3068, 12: 3068, 21: 3068, 30: 223068 }, "Tear of the Goddess": { 11: 3070, 12: 3070, 21: 3070 }, "Black Cleaver": { 11: 3071, 12: 3071, 21: 3071, 30: 223071 }, Bloodthirster: { 11: 3072, 12: 3072, 21: 3072, 30: 223072 }, "Experimental Hexplate": { 11: 3073, 12: 3073, 21: 3073, 30: 223073 }, "Ravenous Hydra": { 11: 3074, 12: 3074, 21: 3074, 30: 223074 }, Thornmail: { 11: 3075, 12: 3075, 21: 3075, 30: 223075 }, "Bramble Vest": { 11: 3076, 12: 3076, 21: 3076 }, Tiamat: { 11: 3077, 12: 3077, 21: 3077 }, "Trinity Force": { 11: 3078, 12: 3078, 21: 3078, 30: 223078 }, "Warden's Mail": { 11: 3082, 12: 3082, 21: 3082 }, "Warmog's Armor": { 11: 3083, 12: 3083, 21: 3083 }, Heartsteel: { 11: 3084, 12: 3084, 21: 3084, 30: 223084 }, "Runaan's Hurricane": { 11: 3085, 12: 3085, 21: 3085, 30: 223085 }, Zeal: { 11: 3086, 12: 3086, 21: 3086 }, "Statikk Shiv": { 11: 3087, 12: 3087, 21: 3087, 30: 223087 }, "Rabadon's Deathcap": { 11: 3089, 12: 3089, 21: 3089, 30: 223089 }, "Wit's End": { 11: 3091, 12: 3091, 21: 3091, 30: 223091 }, "Rapid Firecannon": { 11: 3094, 12: 3094, 21: 3094, 30: 223094 }, Stormrazor: { 30: 223095 }, "Lich Bane": { 11: 3100, 12: 3100, 21: 3100, 30: 223100 }, "Banshee's Veil": { 11: 3102, 12: 3102, 21: 3102, 30: 223102 }, "Aegis of the Legion": { 30: 223105 }, Redemption: { 11: 3107, 12: 3107, 21: 3107, 30: 223107 }, "Fiendish Codex": { 11: 3108, 12: 3108, 21: 3108 }, "Knight's Vow": { 11: 3109, 12: 3109, 21: 3109, 30: 223109 }, "Frozen Heart": { 11: 3110, 12: 3110, 21: 3110, 30: 223110 }, "Mercury's Treads": { 11: 3111, 12: 3111, 21: 3111, 30: 223111 }, "Guardian's Orb": { 12: 3112, 30: 223112 }, "Aether Wisp": { 11: 3113, 12: 3113, 21: 3113 }, "Forbidden Idol": { 11: 3114, 12: 3114, 21: 3114 }, "Nashor's Tooth": { 11: 3115, 12: 3115, 21: 3115, 30: 223115 }, "Rylai's Crystal Scepter": { 11: 3116, 12: 3116, 21: 3116, 30: 223116 }, "Mobility Boots": { 11: 3117, 12: 3117, 21: 3117 }, Malignance: { 11: 3118, 12: 3118, 21: 3118, 30: 223118 }, "Winter's Approach": { 11: 3119, 12: 3119, 21: 3119, 30: 223119 }, Fimbulwinter: { 11: 3121, 12: 3121, 21: 3121, 30: 223121 }, "Executioner's Calling": { 11: 3123, 12: 3123, 21: 3123 }, "Guinsoo's Rageblade": { 11: 3124, 12: 3124, 21: 3124, 30: 223124 }, "Deathfire Grasp": { 21: 3128 }, "Sword of the Divine": { 21: 3131, 30: 443060 }, "Caulfield's Warhammer": { 11: 3133, 12: 3133, 21: 3133 }, "Serrated Dirk": { 11: 3134, 12: 3134, 21: 3134 }, "Void Staff": { 11: 3135, 12: 3135, 21: 3135, 30: 223135 }, Cryptbloom: { 11: 3137, 12: 3137, 21: 3137, 30: 223137 }, "Mercurial Scimitar": { 11: 3139, 12: 3139, 21: 3139, 30: 223139 }, "Quicksilver Sash": { 11: 3140, 12: 3140, 21: 3140 }, "Youmuu's Ghostblade": { 11: 3142, 12: 3142, 21: 3142, 30: 223142 }, "Randuin's Omen": { 11: 3143, 12: 3143, 21: 3143, 30: 223143 }, "Scout's Slingshot": { 11: 3144, 12: 3144, 21: 3144 }, "Hextech Alternator": { 11: 3145, 12: 3145, 21: 3145 }, "Hextech Gunblade": { 21: 3146, 30: 223146 }, "Haunting Guise": { 11: 3147, 12: 3147, 21: 3147 }, "Hextech Rocketbelt": { 11: 3152, 12: 3152, 21: 3152, 30: 223152 }, "Blade of The Ruined King": { 11: 3153, 12: 3153, 21: 3153, 30: 223153 }, Hexdrinker: { 11: 3155, 12: 3155, 21: 3155 }, "Maw of Malmortius": { 11: 3156, 12: 3156, 21: 3156, 30: 223156 }, "Zhonya's Hourglass": { 11: 3157, 12: 3157, 21: 3157, 30: 223157 }, "Ionian Boots of Lucidity": { 11: 3158, 12: 3158, 21: 3158, 30: 223158 }, "Spear of Shojin": { 11: 3161, 12: 3161, 21: 3161, 30: 223161 }, Morellonomicon: { 11: 3165, 12: 3165, 21: 3165, 30: 223165 }, Zephyr: { 11: 3172, 12: 3172, 21: 3172 }, "Guardian's Blade": { 12: 3177, 30: 223177 }, "Umbral Glaive": { 11: 3179, 12: 3179, 21: 3179 }, Hullbreaker: { 11: 3181, 12: 3181, 21: 3181, 30: 223181 }, "Guardian's Hammer": { 12: 3184, 30: 223184 }, "Locket of the Iron Solari": { 11: 3190, 12: 3190, 21: 3190, 30: 223190 }, "Gargoyle Stoneplate": { 30: 443193 }, "Spectre's Cowl": { 11: 3211, 12: 3211, 21: 3211 }, "Mikael's Blessing": { 11: 3222, 12: 3222, 21: 3222, 30: 223222 }, Terminus: { 11: 3302, 12: 3302, 21: 3302, 30: 223302 }, "Scarecrow Effigy": { 11: 3330, 12: 3330, 21: 3330, 30: 3330 }, "Arcane Sweeper": { 30: 3348 }, "Lucent Singularity": 3349, "Farsight Alteration": { 11: 3363, 12: 3363, 21: 3363 }, "Oracle Lens": { 11: 3364, 21: 3364 }, "Your Cut": { 11: 3400, 12: 3400, 21: 3400, 30: 3400 }, "Rite Of Ruin": { 30: 3430 }, "Ardent Censer": { 11: 3504, 12: 3504, 21: 3504, 30: 223504 }, "Essence Reaver": { 11: 3508, 12: 3508, 21: 3508, 30: 223508 }, "Kalista's Black Spear": { 11: 3599, 12: 3599, 21: 3599, 30: 3599 }, "Sylas' Black Spear": { 11: 3600, 12: 3600, 21: 3600, 30: 3600 }, "Dead Man's Plate": { 11: 3742, 12: 3742, 21: 3742, 30: 223742 }, "Titanic Hydra": { 11: 3748, 12: 3748, 21: 3748, 30: 223748 }, "Crystalline Bracer": { 11: 3801, 12: 3801, 21: 3801 }, "Lost Chapter": { 11: 3802, 12: 3802, 21: 3802 }, "Catalyst of Aeons": { 11: 3803, 12: 3803, 21: 3803 }, "Edge of Night": { 11: 3814, 12: 3814, 21: 3814, 30: 223814 }, "Spellthief's Edge": 3850, Frostfang: 3851, "Shard of True Ice": 3853, "Steel Shoulderguards": 3854, "Runesteel Spaulders": 3855, "Pauldrons of Whiterock": 3857, "Relic Shield": 3858, "Targon's Buckler": 3859, "Bulwark of the Mountain": 3860, "Spectral Sickle": 3862, "Harrowing Crescent": 3863, "Black Mist Scythe": 3864, "World Atlas": { 11: 3865 }, "Runic Compass": { 11: 3866 }, "Bounty of Worlds": { 11: 3867 }, "Celestial Opposition": { 11: 3869 }, "Dream Maker": { 11: 3870 }, "Zaz'Zak's Realmspike": { 11: 3871 }, "Solstice Sleigh": { 11: 3876 }, Bloodsong: { 11: 3877 }, "Fire at Will": { 11: 3901, 12: 3901, 21: 3901, 30: 3901 }, "Death's Daughter": { 11: 3902, 12: 3902, 21: 3902, 30: 3902 }, "Raise Morale": { 11: 3903, 12: 3903, 21: 3903, 30: 3903 }, "Oblivion Orb": { 11: 3916, 12: 3916, 21: 3916 }, Lifeline: { 21: 4003 }, "Spectral Cutlass": { 21: 4004, 30: 224004 }, "Imperial Mandate": { 11: 4005, 12: 4005, 21: 4005, 30: 224005 }, "Bloodletter's Curse": { 30: 4010 }, "Sword of Blossoming Dawn": { 30: 4011 }, "Sin Eater": 4012, "Lightning Braid": 4013, "Frozen Mallet": 4014, Perplexity: { 30: 4015 }, "Wordless Promise": { 30: 4016 }, "Hellfire Hatchet": { 30: 4017 }, "Force of Nature": { 11: 4401, 12: 4401, 21: 4401, 30: 224401 }, "Innervating Locket": { 21: 4402, 30: 447104 }, "The Golden Spatula": { 21: 4403, 30: 224403 }, "Horizon Focus": { 11: 4628, 12: 4628, 21: 4628, 30: 224628 }, "Cosmic Drive": { 11: 4629, 12: 4629, 21: 4629, 30: 224629 }, "Blighting Jewel": { 11: 4630, 12: 4630, 21: 4630 }, "Verdant Barrier": { 11: 4632, 12: 4632, 21: 4632 }, Riftmaker: { 11: 4633, 12: 4633, 21: 4633, 30: 224633 }, "Leeching Leer": { 11: 4635, 12: 4635, 21: 4635 }, "Night Harvester": { 11: 4636, 12: 4636, 21: 4636, 30: 444636 }, "Demonic Embrace": { 11: 4637, 12: 4637, 21: 4637, 30: 444637 }, "Watchful Wardstone": { 11: 4638 }, "Stirring Wardstone": { 11: 4641 }, "Bandleglass Mirror": { 11: 4642, 12: 4642, 21: 4642 }, "Vigilant Wardstone": { 11: 4643 }, "Crown of the Shattered Queen": { 30: 444644 }, Shadowflame: { 11: 4645, 12: 4645, 21: 4645, 30: 224645 }, Stormsurge: { 11: 4646, 12: 4646, 21: 4646, 30: 224646 }, "Ironspike Whip": 6029, "Silvermere Dawn": 6035, "Death's Dance": { 11: 6333, 12: 6333, 21: 6333, 30: 226333 }, "Chempunk Chainsword": { 11: 6609, 12: 6609, 21: 6609, 30: 226609 }, "Sundered Sky": { 11: 6610, 12: 6610, 21: 6610, 30: 226610 }, "Staff of Flowing Water": { 11: 6616, 12: 6616, 21: 6616, 30: 226616 }, "Moonstone Renewer": { 11: 6617, 12: 6617, 21: 6617, 30: 226617 }, "Echoes of Helia": { 11: 6620, 12: 6620, 21: 6620, 30: 226620 }, Dawncore: { 11: 6621, 12: 6621, 21: 6621, 30: 226621 }, Goredrinker: { 30: 226630 }, Stridebreaker: { 11: 6631, 12: 6631, 21: 6631, 30: 226631 }, "Divine Sunderer": { 30: 446632 }, "Liandry's Torment": { 11: 6653, 12: 6653, 21: 6653, 30: 226653 }, "Luden's Companion": { 11: 6655, 12: 6655, 21: 6655, 30: 226655 }, Everfrost: { 30: 446656 }, "Rod of Ages": { 11: 6657, 12: 6657, 21: 6657, 30: 226657 }, "Bami's Cinder": { 11: 6660, 12: 6660, 21: 6660 }, "Iceborn Gauntlet": { 11: 6662, 12: 6662, 21: 6662, 30: 226662 }, "Hollow Radiance": { 11: 6664, 12: 6664, 21: 6664, 30: 226664 }, "Jak'Sho, The Protean": { 11: 6665, 12: 6665, 21: 6665, 30: 226665 }, "Radiant Virtue": { 30: 446667 }, Noonquiver: { 11: 6670, 12: 6670, 21: 6670 }, Galeforce: { 30: 446671 }, "Kraken Slayer": { 11: 6672, 12: 6672, 21: 6672, 30: 226672 }, "Immortal Shieldbow": { 11: 6673, 12: 6673, 21: 6673, 30: 226673 }, "Navori Flickerblade": { 11: 6675, 12: 6675, 21: 6675, 30: 226675 }, "The Collector": { 11: 6676, 12: 6676, 21: 6676, 30: 226676 }, Rageknife: 6677, Rectrix: { 11: 6690, 12: 6690, 21: 6690 }, "Duskblade of Draktharr": { 30: 446691 }, Eclipse: { 11: 6692, 12: 6692, 21: 6692, 30: 226692 }, "Prowler's Claw": { 11: 6693, 12: 6693, 21: 6693, 30: 446693 }, "Serylda's Grudge": { 11: 6694, 12: 6694, 21: 6694, 30: 226694 }, "Serpent's Fang": { 11: 6695, 12: 6695, 21: 6695, 30: 226695 }, "Axiom Arc": { 11: 6696, 12: 6696, 21: 6696, 30: 226696 }, Hubris: { 11: 6697, 12: 126697, 21: 6697, 30: 226697 }, "Profane Hydra": { 11: 6698, 12: 6698, 21: 6698, 30: 226698 }, "Voltaic Cyclosword": { 11: 6699, 12: 6699, 21: 6699, 30: 226699 }, "Shield of the Rakkor": 6700, Opportunity: { 11: 6701, 12: 6701, 21: 6701, 30: 226701 }, "Gangplank Placeholder": { 11: 7050, 12: 7050, 21: 7050, 30: 7050 }, "Anathema's Chains": { 11: 8001, 12: 8001, 21: 8001, 30: 228001 }, "Abyssal Mask": { 11: 8020, 12: 8020, 21: 8020, 30: 228020 }, "Locked Weapon Slot": { 33: 9168 }, "Cyclonic Slicers": { 33: 9171 }, YuumiBot: { 33: 9172 }, "Radiant Field": { 33: 9173 }, "Statikk Sword": { 33: 9174 }, "Lioness's Lament": { 33: 9175 }, "Gatling Bunny-Guns": { 33: 9176 }, "Searing Shortbow": { 33: 9177 }, "The Annihilator": { 33: 9178 }, "Battle Bunny Crossbow": { 33: 9179 }, "UwU Blaster": { 33: 9180 }, "Vortex Glove": { 33: 9181 }, "Blade-o-rang": { 33: 9183 }, "Bunny Mega-Blast": { 33: 9184 }, "Anti-Shark Sea Mine": { 33: 9185 }, "T.I.B.B.E.R.S": { 33: 9187 }, "Ani-Mines": { 33: 9188 }, "Final City Transit": { 33: 9189 }, "Echoing Batblades": { 33: 9190 }, "Paw Print Poisoner": { 33: 9192 }, "Iceblast Armor": { 33: 9193 }, "Unceasing Cyclone": { 33: 9271 }, YuumiBot_Final_FINAL: { 33: 9272 }, "Explosive Embrace": { 33: 9273 }, "Prumbis's Electrocarver": { 33: 9274 }, "Enveloping Light": { 33: 9275 }, "Double Bun-Bun Barrage": { 33: 9276 }, "Evolved Embershot": { 33: 9277 }, Animapocalypse: { 33: 9278 }, "Bunny Prime Ballista": { 33: 9279 }, "OwO Blaster": { 33: 9280 }, "Tempest's Gauntlet": { 33: 9281 }, "Quad-o-rang": { 33: 9283 }, "Rapid Rabbit Raindown": { 33: 9284 }, "Neverending Mobstomper": { 33: 9285 }, "T.I.B.B.E.R.S (B.E.E.G Edition)": { 33: 9287 }, "Jinx's Tri-Namite": { 33: 9288 }, "FC Limited Express": { 33: 9289 }, "Vayne's Chromablades": { 33: 9290 }, "Bearfoot Chem-Dispenser": { 33: 9292 }, "Deep Freeze": { 33: 9293 }, "Meow Meow": { 33: 9300 }, "Shield Slam": { 33: 9301 }, "Sound Wave": { 33: 9302 }, "Pillory Swipe": { 33: 9303 }, "Steel Tempest": { 33: 9304 }, "Tentacle Slam": { 33: 9305 }, "Winged Dagger": { 33: 9306 }, "Guiding Hex": { 33: 9307 }, "Bunny Hop": { 33: 9308 }, "Battle Cat Barrage": { 33: 9400 }, "Light of the Lion": { 33: 9401 }, "Anima Echo": { 33: 9402 }, "Savage Slice": { 33: 9403 }, "Wandering Storms": { 33: 9404 }, "Grizzly Smash": { 33: 9405 }, "Lover's Ricochet": { 33: 9406 }, "Hopped-Up Hex": { 33: 9407 }, "Carrot Crash": { 33: 9408 }, "Stat Bonus": { 30: 220000 }, "Legendary Fighter Item": { 30: 220001 }, "Legendary Marksman Item": { 30: 220002 }, "Legendary Assassin Item": { 30: 220003 }, "Legendary Mage Item": { 30: 220004 }, "Legendary Tank Item": { 30: 220005 }, "Legendary Support Item": { 30: 220006 }, "Prismatic Item": { 30: 220007 }, "Guardian's Dirk": { 30: 223185 }, "Wooglet's Witchcap": { 30: 228002 }, Deathblade: { 30: 228003 }, "Adaptive Helm": { 30: 228004 }, "Obsidian Cleaver": { 30: 228005 }, "Sanguine Blade": { 30: 228006 }, Runeglaive: { 30: 228008 }, "Darksteel Talons": { 30: 443054 }, Fulmination: { 30: 443055 }, "Demon King's Crown": { 30: 443056 }, "Shield of Molten Stone": { 30: 443058 }, "Cloak of Starry Night": { 30: 443059 }, "Force Of Entropy": { 30: 443061 }, "Sanguine Gift": { 30: 443062 }, "Eleisa's Miracle": { 30: 443063 }, "Talisman Of Ascension": { 30: 443064 }, Hamstringer: { 30: 443069 }, "Turbo Chemtank": { 30: 443079 }, "Twin Mask": { 30: 443080 }, "Hexbolt Companion": { 30: 443081 }, "Reaper's Toll": { 30: 443090 }, "Mirage Blade": { 30: 447100 }, "Gambler's Blade": { 30: 447101 }, "Reality Fracture": { 30: 447102 }, "Hemomancer's Helm": { 30: 447103 }, "Empyrean Promise": { 30: 447105 }, Dragonheart: { 30: 447106 }, Decapitator: { 30: 447107 }, Runecarver: { 30: 447108 }, Cruelty: { 30: 447109 }, "Moonflair Spellblade": { 30: 447110 }, Flesheater: { 30: 447112 }, "Detonation Orb": { 30: 447113 }, Reverberation: { 30: 447114 }, Regicide: { 30: 447115 }, "Kinkou Jitte": { 30: 447116 }, "Pyromancer's Cloak": { 30: 447118 }, "Lightning Rod": { 30: 447119 }, "Diamond-Tipped Spear": { 30: 447120 }, "Twilight's Edge": { 30: 447121 }, "Black Hole Gauntlet": { 30: 447122 }, Puppeteer: { 30: 447123 } };
4
4
  export const bootsItemIds = { 1001: true, 2422: true, 3005: true, 3006: true, 3009: true, 3010: true, 3013: true, 3020: true, 3047: true, 3111: true, 3117: true, 3158: true, 3172: true, 223005: true, 223006: true, 223009: true, 223020: true, 223047: true, 223111: true, 223158: true };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lol-constants",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "League of Legends constants, functions, and types. Provides a plathera of functions to easily convert between ID, Name, and Key for champions, items, summoner spells, and runes.",
5
5
  "license": "MIT",
6
6
  "type": "module",