Add MC Mode (from *Trendsetters*) as importable character

This commit is contained in:
RocketRobz 2021-08-25 23:58:05 -06:00
parent 0e6256b8c8
commit 5a8d946cb5
16 changed files with 8 additions and 24 deletions

View File

@ -11,6 +11,7 @@ const char* import_everyCharacterNames[] {
"Emmylou",
"Avery",
"Shoko",
"MC Mode",
"India",
"Daphne",
"Genevieve",
@ -63,6 +64,7 @@ const char* import_everyCharacterProfileNamesEUR[] {
"Harriet",
"Avery",
"Shoko",
"MC Mode",
"India",
"Daphne",
"Genevieve",

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -6,6 +6,7 @@ const char* import_ss2CharacterNames[] = {
"Emmylou",
"Avery", // aka Lola (EUR)
"Shoko", // (JAP)
"MC Mode",
"India", // aka Elena (EUR)
"Daphne", // aka Shivani (EUR)
"Genevieve", // aka Faye (EUR)
@ -28,6 +29,7 @@ const char* import_nsbCharacterNames[] = {
"Harriet",
"Avery", // Lola (EUR)
"Shoko", // (JAP)
"MC Mode",
"India", // Elena (EUR)
"Daphne", // Shivani (EUR)
"Genevieve", // Faye (EUR)
@ -50,6 +52,7 @@ bool import_ss2CharacterGenders[] = {
false, // Female
false, // Female
false, // Female
true, // Male
false, // Female
false, // Female
false, // Female
@ -63,25 +66,4 @@ bool import_ss2CharacterGenders[] = {
false, // Female
false, // Female
false, // Female
};
/*bool import_ss2CharacterTieColors[] = {
false, // Pink
true, // Light Green
false, // Pink
false, // Pink
true, // Light Green
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
false, // Pink
};*/
};

View File

@ -371,7 +371,7 @@ void CharacterChange::getMaxChars() {
} else if (import_highlightedGame == 2) {
import_totalCharacters = 0x10;
} else if (import_highlightedGame == 1) {
import_totalCharacters = 0x12;
import_totalCharacters = 0x13;
} else if (import_highlightedGame == 0) {
import_totalCharacters = 0x7;
}
@ -690,7 +690,7 @@ void CharacterChange::addEveryone(void) {
backupSS3DLCharacters("sdmc:/3ds/SavvyManager/SS3/dlCharacters.bak");
for (int i = 0; i < 49; i++) {
for (int i = 0; i < 50; i++) {
sprintf(chrFilePath, "romfs:/character/Fashion Forward/All Seasons/%s.chr", import_everyCharacterNames[i]);
if (access(chrFilePath, F_OK) != 0) {
sprintf(chrFilePath, "romfs:/character/Fashion Forward/%s/%s.chr", seasonName(), import_everyCharacterNames[i]);