-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change internal Pokémon IDs to national dex ones.
Also expand the pokédex to 254 entries.
- Loading branch information
Showing
159 changed files
with
1,083 additions
and
818 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
from extras.pokemontools.pokemon_constants import pokemon_constants | ||
|
||
for pokemon in pokemon_constants.values()[0:151]: | ||
text = "" | ||
f = open('data/baseStats/{}.asm'.format(pokemon.lower().replace('_', '')), 'r+w') | ||
for line in f.readlines(): | ||
if line == "db 0 ; padding\n" or line.startswith("db BANK("): | ||
p = pokemon.capitalize() | ||
if p == "Nidoran_f": p = "NidoranF" | ||
if p == "Nidoran_m": p = "NidoranM" | ||
if p == "Farfetch_d": p = "Farfetchd" | ||
if p == "Mr__mime": p = "MrMime" | ||
text += "db BANK({}PicFront)\n".format(p) | ||
else: | ||
text += line | ||
f.seek(0) | ||
f.write(text) | ||
f.close() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,4 +150,4 @@ DEX_DRAGONITE EQU 149 | |
DEX_MEWTWO EQU 150 | ||
DEX_MEW EQU 151 | ||
|
||
NUM_POKEMON EQU 151 | ||
NUM_POKEMON EQU 254 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110000 | |
db %10000111 | ||
db %00111000 | ||
db %01000011 | ||
db 0 ; padding | ||
db BANK(AbraPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %01100011 | ||
db %00001100 | ||
db %00001010 | ||
db 0 ; padding | ||
db BANK(AerodactylPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ db %11111000 | |
db %10000111 | ||
db %00111000 | ||
db %01000011 | ||
db 0 ; padding | ||
db BANK(AlakazamPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001110 | |
db %10000010 | ||
db %10001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(ArbokPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11101000 | |
db %11100011 | ||
db %00001000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(ArcaninePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %01000011 | ||
db %00001100 | ||
db %00001010 | ||
db 0 ; padding | ||
db BANK(ArticunoPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %11000011 | ||
db %00001000 | ||
db %00000110 | ||
db 0 ; padding | ||
db BANK(BeedrillPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %00000011 | ||
db %00001000 | ||
db %00000110 | ||
db 0 ; padding | ||
db BANK(BellsproutPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001110 | |
db %10000011 | ||
db %00001000 | ||
db %00110010 | ||
db 0 ; padding | ||
db BANK(BlastoisePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %00000011 | ||
db %00001000 | ||
db %00000110 | ||
db 0 ; padding | ||
db BANK(BulbasaurPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ IF DEF(_YELLOW) | |
ELSE | ||
db %00000010 | ||
ENDC | ||
db 0 ; padding | ||
db BANK(ButterfreePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %00000000 | |
db %00000000 | ||
db %00000000 | ||
db %00000000 | ||
db 0 ; padding | ||
db BANK(CaterpiePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ db %11110001 | |
db %10110111 | ||
db %00111001 | ||
db %01100011 | ||
db 0 ; padding | ||
db BANK(ChanseyPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ IF DEF(_YELLOW) | |
ELSE | ||
db %00100110 | ||
ENDC | ||
db 0 ; padding | ||
db BANK(CharizardPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001000 | |
db %11100011 | ||
db %00001000 | ||
db %00100110 | ||
db 0 ; padding | ||
db BANK(CharmanderPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001000 | |
db %11100011 | ||
db %00001000 | ||
db %00100110 | ||
db 0 ; padding | ||
db BANK(CharmeleonPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110001 | |
db %10100111 | ||
db %00111000 | ||
db %01100011 | ||
db 0 ; padding | ||
db BANK(ClefablePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110001 | |
db %10100111 | ||
db %00111000 | ||
db %01100011 | ||
db 0 ; padding | ||
db BANK(ClefairyPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11100000 | |
db %01001011 | ||
db %01001000 | ||
db %00010011 | ||
db 0 ; padding | ||
db BANK(CloysterPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001110 | |
db %10100010 | ||
db %00001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(CubonePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %10000010 | ||
db %00001000 | ||
db %00110010 | ||
db 0 ; padding | ||
db BANK(DewgongPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ IF DEF(_YELLOW) | |
ELSE | ||
db %00000010 | ||
ENDC | ||
db 0 ; padding | ||
db BANK(DiglettPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %00000000 | |
db %00000000 | ||
db %00000000 | ||
db %00000000 | ||
db 0 ; padding | ||
db BANK(DittoPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %10000011 | ||
db %00001100 | ||
db %00001011 | ||
db 0 ; padding | ||
db BANK(DodrioPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %10000011 | ||
db %00001100 | ||
db %00001011 | ||
db 0 ; padding | ||
db BANK(DoduoPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000001 | |
db %11100011 | ||
db %00011000 | ||
db %00010010 | ||
db 0 ; padding | ||
db BANK(DragonairPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000001 | |
db %11100011 | ||
db %00011000 | ||
db %00110010 | ||
db 0 ; padding | ||
db BANK(DragonitePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000001 | |
db %11100011 | ||
db %00011000 | ||
db %00010010 | ||
db 0 ; padding | ||
db BANK(DratiniPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110000 | |
db %10000111 | ||
db %00111010 | ||
db %01000011 | ||
db 0 ; padding | ||
db BANK(DrowzeePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ IF DEF(_YELLOW) | |
ELSE | ||
db %00000010 | ||
ENDC | ||
db 0 ; padding | ||
db BANK(DugtrioPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ db %11000000 | |
db %11000011 | ||
db %00001000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(EeveePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001110 | |
db %10000010 | ||
db %10001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(EkansPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110001 | |
db %11000111 | ||
db %00111000 | ||
db %01100010 | ||
db 0 ; padding | ||
db BANK(ElectabuzzPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11100001 | |
db %11001011 | ||
db %01011000 | ||
db %01000010 | ||
db 0 ; padding | ||
db BANK(ElectrodePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110000 | |
db %00011011 | ||
db %01101000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(ExeggcutePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110000 | |
db %00011011 | ||
db %01101000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(ExeggutorPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,5 @@ db %11000000 | |
db %11000011 | ||
db %00001000 | ||
db %00001110 | ||
db 0 ; padding | ||
db BANK(FarfetchdPicFront) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %01000010 | ||
db %00001100 | ||
db %00001010 | ||
db 0 ; padding | ||
db BANK(FearowPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ db %11000000 | |
db %11100011 | ||
db %00001000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(FlareonPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11010001 | |
db %00001010 | ||
db %01101010 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(GastlyPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11010001 | |
db %10001110 | ||
db %01101010 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(GengarPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001110 | |
db %00101110 | ||
db %11001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(GeodudePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %00000011 | ||
db %00001000 | ||
db %00000110 | ||
db 0 ; padding | ||
db BANK(GloomPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %01000010 | ||
db %00001000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(GolbatPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %11000010 | ||
db %00001000 | ||
db %00010010 | ||
db 0 ; padding | ||
db BANK(GoldeenPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001000 | |
db %11000010 | ||
db %00001000 | ||
db %00110010 | ||
db 0 ; padding | ||
db BANK(GolduckPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001110 | |
db %00101110 | ||
db %11001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(GolemPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001110 | |
db %00101110 | ||
db %11001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(GravelerPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000001 | |
db %00101010 | ||
db %01001000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(GrimerPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11001000 | |
db %11100011 | ||
db %00001000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(GrowlithePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,4 @@ db %11000001 | |
db %10100011 | ||
db %00001000 | ||
db %00110010 | ||
db 0 ; padding | ||
db BANK(GyaradosPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11010001 | |
db %00001010 | ||
db %01101010 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(HaunterPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %11000110 | ||
db %00001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(HitmonchanPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %11000110 | ||
db %00001000 | ||
db %00100010 | ||
db 0 ; padding | ||
db BANK(HitmonleePicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %11000010 | ||
db %00001000 | ||
db %00010010 | ||
db 0 ; padding | ||
db BANK(HorseaPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110000 | |
db %10000111 | ||
db %00111010 | ||
db %01000011 | ||
db 0 ; padding | ||
db BANK(HypnoPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %00000011 | ||
db %00001000 | ||
db %00000110 | ||
db 0 ; padding | ||
db BANK(IvysaurPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110001 | |
db %10100011 | ||
db %00111000 | ||
db %01100011 | ||
db 0 ; padding | ||
db BANK(JigglypuffPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ db %11000001 | |
db %11000011 | ||
db %00011000 | ||
db %01000010 | ||
db 0 ; padding | ||
db BANK(JolteonPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11110000 | |
db %10000111 | ||
db %00101000 | ||
db %00000010 | ||
db 0 ; padding | ||
db BANK(JynxPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %00000011 | ||
db %00001000 | ||
db %00010010 | ||
db 0 ; padding | ||
db BANK(KabutoPicFront) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ db %11000000 | |
db %10000011 | ||
db %00001000 | ||
db %00010010 | ||
db 0 ; padding | ||
db BANK(KabutopsPicFront) |
Oops, something went wrong.