Initial commit
This commit is contained in:
7
dota-random-builds-back/data/aspects.ts
Normal file
7
dota-random-builds-back/data/aspects.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export const aspects = [
|
||||
'Carry',
|
||||
'Support',
|
||||
'Roamer',
|
||||
'Jungler',
|
||||
'Pusher'
|
||||
]
|
||||
128
dota-random-builds-back/data/facets.py
Normal file
128
dota-random-builds-back/data/facets.py
Normal file
@@ -0,0 +1,128 @@
|
||||
# Hero Facets data from Dota 2 patch 7.36+
|
||||
# Each hero has 2 facets that modify their abilities
|
||||
|
||||
HERO_FACETS = {
|
||||
# Strength Heroes
|
||||
"Abaddon": ["Mephitic Shroud", "The Quickening"],
|
||||
"Alchemist": ["Seed Money", "Mixologist"],
|
||||
"Axe": ["One Man Army", "Call Out"],
|
||||
"Beastmaster": ["Wild Hunt", "Beast Mode"],
|
||||
"Brewmaster": ["Roll Out the Barrel", "Drunken Master"],
|
||||
"Bristleback": ["Seeing Red", "Prickly"],
|
||||
"Centaur Warrunner": ["Horsepower", "Rawhide"],
|
||||
"Chaos Knight": ["Irrationality", "Schism"],
|
||||
"Clockwerk": ["Expanded Armature", "Overclock"],
|
||||
"Dawnbreaker": ["Solar Guardian", "Gleaming Hammer"],
|
||||
"Doom": ["Impending Doom", "Gluttony"],
|
||||
"Dragon Knight": ["Wyrm's Wrath", "Corrosive Dragon"],
|
||||
"Earth Spirit": ["Ready to Roll", "Stepping Stone"],
|
||||
"Earthshaker": ["Tectonic Buildup", "Slugger"],
|
||||
"Elder Titan": ["Deconstruction", "Momentum"],
|
||||
"Huskar": ["Bloodbath", "Incendiary"],
|
||||
"Kunkka": ["Grog Blossom", "Tideskipper"],
|
||||
"Legion Commander": ["Stonehall Plate", "Spoils of War"],
|
||||
"Lifestealer": ["Corpse Eater", "Rage Demon"],
|
||||
"Lycan": ["Spirit Wolves", "Alpha Wolves"],
|
||||
"Magnus": ["Reverse Polarity Field", "Hot-Blooded"],
|
||||
"Mars": ["Shock Troops", "Arena of Blood"],
|
||||
"Night Stalker": ["Blinding Void", "Heart of Darkness"],
|
||||
"Ogre Magi": ["Fat Chances", "Learning Curve"],
|
||||
"Omniknight": ["Degen Aura", "Ardent Revelation"],
|
||||
"Phoenix": ["Dying Light", "Spread the Fire"],
|
||||
"Primal Beast": ["Ferocity", "Irascible"],
|
||||
"Pudge": ["Flayers Hook", "Fresh Meat"],
|
||||
"Slardar": ["Brineguard", "Leg Day"],
|
||||
"Snapfire": ["Ricochet II", "Full Bore"],
|
||||
"Spirit Breaker": ["Imbalanced", "Bulldoze"],
|
||||
"Sven": ["Heavy Plate", "Warcry Aura"],
|
||||
"Tidehunter": ["Blubber", "Kraken Swell"],
|
||||
"Timbersaw": ["Flamethrower", "Shredder"],
|
||||
"Tiny": ["Crash Landing", "Insurmountable"],
|
||||
"Treant Protector": ["Sapling", "Primeval Power"],
|
||||
"Tusk": ["Drinking Buddies", "Overpowering Chill"],
|
||||
"Underlord": ["Abyssal Horde", "Fiend's Gate"],
|
||||
"Undying": ["Rotting Mitts", "Ripped"],
|
||||
"Wraith King": ["Bone Guard", "Death's Hallow"],
|
||||
|
||||
# Agility Heroes
|
||||
"Anti-Mage": ["Magebane", "Mana Thirst"],
|
||||
"Arc Warden": ["Order", "Disorder"],
|
||||
"Bloodseeker": ["Arterial Spray", "Sanguivore"],
|
||||
"Bounty Hunter": ["Through and Through", "Big Game Hunter"],
|
||||
"Broodmother": ["Necrotic Webs", "Feeding Frenzy"],
|
||||
"Clinkz": ["Bone and Arrow", "Engulfing Step"],
|
||||
"Drow Ranger": ["Sidestep", "Vantage Point"],
|
||||
"Ember Spirit": ["Double Impact", "Chain Gang"],
|
||||
"Faceless Void": ["Chronosphere Teamwork", "Distortion Field"],
|
||||
"Gyrocopter": ["Afterburner", "Chop Shop"],
|
||||
"Hoodwink": ["Treebounce Trickshot", "Go Nuts"],
|
||||
"Juggernaut": ["Bladestorm", "Agigain"],
|
||||
"Lone Druid": ["Bear Necessities", "Unbearable"],
|
||||
"Luna": ["Lunar Orbit", "Moonshield"],
|
||||
"Medusa": ["Engorged", "Monstrous"],
|
||||
"Meepo": ["More Meepo", "Pack Rat"],
|
||||
"Mirana": ["Moonlight", "Shooting Star"],
|
||||
"Monkey King": ["Simian Stride", "Wukong's Faithful"],
|
||||
"Muerta": ["Ofrenda", "Dance of the Dead"],
|
||||
"Naga Siren": ["Aquatic Dominance", "Deluge"],
|
||||
"Nyx Assassin": ["Scuttle", "Spelunker"],
|
||||
"Pangolier": ["Double Jump", "Thunderbolt"],
|
||||
"Phantom Assassin": ["Methodical", "Immaterial"],
|
||||
"Phantom Lancer": ["Convergence", "Phantom Edge"],
|
||||
"Razor": ["Dynamo", "Shocking"],
|
||||
"Riki": ["Exterminator", "Infiltrator"],
|
||||
"Shadow Fiend": ["Lasting Presence", "Shadowmire"],
|
||||
"Slark": ["Leeching Leash", "Dark Reef Renegade"],
|
||||
"Sniper": ["Ghillie Suit", "Scattershot"],
|
||||
"Spectre": ["Forsaken", "Twist the Knife"],
|
||||
"Templar Assassin": ["Refractor", "Third Strike"],
|
||||
"Terrorblade": ["Soul Fragment", "Condemned"],
|
||||
"Troll Warlord": ["Bad Influence", "Insensitive"],
|
||||
"Ursa": ["Bear Down", "Grudge Bearer"],
|
||||
"Viper": ["Predator", "Poison Burst"],
|
||||
"Weaver": ["Skitterstep", "Hivemind"],
|
||||
|
||||
# Intelligence Heroes
|
||||
"Ancient Apparition": ["Bone Chill", "Exposure"],
|
||||
"Bane": ["Dream Haunter", "Sleepwalk"],
|
||||
"Batrider": ["Arsonist", "Stoked"],
|
||||
"Chen": ["Centaur Convert", "Totemic"],
|
||||
"Crystal Maiden": ["Cold Comfort", "Frozen Expanse"],
|
||||
"Dark Seer": ["Heart of Battle", "Quick Wit"],
|
||||
"Dark Willow": ["Thorny Thicket", "Wilding"],
|
||||
"Dazzle": ["Nothl Boon", "Poison Bloom"],
|
||||
"Death Prophet": ["Spirit Collector", "Mourning Ritual"],
|
||||
"Disruptor": ["Thunderstorm", "Kinetic Fence"],
|
||||
"Enchantress": ["Overprotective Wisps", "Little Friends"],
|
||||
"Enigma": ["Event Horizon", "Gravity Well"],
|
||||
"Grimstroke": ["Fine Art", "Inkstigate"],
|
||||
"Invoker": ["Elitist", "Magus"],
|
||||
"Jakiro": ["Liquid Fire", "Liquid Frost"],
|
||||
"Keeper of the Light": ["Solar Bind", "Recall"],
|
||||
"Leshrac": ["Diabolic Edict Charges", "Misery"],
|
||||
"Lich": ["Growing Cold", "Ice Spire"],
|
||||
"Lina": ["Slow Burn", "Thermal Runaway"],
|
||||
"Lion": ["Fist of Death", "Gobble Up"],
|
||||
"Nature's Prophet": ["Ironwood Treant", "Curse of the Forest"],
|
||||
"Necrophos": ["Rapid Decay", "Profane Potency"],
|
||||
"Oracle": ["Clairvoyant Curse", "Prognosticate"],
|
||||
"Outworld Destroyer": ["Obsidian Decimator", "Ominous Discernment"],
|
||||
"Puck": ["Jostling Rift", "Curveball"],
|
||||
"Pugna": ["Siphoning Ward", "Rewards of Ruin"],
|
||||
"Queen of Pain": ["Succubus", "Selfish Scream"],
|
||||
"Rubick": ["Frugal Filch", "Arcane Supremacy"],
|
||||
"Shadow Demon": ["Promulgate", "Menace"],
|
||||
"Shadow Shaman": ["Cluster Cluck", "Massive Serpent Wards"],
|
||||
"Silencer": ["Irrepressible", "Reverberating Silence"],
|
||||
"Skywrath Mage": ["Staff of the Scion", "Shield of the Scion"],
|
||||
"Storm Spirit": ["Shock Collar", "Static Slide"],
|
||||
"Techies": ["Squee", "Spleen"],
|
||||
"Tinker": ["Repair Bots", "Translocator"],
|
||||
"Visage": ["Sepulchre", "Death Toll"],
|
||||
"Void Spirit": ["Sanctuary", "Aether Remnant"],
|
||||
"Warlock": ["Black Grimoire", "Champion of Gorroth"],
|
||||
"Windranger": ["Journeyman", "Whirlwind"],
|
||||
"Winter Wyvern": ["Heal Wyvern", "Essence Devourer"],
|
||||
"Witch Doctor": ["Cleft Death", "Voodoo Festeration"],
|
||||
"Zeus": ["Livewire", "Lightning Hands"],
|
||||
}
|
||||
134
dota-random-builds-back/data/heroes.ts
Normal file
134
dota-random-builds-back/data/heroes.ts
Normal file
@@ -0,0 +1,134 @@
|
||||
export interface Hero {
|
||||
id: string
|
||||
name: string
|
||||
primary: 'Strength' | 'Agility' | 'Intelligence'
|
||||
}
|
||||
|
||||
export const heroes: Hero[] = [
|
||||
{ id: 'abaddon', name: 'Abaddon', primary: 'Strength' },
|
||||
{ id: 'alchemist', name: 'Alchemist', primary: 'Strength' },
|
||||
{ id: 'axe', name: 'Axe', primary: 'Strength' },
|
||||
{ id: 'beastmaster', name: 'Beastmaster', primary: 'Strength' },
|
||||
{ id: 'brewmaster', name: 'Brewmaster', primary: 'Strength' },
|
||||
{ id: 'bristleback', name: 'Bristleback', primary: 'Strength' },
|
||||
{ id: 'centaur', name: 'Centaur Warrunner', primary: 'Strength' },
|
||||
{ id: 'chaos_knight', name: 'Chaos Knight', primary: 'Strength' },
|
||||
{ id: 'clockwerk', name: 'Clockwerk', primary: 'Strength' },
|
||||
{ id: 'dawnbreaker', name: 'Dawnbreaker', primary: 'Strength' },
|
||||
{ id: 'doom', name: 'Doom', primary: 'Strength' },
|
||||
{ id: 'dragon_knight', name: 'Dragon Knight', primary: 'Strength' },
|
||||
{ id: 'earth_spirit', name: 'Earth Spirit', primary: 'Strength' },
|
||||
{ id: 'earthshaker', name: 'Earthshaker', primary: 'Strength' },
|
||||
{ id: 'elder_titan', name: 'Elder Titan', primary: 'Strength' },
|
||||
{ id: 'huskar', name: 'Huskar', primary: 'Strength' },
|
||||
{ id: 'kunkka', name: 'Kunkka', primary: 'Strength' },
|
||||
{ id: 'legion_commander', name: 'Legion Commander', primary: 'Strength' },
|
||||
{ id: 'lifestealer', name: 'Lifestealer', primary: 'Strength' },
|
||||
{ id: 'lycan', name: 'Lycan', primary: 'Strength' },
|
||||
{ id: 'magnus', name: 'Magnus', primary: 'Strength' },
|
||||
{ id: 'mars', name: 'Mars', primary: 'Strength' },
|
||||
{ id: 'night_stalker', name: 'Night Stalker', primary: 'Strength' },
|
||||
{ id: 'ogre_magi', name: 'Ogre Magi', primary: 'Strength' },
|
||||
{ id: 'omniknight', name: 'Omniknight', primary: 'Strength' },
|
||||
{ id: 'phoenix', name: 'Phoenix', primary: 'Strength' },
|
||||
{ id: 'primal_beast', name: 'Primal Beast', primary: 'Strength' },
|
||||
{ id: 'pudge', name: 'Pudge', primary: 'Strength' },
|
||||
{ id: 'slardar', name: 'Slardar', primary: 'Strength' },
|
||||
{ id: 'snapfire', name: 'Snapfire', primary: 'Strength' },
|
||||
{ id: 'spirit_breaker', name: 'Spirit Breaker', primary: 'Strength' },
|
||||
{ id: 'sven', name: 'Sven', primary: 'Strength' },
|
||||
{ id: 'tidehunter', name: 'Tidehunter', primary: 'Strength' },
|
||||
{ id: 'timbersaw', name: 'Timbersaw', primary: 'Strength' },
|
||||
{ id: 'tiny', name: 'Tiny', primary: 'Strength' },
|
||||
{ id: 'treant', name: 'Treant Protector', primary: 'Strength' },
|
||||
{ id: 'tusk', name: 'Tusk', primary: 'Strength' },
|
||||
{ id: 'underlord', name: 'Underlord', primary: 'Strength' },
|
||||
{ id: 'undying', name: 'Undying', primary: 'Strength' },
|
||||
{ id: 'wraith_king', name: 'Wraith King', primary: 'Strength' },
|
||||
|
||||
/* -------------------- Agility -------------------- */
|
||||
|
||||
{ id: 'anti_mage', name: 'Anti-Mage', primary: 'Agility' },
|
||||
{ id: 'arc_warden', name: 'Arc Warden', primary: 'Agility' },
|
||||
{ id: 'bloodseeker', name: 'Bloodseeker', primary: 'Agility' },
|
||||
{ id: 'bounty_hunter', name: 'Bounty Hunter', primary: 'Agility' },
|
||||
{ id: 'broodmother', name: 'Broodmother', primary: 'Agility' },
|
||||
{ id: 'clinkz', name: 'Clinkz', primary: 'Agility' },
|
||||
{ id: 'drow_ranger', name: 'Drow Ranger', primary: 'Agility' },
|
||||
{ id: 'ember_spirit', name: 'Ember Spirit', primary: 'Agility' },
|
||||
{ id: 'faceless_void', name: 'Faceless Void', primary: 'Agility' },
|
||||
{ id: 'gyrocopter', name: 'Gyrocopter', primary: 'Agility' },
|
||||
{ id: 'hoodwink', name: 'Hoodwink', primary: 'Agility' },
|
||||
{ id: 'juggernaut', name: 'Juggernaut', primary: 'Agility' },
|
||||
{ id: 'lone_druid', name: 'Lone Druid', primary: 'Agility' },
|
||||
{ id: 'luna', name: 'Luna', primary: 'Agility' },
|
||||
{ id: 'medusa', name: 'Medusa', primary: 'Agility' },
|
||||
{ id: 'meepo', name: 'Meepo', primary: 'Agility' },
|
||||
{ id: 'mirana', name: 'Mirana', primary: 'Agility' },
|
||||
{ id: 'monkey_king', name: 'Monkey King', primary: 'Agility' },
|
||||
{ id: 'muerta', name: 'Muerta', primary: 'Agility' },
|
||||
{ id: 'naga_siren', name: 'Naga Siren', primary: 'Agility' },
|
||||
{ id: 'nyx_assassin', name: 'Nyx Assassin', primary: 'Agility' },
|
||||
{ id: 'pangolier', name: 'Pangolier', primary: 'Agility' },
|
||||
{ id: 'phantom_assassin', name: 'Phantom Assassin', primary: 'Agility' },
|
||||
{ id: 'phantom_lancer', name: 'Phantom Lancer', primary: 'Agility' },
|
||||
{ id: 'razor', name: 'Razor', primary: 'Agility' },
|
||||
{ id: 'riki', name: 'Riki', primary: 'Agility' },
|
||||
{ id: 'shadow_fiend', name: 'Shadow Fiend', primary: 'Agility' },
|
||||
{ id: 'slark', name: 'Slark', primary: 'Agility' },
|
||||
{ id: 'sniper', name: 'Sniper', primary: 'Agility' },
|
||||
{ id: 'spectre', name: 'Spectre', primary: 'Agility' },
|
||||
{ id: 'templar_assassin', name: 'Templar Assassin', primary: 'Agility' },
|
||||
{ id: 'terrorblade', name: 'Terrorblade', primary: 'Agility' },
|
||||
{ id: 'troll_warlord', name: 'Troll Warlord', primary: 'Agility' },
|
||||
{ id: 'ursa', name: 'Ursa', primary: 'Agility' },
|
||||
{ id: 'viper', name: 'Viper', primary: 'Agility' },
|
||||
{ id: 'weaver', name: 'Weaver', primary: 'Agility' },
|
||||
|
||||
/* -------------------- Intelligence -------------------- */
|
||||
|
||||
{ id: 'ancient_apparition', name: 'Ancient Apparition', primary: 'Intelligence' },
|
||||
{ id: 'bane', name: 'Bane', primary: 'Intelligence' },
|
||||
{ id: 'batrider', name: 'Batrider', primary: 'Intelligence' },
|
||||
{ id: 'chen', name: 'Chen', primary: 'Intelligence' },
|
||||
{ id: 'crystal_maiden', name: 'Crystal Maiden', primary: 'Intelligence' },
|
||||
{ id: 'dark_seer', name: 'Dark Seer', primary: 'Intelligence' },
|
||||
{ id: 'dark_willow', name: 'Dark Willow', primary: 'Intelligence' },
|
||||
{ id: 'dazzle', name: 'Dazzle', primary: 'Intelligence' },
|
||||
{ id: 'death_prophet', name: 'Death Prophet', primary: 'Intelligence' },
|
||||
{ id: 'disruptor', name: 'Disruptor', primary: 'Intelligence' },
|
||||
{ id: 'enchantress', name: 'Enchantress', primary: 'Intelligence' },
|
||||
{ id: 'enigma', name: 'Enigma', primary: 'Intelligence' },
|
||||
{ id: 'grimstroke', name: 'Grimstroke', primary: 'Intelligence' },
|
||||
{ id: 'invoker', name: 'Invoker', primary: 'Intelligence' },
|
||||
{ id: 'jakiro', name: 'Jakiro', primary: 'Intelligence' },
|
||||
{ id: 'keeper_of_the_light', name: 'Keeper of the Light', primary: 'Intelligence' },
|
||||
{ id: 'leshrac', name: 'Leshrac', primary: 'Intelligence' },
|
||||
{ id: 'lich', name: 'Lich', primary: 'Intelligence' },
|
||||
{ id: 'lina', name: 'Lina', primary: 'Intelligence' },
|
||||
{ id: 'lion', name: 'Lion', primary: 'Intelligence' },
|
||||
{ id: 'muerta', name: 'Muerta', primary: 'Intelligence' },
|
||||
{ id: 'nature_prophet', name: "Nature's Prophet", primary: 'Intelligence' },
|
||||
{ id: 'necrophos', name: 'Necrophos', primary: 'Intelligence' },
|
||||
{ id: 'ogre_magi_int', name: 'Ogre Magi (Int)', primary: 'Intelligence' },
|
||||
{ id: 'oracle', name: 'Oracle', primary: 'Intelligence' },
|
||||
{ id: 'outworld_destroyer', name: 'Outworld Destroyer', primary: 'Intelligence' },
|
||||
{ id: 'puck', name: 'Puck', primary: 'Intelligence' },
|
||||
{ id: 'pugna', name: 'Pugna', primary: 'Intelligence' },
|
||||
{ id: 'queen_of_pain', name: 'Queen of Pain', primary: 'Intelligence' },
|
||||
{ id: 'rubick', name: 'Rubick', primary: 'Intelligence' },
|
||||
{ id: 'shadow_demon', name: 'Shadow Demon', primary: 'Intelligence' },
|
||||
{ id: 'shadow_shaman', name: 'Shadow Shaman', primary: 'Intelligence' },
|
||||
{ id: 'silencer', name: 'Silencer', primary: 'Intelligence' },
|
||||
{ id: 'skywrath_mage', name: 'Skywrath Mage', primary: 'Intelligence' },
|
||||
{ id: 'storm_spirit', name: 'Storm Spirit', primary: 'Intelligence' },
|
||||
{ id: 'techies', name: 'Techies', primary: 'Intelligence' },
|
||||
{ id: 'tinker', name: 'Tinker', primary: 'Intelligence' },
|
||||
{ id: 'visage', name: 'Visage', primary: 'Intelligence' },
|
||||
{ id: 'void_spirit', name: 'Void Spirit', primary: 'Intelligence' },
|
||||
{ id: 'warlock', name: 'Warlock', primary: 'Intelligence' },
|
||||
{ id: 'windranger', name: 'Windranger', primary: 'Intelligence' },
|
||||
{ id: 'winter_wyvern', name: 'Winter Wyvern', primary: 'Intelligence' },
|
||||
{ id: 'witch_doctor', name: 'Witch Doctor', primary: 'Intelligence' },
|
||||
{ id: 'zeus', name: 'Zeus', primary: 'Intelligence' }
|
||||
];
|
||||
887
dota-random-builds-back/data/items.ts
Normal file
887
dota-random-builds-back/data/items.ts
Normal file
@@ -0,0 +1,887 @@
|
||||
export interface Item {
|
||||
id: string
|
||||
name: string
|
||||
}
|
||||
|
||||
|
||||
export const items: Item[] = [
|
||||
{
|
||||
"id": "item_town_portal_scroll",
|
||||
"name": "Town Portal Scroll"
|
||||
},
|
||||
{
|
||||
"id": "item_clarity",
|
||||
"name": "Clarity"
|
||||
},
|
||||
{
|
||||
"id": "item_faerie_fire",
|
||||
"name": "Faerie Fire"
|
||||
},
|
||||
{
|
||||
"id": "item_smoke_of_deceit",
|
||||
"name": "Smoke of Deceit"
|
||||
},
|
||||
{
|
||||
"id": "item_observer_ward",
|
||||
"name": "Observer Ward"
|
||||
},
|
||||
{
|
||||
"id": "item_sentry_ward",
|
||||
"name": "Sentry Ward"
|
||||
},
|
||||
{
|
||||
"id": "item_enchanted_mango",
|
||||
"name": "Enchanted Mango"
|
||||
},
|
||||
{
|
||||
"id": "item_healing_salve",
|
||||
"name": "Healing Salve"
|
||||
},
|
||||
{
|
||||
"id": "item_tango",
|
||||
"name": "Tango"
|
||||
},
|
||||
{
|
||||
"id": "item_blood_grenade",
|
||||
"name": "Blood Grenade"
|
||||
},
|
||||
{
|
||||
"id": "item_dust_of_appearance",
|
||||
"name": "Dust of Appearance"
|
||||
},
|
||||
{
|
||||
"id": "item_bottle",
|
||||
"name": "Bottle"
|
||||
},
|
||||
{
|
||||
"id": "item_aghanim_s_shard",
|
||||
"name": "Aghanim's Shard"
|
||||
},
|
||||
{
|
||||
"id": "item_aghanim_s_blessing",
|
||||
"name": "Aghanim's Blessing"
|
||||
},
|
||||
{
|
||||
"id": "item_observer_and_sentry_wards",
|
||||
"name": "Observer and Sentry Wards"
|
||||
},
|
||||
{
|
||||
"id": "item_iron_branch",
|
||||
"name": "Iron Branch"
|
||||
},
|
||||
{
|
||||
"id": "item_gauntlets_of_strength",
|
||||
"name": "Gauntlets of Strength"
|
||||
},
|
||||
{
|
||||
"id": "item_slippers_of_agility",
|
||||
"name": "Slippers of Agility"
|
||||
},
|
||||
{
|
||||
"id": "item_mantle_of_intelligence",
|
||||
"name": "Mantle of Intelligence"
|
||||
},
|
||||
{
|
||||
"id": "item_circlet",
|
||||
"name": "Circlet"
|
||||
},
|
||||
{
|
||||
"id": "item_belt_of_strength",
|
||||
"name": "Belt of Strength"
|
||||
},
|
||||
{
|
||||
"id": "item_band_of_elvenskin",
|
||||
"name": "Band of Elvenskin"
|
||||
},
|
||||
{
|
||||
"id": "item_robe_of_the_magi",
|
||||
"name": "Robe of the Magi"
|
||||
},
|
||||
{
|
||||
"id": "item_crown",
|
||||
"name": "Crown"
|
||||
},
|
||||
{
|
||||
"id": "item_ogre_axe",
|
||||
"name": "Ogre Axe"
|
||||
},
|
||||
{
|
||||
"id": "item_blade_of_alacrity",
|
||||
"name": "Blade of Alacrity"
|
||||
},
|
||||
{
|
||||
"id": "item_staff_of_wizardry",
|
||||
"name": "Staff of Wizardry"
|
||||
},
|
||||
{
|
||||
"id": "item_diadem",
|
||||
"name": "Diadem"
|
||||
},
|
||||
{
|
||||
"id": "item_quelling_blade",
|
||||
"name": "Quelling Blade"
|
||||
},
|
||||
{
|
||||
"id": "item_ring_of_protection",
|
||||
"name": "Ring of Protection"
|
||||
},
|
||||
{
|
||||
"id": "item_infused_raindrops",
|
||||
"name": "Infused Raindrops"
|
||||
},
|
||||
{
|
||||
"id": "item_orb_of_venom",
|
||||
"name": "Orb of Venom"
|
||||
},
|
||||
{
|
||||
"id": "item_orb_of_blight",
|
||||
"name": "Orb of Blight"
|
||||
},
|
||||
{
|
||||
"id": "item_blades_of_attack",
|
||||
"name": "Blades of Attack"
|
||||
},
|
||||
{
|
||||
"id": "item_orb_of_frost",
|
||||
"name": "Orb of Frost"
|
||||
},
|
||||
{
|
||||
"id": "item_gloves_of_haste",
|
||||
"name": "Gloves of Haste"
|
||||
},
|
||||
{
|
||||
"id": "item_chainmail",
|
||||
"name": "Chainmail"
|
||||
},
|
||||
{
|
||||
"id": "item_helm_of_iron_will",
|
||||
"name": "Helm of Iron Will"
|
||||
},
|
||||
{
|
||||
"id": "item_broadsword",
|
||||
"name": "Broadsword"
|
||||
},
|
||||
{
|
||||
"id": "item_blitz_knuckles",
|
||||
"name": "Blitz Knuckles"
|
||||
},
|
||||
{
|
||||
"id": "item_javelin",
|
||||
"name": "Javelin"
|
||||
},
|
||||
{
|
||||
"id": "item_claymore",
|
||||
"name": "Claymore"
|
||||
},
|
||||
{
|
||||
"id": "item_mithril_hammer",
|
||||
"name": "Mithril Hammer"
|
||||
},
|
||||
{
|
||||
"id": "item_ring_of_regen",
|
||||
"name": "Ring of Regen"
|
||||
},
|
||||
{
|
||||
"id": "item_sage_s_mask",
|
||||
"name": "Sage's Mask"
|
||||
},
|
||||
{
|
||||
"id": "item_magic_stick",
|
||||
"name": "Magic Stick"
|
||||
},
|
||||
{
|
||||
"id": "item_fluffy_hat",
|
||||
"name": "Fluffy Hat"
|
||||
},
|
||||
{
|
||||
"id": "item_wind_lace",
|
||||
"name": "Wind Lace"
|
||||
},
|
||||
{
|
||||
"id": "item_cloak",
|
||||
"name": "Cloak"
|
||||
},
|
||||
{
|
||||
"id": "item_boots_of_speed",
|
||||
"name": "Boots of Speed"
|
||||
},
|
||||
{
|
||||
"id": "item_gem_of_true_sight",
|
||||
"name": "Gem of True Sight"
|
||||
},
|
||||
{
|
||||
"id": "item_morbid_mask",
|
||||
"name": "Morbid Mask"
|
||||
},
|
||||
{
|
||||
"id": "item_voodoo_mask",
|
||||
"name": "Voodoo Mask"
|
||||
},
|
||||
{
|
||||
"id": "item_shadow_amulet",
|
||||
"name": "Shadow Amulet"
|
||||
},
|
||||
{
|
||||
"id": "item_ghost_scepter",
|
||||
"name": "Ghost Scepter"
|
||||
},
|
||||
{
|
||||
"id": "item_blink_dagger",
|
||||
"name": "Blink Dagger"
|
||||
},
|
||||
{
|
||||
"id": "item_ring_of_health",
|
||||
"name": "Ring of Health"
|
||||
},
|
||||
{
|
||||
"id": "item_void_stone",
|
||||
"name": "Void Stone"
|
||||
},
|
||||
{
|
||||
"id": "item_magic_wand",
|
||||
"name": "Magic Wand"
|
||||
},
|
||||
{
|
||||
"id": "item_null_talisman",
|
||||
"name": "Null Talisman"
|
||||
},
|
||||
{
|
||||
"id": "item_wraith_band",
|
||||
"name": "Wraith Band"
|
||||
},
|
||||
{
|
||||
"id": "item_bracer",
|
||||
"name": "Bracer"
|
||||
},
|
||||
{
|
||||
"id": "item_soul_ring",
|
||||
"name": "Soul Ring"
|
||||
},
|
||||
{
|
||||
"id": "item_orb_of_corrosion",
|
||||
"name": "Orb of Corrosion"
|
||||
},
|
||||
{
|
||||
"id": "item_falcon_blade",
|
||||
"name": "Falcon Blade"
|
||||
},
|
||||
{
|
||||
"id": "item_power_treads",
|
||||
"name": "Power Treads"
|
||||
},
|
||||
{
|
||||
"id": "item_phase_boots",
|
||||
"name": "Phase Boots"
|
||||
},
|
||||
{
|
||||
"id": "item_oblivion_staff",
|
||||
"name": "Oblivion Staff"
|
||||
},
|
||||
{
|
||||
"id": "item_perseverance",
|
||||
"name": "Perseverance"
|
||||
},
|
||||
{
|
||||
"id": "item_mask_of_madness",
|
||||
"name": "Mask of Madness"
|
||||
},
|
||||
{
|
||||
"id": "item_hand_of_midas",
|
||||
"name": "Hand of Midas"
|
||||
},
|
||||
{
|
||||
"id": "item_helm_of_the_dominator",
|
||||
"name": "Helm of the Dominator"
|
||||
},
|
||||
{
|
||||
"id": "item_boots_of_travel",
|
||||
"name": "Boots of Travel"
|
||||
},
|
||||
{
|
||||
"id": "item_moon_shard",
|
||||
"name": "Moon Shard"
|
||||
},
|
||||
{
|
||||
"id": "item_boots_of_travel_2",
|
||||
"name": "Boots of Travel 2"
|
||||
},
|
||||
{
|
||||
"id": "item_buckler",
|
||||
"name": "Buckler"
|
||||
},
|
||||
{
|
||||
"id": "item_ring_of_basilius",
|
||||
"name": "Ring of Basilius"
|
||||
},
|
||||
{
|
||||
"id": "item_headdress",
|
||||
"name": "Headdress"
|
||||
},
|
||||
{
|
||||
"id": "item_urn_of_shadows",
|
||||
"name": "Urn of Shadows"
|
||||
},
|
||||
{
|
||||
"id": "item_tranquil_boots",
|
||||
"name": "Tranquil Boots"
|
||||
},
|
||||
{
|
||||
"id": "item_pavise",
|
||||
"name": "Pavise"
|
||||
},
|
||||
{
|
||||
"id": "item_arcane_boots",
|
||||
"name": "Arcane Boots"
|
||||
},
|
||||
{
|
||||
"id": "item_drum_of_endurance",
|
||||
"name": "Drum of Endurance"
|
||||
},
|
||||
{
|
||||
"id": "item_mekansm",
|
||||
"name": "Mekansm"
|
||||
},
|
||||
{
|
||||
"id": "item_holy_locket",
|
||||
"name": "Holy Locket"
|
||||
},
|
||||
{
|
||||
"id": "item_vladmir_s_offering",
|
||||
"name": "Vladmir's Offering"
|
||||
},
|
||||
{
|
||||
"id": "item_spirit_vessel",
|
||||
"name": "Spirit Vessel"
|
||||
},
|
||||
{
|
||||
"id": "item_pipe_of_insight",
|
||||
"name": "Pipe of Insight"
|
||||
},
|
||||
{
|
||||
"id": "item_guardian_greaves",
|
||||
"name": "Guardian Greaves"
|
||||
},
|
||||
{
|
||||
"id": "item_boots_of_bearing",
|
||||
"name": "Boots of Bearing"
|
||||
},
|
||||
{
|
||||
"id": "item_parasma",
|
||||
"name": "Parasma"
|
||||
},
|
||||
{
|
||||
"id": "item_veil_of_discord",
|
||||
"name": "Veil of Discord"
|
||||
},
|
||||
{
|
||||
"id": "item_glimmer_cape",
|
||||
"name": "Glimmer Cape"
|
||||
},
|
||||
{
|
||||
"id": "item_force_staff",
|
||||
"name": "Force Staff"
|
||||
},
|
||||
{
|
||||
"id": "item_aether_lens",
|
||||
"name": "Aether Lens"
|
||||
},
|
||||
{
|
||||
"id": "item_witch_blade",
|
||||
"name": "Witch Blade"
|
||||
},
|
||||
{
|
||||
"id": "item_eul_s_scepter_of_divinity",
|
||||
"name": "Eul's Scepter of Divinity"
|
||||
},
|
||||
{
|
||||
"id": "item_rod_of_atos",
|
||||
"name": "Rod of Atos"
|
||||
},
|
||||
{
|
||||
"id": "item_dagon",
|
||||
"name": "Dagon"
|
||||
},
|
||||
{
|
||||
"id": "item_orchid_malevolence",
|
||||
"name": "Orchid Malevolence"
|
||||
},
|
||||
{
|
||||
"id": "item_solar_crest",
|
||||
"name": "Solar Crest"
|
||||
},
|
||||
{
|
||||
"id": "item_aghanim_s_scepter",
|
||||
"name": "Aghanim's Scepter"
|
||||
},
|
||||
{
|
||||
"id": "item_refresher_orb",
|
||||
"name": "Refresher Orb"
|
||||
},
|
||||
{
|
||||
"id": "item_octarine_core",
|
||||
"name": "Octarine Core"
|
||||
},
|
||||
{
|
||||
"id": "item_scythe_of_vyse",
|
||||
"name": "Scythe of Vyse"
|
||||
},
|
||||
{
|
||||
"id": "item_gleipnir",
|
||||
"name": "Gleipnir"
|
||||
},
|
||||
{
|
||||
"id": "item_wind_waker",
|
||||
"name": "Wind Waker"
|
||||
},
|
||||
{
|
||||
"id": "item_crystalys",
|
||||
"name": "Crystalys"
|
||||
},
|
||||
{
|
||||
"id": "item_meteor_hammer",
|
||||
"name": "Meteor Hammer"
|
||||
},
|
||||
{
|
||||
"id": "item_armlet_of_mordiggian",
|
||||
"name": "Armlet of Mordiggian"
|
||||
},
|
||||
{
|
||||
"id": "item_skull_basher",
|
||||
"name": "Skull Basher"
|
||||
},
|
||||
{
|
||||
"id": "item_shadow_blade",
|
||||
"name": "Shadow Blade"
|
||||
},
|
||||
{
|
||||
"id": "item_desolator",
|
||||
"name": "Desolator"
|
||||
},
|
||||
{
|
||||
"id": "item_battle_fury",
|
||||
"name": "Battle Fury"
|
||||
},
|
||||
{
|
||||
"id": "item_ethereal_blade",
|
||||
"name": "Ethereal Blade"
|
||||
},
|
||||
{
|
||||
"id": "item_nullifier",
|
||||
"name": "Nullifier"
|
||||
},
|
||||
{
|
||||
"id": "item_monkey_king_bar",
|
||||
"name": "Monkey King Bar"
|
||||
},
|
||||
{
|
||||
"id": "item_butterfly",
|
||||
"name": "Butterfly"
|
||||
},
|
||||
{
|
||||
"id": "item_radiance",
|
||||
"name": "Radiance"
|
||||
},
|
||||
{
|
||||
"id": "item_daedalus",
|
||||
"name": "Daedalus"
|
||||
},
|
||||
{
|
||||
"id": "item_silver_edge",
|
||||
"name": "Silver Edge"
|
||||
},
|
||||
{
|
||||
"id": "item_divine_rapier",
|
||||
"name": "Divine Rapier"
|
||||
},
|
||||
{
|
||||
"id": "item_bloodthorn",
|
||||
"name": "Bloodthorn"
|
||||
},
|
||||
{
|
||||
"id": "item_abyssal_blade",
|
||||
"name": "Abyssal Blade"
|
||||
},
|
||||
{
|
||||
"id": "item_revenant_s_brooch",
|
||||
"name": "Revenant's Brooch"
|
||||
},
|
||||
{
|
||||
"id": "item_disperser",
|
||||
"name": "Disperser"
|
||||
},
|
||||
{
|
||||
"id": "item_khanda",
|
||||
"name": "Khanda"
|
||||
},
|
||||
{
|
||||
"id": "item_vanguard",
|
||||
"name": "Vanguard"
|
||||
},
|
||||
{
|
||||
"id": "item_blade_mail",
|
||||
"name": "Blade Mail"
|
||||
},
|
||||
{
|
||||
"id": "item_aeon_disk",
|
||||
"name": "Aeon Disk"
|
||||
},
|
||||
{
|
||||
"id": "item_soul_booster",
|
||||
"name": "Soul Booster"
|
||||
},
|
||||
{
|
||||
"id": "item_crimson_guard",
|
||||
"name": "Crimson Guard"
|
||||
},
|
||||
{
|
||||
"id": "item_lotus_orb",
|
||||
"name": "Lotus Orb"
|
||||
},
|
||||
{
|
||||
"id": "item_black_king_bar",
|
||||
"name": "Black King Bar"
|
||||
},
|
||||
{
|
||||
"id": "item_hurricane_pike",
|
||||
"name": "Hurricane Pike"
|
||||
},
|
||||
{
|
||||
"id": "item_manta_style",
|
||||
"name": "Manta Style"
|
||||
},
|
||||
{
|
||||
"id": "item_linken_s_sphere",
|
||||
"name": "Linken's Sphere"
|
||||
},
|
||||
{
|
||||
"id": "item_shiva_s_guard",
|
||||
"name": "Shiva's Guard"
|
||||
},
|
||||
{
|
||||
"id": "item_heart_of_tarrasque",
|
||||
"name": "Heart of Tarrasque"
|
||||
},
|
||||
{
|
||||
"id": "item_assault_cuirass",
|
||||
"name": "Assault Cuirass"
|
||||
},
|
||||
{
|
||||
"id": "item_bloodstone",
|
||||
"name": "Bloodstone"
|
||||
},
|
||||
{
|
||||
"id": "item_helm_of_the_overlord",
|
||||
"name": "Helm of the Overlord"
|
||||
},
|
||||
{
|
||||
"id": "item_eternal_shroud",
|
||||
"name": "Eternal Shroud"
|
||||
},
|
||||
{
|
||||
"id": "item_dragon_lance",
|
||||
"name": "Dragon Lance"
|
||||
},
|
||||
{
|
||||
"id": "item_sange",
|
||||
"name": "Sange"
|
||||
},
|
||||
{
|
||||
"id": "item_yasha",
|
||||
"name": "Yasha"
|
||||
},
|
||||
{
|
||||
"id": "item_kaya",
|
||||
"name": "Kaya"
|
||||
},
|
||||
{
|
||||
"id": "item_echo_sabre",
|
||||
"name": "Echo Sabre"
|
||||
},
|
||||
{
|
||||
"id": "item_maelstrom",
|
||||
"name": "Maelstrom"
|
||||
},
|
||||
{
|
||||
"id": "item_diffusal_blade",
|
||||
"name": "Diffusal Blade"
|
||||
},
|
||||
{
|
||||
"id": "item_mage_slayer",
|
||||
"name": "Mage Slayer"
|
||||
},
|
||||
{
|
||||
"id": "item_phylactery",
|
||||
"name": "Phylactery"
|
||||
},
|
||||
{
|
||||
"id": "item_heaven_s_halberd",
|
||||
"name": "Heaven's Halberd"
|
||||
},
|
||||
{
|
||||
"id": "item_kaya_and_sange",
|
||||
"name": "Kaya and Sange"
|
||||
},
|
||||
{
|
||||
"id": "item_sange_and_yasha",
|
||||
"name": "Sange and Yasha"
|
||||
},
|
||||
{
|
||||
"id": "item_yasha_and_kaya",
|
||||
"name": "Yasha and Kaya"
|
||||
},
|
||||
{
|
||||
"id": "item_satanic",
|
||||
"name": "Satanic"
|
||||
},
|
||||
{
|
||||
"id": "item_eye_of_skadi",
|
||||
"name": "Eye of Skadi"
|
||||
},
|
||||
{
|
||||
"id": "item_mjollnir",
|
||||
"name": "Mjollnir"
|
||||
},
|
||||
{
|
||||
"id": "item_overwhelming_blink",
|
||||
"name": "Overwhelming Blink"
|
||||
},
|
||||
{
|
||||
"id": "item_swift_blink",
|
||||
"name": "Swift Blink"
|
||||
},
|
||||
{
|
||||
"id": "item_arcane_blink",
|
||||
"name": "Arcane Blink"
|
||||
},
|
||||
{
|
||||
"id": "item_harpoon",
|
||||
"name": "Harpoon"
|
||||
},
|
||||
{
|
||||
"id": "item_ring_of_tarrasque",
|
||||
"name": "Ring of Tarrasque"
|
||||
},
|
||||
{
|
||||
"id": "item_tiara_of_selemene",
|
||||
"name": "Tiara of Selemene"
|
||||
},
|
||||
{
|
||||
"id": "item_cornucopia",
|
||||
"name": "Cornucopia"
|
||||
},
|
||||
{
|
||||
"id": "item_energy_booster",
|
||||
"name": "Energy Booster"
|
||||
},
|
||||
{
|
||||
"id": "item_vitality_booster",
|
||||
"name": "Vitality Booster"
|
||||
},
|
||||
{
|
||||
"id": "item_point_booster",
|
||||
"name": "Point Booster"
|
||||
},
|
||||
{
|
||||
"id": "item_talisman_of_evasion",
|
||||
"name": "Talisman of Evasion"
|
||||
},
|
||||
{
|
||||
"id": "item_platemail",
|
||||
"name": "Platemail"
|
||||
},
|
||||
{
|
||||
"id": "item_hyperstone",
|
||||
"name": "Hyperstone"
|
||||
},
|
||||
{
|
||||
"id": "item_ultimate_orb",
|
||||
"name": "Ultimate Orb"
|
||||
},
|
||||
{
|
||||
"id": "item_demon_edge",
|
||||
"name": "Demon Edge"
|
||||
},
|
||||
{
|
||||
"id": "item_mystic_staff",
|
||||
"name": "Mystic Staff"
|
||||
},
|
||||
{
|
||||
"id": "item_reaver",
|
||||
"name": "Reaver"
|
||||
},
|
||||
{
|
||||
"id": "item_eaglesong",
|
||||
"name": "Eaglesong"
|
||||
},
|
||||
{
|
||||
"id": "item_sacred_relic",
|
||||
"name": "Sacred Relic"
|
||||
}
|
||||
]
|
||||
|
||||
// export const items: Item[] = [
|
||||
// { id: 'item_magic_wand', name: 'Magic Wand' },
|
||||
// { id: 'item_bracer', name: 'Bracer' },
|
||||
// { id: 'item_wraith_band', name: 'Wraith Band' },
|
||||
// { id: 'item_null_talisman', name: 'Null Talisman' },
|
||||
// { id: 'item_soul_ring', name: 'Soul Ring' },
|
||||
// { id: 'item_falcon_blade', name: 'Falcon Blade' },
|
||||
|
||||
// // Boots
|
||||
// { id: 'item_phase_boots', name: 'Phase Boots' },
|
||||
// { id: 'item_power_treads', name: 'Power Treads' },
|
||||
// { id: 'item_arcane_boots', name: 'Arcane Boots' },
|
||||
// { id: 'item_tranquil_boots', name: 'Tranquil Boots' },
|
||||
// { id: 'item_boots_of_bearing', name: 'Boots of Bearing' },
|
||||
// { id: 'item_guardian_greaves', name: 'Guardian Greaves' },
|
||||
|
||||
// // Mobility
|
||||
// { id: 'item_blink', name: 'Blink Dagger' },
|
||||
// { id: 'item_force_staff', name: 'Force Staff' },
|
||||
// { id: 'item_hurricane_pike', name: 'Hurricane Pike' },
|
||||
// { id: 'item_overwhelming_blink', name: 'Overwhelming Blink' },
|
||||
// { id: 'item_swift_blink', name: 'Swift Blink' },
|
||||
// { id: 'item_arcane_blink', name: 'Arcane Blink' },
|
||||
|
||||
// // Armor / regen aura
|
||||
// { id: 'item_mekansm', name: 'Mekansm' },
|
||||
// { id: 'item_pipe', name: 'Pipe of Insight' },
|
||||
// { id: 'item_vladmir', name: 'Vladmir’s Offering' },
|
||||
// { id: 'item_solar_crest', name: 'Solar Crest' },
|
||||
// { id: 'item_spirit_vessel', name: 'Spirit Vessel' },
|
||||
|
||||
// // Simple DPS items
|
||||
// { id: 'item_mask_of_madness', name: 'Mask of Madness' },
|
||||
// { id: 'item_armlet', name: 'Armlet of Mordiggian' },
|
||||
// { id: 'item_echo_sabre', name: 'Echo Sabre' },
|
||||
// { id: 'item_skull_basher', name: 'Skull Basher' },
|
||||
// { id: 'item_desolator', name: 'Desolator' },
|
||||
// { id: 'item_silver_edge', name: 'Silver Edge' },
|
||||
|
||||
// // Magic items
|
||||
// { id: 'item_veil_of_discord', name: 'Veil of Discord' },
|
||||
// { id: 'item_aether_lens', name: 'Aether Lens' },
|
||||
// { id: 'item_kaya', name: 'Kaya' },
|
||||
// { id: 'item_rod_of_atos', name: 'Rod of Atos' },
|
||||
// { id: 'item_dagon', name: 'Dagon' },
|
||||
|
||||
// // HP items
|
||||
// { id: 'item_hood_of_defiance', name: 'Hood of Defiance' },
|
||||
// { id: 'item_heart', name: 'Heart of Tarrasque' },
|
||||
// // Strong DPS items
|
||||
// { id: 'item_monkey_king_bar', name: 'Monkey King Bar' },
|
||||
// { id: 'item_butterfly', name: 'Butterfly' },
|
||||
// { id: 'item_daedalus', name: 'Daedalus' },
|
||||
// { id: 'item_greater_crit', name: 'Greater Crit' },
|
||||
// { id: 'item_bfury', name: 'Battle Fury' },
|
||||
// { id: 'item_satanic', name: 'Satanic' },
|
||||
// { id: 'item_mjollnir', name: 'Mjollnir' },
|
||||
// { id: 'item_radiance', name: 'Radiance' },
|
||||
// { id: 'item_diffusal_blade', name: 'Diffusal Blade' },
|
||||
// { id: 'item_abissal_blade', name: 'Abyssal Blade' },
|
||||
// { id: 'item_maelstrom', name: 'Maelstrom' },
|
||||
// { id: 'item_mage_slayer', name: 'Mage Slayer' },
|
||||
|
||||
// // Tank / defensive items
|
||||
// { id: 'item_black_king_bar', name: 'Black King Bar' },
|
||||
// { id: 'item_shivas_guard', name: 'Shiva’s Guard' },
|
||||
// { id: 'item_blade_mail', name: 'Blade Mail' },
|
||||
// { id: 'item_lotus_orb', name: 'Lotus Orb' },
|
||||
// { id: 'item_vanguard', name: 'Vanguard' },
|
||||
// { id: 'item_pipe', name: 'Pipe of Insight' },
|
||||
// { id: 'item_eternal_shroud', name: 'Eternal Shroud' },
|
||||
// { id: 'item_crimson_guard', name: 'Crimson Guard' },
|
||||
// { id: 'item_heavens_halberd', name: 'Heaven’s Halberd' },
|
||||
|
||||
// // Mobility / utility
|
||||
// { id: 'item_cyclone', name: 'Eul’s Scepter of Divinity' },
|
||||
// { id: 'item_glimmer_cape', name: 'Glimmer Cape' },
|
||||
// { id: 'item_ghost', name: 'Ghost Scepter' },
|
||||
// { id: 'item_ethereal_blade', name: 'Ethereal Blade' },
|
||||
// { id: 'item_aeon_disk', name: 'Aeon Disk' },
|
||||
// { id: 'item_boots_of_bearing', name: 'Boots of Bearing' },
|
||||
// { id: 'item_rod_of_atos', name: 'Rod of Atos' },
|
||||
// { id: 'item_solar_crest', name: 'Solar Crest' },
|
||||
|
||||
// // Healing / support items
|
||||
// { id: 'item_guardian_greaves', name: 'Guardian Greaves' },
|
||||
// { id: 'item_holy_locket', name: 'Holy Locket' },
|
||||
// { id: 'item_arcane_boots', name: 'Arcane Boots' },
|
||||
// { id: 'item_spirit_vessel', name: 'Spirit Vessel' },
|
||||
// { id: 'item_medallion_of_courage', name: 'Medallion of Courage' },
|
||||
|
||||
// // Magical burst / caster items
|
||||
// { id: 'item_kaya', name: 'Kaya' },
|
||||
// { id: 'item_kaya_and_sange', name: 'Kaya and Sange' },
|
||||
// { id: 'item_yasha_and_kaya', name: 'Yasha and Kaya' },
|
||||
// { id: 'item_sange_and_yasha', name: 'Sange and Yasha' },
|
||||
// { id: 'item_octarine_core', name: 'Octarine Core' },
|
||||
// { id: 'item_scythe_of_vyse', name: 'Scythe of Vyse' },
|
||||
// { id: 'item_dagon', name: 'Dagon' },
|
||||
|
||||
// { id: 'item_rapier', name: 'Divine Rapier' },
|
||||
// { id: 'item_moon_shard', name: 'Moon Shard' },
|
||||
// { id: 'item_silver_edge', name: 'Silver Edge' },
|
||||
// { id: 'item_bloodthorn', name: 'Bloodthorn' },
|
||||
// { id: 'item_nullifier', name: 'Nullifier' },
|
||||
|
||||
// // Intelligence & spellpower
|
||||
// { id: 'item_refresher', name: 'Refresher Orb' },
|
||||
// { id: 'item_aghanims_scepter', name: 'Aghanim’s Scepter' },
|
||||
// { id: 'item_aghanims_shard', name: 'Aghanim’s Shard' },
|
||||
// { id: 'item_witch_blade', name: 'Witch Blade' },
|
||||
// { id: 'item_gungir', name: 'Gleipnir' },
|
||||
|
||||
// // Tank / sustain late game
|
||||
// { id: 'item_heart', name: 'Heart of Tarrasque' },
|
||||
// { id: 'item_assault', name: 'Assault Cuirass' },
|
||||
// { id: 'item_satanic', name: 'Satanic' },
|
||||
// { id: 'item_harpoon', name: 'Harpoon' },
|
||||
|
||||
// // Universal top-tier
|
||||
// { id: 'item_sphere', name: 'Linken’s Sphere' },
|
||||
// { id: 'item_skadi', name: 'Eye of Skadi' },
|
||||
// { id: 'item_manta', name: 'Manta Style' },
|
||||
// { id: 'item_overwhelming_blink', name: 'Overwhelming Blink' },
|
||||
// { id: 'item_swift_blink', name: 'Swift Blink' },
|
||||
|
||||
// // Summon & utility
|
||||
// { id: 'item_necronomicon', name: 'Necronomicon' },
|
||||
// { id: 'item_drum', name: 'Drum of Endurance' },
|
||||
// { id: 'item_helm_of_the_overlord', name: 'Helm of the Overlord' },
|
||||
|
||||
// // Roshan rewards
|
||||
// { id: 'item_aegis', name: 'Aegis of the Immortal' },
|
||||
// { id: 'item_cheese', name: 'Cheese' },
|
||||
// { id: 'item_refresher_shard', name: 'Refresher Shard' },
|
||||
// { id: 'item_aghanims_blessing', name: 'Aghanim’s Blessing' },
|
||||
|
||||
// // Neutral items — Tier 1
|
||||
// { id: 'item_arcane_ring', name: 'Arcane Ring' },
|
||||
// { id: 'item_faded_broach', name: 'Faded Broach' },
|
||||
// { id: 'item_keen_optic', name: 'Keen Optic' },
|
||||
|
||||
// // Tier 2
|
||||
// { id: 'item_grove_bow', name: 'Grove Bow' },
|
||||
// { id: 'item_pupils_gift', name: 'Pupil’s Gift' },
|
||||
// { id: 'item_philosophers_stone', name: 'Philosopher’s Stone' },
|
||||
|
||||
// // Tier 3
|
||||
// { id: 'item_paladin_sword', name: 'Paladin Sword' },
|
||||
// { id: 'item_quickening_charm', name: 'Quickening Charm' },
|
||||
// { id: 'item_spider_legs', name: 'Spider Legs' },
|
||||
|
||||
// // Tier 4
|
||||
// { id: 'item_spell_prism', name: 'Spell Prism' },
|
||||
// { id: 'item_timeless_relic', name: 'Timeless Relic' },
|
||||
// { id: 'item_mind_breaker', name: 'Mind Breaker' },
|
||||
|
||||
// // Tier 5
|
||||
// { id: 'item_apex', name: 'Apex' },
|
||||
// { id: 'item_ex_machina', name: 'Ex Machina' },
|
||||
// { id: 'item_mirror_shield', name: 'Mirror Shield' },
|
||||
// { id: 'item_book_of_shadows', name: 'Book of Shadows' },
|
||||
// { id: 'item_seer_stone', name: 'Seer Stone' }
|
||||
// ];
|
||||
|
||||
|
||||
12
dota-random-builds-back/data/skills.ts
Normal file
12
dota-random-builds-back/data/skills.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface SkillBuildOption {
|
||||
id: string
|
||||
name: string
|
||||
description?: string
|
||||
}
|
||||
|
||||
export const skillBuilds: SkillBuildOption[] = [
|
||||
{ id: 'q_first', name: 'Max Q first', description: 'Prioritize first ability' },
|
||||
{ id: 'w_first', name: 'Max W first', description: 'Prioritize second ability' },
|
||||
{ id: 'e_first', name: 'Max E first', description: 'Prioritize third ability' },
|
||||
{ id: 'balanced', name: 'Balanced', description: 'Evenly distribute points' }
|
||||
]
|
||||
Reference in New Issue
Block a user