diff --git a/game_assets.py b/game_assets.py index 2975c03..a02cc9c 100644 --- a/game_assets.py +++ b/game_assets.py @@ -135,24 +135,24 @@ FINAL_COMP_ROUND = "4-5" -FULL_ITEMS = {"8bitEmblem":("Spatula","RecurveBow"), - "EmoEmblem":("Spatula","TearoftheGoddess"), - "HEARTSTEELEmblem":("Spatula","GiantsBelt"), - "JazzEmblem":("Spatula","NegatronCloak"), - "KDAEmblem":("Spatula","NeedlesslyLargeRod"), - "PentakillEmblem":("Spatula","ChainVest"), - "PunkEmblem":("Spatula","SparringGloves"), - "TrueDamageEmblem":("Spatula","SparringGloves"), - "AdaptiveHelm":("NegatronCloak","B.F.Sword"), - "ArchangelsStaff":("NeedlesslyLargeRod","TearoftheGoddess"), - "Bloodthirster":("B.F.Sword","NegatronCloak"), +FULL_ITEMS = {"DryadEmblem":("Spatula","GiantsBelt"), + "FatedEmblem":("Spatula","NeedlesslyLargeRod"), + "GhostlyEmblem":("Spatula","BFSword"), + "HeavenlyEmblem":("Spatula","NegatronCloak"), + "MythicEmblem":("Spatula","TearoftheGoddess"), + "PorcelainEmblem":("Spatula","RecurveBow"), + "StoryweaverEmblem":("Spatula","ChainVest"), + "UmbralEmblem":("Spatula","SparringGloves"), + "AdaptiveHelm":("TearoftheGoddess","NegatronCloak"), + "ArchangelsStaff":("TearoftheGoddess","NeedlesslyLargeRod"), + "Bloodthirster":("BFSword","NegatronCloak"), "BlueBuff":("TearoftheGoddess","TearoftheGoddess"), "BrambleVest":("ChainVest","ChainVest"), - "Crownguard":("ChainVest","NeedlesslyLargeRod"), - "Deathblade":("B.F.Sword","B.F.Sword"), + "Crownguard":("NeedlesslyLargeRod","ChainVest"), + "Deathblade":("BFSword","BFSword"), "DragonsClaw":("NegatronCloak","NegatronCloak"), - "EdgeofNight":("B.F.Sword","ChainVest"), - "Evenshroud":("GiantsBelt","NegatronCloak"), + "EdgeofNight":("BFSword","ChainVest"), + "Evenshroud":("NegatronCloak","GiantsBelt"), "GargoyleStoneplate":("ChainVest","NegatronCloak"), "GiantSlayer":("BFSword","RecurveBow"), "Guardbreaker":("GiantsBelt","SparringGloves"), @@ -161,25 +161,26 @@ "HextechGunblade":("BFSword","NeedlesslyLargeRod"), "InfinityEdge":("BFSword","SparringGloves"), "IonicSpark":("NeedlesslyLargeRod","NegatronCloak"), - "JeweledGauntlet":("NeedlesslyLargeRod","SparringGloves"), + "JeweledGauntlet":("SparringGloves","NeedlesslyLargeRod"), "LastWhisper":("RecurveBow","SparringGloves"), - "Morellonomicon":("GiantsBelt","NeedlesslyLargeRod"), - "NashorsTooth":("GiantsBelt","RecurveBow"), + "Morellonomicon":("NeedlesslyLargeRod","GiantsBelt"), + "NashorsTooth":("RecurveBow","GiantsBelt"), "ProtectorsVow":("ChainVest","TearoftheGoddess"), "Quicksilver":("NegatronCloak","SparringGloves"), "RabadonsDeathcap":("NeedlesslyLargeRod","NeedlesslyLargeRod"), "RedBuff":("RecurveBow","RecurveBow"), - "Redemption":("GiantsBelt","TearoftheGoddess"), - "RunaansHurricane":("NegatronCloak","RecurveBow"), + "Redemption":("TearoftheGoddess","GiantsBelt"), + "RunaansHurricane":("RecurveBow","NegatronCloak"), "SpearofShojin":("BFSword","TearoftheGoddess"), - "StatikkShiv":("RecurveBow","TearoftheGoddess"), - "SteadfastHeart":("ChainVest","SparringGloves"), - "SteraksGage":("B.F.Sword","GiantsBelt"), + "StatikkShiv":("TearoftheGoddess","RecurveBow"), + "SteadfastHeart":("SparringGloves","ChainVest"), + "SteraksGage":("BFSword","GiantsBelt"), "SunfireCape":("ChainVest","GiantsBelt"), "TacticiansCrown":("Spatula","Spatula"), "ThiefsGloves":("SparringGloves","SparringGloves"), "TitansResolve":("ChainVest","RecurveBow"), - "WarmogsArmor":("GiantsBelt","GiantsBelt")} + "WarmogsArmor":("GiantsBelt","GiantsBelt") + } def champion_board_size(champion: str) -> int: """Takes a string (champion name) and returns board size of champion"""