Boy/Girl option

This adds the boy/girl selection from later generations, using the pret tutorial and a spriteset from Pokemon Anniversary Red. I made some alterations, namely inserting the option later into the speech to be less clunky, and having the Nidorino become a Nidorina if you pick the feminine option.

I decided to make the third name option Seren, a common Welsh name for girls. It means "star", which is really cute! But...most people will probably say it's a Panel de Pon reference, which is cool too.
This commit is contained in:
Llinos Evans 2023-05-13 00:08:39 +01:00
parent 3b16404a50
commit 36baa9e623
28 changed files with 225 additions and 35 deletions

View file

@ -2027,7 +2027,12 @@ RunMapScript::
LoadWalkingPlayerSpriteGraphics::
ld de, RedSprite
ld hl, vNPCSprites
ld a, [wPlayerSex]
and a
jr z, .AreGuy1
ld de, GreenSprite
.AreGuy1
ld hl,vNPCSprites
jr LoadPlayerSpriteGraphicsCommon
LoadSurfingPlayerSpriteGraphics::
@ -2037,6 +2042,11 @@ LoadSurfingPlayerSpriteGraphics::
LoadBikePlayerSpriteGraphics::
ld de, RedBikeSprite
ld a, [wPlayerSex]
and a
jr z, .AreGuy2
ld de, GreenBikeSprite
.AreGuy2
ld hl, vNPCSprites
LoadPlayerSpriteGraphicsCommon::

View file

@ -520,7 +520,7 @@ TextCommand_SOUND::
jr z, .pokemonCry
cp TX_SOUND_CRY_PIDGEOT
jr z, .pokemonCry
cp TX_SOUND_CRY_DEWGONG
cp TX_SOUND_CRY_NIDORINA
jr z, .pokemonCry
ld a, [hl]
call PlaySound
@ -548,7 +548,7 @@ TextCommandSounds::
db TX_SOUND_DEX_PAGE_ADDED, SFX_DEX_PAGE_ADDED
db TX_SOUND_CRY_NIDORINO, NIDORINO ; used in OakSpeech
db TX_SOUND_CRY_PIDGEOT, PIDGEOT ; used in SaffronCityText12
db TX_SOUND_CRY_DEWGONG, DEWGONG ; unused
db TX_SOUND_CRY_NIDORINA, NIDORINA ; was unused dewgong call
TextCommand_DOTS::
; wait for button press or 30 frames while printing "…"s