|
2 | 2 | Team composition used by the bot
|
3 | 3 | Comps come from https://tftactics.gg/tierlist/team-comps
|
4 | 4 | Items are in camel case and a-Z
|
5 |
| -The "headliner" tag represents a trait from bottom to top. |
6 |
| -Set to True if you want it in your team. |
7 |
| -Only final comp champion will become headliner and need to set the corresponding 'headliner' tag to True. |
8 |
| -e.g. Only want "Sentinel" Ekko, set it to "headliner": [True, False, False] |
9 |
| -e.g.2 want either "Sentinel" or "True Damage" Ekko, set it to "headliner": [True, False, True] |
| 5 | +Items will be placed on the top champion first, and prioritize building items on the left. |
10 | 6 | """
|
11 | 7 |
|
12 | 8 | COMP = {
|
13 |
| - "Irelia": { |
| 9 | + "Tristana": { |
14 | 10 | "board_position": 6,
|
15 |
| - "items": ["GiantSlayer", "GuinsoosRageblade", "InfinityEdge"], |
| 11 | + "items": ["GuinsoosRageblade", "InfinityEdge", "LastWhisper"], |
16 | 12 | "level": 3,
|
17 | 13 | "final_comp": True
|
18 | 14 | },
|
19 |
| - "Galio": { |
20 |
| - "board_position": 25, |
21 |
| - "items": ["BrambleVest", "DragonsClaw", "WarmogsArmor"], |
| 15 | + "Volibear": { |
| 16 | + "board_position": 27, |
| 17 | + "items": ["Bloodthirster", "TitansResolve", "WarmogsArmor"], |
22 | 18 | "level": 3,
|
23 | 19 | "final_comp": True
|
24 | 20 | },
|
25 |
| - "Sivir": { |
26 |
| - "board_position": 5, |
| 21 | + "Irelia": { |
| 22 | + "board_position": 0, |
27 | 23 | "items": ["GiantSlayer", "GuinsoosRageblade", "InfinityEdge"],
|
28 | 24 | "level": 2,
|
29 | 25 | "final_comp": True
|
30 | 26 | },
|
31 |
| - "Zoe": { |
32 |
| - "board_position": 4, |
33 |
| - "items": ["JeweledGauntlet","RabadonsDeathcap","SpearofShojin"], |
| 27 | + "Wukong": { |
| 28 | + "board_position": 22, |
| 29 | + "items": ["HandofJustice"], |
34 | 30 | "level": 2,
|
35 | 31 | "final_comp": True
|
36 | 32 | },
|
37 |
| - "Illaoi": { |
38 |
| - "board_position": 23, |
39 |
| - "items": ["BrambleVest", "DragonsClaw", "WarmogsArmor"], |
| 33 | + "LeeSin": { |
| 34 | + "board_position": 25, |
| 35 | + "items": [], |
40 | 36 | "level": 2,
|
41 | 37 | "final_comp": True
|
42 | 38 | },
|
43 |
| - "Zyra": { |
44 |
| - "board_position": 1, |
45 |
| - "items": [], |
| 39 | + "Diana": { |
| 40 | + "board_position": 26, |
| 41 | + "items": ["BrambleVest", "DragonsClaw", "WarmogsArmor"], |
46 | 42 | "level": 2,
|
47 | 43 | "final_comp": True
|
48 | 44 | },
|
49 |
| - "Riven": { |
50 |
| - "board_position": 27, |
51 |
| - "items": ["ThiefsGloves"], |
| 45 | + "Qiyana": { |
| 46 | + "board_position": 24, |
| 47 | + "items": [], |
52 | 48 | "level": 2,
|
53 | 49 | "final_comp": True
|
54 | 50 | },
|
55 |
| - "Garen": { |
56 |
| - "board_position": 21, |
| 51 | + "Darius": { |
| 52 | + "board_position": 23, |
57 | 53 | "items": [],
|
58 | 54 | "level": 2,
|
59 | 55 | "final_comp": True
|
60 | 56 | },
|
61 |
| - "Kobuko": { |
62 |
| - "board_position": 22, |
| 57 | + "Yorick": { |
| 58 | + "board_position": 20, |
63 | 59 | "items": [],
|
64 | 60 | "level": 2,
|
65 | 61 | "final_comp": False
|
66 | 62 | },
|
67 |
| - "Teemo": { |
68 |
| - "board_position": 13, |
| 63 | + "Yasuo": { |
| 64 | + "board_position": 19, |
69 | 65 | "items": [],
|
70 | 66 | "level": 2,
|
71 | 67 | "final_comp": False
|
|
78 | 74 | # For those augments names with suffixes like I, II, III, such as 'Cybernetic Uplink II',
|
79 | 75 | # You only need to add 'Cybernetic Uplink' in the list to cover all three levels.
|
80 | 76 | AUGMENTS: list[str] = [
|
81 |
| - "That's Jazz Baby!", |
| 77 | + "Tiny but Deadly", |
| 78 | + "Pumping up", |
| 79 | + "Extended Duel", |
82 | 80 | "You Have My Bow",
|
83 | 81 | "Blistering Strikes",
|
84 | 82 | "Buried Treasures",
|
|
133 | 131 | "Scapegoat",
|
134 | 132 | "Wandering Trainer",
|
135 | 133 | "Recombobulator",
|
136 |
| - "Forge" |
| 134 | + "Forge", |
| 135 | + "Crest Test Dummies" |
137 | 136 | ]
|
138 | 137 |
|
139 | 138 |
|
|
0 commit comments