Skip to content

Commit

Permalink
Update docstring for how to prioritizing augments
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony5301 committed Jan 22, 2024
1 parent 6628496 commit d366f8b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions comps.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
COMP = {
"MissFortune": {
"board_position": 6,
"items": ["Deathblade", "LastWhisper", "GuinsoosRageblade"],
"items": ["GuinsoosRageblade", "Deathblade", "LastWhisper"],
"level": 2,
"final_comp": True,
"headliner": [False, True, False]
Expand Down Expand Up @@ -40,21 +40,21 @@
},
"Ekko": {
"board_position": 5,
"items": [],
"items": ["ThiefsGloves"],
"level": 2,
"final_comp": True,
"headliner": [False, False, False]
},
"Bard": {
"board_position": 0,
"items": [],
"items": ["JeweledGauntlet","SpearofShojin"],
"level": 2,
"final_comp": True,
"headliner": [False, True, False]
},
"KaiSa": {
"board_position": 1,
"items": [],
"items": ["ThiefsGloves"],
"level": 2,
"final_comp": True,
"headliner": [False, False, False]
Expand Down Expand Up @@ -84,6 +84,7 @@

# No logic for certain augments meaning the bot won't know what to do if they are included in here
# (Anything that changes gameplay or adds something to the bench).
# The ones on the top will be prioritized for selection.
AUGMENTS: list[str] = [
"That's Jazz Baby!",
"You Have My Bow",
Expand Down

0 comments on commit d366f8b

Please sign in to comment.