This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ousikai
authored and
Ousikai
committed
Jan 29, 2022
1 parent
f6fe578
commit fc3f1c9
Showing
19 changed files
with
71 additions
and
40 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters