Add NightScript

This commit is contained in:
RocketRobz 2023-01-08 23:26:43 -07:00
parent 045c24d3ce
commit 8cd59e05a8
8 changed files with 14 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

View File

@ -0,0 +1,4 @@
--atlas -f rgba -z auto
"characters/Rocket Photo Shoot/All Seasons/zoom0/NightScript.png"
"characters/Rocket Photo Shoot/All Seasons/zoom1/NightScript.png"
"characters/Rocket Photo Shoot/All Seasons/zoom2/NightScript.png"

View File

@ -8,6 +8,7 @@
# Characters, Locations, and Music by
* Namco
* Nicalis
* NightScript*
* Nintendo
* Rare
* Rocket Robz*
@ -26,6 +27,8 @@
* devkitPro: libnds, libctru, citro2d/3d, nds-hb-menu's file/folder browsing code
* [Universal-Team](https://github.com/Universal-Team): Universal Core
* [SuperSaiyajinStackZ](https://github.com/SuperSaiyajinStackZ): StackZ and Stackie avatars
* StackZ avatar made by Rocket Robz
* [NightScript](https://github.com/NightScript370): NightScript avatar (made by Rocket Robz)
* [Church of Kondo](https://www.youtube.com/@ChurchofKondoh): Some included remastered music
* [Pk11](https://github.com/Epicpkmn11): DSi version's font rendering code
* [chyyran](https://github.com/chyyran): DS(i) version's alpha blending and sound streaming code

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -5,6 +5,7 @@ const char* rocketCharacterNames[] = {
"Rabz",
"StackZ",
"Stackie",
"NightScript",
};
bool rocketCharacterGenders[] = {
@ -12,6 +13,7 @@ bool rocketCharacterGenders[] = {
false, // Female
true, // Male
false, // Female
true, // Male
};
const char* rocketCharacterFileNamesSpring[] = {
@ -19,22 +21,26 @@ const char* rocketCharacterFileNamesSpring[] = {
"rocket_RabzSpring",
"rocket_StackZ",
"rocket_StackieSpring",
"rocket_NightScript",
};
const char* rocketCharacterFileNamesSummer[] = {
"ss4_Robz1",
"rocket_RabzSpring",
"rocket_StackZ",
"rocket_StackieSummer",
"rocket_NightScript",
};
const char* rocketCharacterFileNamesFall[] = {
"ss4_Robz2",
"rocket_RabzFall",
"rocket_StackZ",
"rocket_StackieSpring",
"rocket_NightScript",
};
const char* rocketCharacterFileNamesWinter[] = {
"ss4_Robz3",
"rocket_RabzWinter",
"rocket_StackZ",
"rocket_StackieSpring",
"rocket_NightScript",
};

View File

@ -238,9 +238,6 @@ void PhotoStudio::getMaxChars() {
case 3:
import_totalCharacters = 0xD;
break;
case 4:
import_totalCharacters = 3;
break;
case 5:
import_totalCharacters = 6;
break;
@ -259,6 +256,7 @@ void PhotoStudio::getMaxChars() {
case 13:
import_totalCharacters = 1;
break;
case 4:
case 9:
import_totalCharacters = 4;
break;