Skip to content

Commit

Permalink
Merge branch 'jfd02:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony5301 authored Mar 24, 2024
2 parents f9947e1 + c020324 commit c952df9
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions game_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand All @@ -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"""
Expand Down

0 comments on commit c952df9

Please sign in to comment.