Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
vg70 config (#117)
Browse files Browse the repository at this point in the history
Co-authored-by: Ousikai <[email protected]>
  • Loading branch information
oscoDOTblog and Ousikai authored May 3, 2023
1 parent a84cf7c commit 523926f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
30 changes: 15 additions & 15 deletions bots/convoy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
vg_assets_root_path="assets"
vg_hashtag='#NC'
vg_test=False # True <- set to 'True' when testing
vg_url='https://support.fire-emblem-heroes.com/voting_gauntlet/tournaments/69'
round_1_start_raw = 'Mar 01 2023 7:00AM'
round_1_end_raw = 'Mar 03 2023 4:00AM'
round_2_start_raw = 'Mar 03 2023 7:00AM'
round_2_end_raw = 'Mar 05 2023 4:00AM'
round_3_start_raw = 'Mar 05 2023 7:00AM'
round_3_end_raw = 'Mar 07 2023 4:00AM'
vg_unit_1 = "SEdelgard"
vg_unit_2 = "Veronica"
vg_unit_3 = "Camilla"
vg_unit_4 = "FEdelgard"
vg_unit_5 = "Fomortiis"
vg_unit_6 = "Robin"
vg_unit_7 = "Chrom"
vg_unit_8 = "Ophelia"
vg_url='https://support.fire-emblem-heroes.com/voting_gauntlet/tournaments/70'
round_1_start_raw = 'Apr 01 2023 7:00AM'
round_1_end_raw = 'Apr 03 2023 4:00AM'
round_2_start_raw = 'Apr 03 2023 7:00AM'
round_2_end_raw = 'Apr 05 2023 4:00AM'
round_3_start_raw = 'Apr 05 2023 7:00AM'
round_3_end_raw = 'Apr 07 2023 4:00AM'
vg_unit_1 = "Caineghis"
vg_unit_2 = "Yarne"
vg_unit_3 = "Ash"
vg_unit_4 = "Askr"
vg_unit_5 = "Celine"
vg_unit_6 = "Alear"
vg_unit_7 = "Garon"
vg_unit_8 = "Nemesis"
discord_channel_ids = {
vg_unit_1 : 783177258713874443,
vg_unit_2 : 783177296646897665,
Expand Down
3 changes: 3 additions & 0 deletions bots/convoy/gauntlet_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ def get_unit_scores():
if "Black" in x_text and "Knight" in x_text:
print("Changing text to BlackKnight")
x_text = "BlackKnight"
if "C" in x_text and "line" in x_text:
print("Changing text to Celine")
x_text = "Celine"
## -- This is a live VG! -- ##
if not (vg_test):
# print("VG is NOW!!!")
Expand Down

0 comments on commit 523926f

Please sign in to comment.