forked from jfd02/TFT-OCR-BOT
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgame_assets.py
166 lines (147 loc) · 8.02 KB
/
game_assets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
"""
Contains static item
"""
COMBINED_ITEMS: set[str] = {"BFSword", "ChainVest", "GiantsBelt", "NeedlesslyLargeRod",
"NegatronCloak", "SparringGloves", "Spatula", "TearoftheGoddess",
"ArchangelsStaff", "AssassinEmblem", "BansheesClaw", "Bloodthirster",
"BlueBuff", "BrambleVest", "CavalierEmblem", "ChaliceofPower",
"Deathblade", "DragonmancerEmblem", "DragonsClaw", "EdgeofNight",
"FrozenHeart", "GargoyleStoneplate", "GiantSlayer", "HandofJustice",
"HextechGunblade", "InfinityEdge", "IonicSpark", "JewledGauntlet",
"LastWhisper", "LocketoftheIronSolari", "MageEmblem", "MirageEmblem",
"Morellonomicon", "Quicksilver", "RabadonsDeathcap", "Ragewing Emblem",
"RapidFirecannon", "Redemption", "RunaansHurricane", "ShimmerscaleEmblem",
"ShroudofStillness", "SpearofShojin", "StatikkShiv", "SunfireCape",
"TacticiansCrown", "ThiefsGloves", "TitansResolve", "WarmogsArmor",
"ZekesHerald", "Zephyr", "ZZRotPortal", "RecurveBow",
"GuardianEmblem", "GuinsoosRageblade"}
ELUSIVE_ITEMS: set[str] = {"AstralEmblem", "BruiserEmblem", "CannoneerEmblem",
"DragonmancersBlessing", "EvokerEmblem", "GuildEmblem",
"JadeEmblem", "LegendEmblem", "MysticEmblem",
"RevelEmblem", "ScalescornEmblem", "SwiftshotEmblem",
"TempestEmblem", "WarriorEmblem", "WhispersEmblem",
"DarkflightEmblem", "HeartEmblem", "AnimaSquadEmblem",
"DuelistEmblem"}
SHIMMERSCALE_ITEMS: set[str] = {"CrownOfChampions", "DeterminedInvestor", "DiamondHands",
"DravensAxe", "GamblersBlade", "GoldmancersStaff",
"MogulsMail", "NeedlesslyBigGem", "PhilosophersStone"}
ORNN_ITEMS: set[str] = {"AnimaVisage", "DeathsDefiance", "EternalWinter",
"GoldCollector", "InfinityForce",
"Manazane", "ObsidianCleaver", "RaduinsSanctum",
"RocketPropelledFist", "ZhonyasParadox"}
RADIANT_ITEMS: set[str] = {"Absolution", "BansheesSilence", "BlessedBloodthirster",
"BlueBlessing", "BrinkofDawn", "ChaliceofCharity",
"CovalentSpark", "DemonSlayer", "DragonsWill",
"DvarapalaStoneplate", "EternalWhisper", "FistofFairness",
"FrozenHeartOfGold", "GlamorousGauntlet", "GuinsoosReckoning",
"HextechLifeblade", "LocketofTargonPrime", "LuminousDeathblade",
"Mistral", "MoreMoreellonomicon", "Quickestsilver",
"RabadonsAscendedDeathcap", "RadiantRedemption", "RapidLightcannon",
"RascalsGloves", "RosethornVest", "RunaansTempest",
"ShroudofReverance", "SpearofHirana", "StatikkFavor",
"SunlightCape", "TitansVow", "UrfAngelsStaff",
"WarmogsPride", "ZekesHarmony", "ZenithEdge",
"ZzRotsInvitation"}
ITEMS: set[str] = COMBINED_ITEMS.union(ELUSIVE_ITEMS).union(
SHIMMERSCALE_ITEMS).union(ORNN_ITEMS).union(RADIANT_ITEMS)
ITEMS_WITHOUT_COMBINED: set[str] = ELUSIVE_ITEMS.union(
SHIMMERSCALE_ITEMS).union(ORNN_ITEMS).union(RADIANT_ITEMS)
ROUNDS: set[str] = {"1-1", "1-2", "1-3", "1-4",
"2-1", "2-2", "2-3", "2-4", "2-5", "2-6", "2-7",
"3-1", "3-2", "3-3", "3-4", "3-5", "3-6", "3-7",
"4-1", "4-2", "4-3", "4-4", "4-5", "4-6", "4-7",
"5-1", "5-2", "5-3", "5-4", "5-5", "5-6", "5-7",
"6-1", "6-2", "6-3", "6-4", "6-5", "6-6", "6-7",
"7-1", "7-2", "7-3", "7-4", "7-5", "7-6", "7-7"}
CAROUSEL_ROUND: set[str] = {"1-1", "2-4", "3-4", "4-4", "5-4", "6-4", "7-4"}
PVE_ROUND: set[str] = {"1-2", "1-3", "1-4", "2-7", "3-7", "4-7", "5-7", "6-7", "7-7"}
PVP_ROUND: set[str] = {"2-1", "2-2", "2-3", "2-5", "2-6",
"3-1", "3-2", "3-3", "3-5", "3-6",
"4-1", "4-2", "4-3", "4-5", "4-6",
"5-1", "5-2", "5-3", "5-5", "5-6",
"6-1", "6-2", "6-3", "6-5", "6-6",
"7-1", "7-2", "7-3", "7-5", "7-6"}
PICKUP_ROUNDS: set[str] = {"2-1", "3-1", "4-1", "5-1", "6-1", "7-1"}
AUGMENT_ROUNDS: set[str] = {"2-1", "3-2", "4-2"}
ITEM_PLACEMENT_ROUNDS: set[str] = {"2-2", "3-2", "4-2", "5-2",
"6-2", "7-2", "2-5", "3-5", "4-5", "5-5", "6-5", "7-5"}
FINAL_COMP_ROUND = "4-5"
FULL_ITEMS = {"ArchangelsStaff": ("NeedlesslyLargeRod", "TearoftheGoddess"),
"AssassinEmblem": ("SparringGloves", "Spatula"),
"BansheesClaw": ("GiantsBelt", "SparringGloves"),
"Bloodthirster": ("BFSword", "NegatronCloak"),
"BlueBuff": ("TearoftheGoddess", "TearoftheGoddess"),
"BrambleVest": ("ChainVest", "ChainVest"),
"CavalierEmblem": ("ChainVest", "Spatula"),
"ChaliceofPower": ("NegatronCloak", "TearoftheGoddess"),
"Deathblade": ("BFSword", "BFSword"),
"DragonmancerEmblem": ("NeedlesslyLargeRod", "Spatula"),
"DragonsClaw": ("NegatronCloak", "NegatronCloak"),
"EdgeofNight": ("BFSword", "ChainVest"),
"FrozenHeart": ("ChainVest", "TearoftheGoddess"),
"GargoyleStoneplate": ("ChainVest", "NegatronCloak"),
"GiantSlayer": ("BFSword", "RecurveBow"),
"GuardianEmblem": ("GiantsBelt", "Spatula"),
"GuinsoosRageblade": ("NeedlesslyLargeRod", "RecurveBow"),
"HandofJustice": ("SparringGloves", "TearoftheGoddess"),
"HextechGunblade": ("BFSword", "NeedlesslyLargeRod"),
"InfinityEdge": ("BFSword", "SparringGloves"),
"IonicSpark": ("NeedlesslyLargeRod", "NegatronCloak"),
"JeweledGauntlet": ("NeedlesslyLargeRod", "SparringGloves"),
"LastWhisper": ("RecurveBow", "SparringGloves"),
"LocketoftheIronSolari": ("ChainVest", "NeedlesslyLargeRod"),
"MageEmblem": ("TearoftheGoddess", "Spatula"),
"MirageEmblem": ("NegatronCloak", "Spatula"),
"Morellonomicon": ("GiantsBelt", "NeedlesslyLargeRod"),
"Quicksilver": ("NegatronCloak", "SparringGloves"),
"RabadonsDeathcap": ("NeedlesslyLargeRod", "NeedlesslyLargeRod"),
"RagewingEmblem": ("RecurveBow", "Spatula"),
"RapidFirecannon": ("RecurveBow", "RecurveBow"),
"Redemption": ("GiantsBelt", "TearoftheGoddess"),
"RunaansHurricane": ("NegatronCloak", "RecurveBow"),
"ShimmerscaleEmblem": ("BFSword", "Spatula"),
"ShroudofStillness": ("ChainVest", "SparringGloves"),
"SpearofShojin": ("BFSword", "TearoftheGoddess"),
"StatikkShiv": ("RecurveBow", "TearoftheGoddess"),
"SunfireCape": ("ChainVest", "GiantsBelt"),
"TacticiansCrown": ("Spatula", "Spatula"),
"ThiefsGloves": ("SparringGloves", "SparringGloves"),
"TitansResolve": ("ChainVest", "RecurveBow"),
"WarmogsArmor": ("GiantsBelt", "GiantsBelt"),
"ZekesHerald": ("BFSword", "GiantsBelt"),
"Zephyr": ("GiantsBelt", "NegatronCloak"),
"ZzRotPortal": ("GiantsBelt", "RecurveBow"),
"ProtectorsVow": ("ChainVest","TearoftheGoddess")
}
AUGMENTS: list[str] = [
"Cybernetic Implants",
"Stand United",
"Electrocharge",
"Cybernetic Uplink",
"Celestial Blessing",
"Cybernetic Shell",
"Weakspot",
"Tri Force",
"Gadget Expert",
"Metabolic Accelerator",
"Second Wind",
"Luden's Echo",
"Last Stand",
"Ascension",
"Tiny Titans",
"Sunfire Board",
"Wise Spending",
"Component Grab Bag+",
"Featherweights",
"Thrill of the Hunt",
"Preparation",
"Blue Battery",
"Hustler",
"Windfall++",
"Verdant Veil",
"First Aid Kit",
"Rich Get Richer+",
"Combat Training",
"Meditation",
"Axiom Arc",
]