Skip to content

Commit

Permalink
Add: Nidorina and Nidoqueen, not just Nidoran♀, can produce either ge…
Browse files Browse the repository at this point in the history
…nder of Nidoran eggs.
  • Loading branch information
roukaour committed Sep 9, 2016
1 parent ec63b36 commit 9e0a024
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ These changes have been made since the previous 2.0.0 release. If you build the
* Add: Move Nuzlocke mode option away from common ones.
* Add: X/Y Gym Leader music for Valerie.
* Add: Fairy tale references.
* Add: Nidorina and Nidoqueen, not just Nidoran♀, can produce either gender of Nidoran eggs.
* Fix: Flash no longer requires the Zephyr Badge, since earning the Zephyr Badge requires using Flash.
* Fix: The Rocket Grunt♀ who gives you a password has a glitched unbeatable team.
* Fix: The Day-Care gives back fainted Pokémon in Nuzlocke mode.
Expand Down
5 changes: 5 additions & 0 deletions event/daycare.asm
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,12 @@ DayCare_InitBreeding: ; 16a3b

ld a, [CurPartySpecies]
cp NIDORAN_F
jr z, .NidoranFamilyMother
cp NIDORINA
jr z, .NidoranFamilyMother
cp NIDOQUEEN
jr nz, .GotEggSpecies
.NidoranFamilyMother:
call Random
cp 1 + 50 percent
ld a, NIDORAN_F
Expand Down

0 comments on commit 9e0a024

Please sign in to comment.