Add Wario and Waluigi

This commit is contained in:
RocketRobz 2020-09-03 17:51:41 -06:00
parent 7f09c16b9c
commit b7989ae118
12 changed files with 23 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

View File

@ -0,0 +1,4 @@
--atlas -f rgba -z auto
"characters/Super Mario/All Seasons/zoom0/Waluigi.png"
"characters/Super Mario/All Seasons/zoom1/Waluigi.png"
"characters/Super Mario/All Seasons/zoom2/Waluigi.png"

View File

@ -0,0 +1,4 @@
--atlas -f rgba -z auto
"characters/Super Mario/All Seasons/zoom0/Wario.png"
"characters/Super Mario/All Seasons/zoom1/Wario.png"
"characters/Super Mario/All Seasons/zoom2/Wario.png"

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

View File

@ -142,9 +142,11 @@ void PhotoStudio::getMaxChars() {
import_totalCharacters = 0xD; import_totalCharacters = 0xD;
break; break;
case 4: case 4:
case 5:
import_totalCharacters = 3; import_totalCharacters = 3;
break; break;
case 5:
import_totalCharacters = 5;
break;
case 11: case 11:
case 14: case 14:
case 15: case 15:

View File

@ -3,11 +3,15 @@
const char* smCharacterNames[] = { const char* smCharacterNames[] = {
"Mario", "Mario",
"Luigi", "Luigi",
"Wario",
"Waluigi",
"Peach", "Peach",
"Daisy", "Daisy",
}; };
bool smCharacterGenders[] = { bool smCharacterGenders[] = {
true, // Male
true, // Male
true, // Male true, // Male
true, // Male true, // Male
false, // Female false, // Female
@ -17,24 +21,32 @@ bool smCharacterGenders[] = {
const char* smCharacterFileNamesSpring[] = { const char* smCharacterFileNamesSpring[] = {
"sm_Mario", "sm_Mario",
"sm_Luigi", "sm_Luigi",
"sm_Wario",
"sm_Waluigi",
"sm_Peach", "sm_Peach",
"sm_Daisy", "sm_Daisy",
}; };
const char* smCharacterFileNamesSummer[] = { const char* smCharacterFileNamesSummer[] = {
"sm_Mario", "sm_Mario",
"sm_Luigi", "sm_Luigi",
"sm_Wario",
"sm_Waluigi",
"sm_Peach", "sm_Peach",
"sm_Daisy", "sm_Daisy",
}; };
const char* smCharacterFileNamesFall[] = { const char* smCharacterFileNamesFall[] = {
"sm_Mario", "sm_Mario",
"sm_Luigi", "sm_Luigi",
"sm_Wario",
"sm_Waluigi",
"sm_Peach", "sm_Peach",
"sm_Daisy", "sm_Daisy",
}; };
const char* smCharacterFileNamesWinter[] = { const char* smCharacterFileNamesWinter[] = {
"sm_Mario", "sm_Mario",
"sm_Luigi", "sm_Luigi",
"sm_Wario",
"sm_Waluigi",
"sm_Peach", "sm_Peach",
"sm_Daisy", "sm_Daisy",
}; };