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

Commit

Permalink
vg 56 assets
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousikai authored and Ousikai committed Jan 29, 2022
1 parent f6fe578 commit fc3f1c9
Show file tree
Hide file tree
Showing 19 changed files with 71 additions and 40 deletions.
Binary file modified assets/Azura/Azura_Preview.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions assets/Azura/Azura_Quotes.txt
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
We walk together.
Care for an encore?
We create the future.
For the world I dreamt of!
Duo: The finale!
Duo: Together... We sing!
Azura: Out of our way!
Leanne: Stay back!
4 changes: 4 additions & 0 deletions assets/Azura/Deen_Quotes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Playtime's over!
Nothing personal.
Learn to fight!
Enough messing around.
Binary file added assets/Deen/Deen_Preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/Deen/Deen_Quotes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Playtime's over!
Nothing personal.
Learn to fight!
Enough messing around.
Binary file modified assets/Dorothea/Dorothea_Preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions assets/Dorothea/Dorothea_Quotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Take a deep breath.
Sorry—I play rough.
Take in some rays!
Tropical attack!
Duo: A curse on you!
Duo: Let's give them a show. Yeah!
Dorothea: All eyes on us!
Lene: Watch your step!
Binary file modified assets/Karla/Karla_Preview.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions assets/Karla/Karla_Quotes.txt
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
My sword arts, brought to bear.
How can I refuse a fight?
I do not enjoy battle...
You will die.
I will not hold back.
Do me the honor.
One step closer ...
Show me your strength.
Binary file modified assets/Kris/Kris_Preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions assets/Kris/Kris_Quotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
I won't let you pass!
Are you prepared?
Dare not underestimate me.
I will not lose.
How's this!
You're finished!
Intolerable!
Prepare yourself!
Binary file modified assets/Nailah/Nailah_Preview.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions assets/Nailah/Nailah_Quotes.txt
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Let's have a little fun.
I'm your opponent.
Not bad.
I'll dye my fangs red.
Welcome to Hatari.
To the wolves.
Bow.
Having fun?
Binary file added assets/Raphael/Raphael_Preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions assets/Raphael/Raphael_Quotes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Sorry about this!
Curse you!
Doing my best!
Look out below!
Binary file modified assets/Tharja/Tharja_Preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions assets/Tharja/Tharja_Quotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Celebrate with me!
This is for you!
I'll dye YOU red!
Time to feast!
Here. Have a curse.
How would you like to die?
No escaping me.
Suffer.
19 changes: 19 additions & 0 deletions convoy/assets_check.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from config import * # current VG particpants and round dates

print("Hello world!")
units = [vg_unit_1, vg_unit_2, vg_unit_3, vg_unit_4, vg_unit_5, vg_unit_6, vg_unit_7, vg_unit_8]
for unit in units:
print('Testing %s' % unit)
quote_url = "./assets/%s/%s_Quotes.txt" % (unit, unit)
quotes = open(quote_url).read().splitlines()
print("~~~")
print(quotes[0])
print(quotes[1])
print(quotes[2])
print(quotes[3])
print("~~~")
img_url = "./assets/%s/%s_Preview.png" % (unit, unit)
fd = open(img_url, 'r')
# pngdata = fd.read()
fd.close()
print('Assets of %s successfully opened' % unit)
32 changes: 16 additions & 16 deletions convoy/config.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# UTC is 7 Hours Ahead PDT
vg_assets_root_path="assets"
vg_hashtag='#BtM'
vg_hashtag='#DD'
vg_test=False
vg_url='https://support.fire-emblem-heroes.com/voting_gauntlet/tournaments/55'
round_1_start_raw = 'Dec 26 2021 7:00AM'
round_1_end_raw = 'Dec 28 2021 4:00AM'
round_2_start_raw = 'Dec 28 2021 7:00AM'
round_2_end_raw = 'Dec 30 2021 4:00AM'
round_3_start_raw = 'Dec 30 2021 7:00AM'
round_3_end_raw = 'Jan 01 2022 4:00AM'
vg_unit_1 = "Rolf"
vg_unit_2 = "Gordin"
vg_unit_3 = "Erk"
vg_unit_4 = "Asbel"
vg_unit_5 = "Leonie"
vg_unit_6 = "Ewan"
vg_unit_7 = "Lilina"
vg_unit_8 = "Gharnef"
vg_url='https://support.fire-emblem-heroes.com/voting_gauntlet/tournaments/56'
round_1_start_raw = 'Jan 29 2021 7:00AM'
round_1_end_raw = 'Jan 31 2021 4:00AM'
round_2_start_raw = 'Jan 31 2021 7:00AM'
round_2_end_raw = 'Feb 02 2021 4:00AM'
round_3_start_raw = 'Feb 02 2021 7:00AM'
round_3_end_raw = 'Feb 04 2022 4:00AM'
vg_unit_1 = "Dorothea"
vg_unit_2 = "Azura"
vg_unit_3 = "Tharja"
vg_unit_4 = "Nailah"
vg_unit_5 = "Kris"
vg_unit_6 = "Karla"
vg_unit_7 = "Raphael"
vg_unit_8 = "Deen"
discord_channel_ids = {
vg_unit_1 : 783177258713874443,
vg_unit_2 : 783177296646897665,
Expand Down

0 comments on commit fc3f1c9

Please sign in to comment.