From 55202eac241be32ee10187de71ab7b65c29fdd99 Mon Sep 17 00:00:00 2001 From: Philipp AUER Date: Fri, 4 Jan 2019 18:17:55 +0100 Subject: [PATCH] rename coords to size in struct MonCoords --- include/data2.h | 2 +- src/battle_anim_80A5C6C.c | 20 +- src/battle_controller_link_opponent.c | 4 +- src/battle_controller_link_partner.c | 2 +- src/battle_controller_opponent.c | 4 +- src/battle_controller_player.c | 8 +- src/battle_controller_player_partner.c | 4 +- src/battle_controller_recorded_opponent.c | 2 +- src/battle_controller_recorded_player.c | 6 +- src/battle_controller_safari.c | 2 +- src/battle_controller_wally.c | 4 +- .../pokemon_graphics/back_pic_coordinates.h | 880 +++++++++--------- .../pokemon_graphics/front_pic_coordinates.h | 880 +++++++++--------- src/data/trainer_graphics/back_pic_tables.h | 16 +- src/data/trainer_graphics/front_pic_tables.h | 186 ++-- src/reshow_battle_screen.c | 4 +- 16 files changed, 1012 insertions(+), 1012 deletions(-) diff --git a/include/data2.h b/include/data2.h index 37ce5bf20..c1a2608ae 100644 --- a/include/data2.h +++ b/include/data2.h @@ -5,7 +5,7 @@ struct MonCoords { // This would use a bitfield, but some function // uses it as a u8 and casting won't match. - u8 coords; // u8 x:4, y:4; + u8 size; // u8 width:4, height:4; u8 y_offset; }; diff --git a/src/battle_anim_80A5C6C.c b/src/battle_anim_80A5C6C.c index 0800e67a0..3efc86bf8 100644 --- a/src/battle_anim_80A5C6C.c +++ b/src/battle_anim_80A5C6C.c @@ -72,10 +72,10 @@ static const struct UCoords8 sBattlerCoords[][4] = // One entry for each of the four Castform forms. const struct MonCoords gCastformFrontSpriteCoords[] = { - { 0x44, 17 }, // NORMAL - { 0x66, 9 }, // SUN - { 0x46, 9 }, // RAIN - { 0x86, 8 }, // HAIL + { .size = 0x44, .y_offset = 17 }, // NORMAL + { .size = 0x66, .y_offset = 9 }, // SUN + { .size = 0x46, .y_offset = 9 }, // RAIN + { .size = 0x86, .y_offset = 8 }, // HAIL }; static const u8 sCastformElevations[] = @@ -2216,17 +2216,17 @@ s16 GetBattlerSpriteCoordAttr(u8 battlerId, u8 attr) switch (attr) { case BATTLER_COORD_ATTR_HEIGHT: - return (coords->coords & 0xf) * 8; + return (coords->size & 0xf) * 8; case BATTLER_COORD_ATTR_WIDTH: - return (coords->coords >> 4) * 8; + return (coords->size >> 4) * 8; case BATTLER_COORD_ATTR_LEFT: - return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_X_2) - ((coords->coords >> 4) * 4); + return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_X_2) - ((coords->size >> 4) * 4); case BATTLER_COORD_ATTR_RIGHT: - return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_X_2) + ((coords->coords >> 4) * 4); + return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_X_2) + ((coords->size >> 4) * 4); case BATTLER_COORD_ATTR_TOP: - return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_Y_PIC_OFFSET) - ((coords->coords & 0xf) * 4); + return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_Y_PIC_OFFSET) - ((coords->size & 0xf) * 4); case BATTLER_COORD_ATTR_BOTTOM: - return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_Y_PIC_OFFSET) + ((coords->coords & 0xf) * 4); + return GetBattlerSpriteCoord(battlerId, BATTLER_COORD_Y_PIC_OFFSET) + ((coords->size & 0xf) * 4); case BATTLER_COORD_ATTR_RAW_BOTTOM: ret = GetBattlerSpriteCoord(battlerId, BATTLER_COORD_Y) + 31; return ret - coords->y_offset; diff --git a/src/battle_controller_link_opponent.c b/src/battle_controller_link_opponent.c index 33f557388..a7b08a974 100644 --- a/src/battle_controller_link_opponent.c +++ b/src/battle_controller_link_opponent.c @@ -1301,7 +1301,7 @@ static void LinkOpponentHandleDrawTrainerPic(void) SetMultiuseSpriteTemplateToTrainerBack(trainerPicId, GetBattlerPosition(gActiveBattler)); gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, xPos, - (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 40, + (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 40, GetBattlerSpriteSubpriority(gActiveBattler)); gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = -240; @@ -1324,7 +1324,7 @@ static void LinkOpponentHandleTrainerSlide(void) DecompressTrainerFrontPic(trainerPicId, gActiveBattler); SetMultiuseSpriteTemplateToTrainerBack(trainerPicId, GetBattlerPosition(gActiveBattler)); - gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 176, (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 40, 0x1E); + gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 176, (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 40, 0x1E); gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = 96; gSprites[gBattlerSpriteIds[gActiveBattler]].pos1.x += 32; diff --git a/src/battle_controller_link_partner.c b/src/battle_controller_link_partner.c index 78c2c409d..5c9a92744 100644 --- a/src/battle_controller_link_partner.c +++ b/src/battle_controller_link_partner.c @@ -1143,7 +1143,7 @@ static void LinkPartnerHandleDrawTrainerPic(void) DecompressTrainerBackPic(trainerPicId, gActiveBattler); SetMultiuseSpriteTemplateToTrainerBack(trainerPicId, GetBattlerPosition(gActiveBattler)); - gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, xPos, (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80, GetBattlerSpriteSubpriority(gActiveBattler)); + gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, xPos, (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80, GetBattlerSpriteSubpriority(gActiveBattler)); gSprites[gBattlerSpriteIds[gActiveBattler]].oam.paletteNum = gActiveBattler; gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = 240; diff --git a/src/battle_controller_opponent.c b/src/battle_controller_opponent.c index 4e600ea71..d8a0127d0 100644 --- a/src/battle_controller_opponent.c +++ b/src/battle_controller_opponent.c @@ -1292,7 +1292,7 @@ static void OpponentHandleDrawTrainerPic(void) SetMultiuseSpriteTemplateToTrainerBack(trainerPicId, GetBattlerPosition(gActiveBattler)); gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, xPos, - (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 40, + (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 40, GetBattlerSpriteSubpriority(gActiveBattler)); gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = -240; @@ -1362,7 +1362,7 @@ static void OpponentHandleTrainerSlide(void) DecompressTrainerFrontPic(trainerPicId, gActiveBattler); SetMultiuseSpriteTemplateToTrainerBack(trainerPicId, GetBattlerPosition(gActiveBattler)); - gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 176, (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 40, 0x1E); + gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 176, (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 40, 0x1E); gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = 96; gSprites[gBattlerSpriteIds[gActiveBattler]].pos1.x += 32; diff --git a/src/battle_controller_player.c b/src/battle_controller_player.c index 12ffca381..a6a6ac0f3 100644 --- a/src/battle_controller_player.c +++ b/src/battle_controller_player.c @@ -2291,18 +2291,18 @@ static void PlayerHandleDrawTrainerPic(void) if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER && gPartnerTrainerId != TRAINER_STEVEN_PARTNER) { xPos = 90; - yPos = (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 80; } else { - yPos = (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80; } } else { xPos = 80; - yPos = (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80; } // Use front pic table for any tag battles unless your partner is Steven. @@ -2365,7 +2365,7 @@ static void PlayerHandleTrainerSlide(void) DecompressTrainerBackPic(trainerPicId, gActiveBattler); SetMultiuseSpriteTemplateToTrainerBack(trainerPicId, GetBattlerPosition(gActiveBattler)); - gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 80, (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80, 30); + gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 80, (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80, 30); gSprites[gBattlerSpriteIds[gActiveBattler]].oam.paletteNum = gActiveBattler; gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = -96; diff --git a/src/battle_controller_player_partner.c b/src/battle_controller_player_partner.c index ddb241b30..3cfc94977 100644 --- a/src/battle_controller_player_partner.c +++ b/src/battle_controller_player_partner.c @@ -1308,13 +1308,13 @@ static void PlayerPartnerHandleDrawTrainerPic(void) { trainerPicId = TRAINER_BACK_PIC_STEVEN; xPos = 90; - yPos = (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80; } else { trainerPicId = GetFrontierTrainerFrontSpriteId(gPartnerTrainerId); xPos = 32; - yPos = (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 80; } // Use back pic only if the partner is Steven diff --git a/src/battle_controller_recorded_opponent.c b/src/battle_controller_recorded_opponent.c index b1b271bac..03c3c88b2 100644 --- a/src/battle_controller_recorded_opponent.c +++ b/src/battle_controller_recorded_opponent.c @@ -1248,7 +1248,7 @@ static void RecordedOpponentHandleDrawTrainerPic(void) SetMultiuseSpriteTemplateToTrainerBack(trainerPicId, GetBattlerPosition(gActiveBattler)); gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, xPos, - (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 40, + (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 40, GetBattlerSpriteSubpriority(gActiveBattler)); gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = -240; diff --git a/src/battle_controller_recorded_player.c b/src/battle_controller_recorded_player.c index 301c1f009..9055fc16b 100644 --- a/src/battle_controller_recorded_player.c +++ b/src/battle_controller_recorded_player.c @@ -1217,18 +1217,18 @@ static void RecordedPlayerHandleDrawTrainerPic(void) if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER) { xPos = 90; - yPos = (8 - gTrainerFrontPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerFrontPicCoords[trainerPicId].size) * 4 + 80; } else { - yPos = (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80; } } else { xPos = 80; - yPos = (8 - gTrainerBackPicCoords[trainerPicId].coords) * 4 + 80; + yPos = (8 - gTrainerBackPicCoords[trainerPicId].size) * 4 + 80; } if (gBattleTypeFlags & BATTLE_TYPE_INGAME_PARTNER) diff --git a/src/battle_controller_safari.c b/src/battle_controller_safari.c index 3f1542edb..54ba04ab4 100644 --- a/src/battle_controller_safari.c +++ b/src/battle_controller_safari.c @@ -359,7 +359,7 @@ static void SafariHandleDrawTrainerPic(void) gBattlerSpriteIds[gActiveBattler] = CreateSprite( &gMultiuseSpriteTemplate, 80, - (8 - gTrainerBackPicCoords[gSaveBlock2Ptr->playerGender].coords) * 4 + 80, + (8 - gTrainerBackPicCoords[gSaveBlock2Ptr->playerGender].size) * 4 + 80, 30); gSprites[gBattlerSpriteIds[gActiveBattler]].oam.paletteNum = gActiveBattler; gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = 240; diff --git a/src/battle_controller_wally.c b/src/battle_controller_wally.c index ac3604054..9a9773316 100644 --- a/src/battle_controller_wally.c +++ b/src/battle_controller_wally.c @@ -1036,7 +1036,7 @@ static void WallyHandleDrawTrainerPic(void) SetMultiuseSpriteTemplateToTrainerBack(TRAINER_BACK_PIC_WALLY, GetBattlerPosition(gActiveBattler)); gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 80, - 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].coords), + 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].size), 30); gSprites[gBattlerSpriteIds[gActiveBattler]].oam.paletteNum = gActiveBattler; gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = 240; @@ -1051,7 +1051,7 @@ static void WallyHandleTrainerSlide(void) SetMultiuseSpriteTemplateToTrainerBack(TRAINER_BACK_PIC_WALLY, GetBattlerPosition(gActiveBattler)); gBattlerSpriteIds[gActiveBattler] = CreateSprite(&gMultiuseSpriteTemplate, 80, - 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].coords), + 80 + 4 * (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].size), 30); gSprites[gBattlerSpriteIds[gActiveBattler]].oam.paletteNum = gActiveBattler; gSprites[gBattlerSpriteIds[gActiveBattler]].pos2.x = -96; diff --git a/src/data/pokemon_graphics/back_pic_coordinates.h b/src/data/pokemon_graphics/back_pic_coordinates.h index cdb28f8c3..0de0bfb52 100644 --- a/src/data/pokemon_graphics/back_pic_coordinates.h +++ b/src/data/pokemon_graphics/back_pic_coordinates.h @@ -4,2202 +4,2202 @@ const struct MonCoords gMonBackPicCoords[] = { [SPECIES_NONE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_BULBASAUR] = { - .coords = 0x64, + .size = 0x64, .y_offset = 0x10, }, [SPECIES_IVYSAUR] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_VENUSAUR] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_CHARMANDER] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0e, }, [SPECIES_CHARMELEON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_CHARIZARD] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_SQUIRTLE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0e, }, [SPECIES_WARTORTLE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_BLASTOISE] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_CATERPIE] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_METAPOD] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_BUTTERFREE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_WEEDLE] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_KAKUNA] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0a, }, [SPECIES_BEEDRILL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_PIDGEY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_PIDGEOTTO] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0c, }, [SPECIES_PIDGEOT] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x02, }, [SPECIES_RATTATA] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_RATICATE] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0d, }, [SPECIES_SPEAROW] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_FEAROW] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_EKANS] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_ARBOK] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_PIKACHU] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_RAICHU] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_SANDSHREW] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_SANDSLASH] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_NIDORAN_F] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_NIDORINA] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_NIDOQUEEN] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_NIDORAN_M] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x08, }, [SPECIES_NIDORINO] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_NIDOKING] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_CLEFAIRY] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_CLEFABLE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_VULPIX] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_NINETALES] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_JIGGLYPUFF] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_WIGGLYTUFF] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_ZUBAT] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_GOLBAT] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_ODDISH] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_GLOOM] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_VILEPLUME] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_PARAS] = { - .coords = 0x63, + .size = 0x63, .y_offset = 0x14, }, [SPECIES_PARASECT] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_VENONAT] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_VENOMOTH] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_DIGLETT] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x10, }, [SPECIES_DUGTRIO] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_MEOWTH] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_PERSIAN] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_PSYDUCK] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_GOLDUCK] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_MANKEY] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_PRIMEAPE] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_GROWLITHE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_ARCANINE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_POLIWAG] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x10, }, [SPECIES_POLIWHIRL] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_POLIWRATH] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_ABRA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_KADABRA] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_ALAKAZAM] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x05, }, [SPECIES_MACHOP] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_MACHOKE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_MACHAMP] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x04, }, [SPECIES_BELLSPROUT] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_WEEPINBELL] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_VICTREEBEL] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_TENTACOOL] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_TENTACRUEL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_GEODUDE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_GRAVELER] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0c, }, [SPECIES_GOLEM] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x10, }, [SPECIES_PONYTA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_RAPIDASH] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_SLOWPOKE] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0e, }, [SPECIES_SLOWBRO] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_MAGNEMITE] = { - .coords = 0x43, + .size = 0x43, .y_offset = 0x14, }, [SPECIES_MAGNETON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_FARFETCHD] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_DODUO] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_DODRIO] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_SEEL] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_DEWGONG] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_GRIMER] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0c, }, [SPECIES_MUK] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_SHELLDER] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_CLOYSTER] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_GASTLY] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0e, }, [SPECIES_HAUNTER] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_GENGAR] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_ONIX] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_DROWZEE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_HYPNO] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_KRABBY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_KINGLER] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_VOLTORB] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_ELECTRODE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_EXEGGCUTE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_EXEGGUTOR] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_CUBONE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_MAROWAK] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_HITMONLEE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_HITMONCHAN] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_LICKITUNG] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0e, }, [SPECIES_KOFFING] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_WEEZING] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_RHYHORN] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0c, }, [SPECIES_RHYDON] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_CHANSEY] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_TANGELA] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0e, }, [SPECIES_KANGASKHAN] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_HORSEA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_SEADRA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_GOLDEEN] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_SEAKING] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_STARYU] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_STARMIE] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0e, }, [SPECIES_MR_MIME] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_SCYTHER] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_JYNX] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_ELECTABUZZ] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_MAGMAR] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_PINSIR] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_TAUROS] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_MAGIKARP] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_GYARADOS] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_LAPRAS] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_DITTO] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x11, }, [SPECIES_EEVEE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_VAPOREON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_JOLTEON] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_FLAREON] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x05, }, [SPECIES_PORYGON] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_OMANYTE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_OMASTAR] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_KABUTO] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_KABUTOPS] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_AERODACTYL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_SNORLAX] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_ARTICUNO] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_ZAPDOS] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_MOLTRES] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_DRATINI] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_DRAGONAIR] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_DRAGONITE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_MEWTWO] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x01, }, [SPECIES_MEW] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_CHIKORITA] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_BAYLEEF] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_MEGANIUM] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_CYNDAQUIL] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_QUILAVA] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_TYPHLOSION] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_TOTODILE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_CROCONAW] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_FERALIGATR] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_SENTRET] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x05, }, [SPECIES_FURRET] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_HOOTHOOT] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_NOCTOWL] = { - .coords = 0x68, + .size = 0x68, .y_offset = 0x03, }, [SPECIES_LEDYBA] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_LEDIAN] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_SPINARAK] = { - .coords = 0x73, + .size = 0x73, .y_offset = 0x15, }, [SPECIES_ARIADOS] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_CROBAT] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_CHINCHOU] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_LANTURN] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_PICHU] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_CLEFFA] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0f, }, [SPECIES_IGGLYBUFF] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_TOGEPI] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x10, }, [SPECIES_TOGETIC] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_NATU] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x11, }, [SPECIES_XATU] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_MAREEP] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_FLAAFFY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_AMPHAROS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_BELLOSSOM] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_MARILL] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0c, }, [SPECIES_AZUMARILL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_SUDOWOODO] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_POLITOED] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_HOPPIP] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_SKIPLOOM] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_JUMPLUFF] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_AIPOM] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_SUNKERN] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_SUNFLORA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_YANMA] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_WOOPER] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0f, }, [SPECIES_QUAGSIRE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_ESPEON] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_UMBREON] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_MURKROW] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_SLOWKING] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_MISDREAVUS] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_UNOWN] = { - .coords = 0x36, + .size = 0x36, .y_offset = 0x08, }, [SPECIES_WOBBUFFET] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0c, }, [SPECIES_GIRAFARIG] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_PINECO] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0f, }, [SPECIES_FORRETRESS] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x10, }, [SPECIES_DUNSPARCE] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0f, }, [SPECIES_GLIGAR] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_STEELIX] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SNUBBULL] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_GRANBULL] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_QWILFISH] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_SCIZOR] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_SHUCKLE] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_HERACROSS] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_SNEASEL] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_TEDDIURSA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_URSARING] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_SLUGMA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_MAGCARGO] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_SWINUB] = { - .coords = 0x63, + .size = 0x63, .y_offset = 0x15, }, [SPECIES_PILOSWINE] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0d, }, [SPECIES_CORSOLA] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_REMORAID] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0d, }, [SPECIES_OCTILLERY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_DELIBIRD] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_MANTINE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_SKARMORY] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_HOUNDOUR] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_HOUNDOOM] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_KINGDRA] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_PHANPY] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0e, }, [SPECIES_DONPHAN] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_PORYGON2] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_STANTLER] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_SMEARGLE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_TYROGUE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_HITMONTOP] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_SMOOCHUM] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x09, }, [SPECIES_ELEKID] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_MAGBY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_MILTANK] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_BLISSEY] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_RAIKOU] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_ENTEI] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_SUICUNE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_LARVITAR] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_PUPITAR] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x05, }, [SPECIES_TYRANITAR] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_LUGIA] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_HO_OH] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_CELEBI] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_OLD_UNOWN_B] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_C] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_D] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_E] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_F] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_G] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_H] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_I] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_J] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_K] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_L] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_M] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_N] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_O] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_P] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_Q] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_R] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_S] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_T] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_U] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_V] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_W] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_X] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_Y] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_OLD_UNOWN_Z] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_TREECKO] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_GROVYLE] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_SCEPTILE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_TORCHIC] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x05, }, [SPECIES_COMBUSKEN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_BLAZIKEN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_MUDKIP] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_MARSHTOMP] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_SWAMPERT] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_POOCHYENA] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_MIGHTYENA] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_ZIGZAGOON] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_LINOONE] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0f, }, [SPECIES_WURMPLE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_SILCOON] = { - .coords = 0x83, + .size = 0x83, .y_offset = 0x15, }, [SPECIES_BEAUTIFLY] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CASCOON] = { - .coords = 0x73, + .size = 0x73, .y_offset = 0x14, }, [SPECIES_DUSTOX] = { - .coords = 0x83, + .size = 0x83, .y_offset = 0x14, }, [SPECIES_LOTAD] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0f, }, [SPECIES_LOMBRE] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_LUDICOLO] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_SEEDOT] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_NUZLEAF] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_SHIFTRY] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_NINCADA] = { - .coords = 0x83, + .size = 0x83, .y_offset = 0x14, }, [SPECIES_NINJASK] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_SHEDINJA] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_TAILLOW] = { - .coords = 0x64, + .size = 0x64, .y_offset = 0x11, }, [SPECIES_SWELLOW] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_SHROOMISH] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_BRELOOM] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_SPINDA] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_WINGULL] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0e, }, [SPECIES_PELIPPER] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_SURSKIT] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_MASQUERAIN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_WAILMER] = { - .coords = 0x83, + .size = 0x83, .y_offset = 0x15, }, [SPECIES_WAILORD] = { - .coords = 0x83, + .size = 0x83, .y_offset = 0x16, }, [SPECIES_SKITTY] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_DELCATTY] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_KECLEON] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_BALTOY] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_CLAYDOL] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_NOSEPASS] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0c, }, [SPECIES_TORKOAL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_SABLEYE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_BARBOACH] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_WHISCASH] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_LUVDISC] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0a, }, [SPECIES_CORPHISH] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_CRAWDAUNT] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_FEEBAS] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_MILOTIC] = { - .coords = 0x68, + .size = 0x68, .y_offset = 0x02, }, [SPECIES_CARVANHA] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_SHARPEDO] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_TRAPINCH] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0e, }, [SPECIES_VIBRAVA] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x11, }, [SPECIES_FLYGON] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_MAKUHITA] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_HARIYAMA] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_ELECTRIKE] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x10, }, [SPECIES_MANECTRIC] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_NUMEL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_CAMERUPT] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x13, }, [SPECIES_SPHEAL] = { - .coords = 0x64, + .size = 0x64, .y_offset = 0x12, }, [SPECIES_SEALEO] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_WALREIN] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_CACNEA] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0f, }, [SPECIES_CACTURNE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_SNORUNT] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_GLALIE] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0c, }, [SPECIES_LUNATONE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_SOLROCK] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_AZURILL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_SPOINK] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_GRUMPIG] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_PLUSLE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_MINUN] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_MAWILE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_MEDITITE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_MEDICHAM] = { - .coords = 0x68, + .size = 0x68, .y_offset = 0x03, }, [SPECIES_SWABLU] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_ALTARIA] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_WYNAUT] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_DUSKULL] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_DUSCLOPS] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_ROSELIA] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_SLAKOTH] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0f, }, [SPECIES_VIGOROTH] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_SLAKING] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_GULPIN] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_SWALOT] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_TROPIUS] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_WHISMUR] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_LOUDRED] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_EXPLOUD] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_CLAMPERL] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_HUNTAIL] = { - .coords = 0x68, + .size = 0x68, .y_offset = 0x02, }, [SPECIES_GOREBYSS] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_ABSOL] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_SHUPPET] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_BANETTE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_SEVIPER] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_ZANGOOSE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_RELICANTH] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_ARON] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x11, }, [SPECIES_LAIRON] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x11, }, [SPECIES_AGGRON] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_CASTFORM] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0d, }, [SPECIES_VOLBEAT] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_ILLUMISE] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_LILEEP] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_CRADILY] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_ANORITH] = { - .coords = 0x83, + .size = 0x83, .y_offset = 0x17, }, [SPECIES_ARMALDO] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_RALTS] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0d, }, [SPECIES_KIRLIA] = { - .coords = 0x57, + .size = 0x57, .y_offset = 0x06, }, [SPECIES_GARDEVOIR] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_BAGON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_SHELGON] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_SALAMENCE] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_BELDUM] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_METANG] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x10, }, [SPECIES_METAGROSS] = { - .coords = 0x83, + .size = 0x83, .y_offset = 0x14, }, [SPECIES_REGIROCK] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_REGICE] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0e, }, [SPECIES_REGISTEEL] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0e, }, [SPECIES_KYOGRE] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x13, }, [SPECIES_GROUDON] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_RAYQUAZA] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_LATIAS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_LATIOS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_JIRACHI] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_DEOXYS] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_CHIMECHO] = { - .coords = 0x47, + .size = 0x47, .y_offset = 0x07, }, [SPECIES_EGG] = { - .coords = 0x36, + .size = 0x36, .y_offset = 0x0a, }, [SPECIES_UNOWN_B] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x09, }, [SPECIES_UNOWN_C] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_UNOWN_D] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x08, }, [SPECIES_UNOWN_E] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_UNOWN_F] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_UNOWN_G] = { - .coords = 0x57, + .size = 0x57, .y_offset = 0x05, }, [SPECIES_UNOWN_H] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_UNOWN_I] = { - .coords = 0x37, + .size = 0x37, .y_offset = 0x07, }, [SPECIES_UNOWN_J] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x09, }, [SPECIES_UNOWN_K] = { - .coords = 0x57, + .size = 0x57, .y_offset = 0x07, }, [SPECIES_UNOWN_L] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0a, }, [SPECIES_UNOWN_M] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_UNOWN_N] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_UNOWN_O] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_UNOWN_P] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0a, }, [SPECIES_UNOWN_Q] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_UNOWN_R] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0c, }, [SPECIES_UNOWN_S] = { - .coords = 0x57, + .size = 0x57, .y_offset = 0x04, }, [SPECIES_UNOWN_T] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0d, }, [SPECIES_UNOWN_U] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_UNOWN_V] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_UNOWN_W] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0d, }, [SPECIES_UNOWN_X] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_UNOWN_Y] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0a, }, [SPECIES_UNOWN_Z] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0a, }, [SPECIES_UNOWN_EMARK] = { - .coords = 0x37, + .size = 0x37, .y_offset = 0x06, }, [SPECIES_UNOWN_QMARK] = { - .coords = 0x47, + .size = 0x47, .y_offset = 0x06, }, }; diff --git a/src/data/pokemon_graphics/front_pic_coordinates.h b/src/data/pokemon_graphics/front_pic_coordinates.h index a01f0360f..95ec7a132 100644 --- a/src/data/pokemon_graphics/front_pic_coordinates.h +++ b/src/data/pokemon_graphics/front_pic_coordinates.h @@ -4,2202 +4,2202 @@ const struct MonCoords gMonFrontPicCoords[] = { [SPECIES_NONE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_BULBASAUR] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0e, }, [SPECIES_IVYSAUR] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_VENUSAUR] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_CHARMANDER] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_CHARMELEON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_CHARIZARD] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_SQUIRTLE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_WARTORTLE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_BLASTOISE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CATERPIE] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x10, }, [SPECIES_METAPOD] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x14, }, [SPECIES_BUTTERFREE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_WEEDLE] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x12, }, [SPECIES_KAKUNA] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0e, }, [SPECIES_BEEDRILL] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_PIDGEY] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_PIDGEOTTO] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x0b, }, [SPECIES_PIDGEOT] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_RATTATA] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x10, }, [SPECIES_RATICATE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_SPEAROW] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0f, }, [SPECIES_FEAROW] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_EKANS] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_ARBOK] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_PIKACHU] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x09, }, [SPECIES_RAICHU] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x04, }, [SPECIES_SANDSHREW] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_SANDSLASH] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_NIDORAN_F] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0f, }, [SPECIES_NIDORINA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_NIDOQUEEN] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_NIDORAN_M] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_NIDORINO] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_NIDOKING] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x02, }, [SPECIES_CLEFAIRY] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x10, }, [SPECIES_CLEFABLE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_VULPIX] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_NINETALES] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_JIGGLYPUFF] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x10, }, [SPECIES_WIGGLYTUFF] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x08, }, [SPECIES_ZUBAT] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_GOLBAT] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_ODDISH] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0f, }, [SPECIES_GLOOM] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_VILEPLUME] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_PARAS] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_PARASECT] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_VENONAT] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_VENOMOTH] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_DIGLETT] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x12, }, [SPECIES_DUGTRIO] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0d, }, [SPECIES_MEOWTH] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_PERSIAN] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_PSYDUCK] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x09, }, [SPECIES_GOLDUCK] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x02, }, [SPECIES_MANKEY] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0e, }, [SPECIES_PRIMEAPE] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_GROWLITHE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_ARCANINE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_POLIWAG] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x13, }, [SPECIES_POLIWHIRL] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_POLIWRATH] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_ABRA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_KADABRA] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_ALAKAZAM] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_MACHOP] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_MACHOKE] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_MACHAMP] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_BELLSPROUT] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0f, }, [SPECIES_WEEPINBELL] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_VICTREEBEL] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_TENTACOOL] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x09, }, [SPECIES_TENTACRUEL] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_GEODUDE] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x12, }, [SPECIES_GRAVELER] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_GOLEM] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_PONYTA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_RAPIDASH] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_SLOWPOKE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_SLOWBRO] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_MAGNEMITE] = { - .coords = 0x43, + .size = 0x43, .y_offset = 0x15, }, [SPECIES_MAGNETON] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_FARFETCHD] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_DODUO] = { - .coords = 0x57, + .size = 0x57, .y_offset = 0x05, }, [SPECIES_DODRIO] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SEEL] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_DEWGONG] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_GRIMER] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_MUK] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_SHELLDER] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x10, }, [SPECIES_CLOYSTER] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_GASTLY] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_HAUNTER] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_GENGAR] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_ONIX] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x02, }, [SPECIES_DROWZEE] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_HYPNO] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_KRABBY] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0d, }, [SPECIES_KINGLER] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_VOLTORB] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x13, }, [SPECIES_ELECTRODE] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_EXEGGCUTE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_EXEGGUTOR] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CUBONE] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_MAROWAK] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0b, }, [SPECIES_HITMONLEE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_HITMONCHAN] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x04, }, [SPECIES_LICKITUNG] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_KOFFING] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_WEEZING] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_RHYHORN] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_RHYDON] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_CHANSEY] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_TANGELA] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_KANGASKHAN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_HORSEA] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0f, }, [SPECIES_SEADRA] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_GOLDEEN] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_SEAKING] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_STARYU] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_STARMIE] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_MR_MIME] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_SCYTHER] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_JYNX] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_ELECTABUZZ] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x02, }, [SPECIES_MAGMAR] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_PINSIR] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_TAUROS] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_MAGIKARP] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_GYARADOS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x08, }, [SPECIES_LAPRAS] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0d, }, [SPECIES_DITTO] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x11, }, [SPECIES_EEVEE] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x09, }, [SPECIES_VAPOREON] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_JOLTEON] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_FLAREON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_PORYGON] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0d, }, [SPECIES_OMANYTE] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0f, }, [SPECIES_OMASTAR] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_KABUTO] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x11, }, [SPECIES_KABUTOPS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_AERODACTYL] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_SNORLAX] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_ARTICUNO] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_ZAPDOS] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_MOLTRES] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_DRATINI] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0e, }, [SPECIES_DRAGONAIR] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_DRAGONITE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_MEWTWO] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_MEW] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0d, }, [SPECIES_CHIKORITA] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0d, }, [SPECIES_BAYLEEF] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_MEGANIUM] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CYNDAQUIL] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_QUILAVA] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_TYPHLOSION] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_TOTODILE] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_CROCONAW] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_FERALIGATR] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SENTRET] = { - .coords = 0x47, + .size = 0x47, .y_offset = 0x04, }, [SPECIES_FURRET] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_HOOTHOOT] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0d, }, [SPECIES_NOCTOWL] = { - .coords = 0x58, + .size = 0x58, .y_offset = 0x03, }, [SPECIES_LEDYBA] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0c, }, [SPECIES_LEDIAN] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x04, }, [SPECIES_SPINARAK] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x13, }, [SPECIES_ARIADOS] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_CROBAT] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CHINCHOU] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x10, }, [SPECIES_LANTURN] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x0b, }, [SPECIES_PICHU] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0c, }, [SPECIES_CLEFFA] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x14, }, [SPECIES_IGGLYBUFF] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x12, }, [SPECIES_TOGEPI] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x14, }, [SPECIES_TOGETIC] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x09, }, [SPECIES_NATU] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x14, }, [SPECIES_XATU] = { - .coords = 0x47, + .size = 0x47, .y_offset = 0x07, }, [SPECIES_MAREEP] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x10, }, [SPECIES_FLAAFFY] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_AMPHAROS] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_BELLOSSOM] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0e, }, [SPECIES_MARILL] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0e, }, [SPECIES_AZUMARILL] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_SUDOWOODO] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_POLITOED] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_HOPPIP] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_SKIPLOOM] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_JUMPLUFF] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_AIPOM] = { - .coords = 0x58, + .size = 0x58, .y_offset = 0x03, }, [SPECIES_SUNKERN] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x10, }, [SPECIES_SUNFLORA] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x08, }, [SPECIES_YANMA] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_WOOPER] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x10, }, [SPECIES_QUAGSIRE] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x07, }, [SPECIES_ESPEON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_UMBREON] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x08, }, [SPECIES_MURKROW] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_SLOWKING] = { - .coords = 0x58, + .size = 0x58, .y_offset = 0x01, }, [SPECIES_MISDREAVUS] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_UNOWN] = { - .coords = 0x35, + .size = 0x35, .y_offset = 0x0f, }, [SPECIES_WOBBUFFET] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_GIRAFARIG] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_PINECO] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_FORRETRESS] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_DUNSPARCE] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x11, }, [SPECIES_GLIGAR] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_STEELIX] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SNUBBULL] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0d, }, [SPECIES_GRANBULL] = { - .coords = 0x57, + .size = 0x57, .y_offset = 0x06, }, [SPECIES_QWILFISH] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0a, }, [SPECIES_SCIZOR] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SHUCKLE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_HERACROSS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_SNEASEL] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x05, }, [SPECIES_TEDDIURSA] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0d, }, [SPECIES_URSARING] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x01, }, [SPECIES_SLUGMA] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0d, }, [SPECIES_MAGCARGO] = { - .coords = 0x57, + .size = 0x57, .y_offset = 0x0d, }, [SPECIES_SWINUB] = { - .coords = 0x43, + .size = 0x43, .y_offset = 0x14, }, [SPECIES_PILOSWINE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_CORSOLA] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_REMORAID] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_OCTILLERY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_DELIBIRD] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x08, }, [SPECIES_MANTINE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_SKARMORY] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_HOUNDOUR] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_HOUNDOOM] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_KINGDRA] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x04, }, [SPECIES_PHANPY] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x10, }, [SPECIES_DONPHAN] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_PORYGON2] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_STANTLER] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SMEARGLE] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_TYROGUE] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x09, }, [SPECIES_HITMONTOP] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x05, }, [SPECIES_SMOOCHUM] = { - .coords = 0x35, + .size = 0x35, .y_offset = 0x0f, }, [SPECIES_ELEKID] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_MAGBY] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0d, }, [SPECIES_MILTANK] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_BLISSEY] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x06, }, [SPECIES_RAIKOU] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_ENTEI] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SUICUNE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_LARVITAR] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x09, }, [SPECIES_PUPITAR] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x09, }, [SPECIES_TYRANITAR] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_LUGIA] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_HO_OH] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CELEBI] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_OLD_UNOWN_B] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_C] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_D] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_E] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_F] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_G] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_H] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_I] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_J] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_K] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_L] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_M] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_N] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_O] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_P] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_Q] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_R] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_S] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_T] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_U] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_V] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_W] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_X] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_Y] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_OLD_UNOWN_Z] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_TREECKO] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_GROVYLE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_SCEPTILE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_TORCHIC] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x08, }, [SPECIES_COMBUSKEN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_BLAZIKEN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_MUDKIP] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0c, }, [SPECIES_MARSHTOMP] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_SWAMPERT] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_POOCHYENA] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_MIGHTYENA] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_ZIGZAGOON] = { - .coords = 0x85, + .size = 0x85, .y_offset = 0x0f, }, [SPECIES_LINOONE] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_WURMPLE] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0e, }, [SPECIES_SILCOON] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x11, }, [SPECIES_BEAUTIFLY] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x09, }, [SPECIES_CASCOON] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x10, }, [SPECIES_DUSTOX] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0f, }, [SPECIES_LOTAD] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0e, }, [SPECIES_LOMBRE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_LUDICOLO] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SEEDOT] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x10, }, [SPECIES_NUZLEAF] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x08, }, [SPECIES_SHIFTRY] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_NINCADA] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x12, }, [SPECIES_NINJASK] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_SHEDINJA] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_TAILLOW] = { - .coords = 0x64, + .size = 0x64, .y_offset = 0x10, }, [SPECIES_SWELLOW] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_SHROOMISH] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x10, }, [SPECIES_BRELOOM] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_SPINDA] = { - .coords = 0x68, + .size = 0x68, .y_offset = 0x08, }, [SPECIES_WINGULL] = { - .coords = 0x84, + .size = 0x84, .y_offset = 0x18, }, [SPECIES_PELIPPER] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x04, }, [SPECIES_SURSKIT] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0f, }, [SPECIES_MASQUERAIN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_WAILMER] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0f, }, [SPECIES_WAILORD] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x0a, }, [SPECIES_SKITTY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0b, }, [SPECIES_DELCATTY] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_KECLEON] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_BALTOY] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x10, }, [SPECIES_CLAYDOL] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x06, }, [SPECIES_NOSEPASS] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0c, }, [SPECIES_TORKOAL] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_SABLEYE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_BARBOACH] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0b, }, [SPECIES_WHISCASH] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x09, }, [SPECIES_LUVDISC] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x18, }, [SPECIES_CORPHISH] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0c, }, [SPECIES_CRAWDAUNT] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_FEEBAS] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x0d, }, [SPECIES_MILOTIC] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CARVANHA] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x06, }, [SPECIES_SHARPEDO] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_TRAPINCH] = { - .coords = 0x54, + .size = 0x54, .y_offset = 0x10, }, [SPECIES_VIBRAVA] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0c, }, [SPECIES_FLYGON] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_MAKUHITA] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_HARIYAMA] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_ELECTRIKE] = { - .coords = 0x64, + .size = 0x64, .y_offset = 0x12, }, [SPECIES_MANECTRIC] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x04, }, [SPECIES_NUMEL] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0f, }, [SPECIES_CAMERUPT] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x09, }, [SPECIES_SPHEAL] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x10, }, [SPECIES_SEALEO] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0a, }, [SPECIES_WALREIN] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_CACNEA] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x10, }, [SPECIES_CACTURNE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_SNORUNT] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_GLALIE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x0a, }, [SPECIES_LUNATONE] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_SOLROCK] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_AZURILL] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_SPOINK] = { - .coords = 0x46, + .size = 0x46, .y_offset = 0x09, }, [SPECIES_GRUMPIG] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_PLUSLE] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0e, }, [SPECIES_MINUN] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0c, }, [SPECIES_MAWILE] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_MEDITITE] = { - .coords = 0x65, + .size = 0x65, .y_offset = 0x0c, }, [SPECIES_MEDICHAM] = { - .coords = 0x68, + .size = 0x68, .y_offset = 0x01, }, [SPECIES_SWABLU] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x11, }, [SPECIES_ALTARIA] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_WYNAUT] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_DUSKULL] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0a, }, [SPECIES_DUSCLOPS] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x05, }, [SPECIES_ROSELIA] = { - .coords = 0x76, + .size = 0x76, .y_offset = 0x08, }, [SPECIES_SLAKOTH] = { - .coords = 0x74, + .size = 0x74, .y_offset = 0x12, }, [SPECIES_VIGOROTH] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_SLAKING] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x08, }, [SPECIES_GULPIN] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x12, }, [SPECIES_SWALOT] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_TROPIUS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_WHISMUR] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_LOUDRED] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_EXPLOUD] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_CLAMPERL] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0e, }, [SPECIES_HUNTAIL] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x03, }, [SPECIES_GOREBYSS] = { - .coords = 0x86, + .size = 0x86, .y_offset = 0x0b, }, [SPECIES_ABSOL] = { - .coords = 0x68, + .size = 0x68, .y_offset = 0x00, }, [SPECIES_SHUPPET] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0e, }, [SPECIES_BANETTE] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0c, }, [SPECIES_SEVIPER] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x08, }, [SPECIES_ZANGOOSE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x05, }, [SPECIES_RELICANTH] = { - .coords = 0x77, + .size = 0x77, .y_offset = 0x0b, }, [SPECIES_ARON] = { - .coords = 0x43, + .size = 0x43, .y_offset = 0x14, }, [SPECIES_LAIRON] = { - .coords = 0x75, + .size = 0x75, .y_offset = 0x0d, }, [SPECIES_AGGRON] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_CASTFORM] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x11, }, [SPECIES_VOLBEAT] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_ILLUMISE] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x08, }, [SPECIES_LILEEP] = { - .coords = 0x67, + .size = 0x67, .y_offset = 0x07, }, [SPECIES_CRADILY] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x00, }, [SPECIES_ANORITH] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x08, }, [SPECIES_ARMALDO] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_RALTS] = { - .coords = 0x35, + .size = 0x35, .y_offset = 0x0f, }, [SPECIES_KIRLIA] = { - .coords = 0x47, + .size = 0x47, .y_offset = 0x06, }, [SPECIES_GARDEVOIR] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x01, }, [SPECIES_BAGON] = { - .coords = 0x56, + .size = 0x56, .y_offset = 0x0b, }, [SPECIES_SHELGON] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x09, }, [SPECIES_SALAMENCE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_BELDUM] = { - .coords = 0x55, + .size = 0x55, .y_offset = 0x0f, }, [SPECIES_METANG] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x07, }, [SPECIES_METAGROSS] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x06, }, [SPECIES_REGIROCK] = { - .coords = 0x78, + .size = 0x78, .y_offset = 0x04, }, [SPECIES_REGICE] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_REGISTEEL] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x03, }, [SPECIES_KYOGRE] = { - .coords = 0x87, + .size = 0x87, .y_offset = 0x04, }, [SPECIES_GROUDON] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_RAYQUAZA] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x00, }, [SPECIES_LATIAS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_LATIOS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x02, }, [SPECIES_JIRACHI] = { - .coords = 0x66, + .size = 0x66, .y_offset = 0x0d, }, [SPECIES_DEOXYS] = { - .coords = 0x88, + .size = 0x88, .y_offset = 0x01, }, [SPECIES_CHIMECHO] = { - .coords = 0x37, + .size = 0x37, .y_offset = 0x06, }, [SPECIES_EGG] = { - .coords = 0x33, + .size = 0x33, .y_offset = 0x14, }, [SPECIES_UNOWN_B] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x10, }, [SPECIES_UNOWN_C] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x10, }, [SPECIES_UNOWN_D] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x10, }, [SPECIES_UNOWN_E] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x11, }, [SPECIES_UNOWN_F] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x11, }, [SPECIES_UNOWN_G] = { - .coords = 0x35, + .size = 0x35, .y_offset = 0x0e, }, [SPECIES_UNOWN_H] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x10, }, [SPECIES_UNOWN_I] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x10, }, [SPECIES_UNOWN_J] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x11, }, [SPECIES_UNOWN_K] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x11, }, [SPECIES_UNOWN_L] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x13, }, [SPECIES_UNOWN_M] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x13, }, [SPECIES_UNOWN_N] = { - .coords = 0x43, + .size = 0x43, .y_offset = 0x14, }, [SPECIES_UNOWN_O] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x10, }, [SPECIES_UNOWN_P] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x13, }, [SPECIES_UNOWN_Q] = { - .coords = 0x43, + .size = 0x43, .y_offset = 0x15, }, [SPECIES_UNOWN_R] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x13, }, [SPECIES_UNOWN_S] = { - .coords = 0x45, + .size = 0x45, .y_offset = 0x0c, }, [SPECIES_UNOWN_T] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x12, }, [SPECIES_UNOWN_U] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x12, }, [SPECIES_UNOWN_V] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x12, }, [SPECIES_UNOWN_W] = { - .coords = 0x44, + .size = 0x44, .y_offset = 0x13, }, [SPECIES_UNOWN_X] = { - .coords = 0x33, + .size = 0x33, .y_offset = 0x15, }, [SPECIES_UNOWN_Y] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x11, }, [SPECIES_UNOWN_Z] = { - .coords = 0x34, + .size = 0x34, .y_offset = 0x10, }, [SPECIES_UNOWN_EMARK] = { - .coords = 0x35, + .size = 0x35, .y_offset = 0x0f, }, [SPECIES_UNOWN_QMARK] = { - .coords = 0x35, + .size = 0x35, .y_offset = 0x0d, }, }; diff --git a/src/data/trainer_graphics/back_pic_tables.h b/src/data/trainer_graphics/back_pic_tables.h index 8d4e27694..920ecbb39 100644 --- a/src/data/trainer_graphics/back_pic_tables.h +++ b/src/data/trainer_graphics/back_pic_tables.h @@ -1,13 +1,13 @@ const struct MonCoords gTrainerBackPicCoords[] = { - {8, 4}, - {8, 4}, - {8, 5}, - {8, 5}, - {8, 4}, - {8, 4}, - {8, 4}, - {8, 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 5}, + {.size = 8, .y_offset = 5}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, + {.size = 8, .y_offset = 4}, }; // this table goes functionally unused, since none of these pics are compressed diff --git a/src/data/trainer_graphics/front_pic_tables.h b/src/data/trainer_graphics/front_pic_tables.h index d8f8c2492..fc637fc6e 100644 --- a/src/data/trainer_graphics/front_pic_tables.h +++ b/src/data/trainer_graphics/front_pic_tables.h @@ -1,98 +1,98 @@ const struct MonCoords gTrainerFrontPicCoords[] = { - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 2}, - {8, 2}, - {8, 1}, - {8, 1}, - {8, 2}, - {8, 1}, - {8, 2}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 2}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 2}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, - {8, 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 2}, + {.size = 8, .y_offset = 2}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 2}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 2}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 2}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 2}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, + {.size = 8, .y_offset = 1}, }; const struct CompressedSpriteSheet gTrainerFrontPicTable[] = diff --git a/src/reshow_battle_screen.c b/src/reshow_battle_screen.c index 1b17c372c..0926d4569 100644 --- a/src/reshow_battle_screen.c +++ b/src/reshow_battle_screen.c @@ -240,7 +240,7 @@ static void CreateBattlerSprite(u8 battler) { SetMultiuseSpriteTemplateToTrainerBack(gSaveBlock2Ptr->playerGender, GetBattlerPosition(B_POSITION_PLAYER_LEFT)); gBattlerSpriteIds[battler] = CreateSprite(&gMultiuseSpriteTemplate, 0x50, - (8 - gTrainerBackPicCoords[gSaveBlock2Ptr->playerGender].coords) * 4 + 80, + (8 - gTrainerBackPicCoords[gSaveBlock2Ptr->playerGender].size) * 4 + 80, GetBattlerSpriteSubpriority(0)); gSprites[gBattlerSpriteIds[battler]].oam.paletteNum = battler; gSprites[gBattlerSpriteIds[battler]].callback = SpriteCallbackDummy; @@ -250,7 +250,7 @@ static void CreateBattlerSprite(u8 battler) { SetMultiuseSpriteTemplateToTrainerBack(TRAINER_BACK_PIC_WALLY, GetBattlerPosition(0)); gBattlerSpriteIds[battler] = CreateSprite(&gMultiuseSpriteTemplate, 0x50, - (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].coords) * 4 + 80, + (8 - gTrainerBackPicCoords[TRAINER_BACK_PIC_WALLY].size) * 4 + 80, GetBattlerSpriteSubpriority(0)); gSprites[gBattlerSpriteIds[battler]].oam.paletteNum = battler; gSprites[gBattlerSpriteIds[battler]].callback = SpriteCallbackDummy;