From b5a8e3b3b32b2734d8fc642c77d96a0d4ef9c6d1 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Mon, 25 Dec 2017 23:45:54 -0500 Subject: Follow the X_constants/X_data_constants convention --- constants.asm | 3 +- constants/item_constants.asm | 186 --------- constants/item_data_constants.asm | 190 +++++++++ constants/map_constants.asm | 759 +++++++++++++++++++++------------- constants/map_data_constants.asm | 287 +++++++++++++ constants/map_dimension_constants.asm | 488 ---------------------- data/maps/environment_colors.asm | 2 +- 7 files changed, 960 insertions(+), 955 deletions(-) create mode 100644 constants/item_data_constants.asm create mode 100644 constants/map_data_constants.asm delete mode 100644 constants/map_dimension_constants.asm diff --git a/constants.asm b/constants.asm index b8c38cc46..acc2553ee 100644 --- a/constants.asm +++ b/constants.asm @@ -8,11 +8,12 @@ INCLUDE "constants/pokemon_constants.asm" INCLUDE "constants/type_constants.asm" INCLUDE "constants/move_constants.asm" INCLUDE "constants/battle_constants.asm" -INCLUDE "constants/map_dimension_constants.asm" INCLUDE "constants/map_constants.asm" +INCLUDE "constants/map_data_constants.asm" INCLUDE "constants/map_setup_constants.asm" INCLUDE "constants/landmark_constants.asm" INCLUDE "constants/item_constants.asm" +INCLUDE "constants/item_data_constants.asm" INCLUDE "constants/trainer_constants.asm" INCLUDE "constants/script_constants.asm" INCLUDE "constants/event_flags.asm" diff --git a/constants/item_constants.asm b/constants/item_constants.asm index 5dc506604..9a536ae7a 100644 --- a/constants/item_constants.asm +++ b/constants/item_constants.asm @@ -273,189 +273,3 @@ ITEM_FROM_MEM EQU $FF SAFARI_BALL EQU $08 ; MOON_STONE MOON_STONE_RED EQU $0A ; BURN_HEAL FULL_HEAL_RED EQU $34 ; X_SPEED - -; mail -MAIL_MSG_LENGTH EQU $20 -MAILBOX_CAPACITY EQU 10 -MAIL_STRUCT_LENGTH EQU $2f ; mailmsg struct - -; pack pockets -ITEM EQU 1 -KEY_ITEM EQU 2 -BALL EQU 3 -TM_HM EQU 4 - -; pack pocket sizes -MAX_ITEMS EQU 20 -MAX_KEY_ITEMS EQU 25 -MAX_BALLS EQU 12 -MAX_PC_ITEMS EQU 50 - -; item actions -CANT_SELECT EQU 1 << 6 -CANT_TOSS EQU 1 << 7 - - -; held item effects - const_def - const HELD_NONE - const HELD_BERRY - const HELD_2 - const HELD_LEFTOVERS - const HELD_4 - const HELD_5 - const HELD_RESTORE_PP - const HELD_7 - const HELD_CLEANSE_TAG - -const_value SET 10 - const HELD_HEAL_POISON - const HELD_HEAL_FREEZE - const HELD_HEAL_BURN - const HELD_HEAL_SLEEP - const HELD_HEAL_PARALYZE - const HELD_HEAL_STATUS - const HELD_HEAL_CONFUSION - -const_value SET 20 - const HELD_PREVENT_POISON - const HELD_PREVENT_BURN - const HELD_PREVENT_FREEZE - const HELD_PREVENT_SLEEP - const HELD_PREVENT_PARALYZE - const HELD_PREVENT_CONFUSE - -const_value SET 30 - const HELD_30 - const HELD_ATTACK_UP - const HELD_DEFENSE_UP - const HELD_SPEED_UP - const HELD_SP_ATTACK_UP - const HELD_SP_DEFENSE_UP - const HELD_ACCURACY_UP - const HELD_EVASION_UP - const HELD_38 - -const_value SET 40 - const HELD_40 - const HELD_41 - const HELD_METAL_POWDER - -const_value SET 50 - const HELD_NORMAL_BOOST - const HELD_FIGHTING_BOOST - const HELD_FLYING_BOOST - const HELD_POISON_BOOST - const HELD_GROUND_BOOST - const HELD_ROCK_BOOST - const HELD_BUG_BOOST - const HELD_GHOST_BOOST - const HELD_FIRE_BOOST - const HELD_WATER_BOOST - const HELD_GRASS_BOOST - const HELD_ELECTRIC_BOOST - const HELD_PSYCHIC_BOOST - const HELD_ICE_BOOST - const HELD_DRAGON_BOOST - const HELD_DARK_BOOST - const HELD_STEEL_BOOST - -const_value SET 70 - const HELD_CATCH_CHANCE - const HELD_71 - const HELD_ESCAPE - const HELD_CRITICAL_UP - const HELD_QUICK_CLAW - const HELD_FLINCH - const HELD_AMULET_COIN - const HELD_BRIGHTPOWDER - const HELD_78 - const HELD_FOCUS_BAND - -; item_attribute struct members (see data/items/item_attributes.asm) - const_def - const ITEMATTR_PRICE - const ITEMATTR_PRICE_HI - const ITEMATTR_EFFECT - const ITEMATTR_PARAM - const ITEMATTR_PERMISSIONS - const ITEMATTR_POCKET - const ITEMATTR_HELP -ITEMATTR_STRUCT_LENGTH EQU const_value - -; item menu types -ITEMMENU_NOUSE EQU 0 -ITEMMENU_CURRENT EQU 4 -ITEMMENU_PARTY EQU 5 -ITEMMENU_CLOSE EQU 6 - -; mart types (see engine/mart.asm) - const_def - const MARTTYPE_STANDARD - const MARTTYPE_BITTER - const MARTTYPE_BARGAIN - const MARTTYPE_PHARMACY - const MARTTYPE_ROOFTOP - -; Marts indexes (see data/items/marts.asm) - const_def - const MART_CHERRYGROVE - const MART_CHERRYGROVE_DEX - const MART_VIOLET - const MART_AZALEA - const MART_CIANWOOD - const MART_GOLDENROD_2F_1 - const MART_GOLDENROD_2F_2 - const MART_GOLDENROD_3F - const MART_GOLDENROD_4F - const MART_GOLDENROD_5F_1 - const MART_GOLDENROD_5F_2 - const MART_GOLDENROD_5F_3 - const MART_GOLDENROD_5F_4 - const MART_OLIVINE - const MART_ECRUTEAK - const MART_MAHOGANY_1 - const MART_MAHOGANY_2 - const MART_BLACKTHORN - const MART_VIRIDIAN - const MART_PEWTER - const MART_CERULEAN - const MART_LAVENDER - const MART_VERMILION - const MART_CELADON_2F_1 - const MART_CELADON_2F_2 - const MART_CELADON_3F - const MART_CELADON_4F - const MART_CELADON_5F_1 - const MART_CELADON_5F_2 - const MART_FUCHSIA - const MART_SAFFRON - const MART_MT_MOON - const MART_INDIGO_PLATEAU - const MART_UNDERGROUND - -; PartyMenuActionText values -; GetPartyMenuTilemapPointers arguments (see engine/party_menu.asm) - const_def - const PARTYMENUACTION_CHOOSE_POKEMON - const PARTYMENUACTION_HEALING_ITEM - const PARTYMENUACTION_SWITCH - const PARTYMENUACTION_TEACH_TMHM - const PARTYMENUACTION_MOVE - const PARTYMENUACTION_EVO_STONE - const PARTYMENUACTION_GIVE_MON - const PARTYMENUACTION_GIVE_MON_FEMALE ; unused - const PARTYMENUACTION_GIVE_ITEM - const PARTYMENUACTION_MOBILE ; mobile -; PrintPartyMenuActionText arguments (see engine/party_menu.asm) -const_value set $f0 - const PARTYMENUTEXT_HEAL_PSN - const PARTYMENUTEXT_HEAL_BRN - const PARTYMENUTEXT_HEAL_FRZ - const PARTYMENUTEXT_HEAL_SLP - const PARTYMENUTEXT_HEAL_PAR - const PARTYMENUTEXT_HEAL_HP - const PARTYMENUTEXT_HEAL_ALL - const PARTYMENUTEXT_REVIVE - const PARTYMENUTEXT_LEVEL_UP - const PARTYMENUTEXT_HEAL_CONFUSION diff --git a/constants/item_data_constants.asm b/constants/item_data_constants.asm new file mode 100644 index 000000000..2dee5b962 --- /dev/null +++ b/constants/item_data_constants.asm @@ -0,0 +1,190 @@ +; item_attributes struct members (see data/items/item_attributes.asm) + const_def + const ITEMATTR_PRICE + const ITEMATTR_PRICE_HI + const ITEMATTR_EFFECT + const ITEMATTR_PARAM + const ITEMATTR_PERMISSIONS + const ITEMATTR_POCKET + const ITEMATTR_HELP +ITEMATTR_STRUCT_LENGTH EQU const_value + + +; pack pockets +ITEM EQU 1 +KEY_ITEM EQU 2 +BALL EQU 3 +TM_HM EQU 4 + +; pack pocket sizes +MAX_ITEMS EQU 20 +MAX_KEY_ITEMS EQU 25 +MAX_BALLS EQU 12 +MAX_PC_ITEMS EQU 50 + + +; item menu types +ITEMMENU_NOUSE EQU 0 +ITEMMENU_CURRENT EQU 4 +ITEMMENU_PARTY EQU 5 +ITEMMENU_CLOSE EQU 6 + +; item actions +CANT_SELECT EQU 1 << 6 +CANT_TOSS EQU 1 << 7 + + +; mail +MAIL_MSG_LENGTH EQU $20 +MAILBOX_CAPACITY EQU 10 +MAIL_STRUCT_LENGTH EQU $2f ; mailmsg struct + + +; held item effects + const_def + const HELD_NONE + const HELD_BERRY + const HELD_2 + const HELD_LEFTOVERS + const HELD_4 + const HELD_5 + const HELD_RESTORE_PP + const HELD_7 + const HELD_CLEANSE_TAG + +const_value SET 10 + const HELD_HEAL_POISON + const HELD_HEAL_FREEZE + const HELD_HEAL_BURN + const HELD_HEAL_SLEEP + const HELD_HEAL_PARALYZE + const HELD_HEAL_STATUS + const HELD_HEAL_CONFUSION + +const_value SET 20 + const HELD_PREVENT_POISON + const HELD_PREVENT_BURN + const HELD_PREVENT_FREEZE + const HELD_PREVENT_SLEEP + const HELD_PREVENT_PARALYZE + const HELD_PREVENT_CONFUSE + +const_value SET 30 + const HELD_30 + const HELD_ATTACK_UP + const HELD_DEFENSE_UP + const HELD_SPEED_UP + const HELD_SP_ATTACK_UP + const HELD_SP_DEFENSE_UP + const HELD_ACCURACY_UP + const HELD_EVASION_UP + const HELD_38 + +const_value SET 40 + const HELD_40 + const HELD_41 + const HELD_METAL_POWDER + +const_value SET 50 + const HELD_NORMAL_BOOST + const HELD_FIGHTING_BOOST + const HELD_FLYING_BOOST + const HELD_POISON_BOOST + const HELD_GROUND_BOOST + const HELD_ROCK_BOOST + const HELD_BUG_BOOST + const HELD_GHOST_BOOST + const HELD_FIRE_BOOST + const HELD_WATER_BOOST + const HELD_GRASS_BOOST + const HELD_ELECTRIC_BOOST + const HELD_PSYCHIC_BOOST + const HELD_ICE_BOOST + const HELD_DRAGON_BOOST + const HELD_DARK_BOOST + const HELD_STEEL_BOOST + +const_value SET 70 + const HELD_CATCH_CHANCE + const HELD_71 + const HELD_ESCAPE + const HELD_CRITICAL_UP + const HELD_QUICK_CLAW + const HELD_FLINCH + const HELD_AMULET_COIN + const HELD_BRIGHTPOWDER + const HELD_78 + const HELD_FOCUS_BAND + + +; mart types (see engine/mart.asm) + const_def + const MARTTYPE_STANDARD + const MARTTYPE_BITTER + const MARTTYPE_BARGAIN + const MARTTYPE_PHARMACY + const MARTTYPE_ROOFTOP + +; Marts indexes (see data/items/marts.asm) + const_def + const MART_CHERRYGROVE + const MART_CHERRYGROVE_DEX + const MART_VIOLET + const MART_AZALEA + const MART_CIANWOOD + const MART_GOLDENROD_2F_1 + const MART_GOLDENROD_2F_2 + const MART_GOLDENROD_3F + const MART_GOLDENROD_4F + const MART_GOLDENROD_5F_1 + const MART_GOLDENROD_5F_2 + const MART_GOLDENROD_5F_3 + const MART_GOLDENROD_5F_4 + const MART_OLIVINE + const MART_ECRUTEAK + const MART_MAHOGANY_1 + const MART_MAHOGANY_2 + const MART_BLACKTHORN + const MART_VIRIDIAN + const MART_PEWTER + const MART_CERULEAN + const MART_LAVENDER + const MART_VERMILION + const MART_CELADON_2F_1 + const MART_CELADON_2F_2 + const MART_CELADON_3F + const MART_CELADON_4F + const MART_CELADON_5F_1 + const MART_CELADON_5F_2 + const MART_FUCHSIA + const MART_SAFFRON + const MART_MT_MOON + const MART_INDIGO_PLATEAU + const MART_UNDERGROUND + + +; PartyMenuActionText values +; GetPartyMenuTilemapPointers arguments (see engine/party_menu.asm) + const_def + const PARTYMENUACTION_CHOOSE_POKEMON + const PARTYMENUACTION_HEALING_ITEM + const PARTYMENUACTION_SWITCH + const PARTYMENUACTION_TEACH_TMHM + const PARTYMENUACTION_MOVE + const PARTYMENUACTION_EVO_STONE + const PARTYMENUACTION_GIVE_MON + const PARTYMENUACTION_GIVE_MON_FEMALE ; unused + const PARTYMENUACTION_GIVE_ITEM + const PARTYMENUACTION_MOBILE ; mobile +; PrintPartyMenuActionText arguments (see engine/party_menu.asm) +const_value set $f0 + const PARTYMENUTEXT_HEAL_PSN + const PARTYMENUTEXT_HEAL_BRN + const PARTYMENUTEXT_HEAL_FRZ + const PARTYMENUTEXT_HEAL_SLP + const PARTYMENUTEXT_HEAL_PAR + const PARTYMENUTEXT_HEAL_HP + const PARTYMENUTEXT_HEAL_ALL + const PARTYMENUTEXT_REVIVE + const PARTYMENUTEXT_LEVEL_UP + const PARTYMENUTEXT_HEAL_CONFUSION diff --git a/constants/map_constants.asm b/constants/map_constants.asm index 1af4215a1..be12cca02 100644 --- a/constants/map_constants.asm +++ b/constants/map_constants.asm @@ -1,287 +1,488 @@ -GROUP_N_A EQU -1 -MAP_N_A EQU -1 -GROUP_NONE EQU 0 -MAP_NONE EQU 0 +newgroup: macro +const_value = const_value + 1 + enum_start 1 +endm -; map header fields (see maps/map_headers.asm) - const_def - const MAPHEADER_MAPHEADER2_BANK ; 0 - const MAPHEADER_TILESET ; 1 - const MAPHEADER_ENVIRONMENT ; 2 - const MAPHEADER_MAPHEADER2 ; 3 - const MAPHEADER_MAPHEADER2_HI ; 4 - const MAPHEADER_LOCATION ; 5 - const MAPHEADER_MUSIC ; 6 - const MAPHEADER_PALETTE ; 7 - const MAPHEADER_FISHGROUP ; 8 -NUM_MAPHEADER_ATTRIBUTES EQU const_value - -; map environments (wEnvironment) -const_value SET 1 - const TOWN - const ROUTE - const INDOOR - const CAVE - const ENVIRONMENT_5 - const GATE - const DUNGEON - -; map palettes (wEnvironment) - const_def - const PALETTE_AUTO - const PALETTE_DAY - const PALETTE_NITE - const PALETTE_MORN - const PALETTE_DARK +mapgroup: macro +;\1: map id +;\2: height: in blocks +;\3: width: in blocks +GROUP_\1 EQU const_value + enum MAP_\1 +\1_HEIGHT EQU \2 +\1_WIDTH EQU \3 +endm -; fish groups +; map group ids +; `newgroup` indexes are for: +; - MapGroupPointers (see maps/map_headers.asm) +; - OutdoorSprites (see data/maps/outdoor_sprites.asm) +; - MapGroupRoofs (see data/maps/mapgroup_roofs.asm) +; `mapgroup` indexes are for the sub-tables of MapGroupPointers (see maps/map_headers.asm) const_def - const FISHGROUP_NONE - const FISHGROUP_SHORE - const FISHGROUP_OCEAN - const FISHGROUP_LAKE - const FISHGROUP_POND - const FISHGROUP_DRATINI - const FISHGROUP_QWILFISH_SWARM - const FISHGROUP_REMORAID_SWARM - const FISHGROUP_GYARADOS - const FISHGROUP_DRATINI_2 - const FISHGROUP_WHIRL_ISLANDS - const FISHGROUP_QWILFISH - const FISHGROUP_REMORAID - const FISHGROUP_QWILFISH_NO_SWARM - - -; connection directions - const_def - const EAST_F - const WEST_F - const SOUTH_F - const NORTH_F -; MapConnections - const_def - shift_const EAST - shift_const WEST - shift_const SOUTH - shift_const NORTH + newgroup ; 1 + mapgroup OLIVINE_POKECENTER_1F, 4, 5 ; 1 + mapgroup OLIVINE_GYM, 8, 5 ; 2 + mapgroup OLIVINE_TIMS_HOUSE, 4, 4 ; 3 + mapgroup OLIVINE_HOUSE_BETA, 4, 4 ; 4 + mapgroup OLIVINE_PUNISHMENT_SPEECH_HOUSE, 4, 4 ; 5 + mapgroup OLIVINE_GOOD_ROD_HOUSE, 4, 4 ; 6 + mapgroup OLIVINE_CAFE, 4, 4 ; 7 + mapgroup OLIVINE_MART, 4, 6 ; 8 + mapgroup ROUTE_38_ECRUTEAK_GATE, 4, 5 ; 9 + mapgroup ROUTE_39_BARN, 4, 4 ; 10 + mapgroup ROUTE_39_FARMHOUSE, 4, 4 ; 11 + mapgroup ROUTE_38, 9, 20 ; 12 + mapgroup ROUTE_39, 18, 10 ; 13 + mapgroup OLIVINE_CITY, 18, 20 ; 14 -; object_struct members (see macros/wram.asm) - const_def - const OBJECT_SPRITE ; 00 - const OBJECT_MAP_OBJECT_INDEX ; 01 - const OBJECT_SPRITE_TILE ; 02 - const OBJECT_MOVEMENTTYPE ; 03 - const OBJECT_FLAGS1 ; 04 - const OBJECT_FLAGS2 ; 05 - const OBJECT_PALETTE ; 06 - const OBJECT_DIRECTION_WALKING ; 07 - const OBJECT_FACING ; 08 - const OBJECT_STEP_TYPE ; 09 - const OBJECT_STEP_DURATION ; 0a - const OBJECT_ACTION ; 0b - const OBJECT_STEP_FRAME ; 0c - const OBJECT_FACING_STEP ; 0d - const OBJECT_NEXT_TILE ; 0e - const OBJECT_STANDING_TILE ; 0f - const OBJECT_NEXT_MAP_X ; 10 - const OBJECT_NEXT_MAP_Y ; 11 - const OBJECT_MAP_X ; 12 - const OBJECT_MAP_Y ; 13 - const OBJECT_INIT_X ; 14 - const OBJECT_INIT_Y ; 15 - const OBJECT_RADIUS ; 16 - const OBJECT_SPRITE_X ; 17 - const OBJECT_SPRITE_Y ; 18 - const OBJECT_SPRITE_X_OFFSET ; 19 - const OBJECT_SPRITE_Y_OFFSET ; 1a - const OBJECT_MOVEMENT_BYTE_INDEX ; 1b - const OBJECT_28 ; 1c - const OBJECT_29 ; 1d - const OBJECT_30 ; 1e - const OBJECT_31 ; 1f - const OBJECT_RANGE ; 20 -; 33-39 are not used - -; map_object struct members (see macros/wram.asm) - const_def - const MAPOBJECT_OBJECT_STRUCT_ID ; 0 - const MAPOBJECT_SPRITE ; 1 - const MAPOBJECT_Y_COORD ; 2 - const MAPOBJECT_X_COORD ; 3 - const MAPOBJECT_MOVEMENT ; 4 - const MAPOBJECT_RADIUS ; 5 - const MAPOBJECT_HOUR ; 6 - const MAPOBJECT_TIMEOFDAY ; 7 - const MAPOBJECT_COLOR ; 8 - const MAPOBJECT_RANGE ; 9 - const MAPOBJECT_SCRIPT_POINTER ; a - const MAPOBJECT_POINTER_HI ; b - const MAPOBJECT_EVENT_FLAG ; c - const MAPOBJECT_FLAG_HI ; d - const MAPOBJECT_E ; unused - const MAPOBJECT_F ; unused -OBJECT_LENGTH EQU const_value - -MAPOBJECT_SCREEN_HEIGHT EQU 11 -MAPOBJECT_SCREEN_WIDTH EQU 12 - -; object_struct OBJECT_FACING values -OW_DOWN EQU DOWN << 2 -OW_UP EQU UP << 2 -OW_LEFT EQU LEFT << 2 -OW_RIGHT EQU RIGHT << 2 - -; object_struct OBJECT_FLAGS1 bit flags -INVISIBLE EQU 0 -FIXED_FACING EQU 2 -SLIDING EQU 3 -EMOTE_OBJECT EQU 7 - - -; SpawnPoints indexes (see data/maps/spawn_points.asm) -const_value = -1 - const SPAWN_N_A - const SPAWN_HOME - const SPAWN_DEBUG -; kanto - const SPAWN_PALLET - const SPAWN_VIRIDIAN - const SPAWN_PEWTER - const SPAWN_CERULEAN - const SPAWN_ROCK_TUNNEL - const SPAWN_VERMILION - const SPAWN_LAVENDER - const SPAWN_SAFFRON - const SPAWN_CELADON - const SPAWN_FUCHSIA - const SPAWN_CINNABAR - const SPAWN_INDIGO -; johto - const SPAWN_NEW_BARK - const SPAWN_CHERRYGROVE - const SPAWN_VIOLET - const SPAWN_UNION_CAVE - const SPAWN_AZALEA - const SPAWN_CIANWOOD - const SPAWN_GOLDENROD - const SPAWN_OLIVINE - const SPAWN_ECRUTEAK - const SPAWN_MAHOGANY - const SPAWN_LAKE - const SPAWN_BLACKTHORN - const SPAWN_MT_SILVER - const SPAWN_FAST_SHIP -NUM_SPAWNS EQU const_value - - -; TryBGEvent arguments (see engine/events.asm) - const_def - const BGEVENT_READ - const BGEVENT_UP - const BGEVENT_DOWN - const BGEVENT_RIGHT - const BGEVENT_LEFT - const BGEVENT_IFSET - const BGEVENT_IFNOTSET - const BGEVENT_ITEM - const BGEVENT_COPY - -; object_event types -; TryObjectEvent arguments (see engine/events.asm) - const_def - const OBJECTTYPE_SCRIPT - const OBJECTTYPE_ITEMBALL - const OBJECTTYPE_TRAINER - const OBJECTTYPE_3 - const OBJECTTYPE_4 - const OBJECTTYPE_5 - const OBJECTTYPE_6 + newgroup ; 2 + mapgroup MAHOGANY_RED_GYARADOS_SPEECH_HOUSE, 4, 4 ; 1 + mapgroup MAHOGANY_GYM, 9, 5 ; 2 + mapgroup MAHOGANY_POKECENTER_1F, 4, 5 ; 3 + mapgroup ROUTE_42_ECRUTEAK_GATE, 4, 5 ; 4 + mapgroup ROUTE_42, 9, 30 ; 5 + mapgroup ROUTE_44, 9, 30 ; 6 + mapgroup MAHOGANY_TOWN, 9, 10 ; 7 -; EmotesPointers indexes (see engine/overworld.asm) - const_def - const EMOTE_SHOCK ; 0 - const EMOTE_QUESTION ; 1 - const EMOTE_HAPPY ; 2 - const EMOTE_SAD ; 3 - const EMOTE_HEART ; 4 - const EMOTE_BOLT ; 5 - const EMOTE_SLEEP ; 6 - const EMOTE_FISH ; 7 - const EMOTE_SHADOW ; 8 - const EMOTE_ROD ; 9 - const EMOTE_BOULDER_DUST ; 10 - const EMOTE_GRASS_RUSTLE ; 11 -EMOTE_MEM EQU -1 - -; FruitTreeItems indexes (see data/items/fruit_trees.asm) -const_value SET 1 - const FRUITTREE_ROUTE_29 ; 01 - const FRUITTREE_ROUTE_30_1 ; 02 - const FRUITTREE_ROUTE_38 ; 03 - const FRUITTREE_ROUTE_46_1 ; 04 - const FRUITTREE_ROUTE_30_2 ; 05 - const FRUITTREE_ROUTE_33 ; 06 - const FRUITTREE_ROUTE_31 ; 07 - const FRUITTREE_ROUTE_43 ; 08 - const FRUITTREE_VIOLET_CITY ; 09 - const FRUITTREE_ROUTE_46_2 ; 0a - const FRUITTREE_ROUTE_35 ; 0b - const FRUITTREE_ROUTE_45 ; 0c - const FRUITTREE_ROUTE_36 ; 0d - const FRUITTREE_ROUTE_26 ; 0e - const FRUITTREE_ROUTE_39 ; 0f - const FRUITTREE_ROUTE_44 ; 10 - const FRUITTREE_ROUTE_37_1 ; 11 - const FRUITTREE_ROUTE_37_2 ; 12 - const FRUITTREE_ROUTE_37_3 ; 13 - const FRUITTREE_AZALEA_TOWN ; 14 - const FRUITTREE_ROUTE_42_1 ; 15 - const FRUITTREE_ROUTE_42_2 ; 16 - const FRUITTREE_ROUTE_42_3 ; 17 - const FRUITTREE_ROUTE_11 ; 18 - const FRUITTREE_ROUTE_2 ; 19 - const FRUITTREE_ROUTE_1 ; 1a - const FRUITTREE_ROUTE_8 ; 1b - const FRUITTREE_PEWTER_CITY_1 ; 1c - const FRUITTREE_PEWTER_CITY_2 ; 1d - const FRUITTREE_FUCHSIA_CITY ; 1e -NUM_FRUIT_TREES EQU const_value +- 1 - -; elevator floors -; used by `elevfloor` - const_def - const FLOOR_B4F - const FLOOR_B3F - const FLOOR_B2F - const FLOOR_B1F - const FLOOR_1F - const FLOOR_2F - const FLOOR_3F - const FLOOR_4F - const FLOOR_5F - const FLOOR_6F - const FLOOR_7F - const FLOOR_8F - const FLOOR_9F - const FLOOR_10F - const FLOOR_11F - const FLOOR_ROOF - -; command queue members -CMDQUEUE_TYPE EQU 0 -CMDQUEUE_ADDR EQU 1 -CMDQUEUE_03 EQU 3 -CMDQUEUE_04 EQU 4 -CMDQUEUE_05 EQU 5 -CMDQUEUE_ENTRY_SIZE EQU 6 -CMDQUEUE_CAPACITY EQU 4 - -; command queue types -CMDQUEUE_STONETABLE EQU 2 - -; see engine/overworld.asm -MAX_OUTDOOR_SPRITES EQU 23 -SPRITE_GFX_LIST_CAPACITY EQU $20 + newgroup ; 3 + + mapgroup SPROUT_TOWER_1F, 8, 10 ; 1 + mapgroup SPROUT_TOWER_2F, 8, 10 ; 2 + mapgroup SPROUT_TOWER_3F, 8, 10 ; 3 + mapgroup TIN_TOWER_1F, 9, 10 ; 4 + mapgroup TIN_TOWER_2F, 9, 10 ; 5 + mapgroup TIN_TOWER_3F, 9, 10 ; 6 + mapgroup TIN_TOWER_4F, 9, 10 ; 7 + mapgroup TIN_TOWER_5F, 9, 10 ; 8 + mapgroup TIN_TOWER_6F, 9, 10 ; 9 + mapgroup TIN_TOWER_7F, 9, 10 ; 10 + mapgroup TIN_TOWER_8F, 9, 10 ; 11 + mapgroup TIN_TOWER_9F, 9, 10 ; 12 + mapgroup BURNED_TOWER_1F, 9, 10 ; 13 + mapgroup BURNED_TOWER_B1F, 9, 10 ; 14 + mapgroup NATIONAL_PARK, 27, 20 ; 15 + mapgroup NATIONAL_PARK_BUG_CONTEST, 27, 20 ; 16 + mapgroup RADIO_TOWER_1F, 4, 9 ; 17 + mapgroup RADIO_TOWER_2F, 4, 9 ; 18 + mapgroup RADIO_TOWER_3F, 4, 9 ; 19 + mapgroup RADIO_TOWER_4F, 4, 9 ; 20 + mapgroup RADIO_TOWER_5F, 4, 9 ; 21 + mapgroup RUINS_OF_ALPH_OUTSIDE, 18, 10 ; 22 + mapgroup RUINS_OF_ALPH_HO_OH_CHAMBER, 5, 4 ; 23 + mapgroup RUINS_OF_ALPH_KABUTO_CHAMBER, 5, 4 ; 24 + mapgroup RUINS_OF_ALPH_OMANYTE_CHAMBER, 5, 4 ; 25 + mapgroup RUINS_OF_ALPH_AERODACTYL_CHAMBER, 5, 4 ; 26 + mapgroup RUINS_OF_ALPH_INNER_CHAMBER, 14, 10 ; 27 + mapgroup RUINS_OF_ALPH_RESEARCH_CENTER, 4, 4 ; 28 + mapgroup RUINS_OF_ALPH_HO_OH_ITEM_ROOM, 5, 4 ; 29 + mapgroup RUINS_OF_ALPH_KABUTO_ITEM_ROOM, 5, 4 ; 30 + mapgroup RUINS_OF_ALPH_OMANYTE_ITEM_ROOM, 5, 4 ; 31 + mapgroup RUINS_OF_ALPH_AERODACTYL_ITEM_ROOM, 5, 4 ; 32 + mapgroup RUINS_OF_ALPH_HO_OH_WORD_ROOM, 12, 10 ; 33 + mapgroup RUINS_OF_ALPH_KABUTO_WORD_ROOM, 7, 10 ; 34 + mapgroup RUINS_OF_ALPH_OMANYTE_WORD_ROOM, 8, 10 ; 35 + mapgroup RUINS_OF_ALPH_AERODACTYL_WORD_ROOM, 7, 10 ; 36 + mapgroup UNION_CAVE_1F, 18, 10 ; 37 + mapgroup UNION_CAVE_B1F, 18, 10 ; 38 + mapgroup UNION_CAVE_B2F, 18, 10 ; 39 + mapgroup SLOWPOKE_WELL_B1F, 9, 10 ; 40 + mapgroup SLOWPOKE_WELL_B2F, 9, 10 ; 41 + mapgroup OLIVINE_LIGHTHOUSE_1F, 9, 10 ; 42 + mapgroup OLIVINE_LIGHTHOUSE_2F, 9, 10 ; 43 + mapgroup OLIVINE_LIGHTHOUSE_3F, 9, 10 ; 44 + mapgroup OLIVINE_LIGHTHOUSE_4F, 9, 10 ; 45 + mapgroup OLIVINE_LIGHTHOUSE_5F, 9, 10 ; 46 + mapgroup OLIVINE_LIGHTHOUSE_6F, 9, 10 ; 47 + mapgroup MAHOGANY_MART_1F, 4, 4 ; 48 + mapgroup TEAM_ROCKET_BASE_B1F, 9, 15 ; 49 + mapgroup TEAM_ROCKET_BASE_B2F, 9, 15 ; 50 + mapgroup TEAM_ROCKET_BASE_B3F, 9, 15 ; 51 + mapgroup ILEX_FOREST, 27, 15 ; 52 + mapgroup GOLDENROD_UNDERGROUND, 18, 15 ; 53 + mapgroup GOLDENROD_UNDERGROUND_SWITCH_ROOM_ENTRANCES, 18, 15 ; 54 + mapgroup GOLDENROD_DEPT_STORE_B1F, 9, 10 ; 55 + mapgroup GOLDENROD_UNDERGROUND_WAREHOUSE, 9, 10 ; 56 + mapgroup MOUNT_MORTAR_1F_OUTSIDE, 18, 20 ; 57 + mapgroup MOUNT_MORTAR_1F_INSIDE, 27, 20 ; 58 + mapgroup MOUNT_MORTAR_2F_INSIDE, 18, 20 ; 59 + mapgroup MOUNT_MORTAR_B1F, 18, 20 ; 60 + mapgroup ICE_PATH_1F, 18, 20 ; 61 + mapgroup ICE_PATH_B1F, 18, 10 ; 62 + mapgroup ICE_PATH_B2F_MAHOGANY_SIDE, 9, 10 ; 63 + mapgroup ICE_PATH_B2F_BLACKTHORN_SIDE, 9, 5 ; 64 + mapgroup ICE_PATH_B3F, 9, 10 ; 65 + mapgroup WHIRL_ISLAND_NW, 9, 5 ; 66 + mapgroup WHIRL_ISLAND_NE, 9, 10 ; 67 + mapgroup WHIRL_ISLAND_SW, 9, 10 ; 68 + mapgroup WHIRL_ISLAND_CAVE, 9, 5 ; 69 + mapgroup WHIRL_ISLAND_SE, 9, 5 ; 70 + mapgroup WHIRL_ISLAND_B1F, 18, 20 ; 71 + mapgroup WHIRL_ISLAND_B2F, 18, 10 ; 72 + mapgroup WHIRL_ISLAND_LUGIA_CHAMBER, 9, 10 ; 73 + mapgroup SILVER_CAVE_ROOM_1, 18, 10 ; 74 + mapgroup SILVER_CAVE_ROOM_2, 18, 15 ; 75 + mapgroup SILVER_CAVE_ROOM_3, 18, 10 ; 76 + mapgroup SILVER_CAVE_ITEM_ROOMS, 9, 10 ; 77 + mapgroup DARK_CAVE_VIOLET_ENTRANCE, 18, 20 ; 78 + mapgroup DARK_CAVE_BLACKTHORN_ENTRANCE, 18, 15 ; 79 + mapgroup DRAGONS_DEN_1F, 9, 5 ; 80 + mapgroup DRAGONS_DEN_B1F, 18, 20 ; 81 + mapgroup DRAGON_SHRINE, 5, 5 ; 82 + mapgroup TOHJO_FALLS, 9, 15 ; 83 + mapgroup DIGLETTS_CAVE, 18, 10 ; 84 + mapgroup MOUNT_MOON, 9, 15 ; 85 + mapgroup UNDERGROUND_PATH, 14, 3 ; 86 + mapgroup ROCK_TUNNEL_1F, 18, 15 ; 87 + mapgroup ROCK_TUNNEL_B1F, 18, 15 ; 88 + mapgroup SAFARI_ZONE_FUCHSIA_GATE_BETA, 4, 5 ; 89 + mapgroup SAFARI_ZONE_BETA, 18, 10 ; 90 + mapgroup VICTORY_ROAD, 36, 10 ; 91 + + newgroup ; 4 + + mapgroup ECRUTEAK_HOUSE, 9, 10 ; 1 + mapgroup WISE_TRIOS_ROOM, 4, 4 ; 2 + mapgroup ECRUTEAK_POKECENTER_1F, 4, 5 ; 3 + mapgroup ECRUTEAK_LUGIA_SPEECH_HOUSE, 4, 4 ; 4 + mapgroup DANCE_THEATRE, 7, 6 ; 5 + mapgroup ECRUTEAK_MART, 4, 6 ; 6 + mapgroup ECRUTEAK_GYM, 9, 5 ; 7 + mapgroup ECRUTEAK_ITEMFINDER_HOUSE, 4, 4 ; 8 + mapgroup ECRUTEAK_CITY, 18, 20 ; 9 + + newgroup ; 5 + + mapgroup BLACKTHORN_GYM_1F, 9, 5 ; 1 + mapgroup BLACKTHORN_GYM_2F, 9, 5 ; 2 + mapgroup BLACKTHORN_DRAGON_SPEECH_HOUSE, 4, 4 ; 3 + mapgroup BLACKTHORN_EMYS_HOUSE, 4, 4 ; 4 + mapgroup BLACKTHORN_MART, 4, 6 ; 5 + mapgroup BLACKTHORN_POKECENTER_1F, 4, 5 ; 6 + mapgroup MOVE_DELETERS_HOUSE, 4, 4 ; 7 + mapgroup ROUTE_45, 45, 10 ; 8 + mapgroup ROUTE_46, 18, 10 ; 9 + mapgroup BLACKTHORN_CITY, 18, 20 ; 10 + + newgroup ; 6 + + mapgroup CINNABAR_POKECENTER_1F, 4, 5 ; 1 + mapgroup CINNABAR_POKECENTER_2F_BETA, 4, 8 ; 2 + mapgroup ROUTE_19___FUCHSIA_GATE, 4, 5 ; 3 + mapgroup SEAFOAM_GYM, 4, 5 ; 4 + mapgroup ROUTE_19, 18, 10 ; 5 + mapgroup ROUTE_20, 9, 30 ; 6 + mapgroup ROUTE_21, 18, 10 ; 7 + mapgroup CINNABAR_ISLAND, 9, 10 ; 8 + + newgroup ; 7 + + mapgroup CERULEAN_GYM_BADGE_SPEECH_HOUSE, 4, 4 ; 1 + mapgroup CERULEAN_POLICE_STATION, 4, 4 ; 2 + mapgroup CERULEAN_TRADE_SPEECH_HOUSE, 4, 4 ; 3 + mapgroup CERULEAN_POKECENTER_1F, 4, 5 ; 4 + mapgroup CERULEAN_POKECENTER_2F_BETA, 4, 8 ; 5 + mapgroup CERULEAN_GYM, 8, 5 ; 6 + mapgroup CERULEAN_MART, 4, 6 ; 7 + mapgroup ROUTE_10_POKECENTER_1F, 4, 5 ; 8 + mapgroup ROUTE_10_POKECENTER_2F_BETA, 4, 8 ; 9 + mapgroup POWER_PLANT, 9, 10 ; 10 + mapgroup BILLS_HOUSE, 4, 4 ; 11 + mapgroup ROUTE_4, 9, 20 ; 12 + mapgroup ROUTE_9, 9, 30 ; 13 + mapgroup ROUTE_10_NORTH, 9, 10 ; 14 + mapgroup ROUTE_24, 9, 10 ; 15 + mapgroup ROUTE_25, 9, 30 ; 16 + mapgroup CERULEAN_CITY, 18, 20 ; 17 + + newgroup ; 8 + + mapgroup AZALEA_POKECENTER_1F, 4, 5 ; 1 + mapgroup CHARCOAL_KILN, 4, 4 ; 2 + mapgroup AZALEA_MART, 4, 6 ; 3 + mapgroup KURTS_HOUSE, 4, 8 ; 4 + mapgroup AZALEA_GYM, 8, 5 ; 5 + mapgroup ROUTE_33, 9, 10 ; 6 + mapgroup AZALEA_TOWN, 9, 20 ; 7 + + newgroup ; 9 + + mapgroup LAKE_OF_RAGE_HIDDEN_POWER_HOUSE, 4, 4 ; 1 + mapgroup LAKE_OF_RAGE_MAGIKARP_HOUSE, 4, 4 ; 2 + mapgroup ROUTE_43_MAHOGANY_GATE, 4, 5 ; 3 + mapgroup ROUTE_43_GATE, 4, 5 ; 4 + mapgroup ROUTE_43, 27, 10 ; 5 + mapgroup LAKE_OF_RAGE, 18, 20 ; 6 + + newgroup ; 10 + + mapgroup ROUTE_32, 45, 10 ; 1 + mapgroup ROUTE_35, 18, 10 ; 2 + mapgroup ROUTE_36, 9, 30 ; 3 + mapgroup ROUTE_37, 9, 10 ; 4 + mapgroup VIOLET_CITY, 18, 20 ; 5 + mapgroup VIOLET_MART, 4, 6 ; 6 + mapgroup VIOLET_GYM, 8, 5 ; 7 + mapgroup EARLS_POKEMON_ACADEMY, 8, 4 ; 8 + mapgroup VIOLET_NICKNAME_SPEECH_HOUSE, 4, 4 ; 9 + mapgroup VIOLET_POKECENTER_1F, 4, 5 ; 10 + mapgroup VIOLET_KYLES_HOUSE, 4, 4 ; 11 + mapgroup ROUTE_32_RUINS_OF_ALPH_GATE, 4, 5 ; 12 + mapgroup ROUTE_32_POKECENTER_1F, 4, 5 ; 13 + mapgroup ROUTE_35_GOLDENROD_GATE, 4, 5 ; 14 + mapgroup ROUTE_35_NATIONAL_PARK_GATE, 4, 4 ; 15 + mapgroup ROUTE_36_RUINS_OF_ALPH_GATE, 4, 5 ; 16 + mapgroup ROUTE_36_NATIONAL_PARK_GATE, 4, 5 ; 17 + + newgroup ; 11 + + mapgroup ROUTE_34, 27, 10 ; 1 + mapgroup GOLDENROD_CITY, 18, 20 ; 2 + mapgroup GOLDENROD_GYM, 9, 10 ; 3 + mapgroup GOLDENROD_BIKE_SHOP, 4, 4 ; 4 + mapgroup GOLDENROD_HAPPINESS_RATER, 4, 4 ; 5 + mapgroup GOLDENROD_BILLS_HOUSE, 4, 4 ; 6 + mapgroup GOLDENROD_MAGNET_TRAIN_STATION, 9, 10 ; 7 + mapgroup GOLDENROD_FLOWER_SHOP, 4, 4 ; 8 + mapgroup GOLDENROD_PP_SPEECH_HOUSE, 4, 4 ; 9 + mapgroup GOLDENROD_NAME_RATER, 4, 4 ; 10 + mapgroup GOLDENROD_DEPT_STORE_1F, 4, 8 ; 11 + mapgroup GOLDENROD_DEPT_STORE_2F, 4, 8 ; 12 + mapgroup GOLDENROD_DEPT_STORE_3F, 4, 8 ; 13 + mapgroup GOLDENROD_DEPT_STORE_4F, 4, 8 ; 14 + mapgroup GOLDENROD_DEPT_STORE_5F, 4, 8 ; 15 + mapgroup GOLDENROD_DEPT_STORE_6F, 4, 8 ; 16 + mapgroup GOLDENROD_DEPT_STORE_ELEVATOR, 2, 2 ; 17 + mapgroup GOLDENROD_DEPT_STORE_ROOF, 4, 8 ; 18 + mapgroup GOLDENROD_GAME_CORNER, 7, 10 ; 19 + mapgroup GOLDENROD_POKECENTER_1F, 4, 5 ; 20 + mapgroup GOLDENROD_POKECOM_CENTER_2F_MOBILE, 16, 16 ; 21 + mapgroup ILEX_FOREST_AZALEA_GATE, 4, 5 ; 22 + mapgroup ROUTE_34_ILEX_FOREST_GATE, 4, 5 ; 23 + mapgroup DAY_CARE, 4, 5 ; 24 + + newgroup ; 12 + + mapgroup ROUTE_6, 9, 10 ; 1 + mapgroup ROUTE_11, 9, 20 ; 2 + mapgroup VERMILION_CITY, 18, 20 ; 3 + mapgroup VERMILION_HOUSE_FISHING_SPEECH_HOUSE, 4, 4 ; 4 + mapgroup VERMILION_POKECENTER_1F, 4, 5 ; 5 + mapgroup VERMILION_POKECENTER_2F_BETA, 4, 8 ; 6 + mapgroup POKEMON_FAN_CLUB, 4, 5 ; 7 + mapgroup VERMILION_MAGNET_TRAIN_SPEECH_HOUSE, 4, 4 ; 8 + mapgroup VERMILION_MART, 4, 6 ; 9 + mapgroup VERMILION_HOUSE_DIGLETTS_CAVE_SPEECH_HOUSE, 4, 4 ; 10 + mapgroup VERMILION_GYM, 9, 5 ; 11 + mapgroup ROUTE_6_SAFFRON_GATE, 4, 5 ; 12 + mapgroup ROUTE_6_UNDERGROUND_PATH_ENTRANCE, 4, 4 ; 13 + + newgroup ; 13 + + mapgroup ROUTE_1, 18, 10 ; 1 + mapgroup PALLET_TOWN, 9, 10 ; 2 + mapgroup REDS_HOUSE_1F, 4, 4 ; 3 + mapgroup REDS_HOUSE_2F, 4, 4 ; 4 + mapgroup BLUES_HOUSE, 4, 4 ; 5 + mapgroup OAKS_LAB, 6, 5 ; 6 + + newgroup ; 14 + + mapgroup ROUTE_3, 9, 30 ; 1 + mapgroup PEWTER_CITY, 18, 20 ; 2 + mapgroup PEWTER_NIDORAN_SPEECH_HOUSE, 4, 4 ; 3 + mapgroup PEWTER_GYM, 7, 5 ; 4 + mapgroup PEWTER_MART, 4, 6 ; 5 + mapgroup PEWTER_POKECENTER_1F, 4, 5 ; 6 + mapgroup PEWTER_POKECENTER_2F_BETA, 4, 8 ; 7 + mapgroup PEWTER_SNOOZE_SPEECH_HOUSE, 4, 4 ; 8 + + newgroup ; 15 + + mapgroup OLIVINE_PORT, 18, 10 ; 1 + mapgroup VERMILION_PORT, 18, 10 ; 2 + mapgroup FAST_SHIP_1F, 9, 16 ; 3 + mapgroup FAST_SHIP_CABINS_NNW_NNE_NE, 16, 4 ; 4 + mapgroup FAST_SHIP_CABINS_SW_SSW_NW, 16, 4 ; 5 + mapgroup FAST_SHIP_CABINS_SE_SSE_CAPTAINS_CABIN, 17, 5 ; 6 + mapgroup FAST_SHIP_B1F, 8, 16 ; 7 + mapgroup OLIVINE_PORT_PASSAGE, 9, 10 ; 8 + mapgroup VERMILION_PORT_PASSAGE, 9, 10 ; 9 + mapgroup MOUNT_MOON_SQUARE, 9, 15 ; 10 + mapgroup MOUNT_MOON_GIFT_SHOP, 4, 4 ; 11 + mapgroup TIN_TOWER_ROOF, 9, 10 ; 12 + + newgroup ; 16 + + mapgroup ROUTE_23, 9, 10 ; 1 + mapgroup INDIGO_PLATEAU_POKECENTER_1F, 7, 9 ; 2 + mapgroup WILLS_ROOM, 9, 5 ; 3 + mapgroup KOGAS_ROOM, 9, 5 ; 4 + mapgroup BRUNOS_ROOM, 9, 5 ; 5 + mapgroup KARENS_ROOM, 9, 5 ; 6 + mapgroup LANCES_ROOM, 12, 5 ; 7 + mapgroup HALL_OF_FAME, 7, 5 ; 8 + + newgroup ; 17 + + mapgroup ROUTE_13, 9, 30 ; 1 + mapgroup ROUTE_14, 18, 10 ; 2 + mapgroup ROUTE_15, 9, 20 ; 3 + mapgroup ROUTE_18, 9, 10 ; 4 + mapgroup FUCHSIA_CITY, 18, 20 ; 5 + mapgroup FUCHSIA_MART, 4, 6 ; 6 + mapgroup SAFARI_ZONE_MAIN_OFFICE, 4, 4 ; 7 + mapgroup FUCHSIA_GYM, 9, 5 ; 8 + mapgroup FUCHSIA_BILL_SPEECH_HOUSE, 4, 4 ; 9 + mapgroup FUCHSIA_POKECENTER_1F, 4, 5 ; 10 + mapgroup FUCHSIA_POKECENTER_2F_BETA, 4, 8 ; 11 + mapgroup SAFARI_ZONE_WARDENS_HOME, 4, 5 ; 12 + mapgroup ROUTE_15_FUCHSIA_GATE, 4, 5 ; 13 + + newgroup ; 18 + + mapgroup ROUTE_8, 9, 20 ; 1 + mapgroup ROUTE_12, 27, 10 ; 2 + mapgroup ROUTE_10_SOUTH, 9, 10 ; 3 + mapgroup LAVENDER_TOWN, 9, 10 ; 4 + mapgroup LAVENDER_POKECENTER_1F, 4, 5 ; 5 + mapgroup LAVENDER_POKECENTER_2F_BETA, 4, 8 ; 6 + mapgroup MR_FUJIS_HOUSE, 4, 5 ; 7 + mapgroup LAVENDER_TOWN_SPEECH_HOUSE, 4, 4 ; 8 + mapgroup LAVENDER_NAME_RATER, 4, 4 ; 9 + mapgroup LAVENDER_MART, 4, 6 ; 10 + mapgroup SOUL_HOUSE, 4, 5 ; 11 + mapgroup LAV_RADIO_TOWER_1F, 4, 10 ; 12 + mapgroup ROUTE_8_SAFFRON_GATE, 4, 5 ; 13 + mapgroup ROUTE_12_SUPER_ROD_HOUSE, 4, 4 ; 14 + + newgroup ; 19 + + mapgroup ROUTE_28, 9, 20 ; 1 + mapgroup SILVER_CAVE_OUTSIDE, 18, 20 ; 2 + mapgroup SILVER_CAVE_POKECENTER_1F, 4, 5 ; 3 + mapgroup ROUTE_28_FAMOUS_SPEECH_HOUSE, 4, 4 ; 4 + + newgroup ; 20 + + mapgroup POKECENTER_2F, 4, 8 ; 1 + mapgroup TRADE_CENTER, 4, 5 ; 2 + mapgroup COLOSSEUM, 4, 5 ; 3 + mapgroup TIME_CAPSULE, 4, 5 ; 4 + mapgroup MOBILE_TRADE_ROOM_MOBILE, 4, 5 ; 5 + mapgroup MOBILE_BATTLE_ROOM, 4, 5 ; 6 + + newgroup ; 21 + + mapgroup ROUTE_7, 9, 10 ; 1 + mapgroup ROUTE_16, 9, 10 ; 2 + mapgroup ROUTE_17, 45, 10 ; 3 + mapgroup CELADON_CITY, 18, 20 ; 4 + mapgroup CELADON_DEPT_STORE_1F, 4, 8 ; 5 + mapgroup CELADON_DEPT_STORE_2F, 4, 8 ; 6 + mapgroup CELADON_DEPT_STORE_3F, 4, 8 ; 7 + mapgroup CELADON_DEPT_STORE_4F, 4, 8 ; 8 + mapgroup CELADON_DEPT_STORE_5F, 4, 8 ; 9 + mapgroup CELADON_DEPT_STORE_6F, 4, 8 ; 10 + mapgroup CELADON_DEPT_STORE_ELEVATOR, 2, 2 ; 11 + mapgroup CELADON_MANSION_1F, 5, 4 ; 12 + mapgroup CELADON_MANSION_2F, 5, 4 ; 13 + mapgroup CELADON_MANSION_3F, 5, 4 ; 14 + mapgroup CELADON_MANSION_ROOF, 5, 4 ; 15 + mapgroup CELADON_MANSION_ROOF_HOUSE, 4, 4 ; 16 + mapgroup CELADON_POKECENTER_1F, 4, 5 ; 17 + mapgroup CELADON_POKECENTER_2F_BETA, 4, 8 ; 18 + mapgroup CELADON_GAME_CORNER, 7, 10 ; 19 + mapgroup CELADON_GAME_CORNER_PRIZE_ROOM, 3, 3 ; 20 + mapgroup CELADON_GYM, 9, 5 ; 21 + mapgroup CELADON_CAFE, 4, 6 ; 22 + mapgroup ROUTE_16_FUCHSIA_SPEECH_HOUSE, 4, 4 ; 23 + mapgroup ROUTE_16_GATE, 4, 5 ; 24 + mapgroup ROUTE_7_SAFFRON_GATE, 4, 5 ; 25 + mapgroup ROUTE_17_18_GATE, 4, 5 ; 26 + + newgroup ; 22 + + mapgroup ROUTE_40, 18, 10 ; 1 + mapgroup ROUTE_41, 27, 25 ; 2 + mapgroup CIANWOOD_CITY, 27, 15 ; 3 + mapgroup MANIAS_HOUSE, 4, 4 ; 4 + mapgroup CIANWOOD_GYM, 9, 5 ; 5 + mapgroup CIANWOOD_POKECENTER_1F, 4, 5 ; 6 + mapgroup CIANWOOD_PHARMACY, 4, 4 ; 7 + mapgroup CIANWOOD_CITY_PHOTO_STUDIO, 4, 4 ; 8 + mapgroup CIANWOOD_LUGIA_SPEECH_HOUSE, 4, 4 ; 9 + mapgroup POKE_SEERS_HOUSE, 4, 4 ; 10 + mapgroup BATTLE_TOWER_1F, 5, 8 ; 11 + mapgroup BATTLE_TOWER_BATTLE_ROOM, 4, 4 ; 12 + mapgroup BATTLE_TOWER_ELEVATOR, 2, 2 ; 13 + mapgroup BATTLE_TOWER_HALLWAY, 2, 11 ; 14 + mapgroup ROUTE_40_BATTLE_TOWER_GATE, 4, 5 ; 15 + mapgroup BATTLE_TOWER_OUTSIDE, 14, 10 ; 16 + + newgroup ; 23 + + mapgroup ROUTE_2, 27, 10 ; 1 + mapgroup ROUTE_22, 9, 20 ; 2 + mapgroup VIRIDIAN_CITY, 18, 20 ; 3 + mapgroup VIRIDIAN_GYM, 9, 5 ; 4 + mapgroup VIRIDIAN_NICKNAME_SPEECH_HOUSE, 4, 4 ; 5 + mapgroup TRAINER_HOUSE_1F, 7, 5 ; 6 + mapgroup TRAINER_HOUSE_B1F, 8, 5 ; 7 + mapgroup VIRIDIAN_MART, 4, 6 ; 8 + mapgroup VIRIDIAN_POKECENTER_1F, 4, 5 ; 9 + mapgroup VIRIDIAN_POKECENTER_2F_BETA, 4, 8 ; 10 + mapgroup ROUTE_2_NUGGET_SPEECH_HOUSE, 4, 4 ; 11 + mapgroup ROUTE_2_GATE, 4, 5 ; 12 + mapgroup VICTORY_ROAD_GATE, 9, 10 ; 13 + + newgroup ; 24 + + mapgroup ROUTE_26, 54, 10 ; 1 + mapgroup ROUTE_27, 9, 40 ; 2 + mapgroup ROUTE_29, 9, 30 ; 3 + mapgroup NEW_BARK_TOWN, 9, 10 ; 4 + mapgroup ELMS_LAB, 6, 5 ; 5 + mapgroup KRISS_HOUSE_1F, 4, 5 ; 6 + mapgroup KRISS_HOUSE_2F, 3, 4 ; 7 + mapgroup KRISS_NEIGHBORS_HOUSE, 4, 4 ; 8 + mapgroup ELMS_HOUSE, 4, 4 ; 9 + mapgroup ROUTE_26_HEAL_SPEECH_HOUSE, 4, 4 ; 10 + mapgroup ROUTE_26_DAY_OF_WEEK_SIBLINGS_HOUSE, 4, 4 ; 11 + mapgroup ROUTE_27_SANDSTORM_HOUSE, 4, 4 ; 12 + mapgroup ROUTE_29_46_GATE, 4, 5 ; 13 + + newgroup ; 25 + + mapgroup ROUTE_5, 9, 10 ; 1 + mapgroup SAFFRON_CITY, 18, 20 ; 2 + mapgroup FIGHTING_DOJO, 6, 5 ; 3 + mapgroup SAFFRON_GYM, 9, 10 ; 4 + mapgroup SAFFRON_MART, 4, 6 ; 5 + mapgroup SAFFRON_POKECENTER_1F, 4, 5 ; 6 + mapgroup SAFFRON_POKECENTER_2F_BETA, 4, 8 ; 7 + mapgroup MR_PSYCHICS_HOUSE, 4, 4 ; 8 + mapgroup SAFFRON_TRAIN_STATION, 9, 10 ; 9 + mapgroup SILPH_CO_1F, 4, 8 ; 10 + mapgroup COPYCATS_HOUSE_1F, 4, 4 ; 11 + mapgroup COPYCATS_HOUSE_2F, 3, 5 ; 12 + mapgroup ROUTE_5_UNDERGROUND_PATH_ENTRANCE, 4, 4 ; 13 + mapgroup ROUTE_5_SAFFRON_CITY_GATE, 4, 5 ; 14 + mapgroup ROUTE_5_CLEANSE_TAG_SPEECH_HOUSE, 4, 4 ; 15 + + newgroup ; 26 + + mapgroup ROUTE_30, 27, 10 ; 1 + mapgroup ROUTE_31, 9, 20 ; 2 + mapgroup CHERRYGROVE_CITY, 9, 20 ; 3 + mapgroup CHERRYGROVE_MART, 4, 6 ; 4 + mapgroup CHERRYGROVE_POKECENTER_1F, 4, 5 ; 5 + mapgroup CHERRYGROVE_GYM_SPEECH_HOUSE, 4, 4 ; 6 + mapgroup GUIDE_GENTS_HOUSE, 4, 4 ; 7 + mapgroup CHERRYGROVE_EVOLUTION_SPEECH_HOUSE, 4, 4 ; 8 + mapgroup ROUTE_30_BERRY_SPEECH_HOUSE, 4, 4 ; 9 + mapgroup MR_POKEMONS_HOUSE, 4, 4 ; 10 + mapgroup ROUTE_31_VIOLET_GATE, 4, 5 ; 11 diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm new file mode 100644 index 000000000..1af4215a1 --- /dev/null +++ b/constants/map_data_constants.asm @@ -0,0 +1,287 @@ +GROUP_N_A EQU -1 +MAP_N_A EQU -1 +GROUP_NONE EQU 0 +MAP_NONE EQU 0 + +; map header fields (see maps/map_headers.asm) + const_def + const MAPHEADER_MAPHEADER2_BANK ; 0 + const MAPHEADER_TILESET ; 1 + const MAPHEADER_ENVIRONMENT ; 2 + const MAPHEADER_MAPHEADER2 ; 3 + const MAPHEADER_MAPHEADER2_HI ; 4 + const MAPHEADER_LOCATION ; 5 + const MAPHEADER_MUSIC ; 6 + const MAPHEADER_PALETTE ; 7 + const MAPHEADER_FISHGROUP ; 8 +NUM_MAPHEADER_ATTRIBUTES EQU const_value + +; map environments (wEnvironment) +const_value SET 1 + const TOWN + const ROUTE + const INDOOR + const CAVE + const ENVIRONMENT_5 + const GATE + const DUNGEON + +; map palettes (wEnvironment) + const_def + const PALETTE_AUTO + const PALETTE_DAY + const PALETTE_NITE + const PALETTE_MORN + const PALETTE_DARK + +; fish groups + const_def + const FISHGROUP_NONE + const FISHGROUP_SHORE + const FISHGROUP_OCEAN + const FISHGROUP_LAKE + const FISHGROUP_POND + const FISHGROUP_DRATINI + const FISHGROUP_QWILFISH_SWARM + const FISHGROUP_REMORAID_SWARM + const FISHGROUP_GYARADOS + const FISHGROUP_DRATINI_2 + const FISHGROUP_WHIRL_ISLANDS + const FISHGROUP_QWILFISH + const FISHGROUP_REMORAID + const FISHGROUP_QWILFISH_NO_SWARM + + +; connection directions + const_def + const EAST_F + const WEST_F + const SOUTH_F + const NORTH_F + +; MapConnections + const_def + shift_const EAST + shift_const WEST + shift_const SOUTH + shift_const NORTH + + +; object_struct members (see macros/wram.asm) + const_def + const OBJECT_SPRITE ; 00 + const OBJECT_MAP_OBJECT_INDEX ; 01 + const OBJECT_SPRITE_TILE ; 02 + const OBJECT_MOVEMENTTYPE ; 03 + const OBJECT_FLAGS1 ; 04 + const OBJECT_FLAGS2 ; 05 + const OBJECT_PALETTE ; 06 + const OBJECT_DIRECTION_WALKING ; 07 + const OBJECT_FACING ; 08 + const OBJECT_STEP_TYPE ; 09 + const OBJECT_STEP_DURATION ; 0a + const OBJECT_ACTION ; 0b + const OBJECT_STEP_FRAME ; 0c + const OBJECT_FACING_STEP ; 0d + const OBJECT_NEXT_TILE ; 0e + const OBJECT_STANDING_TILE ; 0f + const OBJECT_NEXT_MAP_X ; 10 + const OBJECT_NEXT_MAP_Y ; 11 + const OBJECT_MAP_X ; 12 + const OBJECT_MAP_Y ; 13 + const OBJECT_INIT_X ; 14 + const OBJECT_INIT_Y ; 15 + const OBJECT_RADIUS ; 16 + const OBJECT_SPRITE_X ; 17 + const OBJECT_SPRITE_Y ; 18 + const OBJECT_SPRITE_X_OFFSET ; 19 + const OBJECT_SPRITE_Y_OFFSET ; 1a + const OBJECT_MOVEMENT_BYTE_INDEX ; 1b + const OBJECT_28 ; 1c + const OBJECT_29 ; 1d + const OBJECT_30 ; 1e + const OBJECT_31 ; 1f + const OBJECT_RANGE ; 20 +; 33-39 are not used + +; map_object struct members (see macros/wram.asm) + const_def + const MAPOBJECT_OBJECT_STRUCT_ID ; 0 + const MAPOBJECT_SPRITE ; 1 + const MAPOBJECT_Y_COORD ; 2 + const MAPOBJECT_X_COORD ; 3 + const MAPOBJECT_MOVEMENT ; 4 + const MAPOBJECT_RADIUS ; 5 + const MAPOBJECT_HOUR ; 6 + const MAPOBJECT_TIMEOFDAY ; 7 + const MAPOBJECT_COLOR ; 8 + const MAPOBJECT_RANGE ; 9 + const MAPOBJECT_SCRIPT_POINTER ; a + const MAPOBJECT_POINTER_HI ; b + const MAPOBJECT_EVENT_FLAG ; c + const MAPOBJECT_FLAG_HI ; d + const MAPOBJECT_E ; unused + const MAPOBJECT_F ; unused +OBJECT_LENGTH EQU const_value + +MAPOBJECT_SCREEN_HEIGHT EQU 11 +MAPOBJECT_SCREEN_WIDTH EQU 12 + +; object_struct OBJECT_FACING values +OW_DOWN EQU DOWN << 2 +OW_UP EQU UP << 2 +OW_LEFT EQU LEFT << 2 +OW_RIGHT EQU RIGHT << 2 + +; object_struct OBJECT_FLAGS1 bit flags +INVISIBLE EQU 0 +FIXED_FACING EQU 2 +SLIDING EQU 3 +EMOTE_OBJECT EQU 7 + + +; SpawnPoints indexes (see data/maps/spawn_points.asm) +const_value = -1 + const SPAWN_N_A + const SPAWN_HOME + const SPAWN_DEBUG +; kanto + const SPAWN_PALLET + const SPAWN_VIRIDIAN + const SPAWN_PEWTER + const SPAWN_CERULEAN + const SPAWN_ROCK_TUNNEL + const SPAWN_VERMILION + const SPAWN_LAVENDER + const SPAWN_SAFFRON + const SPAWN_CELADON + const SPAWN_FUCHSIA + const SPAWN_CINNABAR + const SPAWN_INDIGO +; johto + const SPAWN_NEW_BARK + const SPAWN_CHERRYGROVE + const SPAWN_VIOLET + const SPAWN_UNION_CAVE + const SPAWN_AZALEA + const SPAWN_CIANWOOD + const SPAWN_GOLDENROD + const SPAWN_OLIVINE + const SPAWN_ECRUTEAK + const SPAWN_MAHOGANY + const SPAWN_LAKE + const SPAWN_BLACKTHORN + const SPAWN_MT_SILVER + const SPAWN_FAST_SHIP +NUM_SPAWNS EQU const_value + + +; TryBGEvent arguments (see engine/events.asm) + const_def + const BGEVENT_READ + const BGEVENT_UP + const BGEVENT_DOWN + const BGEVENT_RIGHT + const BGEVENT_LEFT + const BGEVENT_IFSET + const BGEVENT_IFNOTSET + const BGEVENT_ITEM + const BGEVENT_COPY + +; object_event types +; TryObjectEvent arguments (see engine/events.asm) + const_def + const OBJECTTYPE_SCRIPT + const OBJECTTYPE_ITEMBALL + const OBJECTTYPE_TRAINER + const OBJECTTYPE_3 + const OBJECTTYPE_4 + const OBJECTTYPE_5 + const OBJECTTYPE_6 + + +; EmotesPointers indexes (see engine/overworld.asm) + const_def + const EMOTE_SHOCK ; 0 + const EMOTE_QUESTION ; 1 + const EMOTE_HAPPY ; 2 + const EMOTE_SAD ; 3 + const EMOTE_HEART ; 4 + const EMOTE_BOLT ; 5 + const EMOTE_SLEEP ; 6 + const EMOTE_FISH ; 7 + const EMOTE_SHADOW ; 8 + const EMOTE_ROD ; 9 + const EMOTE_BOULDER_DUST ; 10 + const EMOTE_GRASS_RUSTLE ; 11 +EMOTE_MEM EQU -1 + +; FruitTreeItems indexes (see data/items/fruit_trees.asm) +const_value SET 1 + const FRUITTREE_ROUTE_29 ; 01 + const FRUITTREE_ROUTE_30_1 ; 02 + const FRUITTREE_ROUTE_38 ; 03 + const FRUITTREE_ROUTE_46_1 ; 04 + const FRUITTREE_ROUTE_30_2 ; 05 + const FRUITTREE_ROUTE_33 ; 06 + const FRUITTREE_ROUTE_31 ; 07 + const FRUITTREE_ROUTE_43 ; 08 + const FRUITTREE_VIOLET_CITY ; 09 + const FRUITTREE_ROUTE_46_2 ; 0a + const FRUITTREE_ROUTE_35 ; 0b + const FRUITTREE_ROUTE_45 ; 0c + const FRUITTREE_ROUTE_36 ; 0d + const FRUITTREE_ROUTE_26 ; 0e + const FRUITTREE_ROUTE_39 ; 0f + const FRUITTREE_ROUTE_44 ; 10 + const FRUITTREE_ROUTE_37_1 ; 11 + const FRUITTREE_ROUTE_37_2 ; 12 + const FRUITTREE_ROUTE_37_3 ; 13 + const FRUITTREE_AZALEA_TOWN ; 14 + const FRUITTREE_ROUTE_42_1 ; 15 + const FRUITTREE_ROUTE_42_2 ; 16 + const FRUITTREE_ROUTE_42_3 ; 17 + const FRUITTREE_ROUTE_11 ; 18 + const FRUITTREE_ROUTE_2 ; 19 + const FRUITTREE_ROUTE_1 ; 1a + const FRUITTREE_ROUTE_8 ; 1b + const FRUITTREE_PEWTER_CITY_1 ; 1c + const FRUITTREE_PEWTER_CITY_2 ; 1d + const FRUITTREE_FUCHSIA_CITY ; 1e +NUM_FRUIT_TREES EQU const_value +- 1 + +; elevator floors +; used by `elevfloor` + const_def + const FLOOR_B4F + const FLOOR_B3F + const FLOOR_B2F + const FLOOR_B1F + const FLOOR_1F + const FLOOR_2F + const FLOOR_3F + const FLOOR_4F + const FLOOR_5F + const FLOOR_6F + const FLOOR_7F + const FLOOR_8F + const FLOOR_9F + const FLOOR_10F + const FLOOR_11F + const FLOOR_ROOF + +; command queue members +CMDQUEUE_TYPE EQU 0 +CMDQUEUE_ADDR EQU 1 +CMDQUEUE_03 EQU 3 +CMDQUEUE_04 EQU 4 +CMDQUEUE_05 EQU 5 +CMDQUEUE_ENTRY_SIZE EQU 6 +CMDQUEUE_CAPACITY EQU 4 + +; command queue types +CMDQUEUE_STONETABLE EQU 2 + +; see engine/overworld.asm +MAX_OUTDOOR_SPRITES EQU 23 +SPRITE_GFX_LIST_CAPACITY EQU $20 diff --git a/constants/map_dimension_constants.asm b/constants/map_dimension_constants.asm deleted file mode 100644 index be12cca02..000000000 --- a/constants/map_dimension_constants.asm +++ /dev/null @@ -1,488 +0,0 @@ -newgroup: macro -const_value = const_value + 1 - enum_start 1 -endm - -mapgroup: macro -;\1: map id -;\2: height: in blocks -;\3: width: in blocks -GROUP_\1 EQU const_value - enum MAP_\1 -\1_HEIGHT EQU \2 -\1_WIDTH EQU \3 -endm - -; map group ids -; `newgroup` indexes are for: -; - MapGroupPointers (see maps/map_headers.asm) -; - OutdoorSprites (see data/maps/outdoor_sprites.asm) -; - MapGroupRoofs (see data/maps/mapgroup_roofs.asm) -; `mapgroup` indexes are for the sub-tables of MapGroupPointers (see maps/map_headers.asm) - const_def - - newgroup ; 1 - - mapgroup OLIVINE_POKECENTER_1F, 4, 5 ; 1 - mapgroup OLIVINE_GYM, 8, 5 ; 2 - mapgroup OLIVINE_TIMS_HOUSE, 4, 4 ; 3 - mapgroup OLIVINE_HOUSE_BETA, 4, 4 ; 4 - mapgroup OLIVINE_PUNISHMENT_SPEECH_HOUSE, 4, 4 ; 5 - mapgroup OLIVINE_GOOD_ROD_HOUSE, 4, 4 ; 6 - mapgroup OLIVINE_CAFE, 4, 4 ; 7 - mapgroup OLIVINE_MART, 4, 6 ; 8 - mapgroup ROUTE_38_ECRUTEAK_GATE, 4, 5 ; 9 - mapgroup ROUTE_39_BARN, 4, 4 ; 10 - mapgroup ROUTE_39_FARMHOUSE, 4, 4 ; 11 - mapgroup ROUTE_38, 9, 20 ; 12 - mapgroup ROUTE_39, 18, 10 ; 13 - mapgroup OLIVINE_CITY, 18, 20 ; 14 - - newgroup ; 2 - - mapgroup MAHOGANY_RED_GYARADOS_SPEECH_HOUSE, 4, 4 ; 1 - mapgroup MAHOGANY_GYM, 9, 5 ; 2 - mapgroup MAHOGANY_POKECENTER_1F, 4, 5 ; 3 - mapgroup ROUTE_42_ECRUTEAK_GATE, 4, 5 ; 4 - mapgroup ROUTE_42, 9, 30 ; 5 - mapgroup ROUTE_44, 9, 30 ; 6 - mapgroup MAHOGANY_TOWN, 9, 10 ; 7 - - newgroup ; 3 - - mapgroup SPROUT_TOWER_1F, 8, 10 ; 1 - mapgroup SPROUT_TOWER_2F, 8, 10 ; 2 - mapgroup SPROUT_TOWER_3F, 8, 10 ; 3 - mapgroup TIN_TOWER_1F, 9, 10 ; 4 - mapgroup TIN_TOWER_2F, 9, 10 ; 5 - mapgroup TIN_TOWER_3F, 9, 10 ; 6 - mapgroup TIN_TOWER_4F, 9, 10 ; 7 - mapgroup TIN_TOWER_5F, 9, 10 ; 8 - mapgroup TIN_TOWER_6F, 9, 10 ; 9 - mapgroup TIN_TOWER_7F, 9, 10 ; 10 - mapgroup TIN_TOWER_8F, 9, 10 ; 11 - mapgroup TIN_TOWER_9F, 9, 10 ; 12 - mapgroup BURNED_TOWER_1F, 9, 10 ; 13 - mapgroup BURNED_TOWER_B1F, 9, 10 ; 14 - mapgroup NATIONAL_PARK, 27, 20 ; 15 - mapgroup NATIONAL_PARK_BUG_CONTEST, 27, 20 ; 16 - mapgroup RADIO_TOWER_1F, 4, 9 ; 17 - mapgroup RADIO_TOWER_2F, 4, 9 ; 18 - mapgroup RADIO_TOWER_3F, 4, 9 ; 19 - mapgroup RADIO_TOWER_4F, 4, 9 ; 20 - mapgroup RADIO_TOWER_5F, 4, 9 ; 21 - mapgroup RUINS_OF_ALPH_OUTSIDE, 18, 10 ; 22 - mapgroup RUINS_OF_ALPH_HO_OH_CHAMBER, 5, 4 ; 23 - mapgroup RUINS_OF_ALPH_KABUTO_CHAMBER, 5, 4 ; 24 - mapgroup RUINS_OF_ALPH_OMANYTE_CHAMBER, 5, 4 ; 25 - mapgroup RUINS_OF_ALPH_AERODACTYL_CHAMBER, 5, 4 ; 26 - mapgroup RUINS_OF_ALPH_INNER_CHAMBER, 14, 10 ; 27 - mapgroup RUINS_OF_ALPH_RESEARCH_CENTER, 4, 4 ; 28 - mapgroup RUINS_OF_ALPH_HO_OH_ITEM_ROOM, 5, 4 ; 29 - mapgroup RUINS_OF_ALPH_KABUTO_ITEM_ROOM, 5, 4 ; 30 - mapgroup RUINS_OF_ALPH_OMANYTE_ITEM_ROOM, 5, 4 ; 31 - mapgroup RUINS_OF_ALPH_AERODACTYL_ITEM_ROOM, 5, 4 ; 32 - mapgroup RUINS_OF_ALPH_HO_OH_WORD_ROOM, 12, 10 ; 33 - mapgroup RUINS_OF_ALPH_KABUTO_WORD_ROOM, 7, 10 ; 34 - mapgroup RUINS_OF_ALPH_OMANYTE_WORD_ROOM, 8, 10 ; 35 - mapgroup RUINS_OF_ALPH_AERODACTYL_WORD_ROOM, 7, 10 ; 36 - mapgroup UNION_CAVE_1F, 18, 10 ; 37 - mapgroup UNION_CAVE_B1F, 18, 10 ; 38 - mapgroup UNION_CAVE_B2F, 18, 10 ; 39 - mapgroup SLOWPOKE_WELL_B1F, 9, 10 ; 40 - mapgroup SLOWPOKE_WELL_B2F, 9, 10 ; 41 - mapgroup OLIVINE_LIGHTHOUSE_1F, 9, 10 ; 42 - mapgroup OLIVINE_LIGHTHOUSE_2F, 9, 10 ; 43 - mapgroup OLIVINE_LIGHTHOUSE_3F, 9, 10 ; 44 - mapgroup OLIVINE_LIGHTHOUSE_4F, 9, 10 ; 45 - mapgroup OLIVINE_LIGHTHOUSE_5F, 9, 10 ; 46 - mapgroup OLIVINE_LIGHTHOUSE_6F, 9, 10 ; 47 - mapgroup MAHOGANY_MART_1F, 4, 4 ; 48 - mapgroup TEAM_ROCKET_BASE_B1F, 9, 15 ; 49 - mapgroup TEAM_ROCKET_BASE_B2F, 9, 15 ; 50 - mapgroup TEAM_ROCKET_BASE_B3F, 9, 15 ; 51 - mapgroup ILEX_FOREST, 27, 15 ; 52 - mapgroup GOLDENROD_UNDERGROUND, 18, 15 ; 53 - mapgroup GOLDENROD_UNDERGROUND_SWITCH_ROOM_ENTRANCES, 18, 15 ; 54 - mapgroup GOLDENROD_DEPT_STORE_B1F, 9, 10 ; 55 - mapgroup GOLDENROD_UNDERGROUND_WAREHOUSE, 9, 10 ; 56 - mapgroup MOUNT_MORTAR_1F_OUTSIDE, 18, 20 ; 57 - mapgroup MOUNT_MORTAR_1F_INSIDE, 27, 20 ; 58 - mapgroup MOUNT_MORTAR_2F_INSIDE, 18, 20 ; 59 - mapgroup MOUNT_MORTAR_B1F, 18, 20 ; 60 - mapgroup ICE_PATH_1F, 18, 20 ; 61 - mapgroup ICE_PATH_B1F, 18, 10 ; 62 - mapgroup ICE_PATH_B2F_MAHOGANY_SIDE, 9, 10 ; 63 - mapgroup ICE_PATH_B2F_BLACKTHORN_SIDE, 9, 5 ; 64 - mapgroup ICE_PATH_B3F, 9, 10 ; 65 - mapgroup WHIRL_ISLAND_NW, 9, 5 ; 66 - mapgroup WHIRL_ISLAND_NE, 9, 10 ; 67 - mapgroup WHIRL_ISLAND_SW, 9, 10 ; 68 - mapgroup WHIRL_ISLAND_CAVE, 9, 5 ; 69 - mapgroup WHIRL_ISLAND_SE, 9, 5 ; 70 - mapgroup WHIRL_ISLAND_B1F, 18, 20 ; 71 - mapgroup WHIRL_ISLAND_B2F, 18, 10 ; 72 - mapgroup WHIRL_ISLAND_LUGIA_CHAMBER, 9, 10 ; 73 - mapgroup SILVER_CAVE_ROOM_1, 18, 10 ; 74 - mapgroup SILVER_CAVE_ROOM_2, 18, 15 ; 75 - mapgroup SILVER_CAVE_ROOM_3, 18, 10 ; 76 - mapgroup SILVER_CAVE_ITEM_ROOMS, 9, 10 ; 77 - mapgroup DARK_CAVE_VIOLET_ENTRANCE, 18, 20 ; 78 - mapgroup DARK_CAVE_BLACKTHORN_ENTRANCE, 18, 15 ; 79 - mapgroup DRAGONS_DEN_1F, 9, 5 ; 80 - mapgroup DRAGONS_DEN_B1F, 18, 20 ; 81 - mapgroup DRAGON_SHRINE, 5, 5 ; 82 - mapgroup TOHJO_FALLS, 9, 15 ; 83 - mapgroup DIGLETTS_CAVE, 18, 10 ; 84 - mapgroup MOUNT_MOON, 9, 15 ; 85 - mapgroup UNDERGROUND_PATH, 14, 3 ; 86 - mapgroup ROCK_TUNNEL_1F, 18, 15 ; 87 - mapgroup ROCK_TUNNEL_B1F, 18, 15 ; 88 - mapgroup SAFARI_ZONE_FUCHSIA_GATE_BETA, 4, 5 ; 89 - mapgroup SAFARI_ZONE_BETA, 18, 10 ; 90 - mapgroup VICTORY_ROAD, 36, 10 ; 91 - - newgroup ; 4 - - mapgroup ECRUTEAK_HOUSE, 9, 10 ; 1 - mapgroup WISE_TRIOS_ROOM, 4, 4 ; 2 - mapgroup ECRUTEAK_POKECENTER_1F, 4, 5 ; 3 - mapgroup ECRUTEAK_LUGIA_SPEECH_HOUSE, 4, 4 ; 4 - mapgroup DANCE_THEATRE, 7, 6 ; 5 - mapgroup ECRUTEAK_MART, 4, 6 ; 6 - mapgroup ECRUTEAK_GYM, 9, 5 ; 7 - mapgroup ECRUTEAK_ITEMFINDER_HOUSE, 4, 4 ; 8 - mapgroup ECRUTEAK_CITY, 18, 20 ; 9 - - newgroup ; 5 - - mapgroup BLACKTHORN_GYM_1F, 9, 5 ; 1 - mapgroup BLACKTHORN_GYM_2F, 9, 5 ; 2 - mapgroup BLACKTHORN_DRAGON_SPEECH_HOUSE, 4, 4 ; 3 - mapgroup BLACKTHORN_EMYS_HOUSE, 4, 4 ; 4 - mapgroup BLACKTHORN_MART, 4, 6 ; 5 - mapgroup BLACKTHORN_POKECENTER_1F, 4, 5 ; 6 - mapgroup MOVE_DELETERS_HOUSE, 4, 4 ; 7 - mapgroup ROUTE_45, 45, 10 ; 8 - mapgroup ROUTE_46, 18, 10 ; 9 - mapgroup BLACKTHORN_CITY, 18, 20 ; 10 - - newgroup ; 6 - - mapgroup CINNABAR_POKECENTER_1F, 4, 5 ; 1 - mapgroup CINNABAR_POKECENTER_2F_BETA, 4, 8 ; 2 - mapgroup ROUTE_19___FUCHSIA_GATE, 4, 5 ; 3 - mapgroup SEAFOAM_GYM, 4, 5 ; 4 - mapgroup ROUTE_19, 18, 10 ; 5 - mapgroup ROUTE_20, 9, 30 ; 6 - mapgroup ROUTE_21, 18, 10 ; 7 - mapgroup CINNABAR_ISLAND, 9, 10 ; 8 - - newgroup ; 7 - - mapgroup CERULEAN_GYM_BADGE_SPEECH_HOUSE, 4, 4 ; 1 - mapgroup CERULEAN_POLICE_STATION, 4, 4 ; 2 - mapgroup CERULEAN_TRADE_SPEECH_HOUSE, 4, 4 ; 3 - mapgroup CERULEAN_POKECENTER_1F, 4, 5 ; 4 - mapgroup CERULEAN_POKECENTER_2F_BETA, 4, 8 ; 5 - mapgroup CERULEAN_GYM, 8, 5 ; 6 - mapgroup CERULEAN_MART, 4, 6 ; 7 - mapgroup ROUTE_10_POKECENTER_1F, 4, 5 ; 8 - mapgroup ROUTE_10_POKECENTER_2F_BETA, 4, 8 ; 9 - mapgroup POWER_PLANT, 9, 10 ; 10 - mapgroup BILLS_HOUSE, 4, 4 ; 11 - mapgroup ROUTE_4, 9, 20 ; 12 - mapgroup ROUTE_9, 9, 30 ; 13 - mapgroup ROUTE_10_NORTH, 9, 10 ; 14 - mapgroup ROUTE_24, 9, 10 ; 15 - mapgroup ROUTE_25, 9, 30 ; 16 - mapgroup CERULEAN_CITY, 18, 20 ; 17 - - newgroup ; 8 - - mapgroup AZALEA_POKECENTER_1F, 4, 5 ; 1 - mapgroup CHARCOAL_KILN, 4, 4 ; 2 - mapgroup AZALEA_MART, 4, 6 ; 3 - mapgroup KURTS_HOUSE, 4, 8 ; 4 - mapgroup AZALEA_GYM, 8, 5 ; 5 - mapgroup ROUTE_33, 9, 10 ; 6 - mapgroup AZALEA_TOWN, 9, 20 ; 7 - - newgroup ; 9 - - mapgroup LAKE_OF_RAGE_HIDDEN_POWER_HOUSE, 4, 4 ; 1 - mapgroup LAKE_OF_RAGE_MAGIKARP_HOUSE, 4, 4 ; 2 - mapgroup ROUTE_43_MAHOGANY_GATE, 4, 5 ; 3 - mapgroup ROUTE_43_GATE, 4, 5 ; 4 - mapgroup ROUTE_43, 27, 10 ; 5 - mapgroup LAKE_OF_RAGE, 18, 20 ; 6 - - newgroup ; 10 - - mapgroup ROUTE_32, 45, 10 ; 1 - mapgroup ROUTE_35, 18, 10 ; 2 - mapgroup ROUTE_36, 9, 30 ; 3 - mapgroup ROUTE_37, 9, 10 ; 4 - mapgroup VIOLET_CITY, 18, 20 ; 5 - mapgroup VIOLET_MART, 4, 6 ; 6 - mapgroup VIOLET_GYM, 8, 5 ; 7 - mapgroup EARLS_POKEMON_ACADEMY, 8, 4 ; 8 - mapgroup VIOLET_NICKNAME_SPEECH_HOUSE, 4, 4 ; 9 - mapgroup VIOLET_POKECENTER_1F, 4, 5 ; 10 - mapgroup VIOLET_KYLES_HOUSE, 4, 4 ; 11 - mapgroup ROUTE_32_RUINS_OF_ALPH_GATE, 4, 5 ; 12 - mapgroup ROUTE_32_POKECENTER_1F, 4, 5 ; 13 - mapgroup ROUTE_35_GOLDENROD_GATE, 4, 5 ; 14 - mapgroup ROUTE_35_NATIONAL_PARK_GATE, 4, 4 ; 15 - mapgroup ROUTE_36_RUINS_OF_ALPH_GATE, 4, 5 ; 16 - mapgroup ROUTE_36_NATIONAL_PARK_GATE, 4, 5 ; 17 - - newgroup ; 11 - - mapgroup ROUTE_34, 27, 10 ; 1 - mapgroup GOLDENROD_CITY, 18, 20 ; 2 - mapgroup GOLDENROD_GYM, 9, 10 ; 3 - mapgroup GOLDENROD_BIKE_SHOP, 4, 4 ; 4 - mapgroup GOLDENROD_HAPPINESS_RATER, 4, 4 ; 5 - mapgroup GOLDENROD_BILLS_HOUSE, 4, 4 ; 6 - mapgroup GOLDENROD_MAGNET_TRAIN_STATION, 9, 10 ; 7 - mapgroup GOLDENROD_FLOWER_SHOP, 4, 4 ; 8 - mapgroup GOLDENROD_PP_SPEECH_HOUSE, 4, 4 ; 9 - mapgroup GOLDENROD_NAME_RATER, 4, 4 ; 10 - mapgroup GOLDENROD_DEPT_STORE_1F, 4, 8 ; 11 - mapgroup GOLDENROD_DEPT_STORE_2F, 4, 8 ; 12 - mapgroup GOLDENROD_DEPT_STORE_3F, 4, 8 ; 13 - mapgroup GOLDENROD_DEPT_STORE_4F, 4, 8 ; 14 - mapgroup GOLDENROD_DEPT_STORE_5F, 4, 8 ; 15 - mapgroup GOLDENROD_DEPT_STORE_6F, 4, 8 ; 16 - mapgroup GOLDENROD_DEPT_STORE_ELEVATOR, 2, 2 ; 17 - mapgroup GOLDENROD_DEPT_STORE_ROOF, 4, 8 ; 18 - mapgroup GOLDENROD_GAME_CORNER, 7, 10 ; 19 - mapgroup GOLDENROD_POKECENTER_1F, 4, 5 ; 20 - mapgroup GOLDENROD_POKECOM_CENTER_2F_MOBILE, 16, 16 ; 21 - mapgroup ILEX_FOREST_AZALEA_GATE, 4, 5 ; 22 - mapgroup ROUTE_34_ILEX_FOREST_GATE, 4, 5 ; 23 - mapgroup DAY_CARE, 4, 5 ; 24 - - newgroup ; 12 - - mapgroup ROUTE_6, 9, 10 ; 1 - mapgroup ROUTE_11, 9, 20 ; 2 - mapgroup VERMILION_CITY, 18, 20 ; 3 - mapgroup VERMILION_HOUSE_FISHING_SPEECH_HOUSE, 4, 4 ; 4 - mapgroup VERMILION_POKECENTER_1F, 4, 5 ; 5 - mapgroup VERMILION_POKECENTER_2F_BETA, 4, 8 ; 6 - mapgroup POKEMON_FAN_CLUB, 4, 5 ; 7 - mapgroup VERMILION_MAGNET_TRAIN_SPEECH_HOUSE, 4, 4 ; 8 - mapgroup VERMILION_MART, 4, 6 ; 9 - mapgroup VERMILION_HOUSE_DIGLETTS_CAVE_SPEECH_HOUSE, 4, 4 ; 10 - mapgroup VERMILION_GYM, 9, 5 ; 11 - mapgroup ROUTE_6_SAFFRON_GATE, 4, 5 ; 12 - mapgroup ROUTE_6_UNDERGROUND_PATH_ENTRANCE, 4, 4 ; 13 - - newgroup ; 13 - - mapgroup ROUTE_1, 18, 10 ; 1 - mapgroup PALLET_TOWN, 9, 10 ; 2 - mapgroup REDS_HOUSE_1F, 4, 4 ; 3 - mapgroup REDS_HOUSE_2F, 4, 4 ; 4 - mapgroup BLUES_HOUSE, 4, 4 ; 5 - mapgroup OAKS_LAB, 6, 5 ; 6 - - newgroup ; 14 - - mapgroup ROUTE_3, 9, 30 ; 1 - mapgroup PEWTER_CITY, 18, 20 ; 2 - mapgroup PEWTER_NIDORAN_SPEECH_HOUSE, 4, 4 ; 3 - mapgroup PEWTER_GYM, 7, 5 ; 4 - mapgroup PEWTER_MART, 4, 6 ; 5 - mapgroup PEWTER_POKECENTER_1F, 4, 5 ; 6 - mapgroup PEWTER_POKECENTER_2F_BETA, 4, 8 ; 7 - mapgroup PEWTER_SNOOZE_SPEECH_HOUSE, 4, 4 ; 8 - - newgroup ; 15 - - mapgroup OLIVINE_PORT, 18, 10 ; 1 - mapgroup VERMILION_PORT, 18, 10 ; 2 - mapgroup FAST_SHIP_1F, 9, 16 ; 3 - mapgroup FAST_SHIP_CABINS_NNW_NNE_NE, 16, 4 ; 4 - mapgroup FAST_SHIP_CABINS_SW_SSW_NW, 16, 4 ; 5 - mapgroup FAST_SHIP_CABINS_SE_SSE_CAPTAINS_CABIN, 17, 5 ; 6 - mapgroup FAST_SHIP_B1F, 8, 16 ; 7 - mapgroup OLIVINE_PORT_PASSAGE, 9, 10 ; 8 - mapgroup VERMILION_PORT_PASSAGE, 9, 10 ; 9 - mapgroup MOUNT_MOON_SQUARE, 9, 15 ; 10 - mapgroup MOUNT_MOON_GIFT_SHOP, 4, 4 ; 11 - mapgroup TIN_TOWER_ROOF, 9, 10 ; 12 - - newgroup ; 16 - - mapgroup ROUTE_23, 9, 10 ; 1 - mapgroup INDIGO_PLATEAU_POKECENTER_1F, 7, 9 ; 2 - mapgroup WILLS_ROOM, 9, 5 ; 3 - mapgroup KOGAS_ROOM, 9, 5 ; 4 - mapgroup BRUNOS_ROOM, 9, 5 ; 5 - mapgroup KARENS_ROOM, 9, 5 ; 6 - mapgroup LANCES_ROOM, 12, 5 ; 7 - mapgroup HALL_OF_FAME, 7, 5 ; 8 - - newgroup ; 17 - - mapgroup ROUTE_13, 9, 30 ; 1 - mapgroup ROUTE_14, 18, 10 ; 2 - mapgroup ROUTE_15, 9, 20 ; 3 - mapgroup ROUTE_18, 9, 10 ; 4 - mapgroup FUCHSIA_CITY, 18, 20 ; 5 - mapgroup FUCHSIA_MART, 4, 6 ; 6 - mapgroup SAFARI_ZONE_MAIN_OFFICE, 4, 4 ; 7 - mapgroup FUCHSIA_GYM, 9, 5 ; 8 - mapgroup FUCHSIA_BILL_SPEECH_HOUSE, 4, 4 ; 9 - mapgroup FUCHSIA_POKECENTER_1F, 4, 5 ; 10 - mapgroup FUCHSIA_POKECENTER_2F_BETA, 4, 8 ; 11 - mapgroup SAFARI_ZONE_WARDENS_HOME, 4, 5 ; 12 - mapgroup ROUTE_15_FUCHSIA_GATE, 4, 5 ; 13 - - newgroup ; 18 - - mapgroup ROUTE_8, 9, 20 ; 1 - mapgroup ROUTE_12, 27, 10 ; 2 - mapgroup ROUTE_10_SOUTH, 9, 10 ; 3 - mapgroup LAVENDER_TOWN, 9, 10 ; 4 - mapgroup LAVENDER_POKECENTER_1F, 4, 5 ; 5 - mapgroup LAVENDER_POKECENTER_2F_BETA, 4, 8 ; 6 - mapgroup MR_FUJIS_HOUSE, 4, 5 ; 7 - mapgroup LAVENDER_TOWN_SPEECH_HOUSE, 4, 4 ; 8 - mapgroup LAVENDER_NAME_RATER, 4, 4 ; 9 - mapgroup LAVENDER_MART, 4, 6 ; 10 - mapgroup SOUL_HOUSE, 4, 5 ; 11 - mapgroup LAV_RADIO_TOWER_1F, 4, 10 ; 12 - mapgroup ROUTE_8_SAFFRON_GATE, 4, 5 ; 13 - mapgroup ROUTE_12_SUPER_ROD_HOUSE, 4, 4 ; 14 - - newgroup ; 19 - - mapgroup ROUTE_28, 9, 20 ; 1 - mapgroup SILVER_CAVE_OUTSIDE, 18, 20 ; 2 - mapgroup SILVER_CAVE_POKECENTER_1F, 4, 5 ; 3 - mapgroup ROUTE_28_FAMOUS_SPEECH_HOUSE, 4, 4 ; 4 - - newgroup ; 20 - - mapgroup POKECENTER_2F, 4, 8 ; 1 - mapgroup TRADE_CENTER, 4, 5 ; 2 - mapgroup COLOSSEUM, 4, 5 ; 3 - mapgroup TIME_CAPSULE, 4, 5 ; 4 - mapgroup MOBILE_TRADE_ROOM_MOBILE, 4, 5 ; 5 - mapgroup MOBILE_BATTLE_ROOM, 4, 5 ; 6 - - newgroup ; 21 - - mapgroup ROUTE_7, 9, 10 ; 1 - mapgroup ROUTE_16, 9, 10 ; 2 - mapgroup ROUTE_17, 45, 10 ; 3 - mapgroup CELADON_CITY, 18, 20 ; 4 - mapgroup CELADON_DEPT_STORE_1F, 4, 8 ; 5 - mapgroup CELADON_DEPT_STORE_2F, 4, 8 ; 6 - mapgroup CELADON_DEPT_STORE_3F, 4, 8 ; 7 - mapgroup CELADON_DEPT_STORE_4F, 4, 8 ; 8 - mapgroup CELADON_DEPT_STORE_5F, 4, 8 ; 9 - mapgroup CELADON_DEPT_STORE_6F, 4, 8 ; 10 - mapgroup CELADON_DEPT_STORE_ELEVATOR, 2, 2 ; 11 - mapgroup CELADON_MANSION_1F, 5, 4 ; 12 - mapgroup CELADON_MANSION_2F, 5, 4 ; 13 - mapgroup CELADON_MANSION_3F, 5, 4 ; 14 - mapgroup CELADON_MANSION_ROOF, 5, 4 ; 15 - mapgroup CELADON_MANSION_ROOF_HOUSE, 4, 4 ; 16 - mapgroup CELADON_POKECENTER_1F, 4, 5 ; 17 - mapgroup CELADON_POKECENTER_2F_BETA, 4, 8 ; 18 - mapgroup CELADON_GAME_CORNER, 7, 10 ; 19 - mapgroup CELADON_GAME_CORNER_PRIZE_ROOM, 3, 3 ; 20 - mapgroup CELADON_GYM, 9, 5 ; 21 - mapgroup CELADON_CAFE, 4, 6 ; 22 - mapgroup ROUTE_16_FUCHSIA_SPEECH_HOUSE, 4, 4 ; 23 - mapgroup ROUTE_16_GATE, 4, 5 ; 24 - mapgroup ROUTE_7_SAFFRON_GATE, 4, 5 ; 25 - mapgroup ROUTE_17_18_GATE, 4, 5 ; 26 - - newgroup ; 22 - - mapgroup ROUTE_40, 18, 10 ; 1 - mapgroup ROUTE_41, 27, 25 ; 2 - mapgroup CIANWOOD_CITY, 27, 15 ; 3 - mapgroup MANIAS_HOUSE, 4, 4 ; 4 - mapgroup CIANWOOD_GYM, 9, 5 ; 5 - mapgroup CIANWOOD_POKECENTER_1F, 4, 5 ; 6 - mapgroup CIANWOOD_PHARMACY, 4, 4 ; 7 - mapgroup CIANWOOD_CITY_PHOTO_STUDIO, 4, 4 ; 8 - mapgroup CIANWOOD_LUGIA_SPEECH_HOUSE, 4, 4 ; 9 - mapgroup POKE_SEERS_HOUSE, 4, 4 ; 10 - mapgroup BATTLE_TOWER_1F, 5, 8 ; 11 - mapgroup BATTLE_TOWER_BATTLE_ROOM, 4, 4 ; 12 - mapgroup BATTLE_TOWER_ELEVATOR, 2, 2 ; 13 - mapgroup BATTLE_TOWER_HALLWAY, 2, 11 ; 14 - mapgroup ROUTE_40_BATTLE_TOWER_GATE, 4, 5 ; 15 - mapgroup BATTLE_TOWER_OUTSIDE, 14, 10 ; 16 - - newgroup ; 23 - - mapgroup ROUTE_2, 27, 10 ; 1 - mapgroup ROUTE_22, 9, 20 ; 2 - mapgroup VIRIDIAN_CITY, 18, 20 ; 3 - mapgroup VIRIDIAN_GYM, 9, 5 ; 4 - mapgroup VIRIDIAN_NICKNAME_SPEECH_HOUSE, 4, 4 ; 5 - mapgroup TRAINER_HOUSE_1F, 7, 5 ; 6 - mapgroup TRAINER_HOUSE_B1F, 8, 5 ; 7 - mapgroup VIRIDIAN_MART, 4, 6 ; 8 - mapgroup VIRIDIAN_POKECENTER_1F, 4, 5 ; 9 - mapgroup VIRIDIAN_POKECENTER_2F_BETA, 4, 8 ; 10 - mapgroup ROUTE_2_NUGGET_SPEECH_HOUSE, 4, 4 ; 11 - mapgroup ROUTE_2_GATE, 4, 5 ; 12 - mapgroup VICTORY_ROAD_GATE, 9, 10 ; 13 - - newgroup ; 24 - - mapgroup ROUTE_26, 54, 10 ; 1 - mapgroup ROUTE_27, 9, 40 ; 2 - mapgroup ROUTE_29, 9, 30 ; 3 - mapgroup NEW_BARK_TOWN, 9, 10 ; 4 - mapgroup ELMS_LAB, 6, 5 ; 5 - mapgroup KRISS_HOUSE_1F, 4, 5 ; 6 - mapgroup KRISS_HOUSE_2F, 3, 4 ; 7 - mapgroup KRISS_NEIGHBORS_HOUSE, 4, 4 ; 8 - mapgroup ELMS_HOUSE, 4, 4 ; 9 - mapgroup ROUTE_26_HEAL_SPEECH_HOUSE, 4, 4 ; 10 - mapgroup ROUTE_26_DAY_OF_WEEK_SIBLINGS_HOUSE, 4, 4 ; 11 - mapgroup ROUTE_27_SANDSTORM_HOUSE, 4, 4 ; 12 - mapgroup ROUTE_29_46_GATE, 4, 5 ; 13 - - newgroup ; 25 - - mapgroup ROUTE_5, 9, 10 ; 1 - mapgroup SAFFRON_CITY, 18, 20 ; 2 - mapgroup FIGHTING_DOJO, 6, 5 ; 3 - mapgroup SAFFRON_GYM, 9, 10 ; 4 - mapgroup SAFFRON_MART, 4, 6 ; 5 - mapgroup SAFFRON_POKECENTER_1F, 4, 5 ; 6 - mapgroup SAFFRON_POKECENTER_2F_BETA, 4, 8 ; 7 - mapgroup MR_PSYCHICS_HOUSE, 4, 4 ; 8 - mapgroup SAFFRON_TRAIN_STATION, 9, 10 ; 9 - mapgroup SILPH_CO_1F, 4, 8 ; 10 - mapgroup COPYCATS_HOUSE_1F, 4, 4 ; 11 - mapgroup COPYCATS_HOUSE_2F, 3, 5 ; 12 - mapgroup ROUTE_5_UNDERGROUND_PATH_ENTRANCE, 4, 4 ; 13 - mapgroup ROUTE_5_SAFFRON_CITY_GATE, 4, 5 ; 14 - mapgroup ROUTE_5_CLEANSE_TAG_SPEECH_HOUSE, 4, 4 ; 15 - - newgroup ; 26 - - mapgroup ROUTE_30, 27, 10 ; 1 - mapgroup ROUTE_31, 9, 20 ; 2 - mapgroup CHERRYGROVE_CITY, 9, 20 ; 3 - mapgroup CHERRYGROVE_MART, 4, 6 ; 4 - mapgroup CHERRYGROVE_POKECENTER_1F, 4, 5 ; 5 - mapgroup CHERRYGROVE_GYM_SPEECH_HOUSE, 4, 4 ; 6 - mapgroup GUIDE_GENTS_HOUSE, 4, 4 ; 7 - mapgroup CHERRYGROVE_EVOLUTION_SPEECH_HOUSE, 4, 4 ; 8 - mapgroup ROUTE_30_BERRY_SPEECH_HOUSE, 4, 4 ; 9 - mapgroup MR_POKEMONS_HOUSE, 4, 4 ; 10 - mapgroup ROUTE_31_VIOLET_GATE, 4, 5 ; 11 diff --git a/data/maps/environment_colors.asm b/data/maps/environment_colors.asm index 92d788fe1..aeddb83bc 100644 --- a/data/maps/environment_colors.asm +++ b/data/maps/environment_colors.asm @@ -1,5 +1,5 @@ EnvironmentColorsPointers: -; entries correspond to environment constants (see constants/map_constants.asm) +; entries correspond to environment constants (see constants/map_data_constants.asm) dw .OutdoorColors ; unused dw .OutdoorColors ; TOWN dw .OutdoorColors ; ROUTE -- cgit v1.2.3 From 24f0e7d04501ddb000dfc1d06e716efca387bce8 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 12:50:32 -0500 Subject: Rename: emote_headers, sprite_headers, cry_headers, gfx_headers, tileset_headers --- Makefile | 24 ++-- audio.asm | 2 +- battle/anim_objects.asm | 2 +- battle/objects/gfx_headers.asm | 51 ------- battle/objects/oam.asm | 1 - battle/objects/object_gfx.asm | 51 +++++++ constants/animation_constants.asm | 2 +- constants/battle_constants.asm | 16 +-- constants/map_data_constants.asm | 4 +- constants/map_setup_constants.asm | 2 +- constants/pokemon_constants.asm | 2 +- constants/sprite_constants.asm | 2 +- constants/sprite_data_constants.asm | 16 +-- constants/tileset_constants.asm | 2 +- constants/trainer_constants.asm | 2 +- data/emote_headers.asm | 22 --- data/emotes.asm | 22 +++ data/pokemon/cries.asm | 263 ++++++++++++++++++++++++++++++++++++ data/pokemon/cry_headers.asm | 259 ----------------------------------- data/sprites.asm | 111 +++++++++++++++ engine/map_setup.asm | 4 +- engine/overworld.asm | 20 +-- engine/warp_connection.asm | 2 +- gfx/footprints.asm | 14 +- gfx/sprite_headers.asm | 111 --------------- home/audio.asm | 8 +- home/cry.asm | 6 +- home/map.asm | 10 +- macros/scripts/audio.asm | 14 +- main.asm | 2 +- tilesets/tileset_headers.asm | 47 ------- tilesets/tilesets.asm | 47 +++++++ wram.asm | 4 +- 33 files changed, 571 insertions(+), 574 deletions(-) delete mode 100755 battle/objects/gfx_headers.asm create mode 100755 battle/objects/object_gfx.asm delete mode 100644 data/emote_headers.asm create mode 100644 data/emotes.asm create mode 100644 data/pokemon/cries.asm delete mode 100644 data/pokemon/cry_headers.asm create mode 100644 data/sprites.asm delete mode 100644 gfx/sprite_headers.asm delete mode 100644 tilesets/tileset_headers.asm create mode 100644 tilesets/tilesets.asm diff --git a/Makefile b/Makefile index 4a4c640f9..c30d4a180 100644 --- a/Makefile +++ b/Makefile @@ -100,41 +100,41 @@ pokecrystal.gbc: $(crystal_obj) pokecrystal.link ### Terrible hacks to match animations. Delete these rules if you don't care about matching. # Dewgong has an unused tile id in its last frame. The tile itself is missing. -gfx/pics/dewgong/frames.asm: gfx/pics/dewgong/front.animated.tilemap gfx/pics/dewgong/front.dimensions +gfx/pokemon/dewgong/frames.asm: gfx/pokemon/dewgong/front.animated.tilemap gfx/pokemon/dewgong/front.dimensions tools/pokemon_animation -f $^ > $@ echo " db \$$4d" >> $@ # Lugia has two unused tile ids in its last frame. The tiles themselves are missing. -gfx/pics/lugia/frames.asm: gfx/pics/lugia/front.animated.tilemap gfx/pics/lugia/front.dimensions +gfx/pokemon/lugia/frames.asm: gfx/pokemon/lugia/front.animated.tilemap gfx/pokemon/lugia/front.dimensions tools/pokemon_animation -f $^ > $@ echo " db \$$5e, \$$59" >> $@ # Girafarig has a redundant tile after the end. It is used in two frames, so it must be injected into the generated graphics. # This is more involved, so it's hacked into pokemon_animation_graphics. -gfx/pics/girafarig/front.animated.2bpp: gfx/pics/girafarig/front.2bpp gfx/pics/girafarig/front.dimensions +gfx/pokemon/girafarig/front.animated.2bpp: gfx/pokemon/girafarig/front.2bpp gfx/pokemon/girafarig/front.dimensions tools/pokemon_animation_graphics --girafarig -o $@ $^ -gfx/pics/girafarig/front.animated.tilemap: gfx/pics/girafarig/front.2bpp gfx/pics/girafarig/front.dimensions +gfx/pokemon/girafarig/front.animated.tilemap: gfx/pokemon/girafarig/front.2bpp gfx/pokemon/girafarig/front.dimensions tools/pokemon_animation_graphics --girafarig -t $@ $^ ### Pokemon pic graphics rules -gfx/pics/%/normal.gbcpal: gfx/pics/%/front.png +gfx/pokemon/%/normal.gbcpal: gfx/pokemon/%/front.png $(RGBGFX) -p $@ $< -gfx/pics/%/normal.pal: gfx/pics/%/normal.gbcpal +gfx/pokemon/%/normal.pal: gfx/pokemon/%/normal.gbcpal tools/palette -p $< > $@ -gfx/pics/%/back.2bpp: gfx/pics/%/back.png +gfx/pokemon/%/back.2bpp: gfx/pokemon/%/back.png $(RGBGFX) -h -o $@ $< -gfx/pics/%/bitmask.asm: gfx/pics/%/front.animated.tilemap gfx/pics/%/front.dimensions +gfx/pokemon/%/bitmask.asm: gfx/pokemon/%/front.animated.tilemap gfx/pokemon/%/front.dimensions tools/pokemon_animation -b $^ > $@ -gfx/pics/%/frames.asm: gfx/pics/%/front.animated.tilemap gfx/pics/%/front.dimensions +gfx/pokemon/%/frames.asm: gfx/pokemon/%/front.animated.tilemap gfx/pokemon/%/front.dimensions tools/pokemon_animation -f $^ > $@ -gfx/pics/%/front.animated.2bpp: gfx/pics/%/front.2bpp gfx/pics/%/front.dimensions +gfx/pokemon/%/front.animated.2bpp: gfx/pokemon/%/front.2bpp gfx/pokemon/%/front.dimensions tools/pokemon_animation_graphics -o $@ $^ -gfx/pics/%/front.animated.tilemap: gfx/pics/%/front.2bpp gfx/pics/%/front.dimensions +gfx/pokemon/%/front.animated.tilemap: gfx/pokemon/%/front.2bpp gfx/pokemon/%/front.dimensions tools/pokemon_animation_graphics -t $@ $^ # Don't use -h, pokemon_animation_graphics takes care of it -#gfx/pics/%/front.2bpp: gfx/pics/%/front.png +#gfx/pokemon/%/front.2bpp: gfx/pokemon/%/front.png # $(RGBGFX) -o $@ $< diff --git a/audio.asm b/audio.asm index c358e4d9b..196b5a4c8 100644 --- a/audio.asm +++ b/audio.asm @@ -157,6 +157,6 @@ INCLUDE "audio/sfx_crystal.asm" SECTION "Cries", ROMX -INCLUDE "data/pokemon/cry_headers.asm" +INCLUDE "data/pokemon/cries.asm" INCLUDE "audio/cries.asm" diff --git a/battle/anim_objects.asm b/battle/anim_objects.asm index 786a035bf..65f0b4628 100644 --- a/battle/anim_objects.asm +++ b/battle/anim_objects.asm @@ -6,4 +6,4 @@ INCLUDE "battle/objects/functions.asm" INCLUDE "battle/objects/helpers.asm" INCLUDE "battle/objects/framesets.asm" INCLUDE "battle/objects/oam.asm" -INCLUDE "battle/objects/gfx_headers.asm" +INCLUDE "battle/objects/object_gfx.asm" diff --git a/battle/objects/gfx_headers.asm b/battle/objects/gfx_headers.asm deleted file mode 100755 index 901144ec7..000000000 --- a/battle/objects/gfx_headers.asm +++ /dev/null @@ -1,51 +0,0 @@ -object_gfx: MACRO -; # tiles, label - db \1 - dba \2 -ENDM - -AnimObjGFX: ; cfcf6 -; entries correspond to ANIM_GFX_* constants - object_gfx 0, AnimObj00GFX - object_gfx 21, AnimObjHitGFX - object_gfx 6, AnimObjCutGFX - object_gfx 6, AnimObjFireGFX - object_gfx 20, AnimObjWaterGFX - object_gfx 26, AnimObjLightningGFX - object_gfx 18, AnimObjPlantGFX - object_gfx 12, AnimObjSmokeGFX - object_gfx 9, AnimObjExplosionGFX - object_gfx 17, AnimObjRocksGFX - object_gfx 6, AnimObjIceGFX - object_gfx 10, AnimObjPokeBallGFX - object_gfx 9, AnimObjPoisonGFX - object_gfx 13, AnimObjBubbleGFX - object_gfx 16, AnimObjNoiseGFX - object_gfx 2, AnimObjPowderGFX - object_gfx 11, AnimObjBeamGFX - object_gfx 9, AnimObjSpeedGFX - object_gfx 9, AnimObjChargeGFX - object_gfx 19, AnimObjWindGFX - object_gfx 10, AnimObjWhipGFX - object_gfx 12, AnimObjEggGFX - object_gfx 18, AnimObjRopeGFX - object_gfx 13, AnimObjPsychicGFX - object_gfx 10, AnimObjReflectGFX - object_gfx 27, AnimObjStatusGFX - object_gfx 12, AnimObjSandGFX - object_gfx 14, AnimObjWebGFX - object_gfx 16, AnimObjHazeGFX - object_gfx 7, AnimObjHornGFX - object_gfx 8, AnimObjFlowerGFX - object_gfx 40, AnimObjMiscGFX - object_gfx 36, AnimObjSkyAttackGFX - object_gfx 16, AnimObjGlobeGFX - object_gfx 48, AnimObjShapesGFX - object_gfx 18, AnimObjObjectsGFX - object_gfx 38, AnimObjShineGFX - object_gfx 35, AnimObjAngelsGFX - object_gfx 18, AnimObjWaveGFX - object_gfx 24, AnimObjAeroblastGFX - object_gfx 1, NULL - object_gfx 1, NULL -; cfd9e diff --git a/battle/objects/oam.asm b/battle/objects/oam.asm index 8ae6651a4..79b475c71 100755 --- a/battle/objects/oam.asm +++ b/battle/objects/oam.asm @@ -1,4 +1,3 @@ - BattleAnimOAMData: ; ceeae ; vtile offset (?), length, address dbbw $00, 16, .OAMData_00 ; 00 diff --git a/battle/objects/object_gfx.asm b/battle/objects/object_gfx.asm new file mode 100755 index 000000000..133298d13 --- /dev/null +++ b/battle/objects/object_gfx.asm @@ -0,0 +1,51 @@ +anim_obj_gfx: MACRO +; # tiles, label + db \1 + dba \2 +ENDM + +AnimObjGFX: ; cfcf6 +; entries correspond to ANIM_GFX_* constants + anim_obj_gfx 0, AnimObj00GFX + anim_obj_gfx 21, AnimObjHitGFX + anim_obj_gfx 6, AnimObjCutGFX + anim_obj_gfx 6, AnimObjFireGFX + anim_obj_gfx 20, AnimObjWaterGFX + anim_obj_gfx 26, AnimObjLightningGFX + anim_obj_gfx 18, AnimObjPlantGFX + anim_obj_gfx 12, AnimObjSmokeGFX + anim_obj_gfx 9, AnimObjExplosionGFX + anim_obj_gfx 17, AnimObjRocksGFX + anim_obj_gfx 6, AnimObjIceGFX + anim_obj_gfx 10, AnimObjPokeBallGFX + anim_obj_gfx 9, AnimObjPoisonGFX + anim_obj_gfx 13, AnimObjBubbleGFX + anim_obj_gfx 16, AnimObjNoiseGFX + anim_obj_gfx 2, AnimObjPowderGFX + anim_obj_gfx 11, AnimObjBeamGFX + anim_obj_gfx 9, AnimObjSpeedGFX + anim_obj_gfx 9, AnimObjChargeGFX + anim_obj_gfx 19, AnimObjWindGFX + anim_obj_gfx 10, AnimObjWhipGFX + anim_obj_gfx 12, AnimObjEggGFX + anim_obj_gfx 18, AnimObjRopeGFX + anim_obj_gfx 13, AnimObjPsychicGFX + anim_obj_gfx 10, AnimObjReflectGFX + anim_obj_gfx 27, AnimObjStatusGFX + anim_obj_gfx 12, AnimObjSandGFX + anim_obj_gfx 14, AnimObjWebGFX + anim_obj_gfx 16, AnimObjHazeGFX + anim_obj_gfx 7, AnimObjHornGFX + anim_obj_gfx 8, AnimObjFlowerGFX + anim_obj_gfx 40, AnimObjMiscGFX + anim_obj_gfx 36, AnimObjSkyAttackGFX + anim_obj_gfx 16, AnimObjGlobeGFX + anim_obj_gfx 48, AnimObjShapesGFX + anim_obj_gfx 18, AnimObjObjectsGFX + anim_obj_gfx 38, AnimObjShineGFX + anim_obj_gfx 35, AnimObjAngelsGFX + anim_obj_gfx 18, AnimObjWaveGFX + anim_obj_gfx 24, AnimObjAeroblastGFX + anim_obj_gfx 1, NULL + anim_obj_gfx 1, NULL +; cfd9e diff --git a/constants/animation_constants.asm b/constants/animation_constants.asm index e7c844c12..857673849 100644 --- a/constants/animation_constants.asm +++ b/constants/animation_constants.asm @@ -775,7 +775,7 @@ const_value SET 1 const ANIM_MON_EGG1 const ANIM_MON_EGG2 -; AnimObjGFX indexes (see battle/objects/gfx_headers.asm) +; AnimObjGFX indexes (see battle/objects/object_gfx.asm) const_value SET 1 const ANIM_GFX_HIT const ANIM_GFX_CUT diff --git a/constants/battle_constants.asm b/constants/battle_constants.asm index e9d393fcc..adfeb580d 100644 --- a/constants/battle_constants.asm +++ b/constants/battle_constants.asm @@ -32,14 +32,14 @@ NUM_LEVEL_STATS EQU const_value ; move struct members (see battle/moves/moves.asm) const_def - const MOVE_ANIM - const MOVE_EFFECT - const MOVE_POWER - const MOVE_TYPE - const MOVE_ACC - const MOVE_PP - const MOVE_CHANCE - const MOVE_LENGTH + const MOVE_ANIM ; 0 + const MOVE_EFFECT ; 1 + const MOVE_POWER ; 2 + const MOVE_TYPE ; 3 + const MOVE_ACC ; 4 + const MOVE_PP ; 5 + const MOVE_CHANCE ; 6 +MOVE_LENGTH EQU const_value ; stat constants ; indexes for: diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm index 1af4215a1..d99264136 100644 --- a/constants/map_data_constants.asm +++ b/constants/map_data_constants.asm @@ -3,7 +3,7 @@ MAP_N_A EQU -1 GROUP_NONE EQU 0 MAP_NONE EQU 0 -; map header fields (see maps/map_headers.asm) +; map header struct members (see maps/map_headers.asm) const_def const MAPHEADER_MAPHEADER2_BANK ; 0 const MAPHEADER_TILESET ; 1 @@ -200,7 +200,7 @@ NUM_SPAWNS EQU const_value const OBJECTTYPE_6 -; EmotesPointers indexes (see engine/overworld.asm) +; Emotes indexes (see data/emotes.asm) const_def const EMOTE_SHOCK ; 0 const EMOTE_QUESTION ; 1 diff --git a/constants/map_setup_constants.asm b/constants/map_setup_constants.asm index 0dcc2b941..7b0dfdf83 100644 --- a/constants/map_setup_constants.asm +++ b/constants/map_setup_constants.asm @@ -41,7 +41,7 @@ const_value SET 1 const map_save_screen ; 0c const map_buffer_screen ; 0d const map_load_graphics ; 0e - const map_load_tileset_header ; 0f + const map_load_tileset ; 0f const map_time_of_day ; 10 const map_palettes ; 11 const map_wildmons ; 12 diff --git a/constants/pokemon_constants.asm b/constants/pokemon_constants.asm index 13cb577bb..344ba66c1 100644 --- a/constants/pokemon_constants.asm +++ b/constants/pokemon_constants.asm @@ -1,6 +1,6 @@ ; pokemon ids ; indexes for: -; - CryHeaders (see data/pokemon/cry_headers.asm) +; - PokemonCries (see data/pokemon/cries.asm) ; - BaseData (see data/pokemon/base_stats.asm) ; - EggMovePointers (see data/pokemon/egg_move_pointers.asm) ; - EvosAttacksPointers (see data/pokemon/evos_attacks_pointers.asm) diff --git a/constants/sprite_constants.asm b/constants/sprite_constants.asm index b008ac6c2..9e4b57c27 100644 --- a/constants/sprite_constants.asm +++ b/constants/sprite_constants.asm @@ -1,5 +1,5 @@ ; sprite ids -; SpriteHeaders indexes (see gfx/sprite_headers.asm) +; OverworldSprites indexes (see gfx/sprite_data.asm) const_def const SPRITE_NONE ; 00 const SPRITE_CHRIS ; 01 diff --git a/constants/sprite_data_constants.asm b/constants/sprite_data_constants.asm index 77d9e3975..0abaddd70 100644 --- a/constants/sprite_data_constants.asm +++ b/constants/sprite_data_constants.asm @@ -1,12 +1,12 @@ -; sprite_header struct members (see gfx/sprite_headers.asm) +; overworld_sprite struct members (see gfx/sprite_data.asm) const_def - const SPRITEHEADER_ADDR_LO ; 0 - const SPRITEHEADER_ADDR_HI ; 1 - const SPRITEHEADER_SIZE ; 2 - const SPRITEHEADER_BANK ; 3 - const SPRITEHEADER_TYPE ; 4 - const SPRITEHEADER_PALETTE ; 5 -NUM_SPRITEHEADER_FIELDS EQU const_value + const SPRITEDATA_ADDR ; 0 + const SPRITEDATA_ADDR_HI ; 1 + const SPRITEDATA_SIZE ; 2 + const SPRITEDATA_BANK ; 3 + const SPRITEDATA_TYPE ; 4 + const SPRITEDATA_PALETTE ; 5 +NUM_SPRITEDATA_FIELDS EQU const_value ; sprite types const_value SET 1 diff --git a/constants/tileset_constants.asm b/constants/tileset_constants.asm index 6a73f61d9..722de0c2b 100644 --- a/constants/tileset_constants.asm +++ b/constants/tileset_constants.asm @@ -1,4 +1,4 @@ -; Tilesets indexes (see tilesets/tileset_headers.asm) +; Tilesets indexes (see tilesets/tilesets.asm) const_value SET 1 const TILESET_JOHTO_1 ; 01 const TILESET_JOHTO_2 ; 02 diff --git a/constants/trainer_constants.asm b/constants/trainer_constants.asm index c41a6ed58..a5440ad80 100644 --- a/constants/trainer_constants.asm +++ b/constants/trainer_constants.asm @@ -678,7 +678,7 @@ KRIS EQU __enum__ NUM_TRAINER_CLASSES EQU __enum__ -; TrainerClassAttributes fields (see data/trainers/trainer_attributes.asm) +; TrainerClassAttributes struct members (see data/trainers/trainer_attributes.asm) const_def const TRNATTR_ITEM1 ; 0 const TRNATTR_ITEM2 ; 1 diff --git a/data/emote_headers.asm b/data/emote_headers.asm deleted file mode 100644 index 2618d3b0a..000000000 --- a/data/emote_headers.asm +++ /dev/null @@ -1,22 +0,0 @@ -emote_header: MACRO -; graphics pointer, length, starting tile - dw \1 - db \2 tiles, BANK(\1) - dw VTiles1 tile \3 -ENDM - -EmotesPointers: ; 144d -; entries correspond to EMOTE_* constants - emote_header ShockEmote, 4, $78 - emote_header QuestionEmote, 4, $78 - emote_header HappyEmote, 4, $78 - emote_header SadEmote, 4, $78 - emote_header HeartEmote, 4, $78 - emote_header BoltEmote, 4, $78 - emote_header SleepEmote, 4, $78 - emote_header FishEmote, 4, $78 - emote_header JumpShadowGFX, 1, $7c - emote_header FishingRodGFX, 2, $7c - emote_header BoulderDustGFX, 2, $7e - emote_header GrassRustleGFX, 1, $7e -; 14495 diff --git a/data/emotes.asm b/data/emotes.asm new file mode 100644 index 000000000..af16a61c6 --- /dev/null +++ b/data/emotes.asm @@ -0,0 +1,22 @@ +emote: MACRO +; graphics pointer, length, starting tile + dw \1 + db \2 tiles, BANK(\1) + dw VTiles1 tile \3 +ENDM + +Emotes: ; 144d +; entries correspond to EMOTE_* constants + emote ShockEmote, 4, $78 + emote QuestionEmote, 4, $78 + emote HappyEmote, 4, $78 + emote SadEmote, 4, $78 + emote HeartEmote, 4, $78 + emote BoltEmote, 4, $78 + emote SleepEmote, 4, $78 + emote FishEmote, 4, $78 + emote JumpShadowGFX, 1, $7c + emote FishingRodGFX, 2, $7c + emote BoulderDustGFX, 2, $7e + emote GrassRustleGFX, 1, $7e +; 14495 diff --git a/data/pokemon/cries.asm b/data/pokemon/cries.asm new file mode 100644 index 000000000..e6f729361 --- /dev/null +++ b/data/pokemon/cries.asm @@ -0,0 +1,263 @@ +mon_cry: MACRO +; index, pitch, length + dw \1, \2, \3 +ENDM + +PokemonCries:: ; f2787 +; entries correspond to constants/pokemon_constants.asm + mon_cry CRY_BULBASAUR, $080, $081 ; BULBASAUR + mon_cry CRY_BULBASAUR, $020, $100 ; IVYSAUR + mon_cry CRY_BULBASAUR, $000, $140 ; VENUSAUR + mon_cry CRY_CHARMANDER, $060, $0c0 ; CHARMANDER + mon_cry CRY_CHARMANDER, $020, $0c0 ; CHARMELEON + mon_cry CRY_CHARMANDER, $000, $100 ; CHARIZARD + mon_cry CRY_SQUIRTLE, $060, $0c0 ; SQUIRTLE + mon_cry CRY_SQUIRTLE, $020, $0c0 ; WARTORTLE + mon_cry CRY_BLASTOISE, $000, $100 ; BLASTOISE + mon_cry CRY_CATERPIE, $080, $0a0 ; CATERPIE + mon_cry CRY_METAPOD, $0cc, $081 ; METAPOD + mon_cry CRY_CATERPIE, $077, $0c0 ; BUTTERFREE + mon_cry CRY_WEEDLE, $0ee, $081 ; WEEDLE + mon_cry CRY_BLASTOISE, $0ff, $081 ; KAKUNA + mon_cry CRY_BLASTOISE, $060, $100 ; BEEDRILL + mon_cry CRY_PIDGEY, $0df, $084 ; PIDGEY + mon_cry CRY_PIDGEOTTO, $028, $140 ; PIDGEOTTO + mon_cry CRY_PIDGEOTTO, $011, $17f ; PIDGEOT + mon_cry CRY_RATTATA, $000, $100 ; RATTATA + mon_cry CRY_RATTATA, $020, $17f ; RATICATE + mon_cry CRY_SPEAROW, $000, $100 ; SPEAROW + mon_cry CRY_FEAROW, $040, $120 ; FEAROW + mon_cry CRY_EKANS, $012, $0c0 ; EKANS + mon_cry CRY_EKANS, $0e0, $090 ; ARBOK + mon_cry CRY_BULBASAUR, $0ee, $081 ; PIKACHU + mon_cry CRY_RAICHU, $0ee, $088 ; RAICHU + mon_cry CRY_NIDORAN_M, $020, $0c0 ; SANDSHREW + mon_cry CRY_NIDORAN_M, $0ff, $17f ; SANDSLASH + mon_cry CRY_NIDORAN_F, $000, $100 ; NIDORAN_F + mon_cry CRY_NIDORAN_F, $02c, $160 ; NIDORINA + mon_cry CRY_NIDOQUEEN, $000, $100 ; NIDOQUEEN + mon_cry CRY_NIDORAN_M, $000, $100 ; NIDORAN_M + mon_cry CRY_NIDORAN_M, $02c, $140 ; NIDORINO + mon_cry CRY_RAICHU, $000, $100 ; NIDOKING + mon_cry CRY_CLEFAIRY, $0cc, $081 ; CLEFAIRY + mon_cry CRY_CLEFAIRY, $0aa, $0a0 ; CLEFABLE + mon_cry CRY_VULPIX, $04f, $090 ; VULPIX + mon_cry CRY_VULPIX, $088, $0e0 ; NINETALES + mon_cry CRY_PIDGEY, $0ff, $0b5 ; JIGGLYPUFF + mon_cry CRY_PIDGEY, $068, $0e0 ; WIGGLYTUFF + mon_cry CRY_SQUIRTLE, $0e0, $100 ; ZUBAT + mon_cry CRY_SQUIRTLE, $0fa, $100 ; GOLBAT + mon_cry CRY_ODDISH, $0dd, $081 ; ODDISH + mon_cry CRY_ODDISH, $0aa, $0c0 ; GLOOM + mon_cry CRY_VILEPLUME, $022, $17f ; VILEPLUME + mon_cry CRY_PARAS, $020, $160 ; PARAS + mon_cry CRY_PARAS, $042, $17f ; PARASECT + mon_cry CRY_VENONAT, $044, $0c0 ; VENONAT + mon_cry CRY_VENONAT, $029, $100 ; VENOMOTH + mon_cry CRY_DIGLETT, $0aa, $081 ; DIGLETT + mon_cry CRY_DIGLETT, $02a, $090 ; DUGTRIO + mon_cry CRY_CLEFAIRY, $077, $090 ; MEOWTH + mon_cry CRY_CLEFAIRY, $099, $17f ; PERSIAN + mon_cry CRY_PSYDUCK, $020, $0e0 ; PSYDUCK + mon_cry CRY_PSYDUCK, $0ff, $0c0 ; GOLDUCK + mon_cry CRY_NIDOQUEEN, $0dd, $0e0 ; MANKEY + mon_cry CRY_NIDOQUEEN, $0af, $0c0 ; PRIMEAPE + mon_cry CRY_GROWLITHE, $020, $0c0 ; GROWLITHE + mon_cry CRY_WEEDLE, $000, $100 ; ARCANINE + mon_cry CRY_PIDGEY, $0ff, $17f ; POLIWAG + mon_cry CRY_PIDGEY, $077, $0e0 ; POLIWHIRL + mon_cry CRY_PIDGEY, $000, $17f ; POLIWRATH + mon_cry CRY_METAPOD, $0c0, $081 ; ABRA + mon_cry CRY_METAPOD, $0a8, $140 ; KADABRA + mon_cry CRY_METAPOD, $098, $17f ; ALAKAZAM + mon_cry CRY_GROWLITHE, $0ee, $081 ; MACHOP + mon_cry CRY_GROWLITHE, $048, $0e0 ; MACHOKE + mon_cry CRY_GROWLITHE, $008, $140 ; MACHAMP + mon_cry CRY_PSYDUCK, $055, $081 ; BELLSPROUT + mon_cry CRY_WEEPINBELL, $044, $0a0 ; WEEPINBELL + mon_cry CRY_WEEPINBELL, $066, $14c ; VICTREEBEL + mon_cry CRY_VENONAT, $000, $100 ; TENTACOOL + mon_cry CRY_VENONAT, $0ee, $17f ; TENTACRUEL + mon_cry CRY_VULPIX, $0f0, $090 ; GEODUDE + mon_cry CRY_VULPIX, $000, $100 ; GRAVELER + mon_cry CRY_GOLEM, $0e0, $0c0 ; GOLEM + mon_cry CRY_WEEPINBELL, $000, $100 ; PONYTA + mon_cry CRY_WEEPINBELL, $020, $140 ; RAPIDASH + mon_cry CRY_SLOWPOKE, $000, $100 ; SLOWPOKE + mon_cry CRY_GROWLITHE, $000, $100 ; SLOWBRO + mon_cry CRY_METAPOD, $080, $0e0 ; MAGNEMITE + mon_cry CRY_METAPOD, $020, $140 ; MAGNETON + mon_cry CRY_SPEAROW, $0dd, $081 ; FARFETCH_D + mon_cry CRY_DIGLETT, $0bb, $081 ; DODUO + mon_cry CRY_DIGLETT, $099, $0a0 ; DODRIO + mon_cry CRY_SEEL, $088, $140 ; SEEL + mon_cry CRY_SEEL, $023, $17f ; DEWGONG + mon_cry CRY_GRIMER, $000, $100 ; GRIMER + mon_cry CRY_MUK, $0ef, $17f ; MUK + mon_cry CRY_FEAROW, $000, $100 ; SHELLDER + mon_cry CRY_FEAROW, $06f, $160 ; CLOYSTER + mon_cry CRY_METAPOD, $000, $100 ; GASTLY + mon_cry CRY_METAPOD, $030, $0c0 ; HAUNTER + mon_cry CRY_MUK, $000, $17f ; GENGAR + mon_cry CRY_EKANS, $0ff, $140 ; ONIX + mon_cry CRY_DROWZEE, $088, $0a0 ; DROWZEE + mon_cry CRY_DROWZEE, $0ee, $0c0 ; HYPNO + mon_cry CRY_KRABBY, $020, $160 ; KRABBY + mon_cry CRY_KRABBY, $0ee, $160 ; KINGLER + mon_cry CRY_VOLTORB, $0ed, $100 ; VOLTORB + mon_cry CRY_VOLTORB, $0a8, $110 ; ELECTRODE + mon_cry CRY_DIGLETT, $000, $100 ; EXEGGCUTE + mon_cry CRY_DROWZEE, $000, $100 ; EXEGGUTOR + mon_cry CRY_CLEFAIRY, $000, $100 ; CUBONE + mon_cry CRY_ODDISH, $04f, $0e0 ; MAROWAK + mon_cry CRY_GOLEM, $080, $140 ; HITMONLEE + mon_cry CRY_SEEL, $0ee, $140 ; HITMONCHAN + mon_cry CRY_SEEL, $000, $100 ; LICKITUNG + mon_cry CRY_GOLEM, $0e6, $15d ; KOFFING + mon_cry CRY_GOLEM, $0ff, $17f ; WEEZING + mon_cry CRY_CHARMANDER, $000, $100 ; RHYHORN + mon_cry CRY_RHYDON, $000, $100 ; RHYDON + mon_cry CRY_PIDGEOTTO, $00a, $140 ; CHANSEY + mon_cry CRY_GOLEM, $000, $100 ; TANGELA + mon_cry CRY_KANGASKHAN, $000, $100 ; KANGASKHAN + mon_cry CRY_CLEFAIRY, $099, $090 ; HORSEA + mon_cry CRY_CLEFAIRY, $03c, $081 ; SEADRA + mon_cry CRY_CATERPIE, $080, $0c0 ; GOLDEEN + mon_cry CRY_CATERPIE, $010, $17f ; SEAKING + mon_cry CRY_PARAS, $002, $0a0 ; STARYU + mon_cry CRY_PARAS, $000, $100 ; STARMIE + mon_cry CRY_KRABBY, $008, $0c0 ; MR__MIME + mon_cry CRY_CATERPIE, $000, $100 ; SCYTHER + mon_cry CRY_DROWZEE, $0ff, $17f ; JYNX + mon_cry CRY_VOLTORB, $08f, $17f ; ELECTABUZZ + mon_cry CRY_CHARMANDER, $0ff, $0b0 ; MAGMAR + mon_cry CRY_PIDGEOTTO, $000, $100 ; PINSIR + mon_cry CRY_SQUIRTLE, $011, $0c0 ; TAUROS + mon_cry CRY_EKANS, $080, $080 ; MAGIKARP + mon_cry CRY_EKANS, $000, $100 ; GYARADOS + mon_cry CRY_LAPRAS, $000, $100 ; LAPRAS + mon_cry CRY_PIDGEY, $0ff, $17f ; DITTO + mon_cry CRY_VENONAT, $088, $0e0 ; EEVEE + mon_cry CRY_VENONAT, $0aa, $17f ; VAPOREON + mon_cry CRY_VENONAT, $03d, $100 ; JOLTEON + mon_cry CRY_VENONAT, $010, $0a0 ; FLAREON + mon_cry CRY_WEEPINBELL, $0aa, $17f ; PORYGON + mon_cry CRY_GROWLITHE, $0f0, $081 ; OMANYTE + mon_cry CRY_GROWLITHE, $0ff, $0c0 ; OMASTAR + mon_cry CRY_CATERPIE, $0bb, $0c0 ; KABUTO + mon_cry CRY_FEAROW, $0ee, $081 ; KABUTOPS + mon_cry CRY_VILEPLUME, $020, $170 ; AERODACTYL + mon_cry CRY_GRIMER, $055, $081 ; SNORLAX + mon_cry CRY_RAICHU, $080, $0c0 ; ARTICUNO + mon_cry CRY_FEAROW, $0ff, $100 ; ZAPDOS + mon_cry CRY_RAICHU, $0f8, $0c0 ; MOLTRES + mon_cry CRY_BULBASAUR, $060, $0c0 ; DRATINI + mon_cry CRY_BULBASAUR, $040, $100 ; DRAGONAIR + mon_cry CRY_BULBASAUR, $03c, $140 ; DRAGONITE + mon_cry CRY_PARAS, $099, $17f ; MEWTWO + mon_cry CRY_PARAS, $0ee, $17f ; MEW + mon_cry CRY_CHIKORITA, -$010, $0b0 ; CHIKORITA + mon_cry CRY_CHIKORITA, -$022, $120 ; BAYLEEF + mon_cry CRY_CHIKORITA, -$0b7, $200 ; MEGANIUM + mon_cry CRY_CYNDAQUIL, $347, $080 ; CYNDAQUIL + mon_cry CRY_CYNDAQUIL, $321, $120 ; QUILAVA + mon_cry CRY_TYPHLOSION, $f00, $0d4 ; TYPHLOSION + mon_cry CRY_TOTODILE, $46c, $0e8 ; TOTODILE + mon_cry CRY_TOTODILE, $440, $110 ; CROCONAW + mon_cry CRY_TOTODILE, $3fc, $180 ; FERALIGATR + mon_cry CRY_SENTRET, $08a, $0b8 ; SENTRET + mon_cry CRY_SENTRET, $06b, $102 ; FURRET + mon_cry CRY_HOOTHOOT, $091, $0d8 ; HOOTHOOT + mon_cry CRY_HOOTHOOT, $000, $1a0 ; NOCTOWL + mon_cry CRY_LEDYBA, $000, $0de ; LEDYBA + mon_cry CRY_LEDYBA, -$096, $138 ; LEDIAN + mon_cry CRY_SPINARAK, $011, $200 ; SPINARAK + mon_cry CRY_SPINARAK, -$0ae, $1e2 ; ARIADOS + mon_cry CRY_SQUIRTLE, -$010, $140 ; CROBAT + mon_cry CRY_CYNDAQUIL, $3c9, $140 ; CHINCHOU + mon_cry CRY_CYNDAQUIL, $2d0, $110 ; LANTURN + mon_cry CRY_PICHU, $000, $140 ; PICHU + mon_cry CRY_CLEFFA, $061, $091 ; CLEFFA + mon_cry CRY_CHIKORITA, $0e8, $0e8 ; IGGLYBUFF + mon_cry CRY_TOGEPI, $010, $100 ; TOGEPI + mon_cry CRY_TOGETIC, $03b, $038 ; TOGETIC + mon_cry CRY_NATU, -$067, $100 ; NATU + mon_cry CRY_NATU, -$0a7, $168 ; XATU + mon_cry CRY_MAREEP, $022, $0d8 ; MAREEP + mon_cry CRY_MAREEP, -$007, $180 ; FLAAFFY + mon_cry CRY_AMPHAROS, -$07c, $0e8 ; AMPHAROS + mon_cry CRY_CLEFFA, $084, $150 ; BELLOSSOM + mon_cry CRY_MARILL, $11b, $120 ; MARILL + mon_cry CRY_MARILL, $0b6, $180 ; AZUMARILL + mon_cry CRY_CLEFFA, $f40, $180 ; SUDOWOODO + mon_cry CRY_CLEFFA, -$2a3, $1c8 ; POLITOED + mon_cry CRY_CLEFFA, $03b, $0c8 ; HOPPIP + mon_cry CRY_CLEFFA, $027, $138 ; SKIPLOOM + mon_cry CRY_CLEFFA, $000, $180 ; JUMPLUFF + mon_cry CRY_AIPOM, -$051, $0e8 ; AIPOM + mon_cry CRY_MARILL, $12b, $0b8 ; SUNKERN + mon_cry CRY_SUNFLORA, -$020, $180 ; SUNFLORA + mon_cry CRY_TOTODILE, $031, $0c8 ; YANMA + mon_cry CRY_WOOPER, $093, $0af ; WOOPER + mon_cry CRY_WOOPER, -$0c6, $140 ; QUAGSIRE + mon_cry CRY_AIPOM, $0a2, $140 ; ESPEON + mon_cry CRY_VENONAT, -$0e9, $0f0 ; UMBREON + mon_cry CRY_MARILL, -$01f, $180 ; MURKROW + mon_cry CRY_SLOWKING, $104, $200 ; SLOWKING + mon_cry CRY_HOOTHOOT, $130, $0e8 ; MISDREAVUS + mon_cry CRY_HOOTHOOT, $162, $100 ; UNOWN + mon_cry CRY_AMPHAROS, $27b, $144 ; WOBBUFFET + mon_cry CRY_GIRAFARIG, $041, $200 ; GIRAFARIG + mon_cry CRY_SLOWKING, $080, $100 ; PINECO + mon_cry CRY_SLOWKING, $000, $180 ; FORRETRESS + mon_cry CRY_DUNSPARCE, $1c4, $100 ; DUNSPARCE + mon_cry CRY_GLIGAR, -$102, $100 ; GLIGAR + mon_cry CRY_TYPHLOSION, $0ef, $0f7 ; STEELIX + mon_cry CRY_DUNSPARCE, $112, $0e8 ; SNUBBULL + mon_cry CRY_DUNSPARCE, $000, $180 ; GRANBULL + mon_cry CRY_SLOWKING, $160, $0e0 ; QWILFISH + mon_cry CRY_AMPHAROS, $000, $160 ; SCIZOR + mon_cry CRY_DUNSPARCE, $290, $0a8 ; SHUCKLE + mon_cry CRY_AMPHAROS, $035, $0e0 ; HERACROSS + mon_cry CRY_WOOPER, $053, $0af ; SNEASEL + mon_cry CRY_TEDDIURSA, $7a2, $06e ; TEDDIURSA + mon_cry CRY_TEDDIURSA, $640, $0d8 ; URSARING + mon_cry CRY_SLUGMA, -$1d8, $140 ; SLUGMA + mon_cry CRY_MAGCARGO, -$20d, $1c0 ; MAGCARGO + mon_cry CRY_CYNDAQUIL, $1fe, $140 ; SWINUB + mon_cry CRY_MAGCARGO, -$109, $100 ; PILOSWINE + mon_cry CRY_MAGCARGO, $0a1, $0e8 ; CORSOLA + mon_cry CRY_SUNFLORA, $00d, $100 ; REMORAID + mon_cry CRY_TOTODILE, $000, $180 ; OCTILLERY + mon_cry CRY_TEDDIURSA, $002, $06a ; DELIBIRD + mon_cry CRY_MANTINE, -$0be, $0f0 ; MANTINE + mon_cry CRY_AMPHAROS, $8a9, $180 ; SKARMORY + mon_cry CRY_CYNDAQUIL, $039, $140 ; HOUNDOUR + mon_cry CRY_TOTODILE, -$10a, $100 ; HOUNDOOM + mon_cry CRY_SLUGMA, $2fb, $100 ; KINGDRA + mon_cry CRY_SENTRET, $048, $230 ; PHANPY + mon_cry CRY_DONPHAN, $000, $1a0 ; DONPHAN + mon_cry CRY_GIRAFARIG, $073, $240 ; PORYGON2 + mon_cry CRY_AIPOM, -$160, $180 ; STANTLER + mon_cry CRY_PICHU, -$21a, $1f0 ; SMEARGLE + mon_cry CRY_AIPOM, $02c, $108 ; TYROGUE + mon_cry CRY_SLUGMA, $000, $100 ; HITMONTOP + mon_cry CRY_MARILL, $068, $100 ; SMOOCHUM + mon_cry CRY_SUNFLORA, -$2d8, $0b4 ; ELEKID + mon_cry CRY_TEDDIURSA, $176, $03a ; MAGBY + mon_cry CRY_GLIGAR, -$1cd, $1a0 ; MILTANK + mon_cry CRY_SLOWKING, $293, $140 ; BLISSEY + mon_cry CRY_RAIKOU, $22e, $120 ; RAIKOU + mon_cry CRY_ENTEI, $000, $1a0 ; ENTEI + mon_cry CRY_MAGCARGO, $000, $180 ; SUICUNE + mon_cry CRY_RAIKOU, $05f, $0d0 ; LARVITAR + mon_cry CRY_SPINARAK, -$1db, $150 ; PUPITAR + mon_cry CRY_RAIKOU, -$100, $180 ; TYRANITAR + mon_cry CRY_TYPHLOSION, $000, $100 ; LUGIA + mon_cry CRY_AIPOM, $000, $180 ; HO_OH + mon_cry CRY_ENTEI, $14a, $111 ; CELEBI + mon_cry CRY_NIDORAN_M, 0, 0 ; 252 + mon_cry CRY_NIDORAN_M, 0, 0 ; 253 + mon_cry CRY_NIDORAN_M, 0, 0 ; 254 + mon_cry CRY_NIDORAN_M, 0, 0 ; 255 +; f2d81 diff --git a/data/pokemon/cry_headers.asm b/data/pokemon/cry_headers.asm deleted file mode 100644 index 0651fa7f1..000000000 --- a/data/pokemon/cry_headers.asm +++ /dev/null @@ -1,259 +0,0 @@ -CryHeaders:: ; f2787 -; entries correspond to constants/pokemon_constants.asm -; index, pitch, length -BulbasaurCryHeader: cry_header CRY_BULBASAUR, $080, $081 -IvysaurCryHeader: cry_header CRY_BULBASAUR, $020, $100 -VenusaurCryHeader: cry_header CRY_BULBASAUR, $000, $140 -CharmanderCryHeader: cry_header CRY_CHARMANDER, $060, $0c0 -CharmeleonCryHeader: cry_header CRY_CHARMANDER, $020, $0c0 -CharizardCryHeader: cry_header CRY_CHARMANDER, $000, $100 -SquirtleCryHeader: cry_header CRY_SQUIRTLE, $060, $0c0 -WartortleCryHeader: cry_header CRY_SQUIRTLE, $020, $0c0 -BlastoiseCryHeader: cry_header CRY_BLASTOISE, $000, $100 -CaterpieCryHeader: cry_header CRY_CATERPIE, $080, $0a0 -MetapodCryHeader: cry_header CRY_METAPOD, $0cc, $081 -ButterfreeCryHeader: cry_header CRY_CATERPIE, $077, $0c0 -WeedleCryHeader: cry_header CRY_WEEDLE, $0ee, $081 -KakunaCryHeader: cry_header CRY_BLASTOISE, $0ff, $081 -BeedrillCryHeader: cry_header CRY_BLASTOISE, $060, $100 -PidgeyCryHeader: cry_header CRY_PIDGEY, $0df, $084 -PidgeottoCryHeader: cry_header CRY_PIDGEOTTO, $028, $140 -PidgeotCryHeader: cry_header CRY_PIDGEOTTO, $011, $17f -RattataCryHeader: cry_header CRY_RATTATA, $000, $100 -RaticateCryHeader: cry_header CRY_RATTATA, $020, $17f -SpearowCryHeader: cry_header CRY_SPEAROW, $000, $100 -FearowCryHeader: cry_header CRY_FEAROW, $040, $120 -EkansCryHeader: cry_header CRY_EKANS, $012, $0c0 -ArbokCryHeader: cry_header CRY_EKANS, $0e0, $090 -PikachuCryHeader: cry_header CRY_BULBASAUR, $0ee, $081 -RaichuCryHeader: cry_header CRY_RAICHU, $0ee, $088 -SandshrewCryHeader: cry_header CRY_NIDORAN_M, $020, $0c0 -SandslashCryHeader: cry_header CRY_NIDORAN_M, $0ff, $17f -NidoranFCryHeader: cry_header CRY_NIDORAN_F, $000, $100 -NidorinaCryHeader: cry_header CRY_NIDORAN_F, $02c, $160 -NidoqueenCryHeader: cry_header CRY_NIDOQUEEN, $000, $100 -NidoranMCryHeader: cry_header CRY_NIDORAN_M, $000, $100 -NidorinoCryHeader: cry_header CRY_NIDORAN_M, $02c, $140 -NidokingCryHeader: cry_header CRY_RAICHU, $000, $100 -ClefairyCryHeader: cry_header CRY_CLEFAIRY, $0cc, $081 -ClefableCryHeader: cry_header CRY_CLEFAIRY, $0aa, $0a0 -VulpixCryHeader: cry_header CRY_VULPIX, $04f, $090 -NinetalesCryHeader: cry_header CRY_VULPIX, $088, $0e0 -JigglypuffCryHeader: cry_header CRY_PIDGEY, $0ff, $0b5 -WigglytuffCryHeader: cry_header CRY_PIDGEY, $068, $0e0 -ZubatCryHeader: cry_header CRY_SQUIRTLE, $0e0, $100 -GolbatCryHeader: cry_header CRY_SQUIRTLE, $0fa, $100 -OddishCryHeader: cry_header CRY_ODDISH, $0dd, $081 -GloomCryHeader: cry_header CRY_ODDISH, $0aa, $0c0 -VileplumeCryHeader: cry_header CRY_VILEPLUME, $022, $17f -ParasCryHeader: cry_header CRY_PARAS, $020, $160 -ParasectCryHeader: cry_header CRY_PARAS, $042, $17f -VenonatCryHeader: cry_header CRY_VENONAT, $044, $0c0 -VenomothCryHeader: cry_header CRY_VENONAT, $029, $100 -DiglettCryHeader: cry_header CRY_DIGLETT, $0aa, $081 -DugtrioCryHeader: cry_header CRY_DIGLETT, $02a, $090 -MeowthCryHeader: cry_header CRY_CLEFAIRY, $077, $090 -PersianCryHeader: cry_header CRY_CLEFAIRY, $099, $17f -PsyduckCryHeader: cry_header CRY_PSYDUCK, $020, $0e0 -GolduckCryHeader: cry_header CRY_PSYDUCK, $0ff, $0c0 -MankeyCryHeader: cry_header CRY_NIDOQUEEN, $0dd, $0e0 -PrimeapeCryHeader: cry_header CRY_NIDOQUEEN, $0af, $0c0 -GrowlitheCryHeader: cry_header CRY_GROWLITHE, $020, $0c0 -ArcanineCryHeader: cry_header CRY_WEEDLE, $000, $100 -PoliwagCryHeader: cry_header CRY_PIDGEY, $0ff, $17f -PoliwhirlCryHeader: cry_header CRY_PIDGEY, $077, $0e0 -PoliwrathCryHeader: cry_header CRY_PIDGEY, $000, $17f -AbraCryHeader: cry_header CRY_METAPOD, $0c0, $081 -KadabraCryHeader: cry_header CRY_METAPOD, $0a8, $140 -AlakazamCryHeader: cry_header CRY_METAPOD, $098, $17f -MachopCryHeader: cry_header CRY_GROWLITHE, $0ee, $081 -MachokeCryHeader: cry_header CRY_GROWLITHE, $048, $0e0 -MachampCryHeader: cry_header CRY_GROWLITHE, $008, $140 -BellsproutCryHeader: cry_header CRY_PSYDUCK, $055, $081 -WeepinbellCryHeader: cry_header CRY_WEEPINBELL, $044, $0a0 -VictreebelCryHeader: cry_header CRY_WEEPINBELL, $066, $14c -TentacoolCryHeader: cry_header CRY_VENONAT, $000, $100 -TentacruelCryHeader: cry_header CRY_VENONAT, $0ee, $17f -GeodudeCryHeader: cry_header CRY_VULPIX, $0f0, $090 -GravelerCryHeader: cry_header CRY_VULPIX, $000, $100 -GolemCryHeader: cry_header CRY_GOLEM, $0e0, $0c0 -PonytaCryHeader: cry_header CRY_WEEPINBELL, $000, $100 -RapidashCryHeader: cry_header CRY_WEEPINBELL, $020, $140 -SlowpokeCryHeader: cry_header CRY_SLOWPOKE, $000, $100 -SlowbroCryHeader: cry_header CRY_GROWLITHE, $000, $100 -MagnemiteCryHeader: cry_header CRY_METAPOD, $080, $0e0 -MagnetonCryHeader: cry_header CRY_METAPOD, $020, $140 -FarfetchDCryHeader: cry_header CRY_SPEAROW, $0dd, $081 -DoduoCryHeader: cry_header CRY_DIGLETT, $0bb, $081 -DodrioCryHeader: cry_header CRY_DIGLETT, $099, $0a0 -SeelCryHeader: cry_header CRY_SEEL, $088, $140 -DewgongCryHeader: cry_header CRY_SEEL, $023, $17f -GrimerCryHeader: cry_header CRY_GRIMER, $000, $100 -MukCryHeader: cry_header CRY_MUK, $0ef, $17f -ShellderCryHeader: cry_header CRY_FEAROW, $000, $100 -CloysterCryHeader: cry_header CRY_FEAROW, $06f, $160 -GastlyCryHeader: cry_header CRY_METAPOD, $000, $100 -HaunterCryHeader: cry_header CRY_METAPOD, $030, $0c0 -GengarCryHeader: cry_header CRY_MUK, $000, $17f -OnixCryHeader: cry_header CRY_EKANS, $0ff, $140 -DrowzeeCryHeader: cry_header CRY_DROWZEE, $088, $0a0 -HypnoCryHeader: cry_header CRY_DROWZEE, $0ee, $0c0 -KrabbyCryHeader: cry_header CRY_KRABBY, $020, $160 -KinglerCryHeader: cry_header CRY_KRABBY, $0ee, $160 -VoltorbCryHeader: cry_header CRY_VOLTORB, $0ed, $100 -ElectrodeCryHeader: cry_header CRY_VOLTORB, $0a8, $110 -ExeggcuteCryHeader: cry_header CRY_DIGLETT, $000, $100 -ExeggutorCryHeader: cry_header CRY_DROWZEE, $000, $100 -CuboneCryHeader: cry_header CRY_CLEFAIRY, $000, $100 -MarowakCryHeader: cry_header CRY_ODDISH, $04f, $0e0 -HitmonleeCryHeader: cry_header CRY_GOLEM, $080, $140 -HitmonchanCryHeader: cry_header CRY_SEEL, $0ee, $140 -LickitungCryHeader: cry_header CRY_SEEL, $000, $100 -KoffingCryHeader: cry_header CRY_GOLEM, $0e6, $15d -WeezingCryHeader: cry_header CRY_GOLEM, $0ff, $17f -RhyhornCryHeader: cry_header CRY_CHARMANDER, $000, $100 -RhydonCryHeader: cry_header CRY_RHYDON, $000, $100 -ChanseyCryHeader: cry_header CRY_PIDGEOTTO, $00a, $140 -TangelaCryHeader: cry_header CRY_GOLEM, $000, $100 -KangaskhanCryHeader: cry_header CRY_KANGASKHAN, $000, $100 -HorseaCryHeader: cry_header CRY_CLEFAIRY, $099, $090 -SeadraCryHeader: cry_header CRY_CLEFAIRY, $03c, $081 -GoldeenCryHeader: cry_header CRY_CATERPIE, $080, $0c0 -SeakingCryHeader: cry_header CRY_CATERPIE, $010, $17f -StaryuCryHeader: cry_header CRY_PARAS, $002, $0a0 -StarmieCryHeader: cry_header CRY_PARAS, $000, $100 -MrMimeCryHeader: cry_header CRY_KRABBY, $008, $0c0 -ScytherCryHeader: cry_header CRY_CATERPIE, $000, $100 -JynxCryHeader: cry_header CRY_DROWZEE, $0ff, $17f -ElectabuzzCryHeader: cry_header CRY_VOLTORB, $08f, $17f -MagmarCryHeader: cry_header CRY_CHARMANDER, $0ff, $0b0 -PinsirCryHeader: cry_header CRY_PIDGEOTTO, $000, $100 -TaurosCryHeader: cry_header CRY_SQUIRTLE, $011, $0c0 -MagikarpCryHeader: cry_header CRY_EKANS, $080, $080 -GyaradosCryHeader: cry_header CRY_EKANS, $000, $100 -LaprasCryHeader: cry_header CRY_LAPRAS, $000, $100 -DittoCryHeader: cry_header CRY_PIDGEY, $0ff, $17f -EeveeCryHeader: cry_header CRY_VENONAT, $088, $0e0 -VaporeonCryHeader: cry_header CRY_VENONAT, $0aa, $17f -JolteonCryHeader: cry_header CRY_VENONAT, $03d, $100 -FlareonCryHeader: cry_header CRY_VENONAT, $010, $0a0 -PorygonCryHeader: cry_header CRY_WEEPINBELL, $0aa, $17f -OmanyteCryHeader: cry_header CRY_GROWLITHE, $0f0, $081 -OmastarCryHeader: cry_header CRY_GROWLITHE, $0ff, $0c0 -KabutoCryHeader: cry_header CRY_CATERPIE, $0bb, $0c0 -KabutopsCryHeader: cry_header CRY_FEAROW, $0ee, $081 -AerodactylCryHeader: cry_header CRY_VILEPLUME, $020, $170 -SnorlaxCryHeader: cry_header CRY_GRIMER, $055, $081 -ArticunoCryHeader: cry_header CRY_RAICHU, $080, $0c0 -ZapdosCryHeader: cry_header CRY_FEAROW, $0ff, $100 -MoltresCryHeader: cry_header CRY_RAICHU, $0f8, $0c0 -DratiniCryHeader: cry_header CRY_BULBASAUR, $060, $0c0 -DragonairCryHeader: cry_header CRY_BULBASAUR, $040, $100 -DragoniteCryHeader: cry_header CRY_BULBASAUR, $03c, $140 -MewtwoCryHeader: cry_header CRY_PARAS, $099, $17f -MewCryHeader: cry_header CRY_PARAS, $0ee, $17f -ChikoritaCryHeader: cry_header CRY_CHIKORITA, -$010, $0b0 -BayleefCryHeader: cry_header CRY_CHIKORITA, -$022, $120 -MeganiumCryHeader: cry_header CRY_CHIKORITA, -$0b7, $200 -CyndaquilCryHeader: cry_header CRY_CYNDAQUIL, $347, $080 -QuilavaCryHeader: cry_header CRY_CYNDAQUIL, $321, $120 -TyphlosionCryHeader: cry_header CRY_TYPHLOSION, $f00, $0d4 -TotodileCryHeader: cry_header CRY_TOTODILE, $46c, $0e8 -CroconawCryHeader: cry_header CRY_TOTODILE, $440, $110 -FeraligatrCryHeader: cry_header CRY_TOTODILE, $3fc, $180 -SentretCryHeader: cry_header CRY_SENTRET, $08a, $0b8 -FurretCryHeader: cry_header CRY_SENTRET, $06b, $102 -HoothootCryHeader: cry_header CRY_HOOTHOOT, $091, $0d8 -NoctowlCryHeader: cry_header CRY_HOOTHOOT, $000, $1a0 -LedybaCryHeader: cry_header CRY_LEDYBA, $000, $0de -LedianCryHeader: cry_header CRY_LEDYBA, -$096, $138 -SpinarakCryHeader: cry_header CRY_SPINARAK, $011, $200 -AriadosCryHeader: cry_header CRY_SPINARAK, -$0ae, $1e2 -CrobatCryHeader: cry_header CRY_SQUIRTLE, -$010, $140 -ChinchouCryHeader: cry_header CRY_CYNDAQUIL, $3c9, $140 -LanturnCryHeader: cry_header CRY_CYNDAQUIL, $2d0, $110 -PichuCryHeader: cry_header CRY_PICHU, $000, $140 -CleffaCryHeader: cry_header CRY_CLEFFA, $061, $091 -IgglybuffCryHeader: cry_header CRY_CHIKORITA, $0e8, $0e8 -TogepiCryHeader: cry_header CRY_TOGEPI, $010, $100 -TogeticCryHeader: cry_header CRY_TOGETIC, $03b, $038 -NatuCryHeader: cry_header CRY_NATU, -$067, $100 -XatuCryHeader: cry_header CRY_NATU, -$0a7, $168 -MareepCryHeader: cry_header CRY_MAREEP, $022, $0d8 -FlaaffyCryHeader: cry_header CRY_MAREEP, -$007, $180 -AmpharosCryHeader: cry_header CRY_AMPHAROS, -$07c, $0e8 -BellossomCryHeader: cry_header CRY_CLEFFA, $084, $150 -MarillCryHeader: cry_header CRY_MARILL, $11b, $120 -AzumarillCryHeader: cry_header CRY_MARILL, $0b6, $180 -SudowoodoCryHeader: cry_header CRY_CLEFFA, $f40, $180 -PolitoedCryHeader: cry_header CRY_CLEFFA, -$2a3, $1c8 -HoppipCryHeader: cry_header CRY_CLEFFA, $03b, $0c8 -SkiploomCryHeader: cry_header CRY_CLEFFA, $027, $138 -JumpluffCryHeader: cry_header CRY_CLEFFA, $000, $180 -AipomCryHeader: cry_header CRY_AIPOM, -$051, $0e8 -SunkernCryHeader: cry_header CRY_MARILL, $12b, $0b8 -SunfloraCryHeader: cry_header CRY_SUNFLORA, -$020, $180 -YanmaCryHeader: cry_header CRY_TOTODILE, $031, $0c8 -WooperCryHeader: cry_header CRY_WOOPER, $093, $0af -QuagsireCryHeader: cry_header CRY_WOOPER, -$0c6, $140 -EspeonCryHeader: cry_header CRY_AIPOM, $0a2, $140 -UmbreonCryHeader: cry_header CRY_VENONAT, -$0e9, $0f0 -MurkrowCryHeader: cry_header CRY_MARILL, -$01f, $180 -SlowkingCryHeader: cry_header CRY_SLOWKING, $104, $200 -MisdreavusCryHeader: cry_header CRY_HOOTHOOT, $130, $0e8 -UnownCryHeader: cry_header CRY_HOOTHOOT, $162, $100 -WobbuffetCryHeader: cry_header CRY_AMPHAROS, $27b, $144 -GirafarigCryHeader: cry_header CRY_GIRAFARIG, $041, $200 -PinecoCryHeader: cry_header CRY_SLOWKING, $080, $100 -ForretressCryHeader: cry_header CRY_SLOWKING, $000, $180 -DunsparceCryHeader: cry_header CRY_DUNSPARCE, $1c4, $100 -GligarCryHeader: cry_header CRY_GLIGAR, -$102, $100 -SteelixCryHeader: cry_header CRY_TYPHLOSION, $0ef, $0f7 -SnubbullCryHeader: cry_header CRY_DUNSPARCE, $112, $0e8 -GranbullCryHeader: cry_header CRY_DUNSPARCE, $000, $180 -QwilfishCryHeader: cry_header CRY_SLOWKING, $160, $0e0 -ScizorCryHeader: cry_header CRY_AMPHAROS, $000, $160 -ShuckleCryHeader: cry_header CRY_DUNSPARCE, $290, $0a8 -HeracrossCryHeader: cry_header CRY_AMPHAROS, $035, $0e0 -SneaselCryHeader: cry_header CRY_WOOPER, $053, $0af -TeddiursaCryHeader: cry_header CRY_TEDDIURSA, $7a2, $06e -UrsaringCryHeader: cry_header CRY_TEDDIURSA, $640, $0d8 -SlugmaCryHeader: cry_header CRY_SLUGMA, -$1d8, $140 -MagcargoCryHeader: cry_header CRY_MAGCARGO, -$20d, $1c0 -SwinubCryHeader: cry_header CRY_CYNDAQUIL, $1fe, $140 -PiloswineCryHeader: cry_header CRY_MAGCARGO, -$109, $100 -CorsolaCryHeader: cry_header CRY_MAGCARGO, $0a1, $0e8 -RemoraidCryHeader: cry_header CRY_SUNFLORA, $00d, $100 -OctilleryCryHeader: cry_header CRY_TOTODILE, $000, $180 -DelibirdCryHeader: cry_header CRY_TEDDIURSA, $002, $06a -MantineCryHeader: cry_header CRY_MANTINE, -$0be, $0f0 -SkarmoryCryHeader: cry_header CRY_AMPHAROS, $8a9, $180 -HoundourCryHeader: cry_header CRY_CYNDAQUIL, $039, $140 -HoundoomCryHeader: cry_header CRY_TOTODILE, -$10a, $100 -KingdraCryHeader: cry_header CRY_SLUGMA, $2fb, $100 -PhanpyCryHeader: cry_header CRY_SENTRET, $048, $230 -DonphanCryHeader: cry_header CRY_DONPHAN, $000, $1a0 -Porygon2CryHeader: cry_header CRY_GIRAFARIG, $073, $240 -StantlerCryHeader: cry_header CRY_AIPOM, -$160, $180 -SmeargleCryHeader: cry_header CRY_PICHU, -$21a, $1f0 -TyrogueCryHeader: cry_header CRY_AIPOM, $02c, $108 -HitmontopCryHeader: cry_header CRY_SLUGMA, $000, $100 -SmoochumCryHeader: cry_header CRY_MARILL, $068, $100 -ElekidCryHeader: cry_header CRY_SUNFLORA, -$2d8, $0b4 -MagbyCryHeader: cry_header CRY_TEDDIURSA, $176, $03a -MiltankCryHeader: cry_header CRY_GLIGAR, -$1cd, $1a0 -BlisseyCryHeader: cry_header CRY_SLOWKING, $293, $140 -RaikouCryHeader: cry_header CRY_RAIKOU, $22e, $120 -EnteiCryHeader: cry_header CRY_ENTEI, $000, $1a0 -SuicuneCryHeader: cry_header CRY_MAGCARGO, $000, $180 -LarvitarCryHeader: cry_header CRY_RAIKOU, $05f, $0d0 -PupitarCryHeader: cry_header CRY_SPINARAK, -$1db, $150 -TyranitarCryHeader: cry_header CRY_RAIKOU, -$100, $180 -LugiaCryHeader: cry_header CRY_TYPHLOSION, $000, $100 -HoOhCryHeader: cry_header CRY_AIPOM, $000, $180 -CelebiCryHeader: cry_header CRY_ENTEI, $14a, $111 -CryHeader252: cry_header CRY_NIDORAN_M, 0, 0 -CryHeader253: cry_header CRY_NIDORAN_M, 0, 0 -CryHeader254: cry_header CRY_NIDORAN_M, 0, 0 -CryHeader255: cry_header CRY_NIDORAN_M, 0, 0 -; f2d81 diff --git a/data/sprites.asm b/data/sprites.asm new file mode 100644 index 000000000..214b14757 --- /dev/null +++ b/data/sprites.asm @@ -0,0 +1,111 @@ +overworld_sprite: MACRO +; pointer, length, type, palette + dw \1 + db \2 * 4 tiles, BANK(\1) + db \3, \4 +ENDM + +OverworldSprites: ; 14736 +; entries correspond to SPRITE_* constants + overworld_sprite ChrisSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite ChrisBikeSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite GameboyKidSpriteGFX, 3, STANDING_SPRITE, PAL_OW_GREEN + overworld_sprite SilverSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite OakSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite RedSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BlueSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BillSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite ElderSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite JanineSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite KurtSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite MomSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BlaineSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite RedsMomSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite DaisySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite ElmSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite WillSpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED + overworld_sprite FalknerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite WhitneySpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BugsySpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN + overworld_sprite MortySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite ChuckSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite JasmineSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN + overworld_sprite PryceSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite ClairSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BrockSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite KarenSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE + overworld_sprite BrunoSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite MistySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite LanceSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite SurgeSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN + overworld_sprite ErikaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN + overworld_sprite KogaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite SabrinaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite CooltrainerMSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite CooltrainerFSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite BugCatcherSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite TwinSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite YoungsterSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite LassSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite TeacherSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BuenaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite SuperNerdSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite RockerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN + overworld_sprite PokefanMSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite PokefanFSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite GrampsSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite GrannySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite SwimmerGuySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite SwimmerGirlSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite BigSnorlaxSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE + overworld_sprite SurfingPikachuSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite RocketSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite RocketGirlSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite NurseSpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED + overworld_sprite LinkReceptionistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite ClerkSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN + overworld_sprite FisherSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite FishingGuruSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite ScientistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite KimonoGirlSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite SageSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite UnusedGuySpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED + overworld_sprite GentlemanSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite BlackBeltSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite ReceptionistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite OfficerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite CalSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite SlowpokeSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED + overworld_sprite CaptainSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite BigLaprasSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE + overworld_sprite GymGuySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite SailorSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite BikerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN + overworld_sprite PharmacistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite MonsterSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite FairySpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BirdSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite DragonSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED + overworld_sprite BigOnixSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BROWN + overworld_sprite N64SpriteGFX, 1, STILL_SPRITE, PAL_OW_BROWN + overworld_sprite SudowoodoSpriteGFX, 3, STANDING_SPRITE, PAL_OW_GREEN + overworld_sprite SurfSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite PokeBallSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED + overworld_sprite PokedexSpriteGFX, 1, STILL_SPRITE, PAL_OW_BROWN + overworld_sprite PaperSpriteGFX, 1, STILL_SPRITE, PAL_OW_BLUE + overworld_sprite VirtualBoySpriteGFX, 1, STILL_SPRITE, PAL_OW_RED + overworld_sprite OldLinkReceptionistSpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED + overworld_sprite RockSpriteGFX, 1, STILL_SPRITE, PAL_OW_ROCK + overworld_sprite BoulderSpriteGFX, 1, STILL_SPRITE, PAL_OW_ROCK + overworld_sprite SnesSpriteGFX, 1, STILL_SPRITE, PAL_OW_BLUE + overworld_sprite FamicomSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED + overworld_sprite FruitTreeSpriteGFX, 1, STILL_SPRITE, PAL_OW_TREE + overworld_sprite GoldTrophySpriteGFX, 1, STILL_SPRITE, PAL_OW_BROWN + overworld_sprite SilverTrophySpriteGFX, 1, STILL_SPRITE, PAL_OW_SILVER + overworld_sprite KrisSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite KrisBikeSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE + overworld_sprite KurtOutsideSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BROWN + overworld_sprite SuicuneSpriteGFX, 1, STILL_SPRITE, PAL_OW_BLUE + overworld_sprite EnteiSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED + overworld_sprite RaikouSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED + overworld_sprite StandingYoungsterSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE diff --git a/engine/map_setup.asm b/engine/map_setup.asm index 01f3d05d7..20faecb5d 100644 --- a/engine/map_setup.asm +++ b/engine/map_setup.asm @@ -91,7 +91,7 @@ MapSetupScript_Connection: ; 153bf db map_change_callback db map_player_coord db map_load_blocks - db map_load_tileset_header + db map_load_tileset db map_save_screen db map_load_objects db map_fade_music @@ -253,7 +253,7 @@ MapSetupCommands: ; 15440 dba SaveScreen ; 0c dba BufferScreen ; 0d dba LoadGraphics ; 0e - dba LoadTilesetHeader ; 0f + dba LoadTileset ; 0f dba LoadMapTimeOfDay ; 10 dba LoadMapPalettes ; 11 dba LoadWildMonData ; 12 diff --git a/engine/overworld.asm b/engine/overworld.asm index a1b4545a9..7941b74d7 100755 --- a/engine/overworld.asm +++ b/engine/overworld.asm @@ -202,11 +202,11 @@ GetSprite: ; 1423c call GetMonSprite ret c - ld hl, SpriteHeaders ; address + ld hl, OverworldSprites + SPRITEDATA_ADDR dec a ld c, a ld b, 0 - ld a, 6 + ld a, NUM_SPRITEDATA_FIELDS call AddNTimes ; load the address into de ld a, [hli] @@ -299,11 +299,11 @@ _DoesSpriteHaveFacings:: ; 142a7 push hl push bc - ld hl, SpriteHeaders + SPRITEHEADER_TYPE ; type + ld hl, OverworldSprites + SPRITEDATA_TYPE dec a ld c, a ld b, 0 - ld a, NUM_SPRITEHEADER_FIELDS + ld a, NUM_SPRITEDATA_FIELDS call AddNTimes ld a, [hl] pop bc @@ -324,11 +324,11 @@ _GetSpritePalette:: ; 142c4 call GetMonSprite jr c, .is_pokemon - ld hl, SpriteHeaders + 5 ; palette + ld hl, OverworldSprites + SPRITEDATA_PALETTE dec a ld c, a ld b, 0 - ld a, 6 + ld a, NUM_SPRITEDATA_FIELDS call AddNTimes ld c, [hl] ret @@ -691,8 +691,8 @@ endr LoadEmote:: ; 1442f ; Get the address of the pointer to emote c. ld a, c - ld bc, 6 - ld hl, EmotesPointers + ld bc, 6 ; sizeof(emote) + ld hl, Emotes call AddNTimes ; Load the emote address into de ld e, [hl] @@ -719,10 +719,10 @@ LoadEmote:: ; 1442f ; 1444d -INCLUDE "data/emote_headers.asm" +INCLUDE "data/emotes.asm" INCLUDE "data/sprite_mons.asm" INCLUDE "data/maps/outdoor_sprites.asm" -INCLUDE "gfx/sprite_headers.asm" +INCLUDE "data/sprites.asm" diff --git a/engine/warp_connection.asm b/engine/warp_connection.asm index 13a624d7f..ca0daae73 100755 --- a/engine/warp_connection.asm +++ b/engine/warp_connection.asm @@ -292,8 +292,8 @@ LoadMapTimeOfDay: ; 104750 ret LoadGraphics: ; 1047cf - call LoadTilesetHeader call LoadTileset + call LoadTilesetGFX xor a ld [hMapAnims], a xor a diff --git a/gfx/footprints.asm b/gfx/footprints.asm index 44ca9bef2..cfcdc0c09 100644 --- a/gfx/footprints.asm +++ b/gfx/footprints.asm @@ -1,12 +1,10 @@ -; In this game, footprints are stored in a non-continuous manner. -; Instead, they're stored in a 32x8 grid. -; Each of the footprints is 16x16, so, since tiles on the GB are 8x8, -; you get the two top tiles first, while the two bottom tiles are stored -; on the next row of the image. +; Footprints are 2x2 tiles each, but are stored as a 16x64-tile image +; (32 rows of 8 footprints per row). +; That means there's a row of the top two tiles for eight footprints, +; then a row of the bottom two tiles for those eight footprints. -; These macros help extract the first two tiles, and the last two tiles, -; respectively. -footprint_top EQUS " 0, 2 * LEN_1BPP_TILE" +; These macros help extract the first and the last two tiles, respectively. +footprint_top EQUS "0, 2 * LEN_1BPP_TILE" footprint_bottom EQUS "2 * LEN_1BPP_TILE, 2 * LEN_1BPP_TILE" ; 001-008 top halves diff --git a/gfx/sprite_headers.asm b/gfx/sprite_headers.asm deleted file mode 100644 index d41d62075..000000000 --- a/gfx/sprite_headers.asm +++ /dev/null @@ -1,111 +0,0 @@ -sprite_header: MACRO -; pointer, length, type, palette - dw \1 - db \2 * 4 tiles, BANK(\1) - db \3, \4 -ENDM - -SpriteHeaders: ; 14736 -; entries correspond to SPRITE_* constants - sprite_header ChrisSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1473c - sprite_header ChrisBikeSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14742 - sprite_header GameboyKidSpriteGFX, 3, STANDING_SPRITE, PAL_OW_GREEN ; 14748 - sprite_header SilverSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1474e - sprite_header OakSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14754 - sprite_header RedSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1475a - sprite_header BlueSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14760 - sprite_header BillSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14766 - sprite_header ElderSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 1476c - sprite_header JanineSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14772 - sprite_header KurtSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14778 - sprite_header MomSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1477e - sprite_header BlaineSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14784 - sprite_header RedsMomSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1478a - sprite_header DaisySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14790 - sprite_header ElmSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14796 - sprite_header WillSpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED ; 1479c - sprite_header FalknerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 147a2 - sprite_header WhitneySpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 147a8 - sprite_header BugsySpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN ; 147ae - sprite_header MortySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 147b4 - sprite_header ChuckSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 147ba - sprite_header JasmineSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN ; 147c0 - sprite_header PryceSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 147c6 - sprite_header ClairSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 147cc - sprite_header BrockSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 147d2 - sprite_header KarenSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE ; 147d8 - sprite_header BrunoSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 147de - sprite_header MistySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 147e4 - sprite_header LanceSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 147ea - sprite_header SurgeSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN ; 147f0 - sprite_header ErikaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN ; 147f6 - sprite_header KogaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 147fc - sprite_header SabrinaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14802 - sprite_header CooltrainerMSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14808 - sprite_header CooltrainerFSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 1480e - sprite_header BugCatcherSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14814 - sprite_header TwinSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1481a - sprite_header YoungsterSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14820 - sprite_header LassSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14826 - sprite_header TeacherSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1482c - sprite_header BuenaSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14832 - sprite_header SuperNerdSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14838 - sprite_header RockerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN ; 1483e - sprite_header PokefanMSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14844 - sprite_header PokefanFSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 1484a - sprite_header GrampsSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14850 - sprite_header GrannySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14856 - sprite_header SwimmerGuySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 1485c - sprite_header SwimmerGirlSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14862 - sprite_header BigSnorlaxSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE ; 14868 - sprite_header SurfingPikachuSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1486e - sprite_header RocketSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 14874 - sprite_header RocketGirlSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 1487a - sprite_header NurseSpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED ; 14880 - sprite_header LinkReceptionistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14886 - sprite_header ClerkSpriteGFX, 3, WALKING_SPRITE, PAL_OW_GREEN ; 1488c - sprite_header FisherSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14892 - sprite_header FishingGuruSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14898 - sprite_header ScientistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 1489e - sprite_header KimonoGirlSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 148a4 - sprite_header SageSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 148aa - sprite_header UnusedGuySpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED ; 148b0 - sprite_header GentlemanSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 148b6 - sprite_header BlackBeltSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 148bc - sprite_header ReceptionistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 148c2 - sprite_header OfficerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 148c8 - sprite_header CalSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 148ce - sprite_header SlowpokeSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED ; 148d4 - sprite_header CaptainSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 148da - sprite_header BigLaprasSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE ; 148e0 - sprite_header GymGuySpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 148e6 - sprite_header SailorSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 148ec - sprite_header BikerSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BROWN ; 148f2 - sprite_header PharmacistSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 148f8 - sprite_header MonsterSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 148fe - sprite_header FairySpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14904 - sprite_header BirdSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 1490a - sprite_header DragonSpriteGFX, 3, WALKING_SPRITE, PAL_OW_RED ; 14910 - sprite_header BigOnixSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BROWN ; 14916 - sprite_header N64SpriteGFX, 1, STILL_SPRITE, PAL_OW_BROWN ; 1491c - sprite_header SudowoodoSpriteGFX, 3, STANDING_SPRITE, PAL_OW_GREEN ; 14922 - sprite_header SurfSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14928 - sprite_header PokeBallSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED ; 1492e - sprite_header PokedexSpriteGFX, 1, STILL_SPRITE, PAL_OW_BROWN ; 14934 - sprite_header PaperSpriteGFX, 1, STILL_SPRITE, PAL_OW_BLUE ; 1493a - sprite_header VirtualBoySpriteGFX, 1, STILL_SPRITE, PAL_OW_RED ; 14940 - sprite_header OldLinkReceptionistSpriteGFX, 3, STANDING_SPRITE, PAL_OW_RED ; 14946 - sprite_header RockSpriteGFX, 1, STILL_SPRITE, PAL_OW_ROCK ; 1494c - sprite_header BoulderSpriteGFX, 1, STILL_SPRITE, PAL_OW_ROCK ; 14952 - sprite_header SnesSpriteGFX, 1, STILL_SPRITE, PAL_OW_BLUE ; 14958 - sprite_header FamicomSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED ; 1495e - sprite_header FruitTreeSpriteGFX, 1, STILL_SPRITE, PAL_OW_TREE ; 14964 - sprite_header GoldTrophySpriteGFX, 1, STILL_SPRITE, PAL_OW_BROWN ; 1496a - sprite_header SilverTrophySpriteGFX, 1, STILL_SPRITE, PAL_OW_SILVER ; 14970 - sprite_header KrisSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 14976 - sprite_header KrisBikeSpriteGFX, 3, WALKING_SPRITE, PAL_OW_BLUE ; 1497c - sprite_header KurtOutsideSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BROWN ; 14982 - sprite_header SuicuneSpriteGFX, 1, STILL_SPRITE, PAL_OW_BLUE ; 14988 - sprite_header EnteiSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED ; 1498e - sprite_header RaikouSpriteGFX, 1, STILL_SPRITE, PAL_OW_RED ; 14994 - sprite_header StandingYoungsterSpriteGFX, 3, STANDING_SPRITE, PAL_OW_BLUE ; 1499a diff --git a/home/audio.asm b/home/audio.asm index 98e1fc40c..21e4f81f9 100644 --- a/home/audio.asm +++ b/home/audio.asm @@ -152,13 +152,13 @@ PlayCryHeader:: ; 3be3 ld a, [hROMBank] push af - ; Cry headers are stuck in one bank. - ld a, BANK(CryHeaders) + ; Cries are stuck in one bank. + ld a, BANK(PokemonCries) ld [hROMBank], a ld [MBC3RomBank], a - ld hl, CryHeaders -rept 6 + ld hl, PokemonCries +rept 6 ; sizeof(mon_cry) add hl, de endr diff --git a/home/cry.asm b/home/cry.asm index aea7af03d..393534a29 100644 --- a/home/cry.asm +++ b/home/cry.asm @@ -62,11 +62,11 @@ LoadCryHeader:: ; 37f3 ld a, [hROMBank] push af - ld a, BANK(CryHeaders) + ld a, BANK(PokemonCries) rst Bankswitch - ld hl, CryHeaders -rept 6 + ld hl, PokemonCries +rept 6 ; sizeof(mon_cry) add hl, bc endr diff --git a/home/map.asm b/home/map.asm index 1becaa64a..83b5adf11 100644 --- a/home/map.asm +++ b/home/map.asm @@ -1391,7 +1391,7 @@ UpdateBGMapColumn:: ; 27f8 ret ; 2821 -LoadTileset:: ; 2821 +LoadTilesetGFX:: ; 2821 ld hl, TilesetAddress ld a, [hli] ld h, [hl] @@ -2054,7 +2054,7 @@ ReloadTilesetAndPalettes:: ; 2bae call SwitchToAnyMapBank farcall UpdateTimeOfDayPal call OverworldTextModeSwitch - call LoadTileset + call LoadTilesetGFX ld a, 9 call SkipMusic pop af @@ -2372,17 +2372,17 @@ GetFishingGroup:: ; 2d19 ret ; 2d27 -LoadTilesetHeader:: ; 2d27 +LoadTileset:: ; 2d27 push hl push bc ld hl, Tilesets - ld bc, TilesetHeaderEnd - TilesetHeader + ld bc, TilesetEnd - Tileset ld a, [wTileset] call AddNTimes ld de, TilesetBank - ld bc, TilesetHeaderEnd - TilesetHeader + ld bc, TilesetEnd - Tileset ld a, BANK(Tilesets) call FarCopyBytes diff --git a/macros/scripts/audio.asm b/macros/scripts/audio.asm index 83ff44963..b1d340a91 100644 --- a/macros/scripts/audio.asm +++ b/macros/scripts/audio.asm @@ -1,3 +1,8 @@ +musicheader: macro + ; number of tracks, track idx, address + dbw ((\1 - 1) << 6) + (\2 - 1), \3 + endm + note: MACRO dn (\1), (\2) - 1 ENDM @@ -14,15 +19,6 @@ noise: macro db \4 ; frequency endm -musicheader: macro - ; number of tracks, track idx, address - dbw ((\1 - 1) << 6) + (\2 - 1), \3 - endm - -cry_header: macro - dw \1, \2, \3 - endm - ; MusicCommands indexes (see audio/engine.asm) enum_start $d8 diff --git a/main.asm b/main.asm index cb57726da..6fd426e8a 100644 --- a/main.asm +++ b/main.asm @@ -232,7 +232,7 @@ INCBIN "gfx/shrink/shrink2.2bpp.lz" INCLUDE "engine/link_2.asm" INCLUDE "engine/delete_save_change_clock.asm" -INCLUDE "tilesets/tileset_headers.asm" +INCLUDE "tilesets/tilesets.asm" INCLUDE "engine/routines/flagpredef.asm" INCLUDE "engine/routines/trademonfrontpic.asm" INCLUDE "engine/pokerus/check_pokerus.asm" diff --git a/tilesets/tileset_headers.asm b/tilesets/tileset_headers.asm deleted file mode 100644 index b63e962f1..000000000 --- a/tilesets/tileset_headers.asm +++ /dev/null @@ -1,47 +0,0 @@ -tileset: macro - dba \1GFX, \1Meta, \1Coll - dw \1Anim - dw NULL - dw \1PalMap -endm - -Tilesets:: ; 4d596 -; entries correspond to TILESET_* constants - tileset Tileset0 - tileset TilesetJohto1 - tileset TilesetJohto2 - tileset TilesetKanto - tileset TilesetBattleTowerOutside - tileset TilesetHouse1 - tileset TilesetPlayersHouse - tileset TilesetPokecenter - tileset TilesetGate - tileset TilesetPort - tileset TilesetLab - tileset TilesetPowerPlant - tileset TilesetMart - tileset TilesetCeladonMansion - tileset TilesetGameCorner - tileset TilesetGym1 - tileset TilesetKurtsHouse - tileset TilesetTrainStation - tileset TilesetOlivineGym - tileset TilesetLighthouse - tileset TilesetPlayersHouse2F - tileset TilesetPokeComCenter - tileset TilesetBattleTower - tileset TilesetSproutTower - tileset TilesetCave - tileset TilesetPark - tileset TilesetRuinsOfAlph - tileset TilesetRadioTower - tileset TilesetUnderground - tileset TilesetIcePath - tileset TilesetWhirlIslands - tileset TilesetIlexForest - tileset TilesetBetaWordRoom - tileset TilesetHoOhWordRoom - tileset TilesetKabutoWordRoom - tileset TilesetOmanyteWordRoom - tileset TilesetAerodactylWordRoom -; 4d7c1 diff --git a/tilesets/tilesets.asm b/tilesets/tilesets.asm new file mode 100644 index 000000000..b63e962f1 --- /dev/null +++ b/tilesets/tilesets.asm @@ -0,0 +1,47 @@ +tileset: macro + dba \1GFX, \1Meta, \1Coll + dw \1Anim + dw NULL + dw \1PalMap +endm + +Tilesets:: ; 4d596 +; entries correspond to TILESET_* constants + tileset Tileset0 + tileset TilesetJohto1 + tileset TilesetJohto2 + tileset TilesetKanto + tileset TilesetBattleTowerOutside + tileset TilesetHouse1 + tileset TilesetPlayersHouse + tileset TilesetPokecenter + tileset TilesetGate + tileset TilesetPort + tileset TilesetLab + tileset TilesetPowerPlant + tileset TilesetMart + tileset TilesetCeladonMansion + tileset TilesetGameCorner + tileset TilesetGym1 + tileset TilesetKurtsHouse + tileset TilesetTrainStation + tileset TilesetOlivineGym + tileset TilesetLighthouse + tileset TilesetPlayersHouse2F + tileset TilesetPokeComCenter + tileset TilesetBattleTower + tileset TilesetSproutTower + tileset TilesetCave + tileset TilesetPark + tileset TilesetRuinsOfAlph + tileset TilesetRadioTower + tileset TilesetUnderground + tileset TilesetIcePath + tileset TilesetWhirlIslands + tileset TilesetIlexForest + tileset TilesetBetaWordRoom + tileset TilesetHoOhWordRoom + tileset TilesetKabutoWordRoom + tileset TilesetOmanyteWordRoom + tileset TilesetAerodactylWordRoom +; 4d7c1 diff --git a/wram.asm b/wram.asm index 718d51d36..f489b10c5 100644 --- a/wram.asm +++ b/wram.asm @@ -1956,7 +1956,7 @@ SouthMapConnection:: map_connection_struct South ; d1b5 WestMapConnection:: map_connection_struct West ; d1c1 EastMapConnection:: map_connection_struct East ; d1cd -TilesetHeader:: +Tileset:: TilesetBank:: db ; d1d9 TilesetAddress:: dw ; d1da TilesetBlocksBank:: db ; d1dc @@ -1966,7 +1966,7 @@ TilesetCollisionAddress:: dw ; d1e0 TilesetAnim:: dw ; bank 3f ; d1e2 ds 2 ; unused ; d1e4 TilesetPalettes:: dw ; bank 3f ; d1e6 -TilesetHeaderEnd:: +TilesetEnd:: EvolvableFlags:: flag_array PARTY_LENGTH ; d1e8 -- cgit v1.2.3 From 4d18bb2eda4c1886a6aafa9c49ed285ca9245b91 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 12:55:02 -0500 Subject: =?UTF-8?q?Rename:=20gfx/pics=20=E2=86=92=20gfx/pokemon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 6 +- constants/animation_constants.asm | 2 +- constants/pokemon_constants.asm | 12 +- data/pokemon/base_stats/abra.asm | 2 +- data/pokemon/base_stats/aerodactyl.asm | 2 +- data/pokemon/base_stats/aipom.asm | 2 +- data/pokemon/base_stats/alakazam.asm | 2 +- data/pokemon/base_stats/ampharos.asm | 2 +- data/pokemon/base_stats/arbok.asm | 2 +- data/pokemon/base_stats/arcanine.asm | 2 +- data/pokemon/base_stats/ariados.asm | 2 +- data/pokemon/base_stats/articuno.asm | 2 +- data/pokemon/base_stats/azumarill.asm | 2 +- data/pokemon/base_stats/bayleef.asm | 2 +- data/pokemon/base_stats/beedrill.asm | 2 +- data/pokemon/base_stats/bellossom.asm | 2 +- data/pokemon/base_stats/bellsprout.asm | 2 +- data/pokemon/base_stats/blastoise.asm | 2 +- data/pokemon/base_stats/blissey.asm | 2 +- data/pokemon/base_stats/bulbasaur.asm | 2 +- data/pokemon/base_stats/butterfree.asm | 2 +- data/pokemon/base_stats/caterpie.asm | 2 +- data/pokemon/base_stats/celebi.asm | 2 +- data/pokemon/base_stats/chansey.asm | 2 +- data/pokemon/base_stats/charizard.asm | 2 +- data/pokemon/base_stats/charmander.asm | 2 +- data/pokemon/base_stats/charmeleon.asm | 2 +- data/pokemon/base_stats/chikorita.asm | 2 +- data/pokemon/base_stats/chinchou.asm | 2 +- data/pokemon/base_stats/clefable.asm | 2 +- data/pokemon/base_stats/clefairy.asm | 2 +- data/pokemon/base_stats/cleffa.asm | 2 +- data/pokemon/base_stats/cloyster.asm | 2 +- data/pokemon/base_stats/corsola.asm | 2 +- data/pokemon/base_stats/crobat.asm | 2 +- data/pokemon/base_stats/croconaw.asm | 2 +- data/pokemon/base_stats/cubone.asm | 2 +- data/pokemon/base_stats/cyndaquil.asm | 2 +- data/pokemon/base_stats/delibird.asm | 2 +- data/pokemon/base_stats/dewgong.asm | 2 +- data/pokemon/base_stats/diglett.asm | 2 +- data/pokemon/base_stats/ditto.asm | 2 +- data/pokemon/base_stats/dodrio.asm | 2 +- data/pokemon/base_stats/doduo.asm | 2 +- data/pokemon/base_stats/donphan.asm | 2 +- data/pokemon/base_stats/dragonair.asm | 2 +- data/pokemon/base_stats/dragonite.asm | 2 +- data/pokemon/base_stats/dratini.asm | 2 +- data/pokemon/base_stats/drowzee.asm | 2 +- data/pokemon/base_stats/dugtrio.asm | 2 +- data/pokemon/base_stats/dunsparce.asm | 2 +- data/pokemon/base_stats/eevee.asm | 2 +- data/pokemon/base_stats/ekans.asm | 2 +- data/pokemon/base_stats/electabuzz.asm | 2 +- data/pokemon/base_stats/electrode.asm | 2 +- data/pokemon/base_stats/elekid.asm | 2 +- data/pokemon/base_stats/entei.asm | 2 +- data/pokemon/base_stats/espeon.asm | 2 +- data/pokemon/base_stats/exeggcute.asm | 2 +- data/pokemon/base_stats/exeggutor.asm | 2 +- data/pokemon/base_stats/farfetch_d.asm | 2 +- data/pokemon/base_stats/fearow.asm | 2 +- data/pokemon/base_stats/feraligatr.asm | 2 +- data/pokemon/base_stats/flaaffy.asm | 2 +- data/pokemon/base_stats/flareon.asm | 2 +- data/pokemon/base_stats/forretress.asm | 2 +- data/pokemon/base_stats/furret.asm | 2 +- data/pokemon/base_stats/gastly.asm | 2 +- data/pokemon/base_stats/gengar.asm | 2 +- data/pokemon/base_stats/geodude.asm | 2 +- data/pokemon/base_stats/girafarig.asm | 2 +- data/pokemon/base_stats/gligar.asm | 2 +- data/pokemon/base_stats/gloom.asm | 2 +- data/pokemon/base_stats/golbat.asm | 2 +- data/pokemon/base_stats/goldeen.asm | 2 +- data/pokemon/base_stats/golduck.asm | 2 +- data/pokemon/base_stats/golem.asm | 2 +- data/pokemon/base_stats/granbull.asm | 2 +- data/pokemon/base_stats/graveler.asm | 2 +- data/pokemon/base_stats/grimer.asm | 2 +- data/pokemon/base_stats/growlithe.asm | 2 +- data/pokemon/base_stats/gyarados.asm | 2 +- data/pokemon/base_stats/haunter.asm | 2 +- data/pokemon/base_stats/heracross.asm | 2 +- data/pokemon/base_stats/hitmonchan.asm | 2 +- data/pokemon/base_stats/hitmonlee.asm | 2 +- data/pokemon/base_stats/hitmontop.asm | 2 +- data/pokemon/base_stats/ho_oh.asm | 2 +- data/pokemon/base_stats/hoothoot.asm | 2 +- data/pokemon/base_stats/hoppip.asm | 2 +- data/pokemon/base_stats/horsea.asm | 2 +- data/pokemon/base_stats/houndoom.asm | 2 +- data/pokemon/base_stats/houndour.asm | 2 +- data/pokemon/base_stats/hypno.asm | 2 +- data/pokemon/base_stats/igglybuff.asm | 2 +- data/pokemon/base_stats/ivysaur.asm | 2 +- data/pokemon/base_stats/jigglypuff.asm | 2 +- data/pokemon/base_stats/jolteon.asm | 2 +- data/pokemon/base_stats/jumpluff.asm | 2 +- data/pokemon/base_stats/jynx.asm | 2 +- data/pokemon/base_stats/kabuto.asm | 2 +- data/pokemon/base_stats/kabutops.asm | 2 +- data/pokemon/base_stats/kadabra.asm | 2 +- data/pokemon/base_stats/kakuna.asm | 2 +- data/pokemon/base_stats/kangaskhan.asm | 2 +- data/pokemon/base_stats/kingdra.asm | 2 +- data/pokemon/base_stats/kingler.asm | 2 +- data/pokemon/base_stats/koffing.asm | 2 +- data/pokemon/base_stats/krabby.asm | 2 +- data/pokemon/base_stats/lanturn.asm | 2 +- data/pokemon/base_stats/lapras.asm | 2 +- data/pokemon/base_stats/larvitar.asm | 2 +- data/pokemon/base_stats/ledian.asm | 2 +- data/pokemon/base_stats/ledyba.asm | 2 +- data/pokemon/base_stats/lickitung.asm | 2 +- data/pokemon/base_stats/lugia.asm | 2 +- data/pokemon/base_stats/machamp.asm | 2 +- data/pokemon/base_stats/machoke.asm | 2 +- data/pokemon/base_stats/machop.asm | 2 +- data/pokemon/base_stats/magby.asm | 2 +- data/pokemon/base_stats/magcargo.asm | 2 +- data/pokemon/base_stats/magikarp.asm | 2 +- data/pokemon/base_stats/magmar.asm | 2 +- data/pokemon/base_stats/magnemite.asm | 2 +- data/pokemon/base_stats/magneton.asm | 2 +- data/pokemon/base_stats/mankey.asm | 2 +- data/pokemon/base_stats/mantine.asm | 2 +- data/pokemon/base_stats/mareep.asm | 2 +- data/pokemon/base_stats/marill.asm | 2 +- data/pokemon/base_stats/marowak.asm | 2 +- data/pokemon/base_stats/meganium.asm | 2 +- data/pokemon/base_stats/meowth.asm | 2 +- data/pokemon/base_stats/metapod.asm | 2 +- data/pokemon/base_stats/mew.asm | 2 +- data/pokemon/base_stats/mewtwo.asm | 2 +- data/pokemon/base_stats/miltank.asm | 2 +- data/pokemon/base_stats/misdreavus.asm | 2 +- data/pokemon/base_stats/moltres.asm | 2 +- data/pokemon/base_stats/mr__mime.asm | 2 +- data/pokemon/base_stats/muk.asm | 2 +- data/pokemon/base_stats/murkrow.asm | 2 +- data/pokemon/base_stats/natu.asm | 2 +- data/pokemon/base_stats/nidoking.asm | 2 +- data/pokemon/base_stats/nidoqueen.asm | 2 +- data/pokemon/base_stats/nidoran_f.asm | 2 +- data/pokemon/base_stats/nidoran_m.asm | 2 +- data/pokemon/base_stats/nidorina.asm | 2 +- data/pokemon/base_stats/nidorino.asm | 2 +- data/pokemon/base_stats/ninetales.asm | 2 +- data/pokemon/base_stats/noctowl.asm | 2 +- data/pokemon/base_stats/octillery.asm | 2 +- data/pokemon/base_stats/oddish.asm | 2 +- data/pokemon/base_stats/omanyte.asm | 2 +- data/pokemon/base_stats/omastar.asm | 2 +- data/pokemon/base_stats/onix.asm | 2 +- data/pokemon/base_stats/paras.asm | 2 +- data/pokemon/base_stats/parasect.asm | 2 +- data/pokemon/base_stats/persian.asm | 2 +- data/pokemon/base_stats/phanpy.asm | 2 +- data/pokemon/base_stats/pichu.asm | 2 +- data/pokemon/base_stats/pidgeot.asm | 2 +- data/pokemon/base_stats/pidgeotto.asm | 2 +- data/pokemon/base_stats/pidgey.asm | 2 +- data/pokemon/base_stats/pikachu.asm | 2 +- data/pokemon/base_stats/piloswine.asm | 2 +- data/pokemon/base_stats/pineco.asm | 2 +- data/pokemon/base_stats/pinsir.asm | 2 +- data/pokemon/base_stats/politoed.asm | 2 +- data/pokemon/base_stats/poliwag.asm | 2 +- data/pokemon/base_stats/poliwhirl.asm | 2 +- data/pokemon/base_stats/poliwrath.asm | 2 +- data/pokemon/base_stats/ponyta.asm | 2 +- data/pokemon/base_stats/porygon.asm | 2 +- data/pokemon/base_stats/porygon2.asm | 2 +- data/pokemon/base_stats/primeape.asm | 2 +- data/pokemon/base_stats/psyduck.asm | 2 +- data/pokemon/base_stats/pupitar.asm | 2 +- data/pokemon/base_stats/quagsire.asm | 2 +- data/pokemon/base_stats/quilava.asm | 2 +- data/pokemon/base_stats/qwilfish.asm | 2 +- data/pokemon/base_stats/raichu.asm | 2 +- data/pokemon/base_stats/raikou.asm | 2 +- data/pokemon/base_stats/rapidash.asm | 2 +- data/pokemon/base_stats/raticate.asm | 2 +- data/pokemon/base_stats/rattata.asm | 2 +- data/pokemon/base_stats/remoraid.asm | 2 +- data/pokemon/base_stats/rhydon.asm | 2 +- data/pokemon/base_stats/rhyhorn.asm | 2 +- data/pokemon/base_stats/sandshrew.asm | 2 +- data/pokemon/base_stats/sandslash.asm | 2 +- data/pokemon/base_stats/scizor.asm | 2 +- data/pokemon/base_stats/scyther.asm | 2 +- data/pokemon/base_stats/seadra.asm | 2 +- data/pokemon/base_stats/seaking.asm | 2 +- data/pokemon/base_stats/seel.asm | 2 +- data/pokemon/base_stats/sentret.asm | 2 +- data/pokemon/base_stats/shellder.asm | 2 +- data/pokemon/base_stats/shuckle.asm | 2 +- data/pokemon/base_stats/skarmory.asm | 2 +- data/pokemon/base_stats/skiploom.asm | 2 +- data/pokemon/base_stats/slowbro.asm | 2 +- data/pokemon/base_stats/slowking.asm | 2 +- data/pokemon/base_stats/slowpoke.asm | 2 +- data/pokemon/base_stats/slugma.asm | 2 +- data/pokemon/base_stats/smeargle.asm | 2 +- data/pokemon/base_stats/smoochum.asm | 2 +- data/pokemon/base_stats/sneasel.asm | 2 +- data/pokemon/base_stats/snorlax.asm | 2 +- data/pokemon/base_stats/snubbull.asm | 2 +- data/pokemon/base_stats/spearow.asm | 2 +- data/pokemon/base_stats/spinarak.asm | 2 +- data/pokemon/base_stats/squirtle.asm | 2 +- data/pokemon/base_stats/stantler.asm | 2 +- data/pokemon/base_stats/starmie.asm | 2 +- data/pokemon/base_stats/staryu.asm | 2 +- data/pokemon/base_stats/steelix.asm | 2 +- data/pokemon/base_stats/sudowoodo.asm | 2 +- data/pokemon/base_stats/suicune.asm | 2 +- data/pokemon/base_stats/sunflora.asm | 2 +- data/pokemon/base_stats/sunkern.asm | 2 +- data/pokemon/base_stats/swinub.asm | 2 +- data/pokemon/base_stats/tangela.asm | 2 +- data/pokemon/base_stats/tauros.asm | 2 +- data/pokemon/base_stats/teddiursa.asm | 2 +- data/pokemon/base_stats/tentacool.asm | 2 +- data/pokemon/base_stats/tentacruel.asm | 2 +- data/pokemon/base_stats/togepi.asm | 2 +- data/pokemon/base_stats/togetic.asm | 2 +- data/pokemon/base_stats/totodile.asm | 2 +- data/pokemon/base_stats/typhlosion.asm | 2 +- data/pokemon/base_stats/tyranitar.asm | 2 +- data/pokemon/base_stats/tyrogue.asm | 2 +- data/pokemon/base_stats/umbreon.asm | 2 +- data/pokemon/base_stats/unown.asm | 2 +- data/pokemon/base_stats/ursaring.asm | 2 +- data/pokemon/base_stats/vaporeon.asm | 2 +- data/pokemon/base_stats/venomoth.asm | 2 +- data/pokemon/base_stats/venonat.asm | 2 +- data/pokemon/base_stats/venusaur.asm | 2 +- data/pokemon/base_stats/victreebel.asm | 2 +- data/pokemon/base_stats/vileplume.asm | 2 +- data/pokemon/base_stats/voltorb.asm | 2 +- data/pokemon/base_stats/vulpix.asm | 2 +- data/pokemon/base_stats/wartortle.asm | 2 +- data/pokemon/base_stats/weedle.asm | 2 +- data/pokemon/base_stats/weepinbell.asm | 2 +- data/pokemon/base_stats/weezing.asm | 2 +- data/pokemon/base_stats/wigglytuff.asm | 2 +- data/pokemon/base_stats/wobbuffet.asm | 2 +- data/pokemon/base_stats/wooper.asm | 2 +- data/pokemon/base_stats/xatu.asm | 2 +- data/pokemon/base_stats/yanma.asm | 2 +- data/pokemon/base_stats/zapdos.asm | 2 +- data/pokemon/base_stats/zubat.asm | 2 +- engine/color.asm | 2 +- engine/pokedex_3.asm | 2 +- gfx/pics.asm | 1230 ++++++++++---------- gfx/pics/abra/anim0.asm | 7 - gfx/pics/abra/anim1.asm | 6 - gfx/pics/abra/back.2bpp.lz.9ac09a32 | Bin 335 -> 0 bytes gfx/pics/abra/back.png | Bin 445 -> 0 bytes gfx/pics/abra/front.animated.2bpp.lz.12e14d9a | Bin 459 -> 0 bytes gfx/pics/abra/front.png | Bin 674 -> 0 bytes gfx/pics/abra/shiny.pal | 4 - gfx/pics/aerodactyl/anim0.asm | 9 - gfx/pics/aerodactyl/anim1.asm | 6 - gfx/pics/aerodactyl/back.2bpp.lz.e2da1f61 | Bin 334 -> 0 bytes gfx/pics/aerodactyl/back.png | Bin 414 -> 0 bytes .../aerodactyl/front.animated.2bpp.lz.3bceb33e | Bin 849 -> 0 bytes gfx/pics/aerodactyl/front.png | Bin 1159 -> 0 bytes gfx/pics/aerodactyl/shiny.pal | 4 - gfx/pics/aipom/anim0.asm | 7 - gfx/pics/aipom/anim1.asm | 6 - gfx/pics/aipom/back.2bpp.lz.597d4dda | Bin 333 -> 0 bytes gfx/pics/aipom/back.png | Bin 410 -> 0 bytes gfx/pics/aipom/front.animated.2bpp.lz.fba7c862 | Bin 461 -> 0 bytes gfx/pics/aipom/front.png | Bin 664 -> 0 bytes gfx/pics/aipom/shiny.pal | 4 - gfx/pics/alakazam/anim0.asm | 9 - gfx/pics/alakazam/anim1.asm | 5 - gfx/pics/alakazam/back.2bpp.lz.75e7e1c6 | Bin 461 -> 0 bytes gfx/pics/alakazam/back.png | Bin 532 -> 0 bytes gfx/pics/alakazam/front.animated.2bpp.lz.b246e050 | Bin 985 -> 0 bytes gfx/pics/alakazam/front.png | Bin 1482 -> 0 bytes gfx/pics/alakazam/shiny.pal | 4 - gfx/pics/ampharos/anim0.asm | 10 - gfx/pics/ampharos/anim1.asm | 7 - gfx/pics/ampharos/back.2bpp.lz.06af98c8 | Bin 266 -> 0 bytes gfx/pics/ampharos/back.png | Bin 394 -> 0 bytes gfx/pics/ampharos/front.animated.2bpp.lz.4b908a28 | Bin 721 -> 0 bytes gfx/pics/ampharos/front.png | Bin 1141 -> 0 bytes gfx/pics/ampharos/shiny.pal | 4 - gfx/pics/anim_pointers.asm | 252 ---- gfx/pics/animation.asm | 1140 ------------------ gfx/pics/anims.asm | 253 ---- gfx/pics/arbok/anim0.asm | 15 - gfx/pics/arbok/anim1.asm | 8 - gfx/pics/arbok/back.2bpp.lz.7b18cb93 | Bin 279 -> 0 bytes gfx/pics/arbok/back.png | Bin 354 -> 0 bytes gfx/pics/arbok/front.animated.2bpp.lz.1589a977 | Bin 1009 -> 0 bytes gfx/pics/arbok/front.png | Bin 1533 -> 0 bytes gfx/pics/arbok/shiny.pal | 4 - gfx/pics/arcanine/anim0.asm | 7 - gfx/pics/arcanine/anim1.asm | 6 - gfx/pics/arcanine/back.2bpp.lz.f5b35ebf | Bin 393 -> 0 bytes gfx/pics/arcanine/back.png | Bin 468 -> 0 bytes gfx/pics/arcanine/front.animated.2bpp.lz.5ae8eff3 | Bin 1023 -> 0 bytes gfx/pics/arcanine/front.png | Bin 1580 -> 0 bytes gfx/pics/arcanine/shiny.pal | 4 - gfx/pics/ariados/anim0.asm | 8 - gfx/pics/ariados/anim1.asm | 8 - gfx/pics/ariados/back.2bpp.lz.9fb1c3fc | Bin 345 -> 0 bytes gfx/pics/ariados/back.png | Bin 428 -> 0 bytes gfx/pics/ariados/front.animated.2bpp.lz.5ac5c83c | Bin 747 -> 0 bytes gfx/pics/ariados/front.png | Bin 1036 -> 0 bytes gfx/pics/ariados/shiny.pal | 4 - gfx/pics/articuno/anim0.asm | 9 - gfx/pics/articuno/anim1.asm | 8 - gfx/pics/articuno/back.2bpp.lz.c263c2aa | Bin 256 -> 0 bytes gfx/pics/articuno/back.png | Bin 386 -> 0 bytes gfx/pics/articuno/front.animated.2bpp.lz.650aef29 | Bin 1111 -> 0 bytes gfx/pics/articuno/front.png | Bin 1679 -> 0 bytes gfx/pics/articuno/shiny.pal | 4 - gfx/pics/azumarill/anim0.asm | 9 - gfx/pics/azumarill/anim1.asm | 6 - gfx/pics/azumarill/back.2bpp.lz.f7fa0db9 | Bin 264 -> 0 bytes gfx/pics/azumarill/back.png | Bin 347 -> 0 bytes gfx/pics/azumarill/front.animated.2bpp.lz.cc9fd2ed | Bin 765 -> 0 bytes gfx/pics/azumarill/front.png | Bin 891 -> 0 bytes gfx/pics/azumarill/shiny.pal | 4 - gfx/pics/bayleef/anim0.asm | 5 - gfx/pics/bayleef/anim1.asm | 6 - gfx/pics/bayleef/back.2bpp.lz.c4783e65 | Bin 407 -> 0 bytes gfx/pics/bayleef/back.png | Bin 484 -> 0 bytes gfx/pics/bayleef/front.animated.2bpp.lz.147649f2 | Bin 703 -> 0 bytes gfx/pics/bayleef/front.png | Bin 971 -> 0 bytes gfx/pics/bayleef/shiny.pal | 4 - gfx/pics/beedrill/anim0.asm | 12 - gfx/pics/beedrill/anim1.asm | 10 - gfx/pics/beedrill/back.2bpp.lz.dfd6a87b | Bin 394 -> 0 bytes gfx/pics/beedrill/back.png | Bin 460 -> 0 bytes gfx/pics/beedrill/front.animated.2bpp.lz.1b5d3117 | Bin 1038 -> 0 bytes gfx/pics/beedrill/front.png | Bin 1440 -> 0 bytes gfx/pics/beedrill/shiny.pal | 4 - gfx/pics/bellossom/anim0.asm | 10 - gfx/pics/bellossom/anim1.asm | 6 - gfx/pics/bellossom/back.2bpp.lz.10d31691 | Bin 350 -> 0 bytes gfx/pics/bellossom/back.png | Bin 423 -> 0 bytes gfx/pics/bellossom/front.animated.2bpp.lz.289eaecf | Bin 678 -> 0 bytes gfx/pics/bellossom/front.png | Bin 918 -> 0 bytes gfx/pics/bellossom/shiny.pal | 4 - gfx/pics/bellsprout/anim0.asm | 12 - gfx/pics/bellsprout/anim1.asm | 8 - gfx/pics/bellsprout/back.2bpp.lz.9dacbda8 | Bin 287 -> 0 bytes gfx/pics/bellsprout/back.png | Bin 365 -> 0 bytes .../bellsprout/front.animated.2bpp.lz.44df413d | Bin 443 -> 0 bytes gfx/pics/bellsprout/front.png | Bin 682 -> 0 bytes gfx/pics/bellsprout/shiny.pal | 4 - gfx/pics/bitmask_pointers.asm | 252 ---- gfx/pics/bitmasks.asm | 252 ---- gfx/pics/blastoise/anim0.asm | 6 - gfx/pics/blastoise/anim1.asm | 6 - gfx/pics/blastoise/back.2bpp.lz.b90e8d5a | Bin 363 -> 0 bytes gfx/pics/blastoise/back.png | Bin 468 -> 0 bytes gfx/pics/blastoise/front.animated.2bpp.lz.3899aed0 | Bin 1084 -> 0 bytes gfx/pics/blastoise/front.png | Bin 1477 -> 0 bytes gfx/pics/blastoise/shiny.pal | 4 - gfx/pics/blissey/anim0.asm | 8 - gfx/pics/blissey/anim1.asm | 6 - gfx/pics/blissey/back.2bpp.lz.d2763673 | Bin 268 -> 0 bytes gfx/pics/blissey/back.png | Bin 352 -> 0 bytes gfx/pics/blissey/front.animated.2bpp.lz.04f2353a | Bin 867 -> 0 bytes gfx/pics/blissey/front.png | Bin 1070 -> 0 bytes gfx/pics/blissey/shiny.pal | 4 - gfx/pics/bulbasaur/anim0.asm | 10 - gfx/pics/bulbasaur/anim1.asm | 5 - gfx/pics/bulbasaur/back.2bpp.lz.84f8d1c4 | Bin 290 -> 0 bytes gfx/pics/bulbasaur/back.png | Bin 374 -> 0 bytes gfx/pics/bulbasaur/front.animated.2bpp.lz.04627405 | Bin 392 -> 0 bytes gfx/pics/bulbasaur/front.png | Bin 557 -> 0 bytes gfx/pics/bulbasaur/shiny.pal | 4 - gfx/pics/butterfree/anim0.asm | 8 - gfx/pics/butterfree/anim1.asm | 6 - gfx/pics/butterfree/back.2bpp.lz.a8543d86 | Bin 463 -> 0 bytes gfx/pics/butterfree/back.png | Bin 499 -> 0 bytes .../butterfree/front.animated.2bpp.lz.33ba7e24 | Bin 909 -> 0 bytes gfx/pics/butterfree/front.png | Bin 1052 -> 0 bytes gfx/pics/butterfree/shiny.pal | 4 - gfx/pics/caterpie/anim0.asm | 8 - gfx/pics/caterpie/anim1.asm | 6 - gfx/pics/caterpie/back.2bpp.lz.57e32015 | Bin 284 -> 0 bytes gfx/pics/caterpie/back.png | Bin 390 -> 0 bytes gfx/pics/caterpie/front.animated.2bpp.lz.ec4f7cb8 | Bin 313 -> 0 bytes gfx/pics/caterpie/front.png | Bin 479 -> 0 bytes gfx/pics/caterpie/shiny.pal | 4 - gfx/pics/celebi/anim0.asm | 16 - gfx/pics/celebi/anim1.asm | 8 - gfx/pics/celebi/back.2bpp.lz.17ea5fe6 | Bin 420 -> 0 bytes gfx/pics/celebi/back.png | Bin 515 -> 0 bytes gfx/pics/celebi/front.animated.2bpp.lz.16f259a5 | Bin 496 -> 0 bytes gfx/pics/celebi/front.png | Bin 889 -> 0 bytes gfx/pics/celebi/shiny.pal | 4 - gfx/pics/chansey/anim0.asm | 10 - gfx/pics/chansey/anim1.asm | 6 - gfx/pics/chansey/back.2bpp.lz.14d90ba1 | Bin 304 -> 0 bytes gfx/pics/chansey/back.png | Bin 389 -> 0 bytes gfx/pics/chansey/front.animated.2bpp.lz.158fc381 | Bin 634 -> 0 bytes gfx/pics/chansey/front.png | Bin 813 -> 0 bytes gfx/pics/chansey/shiny.pal | 4 - gfx/pics/charizard/anim0.asm | 8 - gfx/pics/charizard/anim1.asm | 6 - gfx/pics/charizard/back.2bpp.lz.f04ac62c | Bin 360 -> 0 bytes gfx/pics/charizard/back.png | Bin 436 -> 0 bytes gfx/pics/charizard/front.animated.2bpp.lz.0068f820 | Bin 997 -> 0 bytes gfx/pics/charizard/front.png | Bin 1217 -> 0 bytes gfx/pics/charizard/shiny.pal | 4 - gfx/pics/charmander/anim0.asm | 9 - gfx/pics/charmander/anim1.asm | 6 - gfx/pics/charmander/back.2bpp.lz.bcb371c6 | Bin 301 -> 0 bytes gfx/pics/charmander/back.png | Bin 385 -> 0 bytes .../charmander/front.animated.2bpp.lz.704bfc17 | Bin 528 -> 0 bytes gfx/pics/charmander/front.png | Bin 786 -> 0 bytes gfx/pics/charmander/shiny.pal | 4 - gfx/pics/charmeleon/anim0.asm | 9 - gfx/pics/charmeleon/anim1.asm | 8 - gfx/pics/charmeleon/back.2bpp.lz.cf73268f | Bin 388 -> 0 bytes gfx/pics/charmeleon/back.png | Bin 442 -> 0 bytes .../charmeleon/front.animated.2bpp.lz.0e629968 | Bin 778 -> 0 bytes gfx/pics/charmeleon/front.png | Bin 1118 -> 0 bytes gfx/pics/charmeleon/shiny.pal | 4 - gfx/pics/chikorita/anim0.asm | 10 - gfx/pics/chikorita/anim1.asm | 6 - gfx/pics/chikorita/back.2bpp.lz.27a21938 | Bin 307 -> 0 bytes gfx/pics/chikorita/back.png | Bin 403 -> 0 bytes gfx/pics/chikorita/front.animated.2bpp.lz.18de5fe9 | Bin 612 -> 0 bytes gfx/pics/chikorita/front.png | Bin 891 -> 0 bytes gfx/pics/chikorita/shiny.pal | 4 - gfx/pics/chinchou/anim0.asm | 11 - gfx/pics/chinchou/anim1.asm | 6 - gfx/pics/chinchou/back.2bpp.lz.ea061e91 | Bin 306 -> 0 bytes gfx/pics/chinchou/back.png | Bin 376 -> 0 bytes gfx/pics/chinchou/front.animated.2bpp.lz.901aa690 | Bin 535 -> 0 bytes gfx/pics/chinchou/front.png | Bin 727 -> 0 bytes gfx/pics/chinchou/shiny.pal | 4 - gfx/pics/clefable/anim0.asm | 6 - gfx/pics/clefable/anim1.asm | 6 - gfx/pics/clefable/back.2bpp.lz.d57ec142 | Bin 428 -> 0 bytes gfx/pics/clefable/back.png | Bin 500 -> 0 bytes gfx/pics/clefable/front.animated.2bpp.lz.59d160ad | Bin 666 -> 0 bytes gfx/pics/clefable/front.png | Bin 938 -> 0 bytes gfx/pics/clefable/shiny.pal | 4 - gfx/pics/clefairy/anim0.asm | 9 - gfx/pics/clefairy/anim1.asm | 8 - gfx/pics/clefairy/back.2bpp.lz.f8aff3dd | Bin 351 -> 0 bytes gfx/pics/clefairy/back.png | Bin 436 -> 0 bytes gfx/pics/clefairy/front.animated.2bpp.lz.0918b60d | Bin 454 -> 0 bytes gfx/pics/clefairy/front.png | Bin 696 -> 0 bytes gfx/pics/clefairy/shiny.pal | 4 - gfx/pics/cleffa/anim0.asm | 5 - gfx/pics/cleffa/anim1.asm | 6 - gfx/pics/cleffa/back.2bpp.lz.ea9b3d08 | Bin 252 -> 0 bytes gfx/pics/cleffa/back.png | Bin 337 -> 0 bytes gfx/pics/cleffa/front.animated.2bpp.lz.49630c80 | Bin 435 -> 0 bytes gfx/pics/cleffa/front.png | Bin 600 -> 0 bytes gfx/pics/cleffa/shiny.pal | 4 - gfx/pics/cloyster/anim0.asm | 7 - gfx/pics/cloyster/anim1.asm | 4 - gfx/pics/cloyster/back.2bpp.lz.5ad194b3 | Bin 458 -> 0 bytes gfx/pics/cloyster/back.png | Bin 556 -> 0 bytes gfx/pics/cloyster/front.animated.2bpp.lz.fe85709f | Bin 908 -> 0 bytes gfx/pics/cloyster/front.png | Bin 1257 -> 0 bytes gfx/pics/cloyster/shiny.pal | 4 - gfx/pics/corsola/anim0.asm | 7 - gfx/pics/corsola/anim1.asm | 6 - gfx/pics/corsola/back.2bpp.lz.2b6c7860 | Bin 307 -> 0 bytes gfx/pics/corsola/back.png | Bin 388 -> 0 bytes gfx/pics/corsola/front.animated.2bpp.lz.2e7905aa | Bin 559 -> 0 bytes gfx/pics/corsola/front.png | Bin 735 -> 0 bytes gfx/pics/corsola/shiny.pal | 4 - gfx/pics/crobat/anim0.asm | 10 - gfx/pics/crobat/anim1.asm | 6 - gfx/pics/crobat/back.2bpp.lz.30850b2e | Bin 269 -> 0 bytes gfx/pics/crobat/back.png | Bin 354 -> 0 bytes gfx/pics/crobat/front.animated.2bpp.lz.dc386ff0 | Bin 638 -> 0 bytes gfx/pics/crobat/front.png | Bin 951 -> 0 bytes gfx/pics/crobat/shiny.pal | 4 - gfx/pics/croconaw/anim0.asm | 7 - gfx/pics/croconaw/anim1.asm | 6 - gfx/pics/croconaw/back.2bpp.lz.a605c82f | Bin 399 -> 0 bytes gfx/pics/croconaw/back.png | Bin 478 -> 0 bytes gfx/pics/croconaw/front.animated.2bpp.lz.a797986d | Bin 844 -> 0 bytes gfx/pics/croconaw/front.png | Bin 1182 -> 0 bytes gfx/pics/croconaw/shiny.pal | 4 - gfx/pics/cubone/anim0.asm | 12 - gfx/pics/cubone/anim1.asm | 6 - gfx/pics/cubone/back.2bpp.lz.bd849dfb | Bin 394 -> 0 bytes gfx/pics/cubone/back.png | Bin 472 -> 0 bytes gfx/pics/cubone/front.animated.2bpp.lz.0d63a3a4 | Bin 527 -> 0 bytes gfx/pics/cubone/front.png | Bin 855 -> 0 bytes gfx/pics/cubone/shiny.pal | 4 - gfx/pics/cyndaquil/anim0.asm | 12 - gfx/pics/cyndaquil/anim1.asm | 6 - gfx/pics/cyndaquil/back.2bpp.lz.68baeeeb | Bin 410 -> 0 bytes gfx/pics/cyndaquil/back.png | Bin 498 -> 0 bytes gfx/pics/cyndaquil/front.animated.2bpp.lz.0d5dce8d | Bin 579 -> 0 bytes gfx/pics/cyndaquil/front.png | Bin 776 -> 0 bytes gfx/pics/cyndaquil/shiny.pal | 4 - gfx/pics/delibird/anim0.asm | 12 - gfx/pics/delibird/anim1.asm | 6 - gfx/pics/delibird/back.2bpp.lz.11463d76 | Bin 347 -> 0 bytes gfx/pics/delibird/back.png | Bin 447 -> 0 bytes gfx/pics/delibird/front.animated.2bpp.lz.a3126c48 | Bin 594 -> 0 bytes gfx/pics/delibird/front.png | Bin 951 -> 0 bytes gfx/pics/delibird/shiny.pal | 4 - gfx/pics/dewgong/anim0.asm | 7 - gfx/pics/dewgong/anim1.asm | 9 - gfx/pics/dewgong/back.2bpp.lz.4e1fef76 | Bin 236 -> 0 bytes gfx/pics/dewgong/back.png | Bin 337 -> 0 bytes gfx/pics/dewgong/front.animated.2bpp.lz.cc53359c | Bin 892 -> 0 bytes gfx/pics/dewgong/front.png | Bin 1578 -> 0 bytes gfx/pics/dewgong/shiny.pal | 4 - gfx/pics/diglett/anim0.asm | 7 - gfx/pics/diglett/anim1.asm | 6 - gfx/pics/diglett/back.2bpp.lz.31d8cacc | Bin 191 -> 0 bytes gfx/pics/diglett/back.png | Bin 285 -> 0 bytes gfx/pics/diglett/front.animated.2bpp.lz.52b0361e | Bin 349 -> 0 bytes gfx/pics/diglett/front.png | Bin 529 -> 0 bytes gfx/pics/diglett/shiny.pal | 4 - gfx/pics/ditto/anim0.asm | 11 - gfx/pics/ditto/anim1.asm | 6 - gfx/pics/ditto/back.2bpp.lz.b01a9d91 | Bin 256 -> 0 bytes gfx/pics/ditto/back.png | Bin 315 -> 0 bytes gfx/pics/ditto/front.animated.2bpp.lz.344c90fd | Bin 352 -> 0 bytes gfx/pics/ditto/front.png | Bin 692 -> 0 bytes gfx/pics/ditto/shiny.pal | 4 - gfx/pics/dodrio/anim0.asm | 6 - gfx/pics/dodrio/anim1.asm | 6 - gfx/pics/dodrio/back.2bpp.lz.a5480e88 | Bin 455 -> 0 bytes gfx/pics/dodrio/back.png | Bin 553 -> 0 bytes gfx/pics/dodrio/front.animated.2bpp.lz.2aaff569 | Bin 881 -> 0 bytes gfx/pics/dodrio/front.png | Bin 1315 -> 0 bytes gfx/pics/dodrio/shiny.pal | 4 - gfx/pics/doduo/anim0.asm | 9 - gfx/pics/doduo/anim1.asm | 8 - gfx/pics/doduo/back.2bpp.lz.05a57563 | Bin 404 -> 0 bytes gfx/pics/doduo/back.png | Bin 447 -> 0 bytes gfx/pics/doduo/front.animated.2bpp.lz.89c4acbd | Bin 428 -> 0 bytes gfx/pics/doduo/front.png | Bin 650 -> 0 bytes gfx/pics/doduo/shiny.pal | 4 - gfx/pics/donphan/anim0.asm | 6 - gfx/pics/donphan/anim1.asm | 6 - gfx/pics/donphan/back.2bpp.lz.5067b370 | Bin 233 -> 0 bytes gfx/pics/donphan/back.png | Bin 352 -> 0 bytes gfx/pics/donphan/front.animated.2bpp.lz.9e1b7048 | Bin 819 -> 0 bytes gfx/pics/donphan/front.png | Bin 1170 -> 0 bytes gfx/pics/donphan/shiny.pal | 4 - gfx/pics/dragonair/anim0.asm | 8 - gfx/pics/dragonair/anim1.asm | 10 - gfx/pics/dragonair/back.2bpp.lz.9b6fda5b | Bin 307 -> 0 bytes gfx/pics/dragonair/back.png | Bin 430 -> 0 bytes gfx/pics/dragonair/front.animated.2bpp.lz.bb9ee373 | Bin 646 -> 0 bytes gfx/pics/dragonair/front.png | Bin 1064 -> 0 bytes gfx/pics/dragonair/shiny.pal | 4 - gfx/pics/dragonite/anim0.asm | 13 - gfx/pics/dragonite/anim1.asm | 8 - gfx/pics/dragonite/back.2bpp.lz.c408806f | Bin 279 -> 0 bytes gfx/pics/dragonite/back.png | Bin 386 -> 0 bytes gfx/pics/dragonite/front.animated.2bpp.lz.b914dfd9 | Bin 860 -> 0 bytes gfx/pics/dragonite/front.png | Bin 1282 -> 0 bytes gfx/pics/dragonite/shiny.pal | 4 - gfx/pics/dratini/anim0.asm | 8 - gfx/pics/dratini/anim1.asm | 6 - gfx/pics/dratini/back.2bpp.lz.be4d6a2a | Bin 249 -> 0 bytes gfx/pics/dratini/back.png | Bin 357 -> 0 bytes gfx/pics/dratini/front.animated.2bpp.lz.838e4248 | Bin 427 -> 0 bytes gfx/pics/dratini/front.png | Bin 674 -> 0 bytes gfx/pics/dratini/shiny.pal | 4 - gfx/pics/drowzee/anim0.asm | 11 - gfx/pics/drowzee/anim1.asm | 8 - gfx/pics/drowzee/back.2bpp.lz.55367f5a | Bin 251 -> 0 bytes gfx/pics/drowzee/back.png | Bin 353 -> 0 bytes gfx/pics/drowzee/front.animated.2bpp.lz.1f23711a | Bin 684 -> 0 bytes gfx/pics/drowzee/front.png | Bin 1013 -> 0 bytes gfx/pics/drowzee/shiny.pal | 4 - gfx/pics/dugtrio/anim0.asm | 16 - gfx/pics/dugtrio/anim1.asm | 10 - gfx/pics/dugtrio/back.2bpp.lz.e821a89c | Bin 334 -> 0 bytes gfx/pics/dugtrio/back.png | Bin 397 -> 0 bytes gfx/pics/dugtrio/front.animated.2bpp.lz.5c9e668c | Bin 651 -> 0 bytes gfx/pics/dugtrio/front.png | Bin 984 -> 0 bytes gfx/pics/dugtrio/shiny.pal | 4 - gfx/pics/dunsparce/anim0.asm | 8 - gfx/pics/dunsparce/anim1.asm | 6 - gfx/pics/dunsparce/back.2bpp.lz.aee69114 | Bin 234 -> 0 bytes gfx/pics/dunsparce/back.png | Bin 332 -> 0 bytes gfx/pics/dunsparce/front.animated.2bpp.lz.04ea863c | Bin 606 -> 0 bytes gfx/pics/dunsparce/front.png | Bin 860 -> 0 bytes gfx/pics/dunsparce/shiny.pal | 4 - gfx/pics/eevee/anim0.asm | 9 - gfx/pics/eevee/anim1.asm | 8 - gfx/pics/eevee/back.2bpp.lz.bc34ce62 | Bin 380 -> 0 bytes gfx/pics/eevee/back.png | Bin 473 -> 0 bytes gfx/pics/eevee/front.animated.2bpp.lz.04e72b48 | Bin 465 -> 0 bytes gfx/pics/eevee/front.png | Bin 741 -> 0 bytes gfx/pics/eevee/shiny.pal | 4 - gfx/pics/egg/anim0.asm | 8 - gfx/pics/egg/anim1.asm | 5 - gfx/pics/egg/front.animated.2bpp.lz.7b468eff | Bin 382 -> 0 bytes gfx/pics/egg/front.png | Bin 435 -> 0 bytes gfx/pics/ekans/anim0.asm | 9 - gfx/pics/ekans/anim1.asm | 8 - gfx/pics/ekans/back.2bpp.lz.671d14d9 | Bin 356 -> 0 bytes gfx/pics/ekans/back.png | Bin 449 -> 0 bytes gfx/pics/ekans/front.animated.2bpp.lz.018a1c72 | Bin 575 -> 0 bytes gfx/pics/ekans/front.png | Bin 792 -> 0 bytes gfx/pics/ekans/shiny.pal | 4 - gfx/pics/electabuzz/anim0.asm | 13 - gfx/pics/electabuzz/anim1.asm | 6 - gfx/pics/electabuzz/back.2bpp.lz.e97330fe | Bin 386 -> 0 bytes gfx/pics/electabuzz/back.png | Bin 461 -> 0 bytes .../electabuzz/front.animated.2bpp.lz.381e1c6e | Bin 793 -> 0 bytes gfx/pics/electabuzz/front.png | Bin 1036 -> 0 bytes gfx/pics/electabuzz/shiny.pal | 4 - gfx/pics/electrode/anim0.asm | 4 - gfx/pics/electrode/anim1.asm | 3 - gfx/pics/electrode/back.2bpp.lz.874e1f1c | Bin 246 -> 0 bytes gfx/pics/electrode/back.png | Bin 308 -> 0 bytes gfx/pics/electrode/front.animated.2bpp.lz.d7943ad8 | Bin 369 -> 0 bytes gfx/pics/electrode/front.png | Bin 480 -> 0 bytes gfx/pics/electrode/shiny.pal | 4 - gfx/pics/elekid/anim0.asm | 11 - gfx/pics/elekid/anim1.asm | 7 - gfx/pics/elekid/back.2bpp.lz.227a1b23 | Bin 421 -> 0 bytes gfx/pics/elekid/back.png | Bin 508 -> 0 bytes gfx/pics/elekid/front.animated.2bpp.lz.3bbb6b61 | Bin 702 -> 0 bytes gfx/pics/elekid/front.png | Bin 1092 -> 0 bytes gfx/pics/elekid/shiny.pal | 4 - gfx/pics/entei/anim0.asm | 6 - gfx/pics/entei/anim1.asm | 6 - gfx/pics/entei/back.2bpp.lz.d1e1986a | Bin 340 -> 0 bytes gfx/pics/entei/back.png | Bin 448 -> 0 bytes gfx/pics/entei/front.animated.2bpp.lz.ebaf8024 | Bin 1093 -> 0 bytes gfx/pics/entei/front.png | Bin 1553 -> 0 bytes gfx/pics/entei/shiny.pal | 4 - gfx/pics/espeon/anim0.asm | 9 - gfx/pics/espeon/anim1.asm | 6 - gfx/pics/espeon/back.2bpp.lz.0e77f26e | Bin 333 -> 0 bytes gfx/pics/espeon/back.png | Bin 410 -> 0 bytes gfx/pics/espeon/front.animated.2bpp.lz.069f57ec | Bin 606 -> 0 bytes gfx/pics/espeon/front.png | Bin 897 -> 0 bytes gfx/pics/espeon/shiny.pal | 4 - gfx/pics/exeggcute/anim0.asm | 17 - gfx/pics/exeggcute/anim1.asm | 6 - gfx/pics/exeggcute/back.2bpp.lz.060c38b0 | Bin 358 -> 0 bytes gfx/pics/exeggcute/back.png | Bin 431 -> 0 bytes gfx/pics/exeggcute/front.animated.2bpp.lz.578a4722 | Bin 808 -> 0 bytes gfx/pics/exeggcute/front.png | Bin 1229 -> 0 bytes gfx/pics/exeggcute/shiny.pal | 4 - gfx/pics/exeggutor/anim0.asm | 9 - gfx/pics/exeggutor/anim1.asm | 6 - gfx/pics/exeggutor/back.2bpp.lz.e012643e | Bin 472 -> 0 bytes gfx/pics/exeggutor/back.png | Bin 527 -> 0 bytes gfx/pics/exeggutor/front.animated.2bpp.lz.3915d572 | Bin 772 -> 0 bytes gfx/pics/exeggutor/front.png | Bin 927 -> 0 bytes gfx/pics/exeggutor/shiny.pal | 4 - gfx/pics/extra_pointers.asm | 252 ---- gfx/pics/extras.asm | 252 ---- gfx/pics/farfetch_d/anim0.asm | 6 - gfx/pics/farfetch_d/anim1.asm | 5 - gfx/pics/farfetch_d/back.2bpp.lz.6f28ebc4 | Bin 411 -> 0 bytes gfx/pics/farfetch_d/back.png | Bin 479 -> 0 bytes .../farfetch_d/front.animated.2bpp.lz.a4ae9393 | Bin 712 -> 0 bytes gfx/pics/farfetch_d/front.png | Bin 1049 -> 0 bytes gfx/pics/farfetch_d/shiny.pal | 4 - gfx/pics/fearow/anim0.asm | 8 - gfx/pics/fearow/anim1.asm | 6 - gfx/pics/fearow/back.2bpp.lz.a7a39118 | Bin 249 -> 0 bytes gfx/pics/fearow/back.png | Bin 339 -> 0 bytes gfx/pics/fearow/front.animated.2bpp.lz.393b11d6 | Bin 998 -> 0 bytes gfx/pics/fearow/front.png | Bin 1316 -> 0 bytes gfx/pics/fearow/shiny.pal | 4 - gfx/pics/feraligatr/anim0.asm | 7 - gfx/pics/feraligatr/anim1.asm | 6 - gfx/pics/feraligatr/back.2bpp.lz.f95abe99 | Bin 427 -> 0 bytes gfx/pics/feraligatr/back.png | Bin 550 -> 0 bytes .../feraligatr/front.animated.2bpp.lz.fade72cc | Bin 1177 -> 0 bytes gfx/pics/feraligatr/front.png | Bin 1454 -> 0 bytes gfx/pics/feraligatr/shiny.pal | 4 - gfx/pics/flaaffy/anim0.asm | 8 - gfx/pics/flaaffy/anim1.asm | 6 - gfx/pics/flaaffy/back.2bpp.lz.461855e4 | Bin 369 -> 0 bytes gfx/pics/flaaffy/back.png | Bin 489 -> 0 bytes gfx/pics/flaaffy/front.animated.2bpp.lz.6a27aac3 | Bin 587 -> 0 bytes gfx/pics/flaaffy/front.png | Bin 840 -> 0 bytes gfx/pics/flaaffy/shiny.pal | 4 - gfx/pics/flareon/anim0.asm | 7 - gfx/pics/flareon/anim1.asm | 6 - gfx/pics/flareon/back.2bpp.lz.d58af0e5 | Bin 393 -> 0 bytes gfx/pics/flareon/back.png | Bin 455 -> 0 bytes gfx/pics/flareon/front.animated.2bpp.lz.7b68c716 | Bin 714 -> 0 bytes gfx/pics/flareon/front.png | Bin 1090 -> 0 bytes gfx/pics/flareon/shiny.pal | 4 - gfx/pics/forretress/anim0.asm | 11 - gfx/pics/forretress/anim1.asm | 6 - gfx/pics/forretress/back.2bpp.lz.2b8e5f48 | Bin 147 -> 0 bytes gfx/pics/forretress/back.png | Bin 229 -> 0 bytes .../forretress/front.animated.2bpp.lz.761b9f80 | Bin 646 -> 0 bytes gfx/pics/forretress/front.png | Bin 947 -> 0 bytes gfx/pics/forretress/shiny.pal | 4 - gfx/pics/frame_pointers.asm | 252 ---- gfx/pics/furret/anim0.asm | 8 - gfx/pics/furret/anim1.asm | 6 - gfx/pics/furret/back.2bpp.lz.24792550 | Bin 358 -> 0 bytes gfx/pics/furret/back.png | Bin 450 -> 0 bytes gfx/pics/furret/front.animated.2bpp.lz.f72a2758 | Bin 581 -> 0 bytes gfx/pics/furret/front.png | Bin 869 -> 0 bytes gfx/pics/furret/shiny.pal | 4 - gfx/pics/gastly/anim0.asm | 8 - gfx/pics/gastly/anim1.asm | 6 - gfx/pics/gastly/back.2bpp.lz.4078fa56 | Bin 250 -> 0 bytes gfx/pics/gastly/back.png | Bin 319 -> 0 bytes gfx/pics/gastly/front.animated.2bpp.lz.84148c1e | Bin 766 -> 0 bytes gfx/pics/gastly/front.png | Bin 993 -> 0 bytes gfx/pics/gastly/shiny.pal | 4 - gfx/pics/gengar/anim0.asm | 9 - gfx/pics/gengar/anim1.asm | 9 - gfx/pics/gengar/back.2bpp.lz.5237ee63 | Bin 330 -> 0 bytes gfx/pics/gengar/back.png | Bin 396 -> 0 bytes gfx/pics/gengar/front.animated.2bpp.lz.65ddc6f5 | Bin 657 -> 0 bytes gfx/pics/gengar/front.png | Bin 917 -> 0 bytes gfx/pics/gengar/shiny.pal | 4 - gfx/pics/geodude/anim0.asm | 8 - gfx/pics/geodude/anim1.asm | 6 - gfx/pics/geodude/back.2bpp.lz.d5aa5e9f | Bin 367 -> 0 bytes gfx/pics/geodude/back.png | Bin 471 -> 0 bytes gfx/pics/geodude/front.animated.2bpp.lz.d743f2c9 | Bin 361 -> 0 bytes gfx/pics/geodude/front.png | Bin 557 -> 0 bytes gfx/pics/geodude/shiny.pal | 4 - gfx/pics/girafarig/anim0.asm | 14 - gfx/pics/girafarig/anim1.asm | 4 - gfx/pics/girafarig/back.2bpp.lz.5dd68457 | Bin 360 -> 0 bytes gfx/pics/girafarig/back.png | Bin 458 -> 0 bytes gfx/pics/girafarig/front.animated.2bpp.lz.76d809c4 | Bin 687 -> 0 bytes gfx/pics/girafarig/front.png | Bin 1201 -> 0 bytes gfx/pics/girafarig/shiny.pal | 4 - gfx/pics/gligar/anim0.asm | 3 - gfx/pics/gligar/anim1.asm | 3 - gfx/pics/gligar/back.2bpp.lz.ee922122 | Bin 389 -> 0 bytes gfx/pics/gligar/back.png | Bin 467 -> 0 bytes gfx/pics/gligar/front.animated.2bpp.lz.4dcc41b3 | Bin 692 -> 0 bytes gfx/pics/gligar/front.png | Bin 748 -> 0 bytes gfx/pics/gligar/shiny.pal | 4 - gfx/pics/gloom/anim0.asm | 12 - gfx/pics/gloom/anim1.asm | 6 - gfx/pics/gloom/back.2bpp.lz.9a321f63 | Bin 394 -> 0 bytes gfx/pics/gloom/back.png | Bin 455 -> 0 bytes gfx/pics/gloom/front.animated.2bpp.lz.c6ef04a5 | Bin 588 -> 0 bytes gfx/pics/gloom/front.png | Bin 800 -> 0 bytes gfx/pics/gloom/shiny.pal | 4 - gfx/pics/golbat/anim0.asm | 11 - gfx/pics/golbat/anim1.asm | 6 - gfx/pics/golbat/back.2bpp.lz.e277e260 | Bin 176 -> 0 bytes gfx/pics/golbat/back.png | Bin 285 -> 0 bytes gfx/pics/golbat/front.animated.2bpp.lz.c35ffe9b | Bin 814 -> 0 bytes gfx/pics/golbat/front.png | Bin 1209 -> 0 bytes gfx/pics/golbat/shiny.pal | 4 - gfx/pics/goldeen/anim0.asm | 8 - gfx/pics/goldeen/anim1.asm | 6 - gfx/pics/goldeen/back.2bpp.lz.d0e5751e | Bin 393 -> 0 bytes gfx/pics/goldeen/back.png | Bin 488 -> 0 bytes gfx/pics/goldeen/front.animated.2bpp.lz.c451a8c4 | Bin 610 -> 0 bytes gfx/pics/goldeen/front.png | Bin 824 -> 0 bytes gfx/pics/goldeen/shiny.pal | 4 - gfx/pics/golduck/anim0.asm | 13 - gfx/pics/golduck/anim1.asm | 6 - gfx/pics/golduck/back.2bpp.lz.2d022642 | Bin 341 -> 0 bytes gfx/pics/golduck/back.png | Bin 413 -> 0 bytes gfx/pics/golduck/front.animated.2bpp.lz.09e97414 | Bin 936 -> 0 bytes gfx/pics/golduck/front.png | Bin 1594 -> 0 bytes gfx/pics/golduck/shiny.pal | 4 - gfx/pics/golem/anim0.asm | 7 - gfx/pics/golem/anim1.asm | 6 - gfx/pics/golem/back.2bpp.lz.ae903dee | Bin 198 -> 0 bytes gfx/pics/golem/back.png | Bin 288 -> 0 bytes gfx/pics/golem/front.animated.2bpp.lz.a16f21c8 | Bin 735 -> 0 bytes gfx/pics/golem/front.png | Bin 963 -> 0 bytes gfx/pics/golem/shiny.pal | 4 - gfx/pics/granbull/anim0.asm | 8 - gfx/pics/granbull/anim1.asm | 6 - gfx/pics/granbull/back.2bpp.lz.7f1208ed | Bin 312 -> 0 bytes gfx/pics/granbull/back.png | Bin 389 -> 0 bytes gfx/pics/granbull/front.animated.2bpp.lz.4504768b | Bin 628 -> 0 bytes gfx/pics/granbull/front.png | Bin 820 -> 0 bytes gfx/pics/granbull/shiny.pal | 4 - gfx/pics/graveler/anim0.asm | 10 - gfx/pics/graveler/anim1.asm | 7 - gfx/pics/graveler/back.2bpp.lz.c7867de7 | Bin 333 -> 0 bytes gfx/pics/graveler/back.png | Bin 441 -> 0 bytes gfx/pics/graveler/front.animated.2bpp.lz.68d07c61 | Bin 664 -> 0 bytes gfx/pics/graveler/front.png | Bin 957 -> 0 bytes gfx/pics/graveler/shiny.pal | 4 - gfx/pics/grimer/anim0.asm | 6 - gfx/pics/grimer/anim1.asm | 8 - gfx/pics/grimer/back.2bpp.lz.833bd626 | Bin 286 -> 0 bytes gfx/pics/grimer/back.png | Bin 386 -> 0 bytes gfx/pics/grimer/front.animated.2bpp.lz.dfe40e91 | Bin 518 -> 0 bytes gfx/pics/grimer/front.png | Bin 740 -> 0 bytes gfx/pics/grimer/shiny.pal | 4 - gfx/pics/growlithe/anim0.asm | 9 - gfx/pics/growlithe/anim1.asm | 7 - gfx/pics/growlithe/back.2bpp.lz.7f5831f6 | Bin 375 -> 0 bytes gfx/pics/growlithe/back.png | Bin 448 -> 0 bytes gfx/pics/growlithe/front.animated.2bpp.lz.f7b376fa | Bin 453 -> 0 bytes gfx/pics/growlithe/front.png | Bin 655 -> 0 bytes gfx/pics/growlithe/shiny.pal | 4 - gfx/pics/gyarados/anim0.asm | 6 - gfx/pics/gyarados/anim1.asm | 6 - gfx/pics/gyarados/back.2bpp.lz.fc577f9e | Bin 435 -> 0 bytes gfx/pics/gyarados/back.png | Bin 520 -> 0 bytes gfx/pics/gyarados/front.animated.2bpp.lz.1b498e2b | Bin 974 -> 0 bytes gfx/pics/gyarados/front.png | Bin 1403 -> 0 bytes gfx/pics/gyarados/shiny.pal | 4 - gfx/pics/haunter/anim0.asm | 7 - gfx/pics/haunter/anim1.asm | 3 - gfx/pics/haunter/back.2bpp.lz.8a5dc2c1 | Bin 320 -> 0 bytes gfx/pics/haunter/back.png | Bin 385 -> 0 bytes gfx/pics/haunter/front.animated.2bpp.lz.aeed5f7e | Bin 624 -> 0 bytes gfx/pics/haunter/front.png | Bin 900 -> 0 bytes gfx/pics/haunter/shiny.pal | 4 - gfx/pics/heracross/anim0.asm | 5 - gfx/pics/heracross/anim1.asm | 6 - gfx/pics/heracross/back.2bpp.lz.ba09608b | Bin 385 -> 0 bytes gfx/pics/heracross/back.png | Bin 464 -> 0 bytes gfx/pics/heracross/front.animated.2bpp.lz.0742fe2b | Bin 644 -> 0 bytes gfx/pics/heracross/front.png | Bin 926 -> 0 bytes gfx/pics/heracross/shiny.pal | 4 - gfx/pics/hitmonchan/anim0.asm | 11 - gfx/pics/hitmonchan/anim1.asm | 8 - gfx/pics/hitmonchan/back.2bpp.lz.68e28b98 | Bin 365 -> 0 bytes gfx/pics/hitmonchan/back.png | Bin 439 -> 0 bytes .../hitmonchan/front.animated.2bpp.lz.61836c4c | Bin 579 -> 0 bytes gfx/pics/hitmonchan/front.png | Bin 894 -> 0 bytes gfx/pics/hitmonchan/shiny.pal | 4 - gfx/pics/hitmonlee/anim0.asm | 13 - gfx/pics/hitmonlee/anim1.asm | 6 - gfx/pics/hitmonlee/back.2bpp.lz.374e3caa | Bin 278 -> 0 bytes gfx/pics/hitmonlee/back.png | Bin 391 -> 0 bytes gfx/pics/hitmonlee/front.animated.2bpp.lz.d174eba1 | Bin 1050 -> 0 bytes gfx/pics/hitmonlee/front.png | Bin 1669 -> 0 bytes gfx/pics/hitmonlee/shiny.pal | 4 - gfx/pics/hitmontop/anim0.asm | 9 - gfx/pics/hitmontop/anim1.asm | 7 - gfx/pics/hitmontop/back.2bpp.lz.ea3f1576 | Bin 458 -> 0 bytes gfx/pics/hitmontop/back.png | Bin 538 -> 0 bytes gfx/pics/hitmontop/front.animated.2bpp.lz.1b3e96fc | Bin 872 -> 0 bytes gfx/pics/hitmontop/front.png | Bin 1093 -> 0 bytes gfx/pics/hitmontop/shiny.pal | 4 - gfx/pics/ho_oh/anim0.asm | 11 - gfx/pics/ho_oh/anim1.asm | 6 - gfx/pics/ho_oh/back.2bpp.lz.1412f260 | Bin 337 -> 0 bytes gfx/pics/ho_oh/back.png | Bin 464 -> 0 bytes gfx/pics/ho_oh/front.animated.2bpp.lz.db80b5eb | Bin 1303 -> 0 bytes gfx/pics/ho_oh/front.png | Bin 1754 -> 0 bytes gfx/pics/ho_oh/shiny.pal | 4 - gfx/pics/hoothoot/anim0.asm | 12 - gfx/pics/hoothoot/anim1.asm | 8 - gfx/pics/hoothoot/back.2bpp.lz.7ebb0b29 | Bin 324 -> 0 bytes gfx/pics/hoothoot/back.png | Bin 427 -> 0 bytes gfx/pics/hoothoot/front.animated.2bpp.lz.752ab202 | Bin 457 -> 0 bytes gfx/pics/hoothoot/front.png | Bin 633 -> 0 bytes gfx/pics/hoothoot/shiny.pal | 4 - gfx/pics/hoppip/anim0.asm | 6 - gfx/pics/hoppip/anim1.asm | 7 - gfx/pics/hoppip/back.2bpp.lz.5684c023 | Bin 312 -> 0 bytes gfx/pics/hoppip/back.png | Bin 391 -> 0 bytes gfx/pics/hoppip/front.animated.2bpp.lz.a03efe74 | Bin 403 -> 0 bytes gfx/pics/hoppip/front.png | Bin 527 -> 0 bytes gfx/pics/hoppip/shiny.pal | 4 - gfx/pics/horsea/anim0.asm | 8 - gfx/pics/horsea/anim1.asm | 6 - gfx/pics/horsea/back.2bpp.lz.50b6afb9 | Bin 261 -> 0 bytes gfx/pics/horsea/back.png | Bin 355 -> 0 bytes gfx/pics/horsea/front.animated.2bpp.lz.8b84f98e | Bin 339 -> 0 bytes gfx/pics/horsea/front.png | Bin 529 -> 0 bytes gfx/pics/horsea/shiny.pal | 4 - gfx/pics/houndoom/anim0.asm | 10 - gfx/pics/houndoom/anim1.asm | 6 - gfx/pics/houndoom/back.2bpp.lz.5fa55a47 | Bin 289 -> 0 bytes gfx/pics/houndoom/back.png | Bin 357 -> 0 bytes gfx/pics/houndoom/front.animated.2bpp.lz.2d450e90 | Bin 727 -> 0 bytes gfx/pics/houndoom/front.png | Bin 1203 -> 0 bytes gfx/pics/houndoom/shiny.pal | 4 - gfx/pics/houndour/anim0.asm | 7 - gfx/pics/houndour/anim1.asm | 8 - gfx/pics/houndour/back.2bpp.lz.ae5f2dc9 | Bin 240 -> 0 bytes gfx/pics/houndour/back.png | Bin 341 -> 0 bytes gfx/pics/houndour/front.animated.2bpp.lz.f847f4f6 | Bin 503 -> 0 bytes gfx/pics/houndour/front.png | Bin 757 -> 0 bytes gfx/pics/houndour/shiny.pal | 4 - gfx/pics/hypno/anim0.asm | 7 - gfx/pics/hypno/anim1.asm | 6 - gfx/pics/hypno/back.2bpp.lz.c091ce88 | Bin 401 -> 0 bytes gfx/pics/hypno/back.png | Bin 485 -> 0 bytes gfx/pics/hypno/front.animated.2bpp.lz.638333a3 | Bin 837 -> 0 bytes gfx/pics/hypno/front.png | Bin 1173 -> 0 bytes gfx/pics/hypno/shiny.pal | 4 - gfx/pics/igglybuff/anim0.asm | 6 - gfx/pics/igglybuff/anim1.asm | 6 - gfx/pics/igglybuff/back.2bpp.lz.c0c17dcb | Bin 265 -> 0 bytes gfx/pics/igglybuff/back.png | Bin 358 -> 0 bytes gfx/pics/igglybuff/front.animated.2bpp.lz.1e00afc3 | Bin 357 -> 0 bytes gfx/pics/igglybuff/front.png | Bin 488 -> 0 bytes gfx/pics/igglybuff/shiny.pal | 4 - gfx/pics/ivysaur/anim0.asm | 6 - gfx/pics/ivysaur/anim1.asm | 8 - gfx/pics/ivysaur/back.2bpp.lz.bed1ff58 | Bin 343 -> 0 bytes gfx/pics/ivysaur/back.png | Bin 423 -> 0 bytes gfx/pics/ivysaur/front.animated.2bpp.lz.3abed0fa | Bin 586 -> 0 bytes gfx/pics/ivysaur/front.png | Bin 748 -> 0 bytes gfx/pics/ivysaur/shiny.pal | 4 - gfx/pics/jigglypuff/anim0.asm | 11 - gfx/pics/jigglypuff/anim1.asm | 6 - gfx/pics/jigglypuff/back.2bpp.lz.87d5730b | Bin 245 -> 0 bytes gfx/pics/jigglypuff/back.png | Bin 317 -> 0 bytes .../jigglypuff/front.animated.2bpp.lz.9fd159f4 | Bin 487 -> 0 bytes gfx/pics/jigglypuff/front.png | Bin 644 -> 0 bytes gfx/pics/jigglypuff/shiny.pal | 4 - gfx/pics/johto_frames.asm | 102 -- gfx/pics/jolteon/anim0.asm | 10 - gfx/pics/jolteon/anim1.asm | 6 - gfx/pics/jolteon/back.2bpp.lz.f248aac4 | Bin 315 -> 0 bytes gfx/pics/jolteon/back.png | Bin 407 -> 0 bytes gfx/pics/jolteon/front.animated.2bpp.lz.b2b07d79 | Bin 823 -> 0 bytes gfx/pics/jolteon/front.png | Bin 1091 -> 0 bytes gfx/pics/jolteon/shiny.pal | 4 - gfx/pics/jumpluff/anim0.asm | 5 - gfx/pics/jumpluff/anim1.asm | 6 - gfx/pics/jumpluff/back.2bpp.lz.b258a699 | Bin 364 -> 0 bytes gfx/pics/jumpluff/back.png | Bin 436 -> 0 bytes gfx/pics/jumpluff/front.animated.2bpp.lz.6d1d8175 | Bin 701 -> 0 bytes gfx/pics/jumpluff/front.png | Bin 1064 -> 0 bytes gfx/pics/jumpluff/shiny.pal | 4 - gfx/pics/jynx/anim0.asm | 8 - gfx/pics/jynx/anim1.asm | 6 - gfx/pics/jynx/back.2bpp.lz.1eef1c1b | Bin 179 -> 0 bytes gfx/pics/jynx/back.png | Bin 293 -> 0 bytes gfx/pics/jynx/front.animated.2bpp.lz.6aaf67b0 | Bin 597 -> 0 bytes gfx/pics/jynx/front.png | Bin 829 -> 0 bytes gfx/pics/jynx/shiny.pal | 4 - gfx/pics/kabuto/anim0.asm | 6 - gfx/pics/kabuto/anim1.asm | 8 - gfx/pics/kabuto/back.2bpp.lz.0717a29b | Bin 323 -> 0 bytes gfx/pics/kabuto/back.png | Bin 369 -> 0 bytes gfx/pics/kabuto/front.animated.2bpp.lz.afe4e2dc | Bin 353 -> 0 bytes gfx/pics/kabuto/front.png | Bin 526 -> 0 bytes gfx/pics/kabuto/shiny.pal | 4 - gfx/pics/kabutops/anim0.asm | 8 - gfx/pics/kabutops/anim1.asm | 6 - gfx/pics/kabutops/back.2bpp.lz.98a1dfc4 | Bin 394 -> 0 bytes gfx/pics/kabutops/back.png | Bin 476 -> 0 bytes gfx/pics/kabutops/front.animated.2bpp.lz.d5e4bfeb | Bin 725 -> 0 bytes gfx/pics/kabutops/front.png | Bin 1015 -> 0 bytes gfx/pics/kabutops/shiny.pal | 4 - gfx/pics/kadabra/anim0.asm | 8 - gfx/pics/kadabra/anim1.asm | 6 - gfx/pics/kadabra/back.2bpp.lz.6b26c1a0 | Bin 359 -> 0 bytes gfx/pics/kadabra/back.png | Bin 450 -> 0 bytes gfx/pics/kadabra/front.animated.2bpp.lz.bc78f9cf | Bin 773 -> 0 bytes gfx/pics/kadabra/front.png | Bin 1086 -> 0 bytes gfx/pics/kadabra/shiny.pal | 4 - gfx/pics/kakuna/anim0.asm | 4 - gfx/pics/kakuna/anim1.asm | 6 - gfx/pics/kakuna/back.2bpp.lz.3bffa4c3 | Bin 275 -> 0 bytes gfx/pics/kakuna/back.png | Bin 356 -> 0 bytes gfx/pics/kakuna/front.animated.2bpp.lz.c7425e72 | Bin 334 -> 0 bytes gfx/pics/kakuna/front.png | Bin 410 -> 0 bytes gfx/pics/kakuna/shiny.pal | 4 - gfx/pics/kangaskhan/anim0.asm | 9 - gfx/pics/kangaskhan/anim1.asm | 8 - gfx/pics/kangaskhan/back.2bpp.lz.0d7cc337 | Bin 443 -> 0 bytes gfx/pics/kangaskhan/back.png | Bin 530 -> 0 bytes .../kangaskhan/front.animated.2bpp.lz.09c81009 | Bin 970 -> 0 bytes gfx/pics/kangaskhan/front.png | Bin 1437 -> 0 bytes gfx/pics/kangaskhan/shiny.pal | 4 - gfx/pics/kanto_frames.asm | 152 --- gfx/pics/kingdra/anim0.asm | 10 - gfx/pics/kingdra/anim1.asm | 6 - gfx/pics/kingdra/back.2bpp.lz.e48ecb3f | Bin 352 -> 0 bytes gfx/pics/kingdra/back.png | Bin 434 -> 0 bytes gfx/pics/kingdra/front.animated.2bpp.lz.668c0516 | Bin 782 -> 0 bytes gfx/pics/kingdra/front.png | Bin 1158 -> 0 bytes gfx/pics/kingdra/shiny.pal | 4 - gfx/pics/kingler/anim0.asm | 10 - gfx/pics/kingler/anim1.asm | 6 - gfx/pics/kingler/back.2bpp.lz.88e96d65 | Bin 331 -> 0 bytes gfx/pics/kingler/back.png | Bin 417 -> 0 bytes gfx/pics/kingler/front.animated.2bpp.lz.35305199 | Bin 812 -> 0 bytes gfx/pics/kingler/front.png | Bin 1094 -> 0 bytes gfx/pics/kingler/shiny.pal | 4 - gfx/pics/koffing/anim0.asm | 7 - gfx/pics/koffing/anim1.asm | 3 - gfx/pics/koffing/back.2bpp.lz.8c0a2526 | Bin 378 -> 0 bytes gfx/pics/koffing/back.png | Bin 464 -> 0 bytes gfx/pics/koffing/front.animated.2bpp.lz.00044b3f | Bin 482 -> 0 bytes gfx/pics/koffing/front.png | Bin 826 -> 0 bytes gfx/pics/koffing/shiny.pal | 4 - gfx/pics/krabby/anim0.asm | 11 - gfx/pics/krabby/anim1.asm | 5 - gfx/pics/krabby/back.2bpp.lz.2bc2487b | Bin 419 -> 0 bytes gfx/pics/krabby/back.png | Bin 504 -> 0 bytes gfx/pics/krabby/front.animated.2bpp.lz.39592514 | Bin 492 -> 0 bytes gfx/pics/krabby/front.png | Bin 850 -> 0 bytes gfx/pics/krabby/shiny.pal | 4 - gfx/pics/lanturn/anim0.asm | 9 - gfx/pics/lanturn/anim1.asm | 6 - gfx/pics/lanturn/back.2bpp.lz.8e9c7c1a | Bin 286 -> 0 bytes gfx/pics/lanturn/back.png | Bin 348 -> 0 bytes gfx/pics/lanturn/front.animated.2bpp.lz.1bfac161 | Bin 472 -> 0 bytes gfx/pics/lanturn/front.png | Bin 847 -> 0 bytes gfx/pics/lanturn/shiny.pal | 4 - gfx/pics/lapras/anim0.asm | 7 - gfx/pics/lapras/anim1.asm | 6 - gfx/pics/lapras/back.2bpp.lz.d09351a1 | Bin 308 -> 0 bytes gfx/pics/lapras/back.png | Bin 428 -> 0 bytes gfx/pics/lapras/front.animated.2bpp.lz.8290ef8e | Bin 736 -> 0 bytes gfx/pics/lapras/front.png | Bin 947 -> 0 bytes gfx/pics/lapras/shiny.pal | 4 - gfx/pics/larvitar/anim0.asm | 6 - gfx/pics/larvitar/anim1.asm | 6 - gfx/pics/larvitar/back.2bpp.lz.4b2ac395 | Bin 298 -> 0 bytes gfx/pics/larvitar/back.png | Bin 379 -> 0 bytes gfx/pics/larvitar/front.animated.2bpp.lz.83859c57 | Bin 413 -> 0 bytes gfx/pics/larvitar/front.png | Bin 570 -> 0 bytes gfx/pics/larvitar/shiny.pal | 4 - gfx/pics/ledian/anim0.asm | 9 - gfx/pics/ledian/anim1.asm | 6 - gfx/pics/ledian/back.2bpp.lz.48657bbb | Bin 385 -> 0 bytes gfx/pics/ledian/back.png | Bin 453 -> 0 bytes gfx/pics/ledian/front.animated.2bpp.lz.83e819c3 | Bin 593 -> 0 bytes gfx/pics/ledian/front.png | Bin 832 -> 0 bytes gfx/pics/ledian/shiny.pal | 4 - gfx/pics/ledyba/anim0.asm | 7 - gfx/pics/ledyba/anim1.asm | 7 - gfx/pics/ledyba/back.2bpp.lz.d50e8860 | Bin 411 -> 0 bytes gfx/pics/ledyba/back.png | Bin 531 -> 0 bytes gfx/pics/ledyba/front.animated.2bpp.lz.1700dc27 | Bin 658 -> 0 bytes gfx/pics/ledyba/front.png | Bin 913 -> 0 bytes gfx/pics/ledyba/shiny.pal | 4 - gfx/pics/lickitung/anim0.asm | 7 - gfx/pics/lickitung/anim1.asm | 6 - gfx/pics/lickitung/back.2bpp.lz.a127e40b | Bin 321 -> 0 bytes gfx/pics/lickitung/back.png | Bin 398 -> 0 bytes gfx/pics/lickitung/front.animated.2bpp.lz.328a7c53 | Bin 787 -> 0 bytes gfx/pics/lickitung/front.png | Bin 1126 -> 0 bytes gfx/pics/lickitung/shiny.pal | 4 - gfx/pics/lugia/anim0.asm | 8 - gfx/pics/lugia/anim1.asm | 8 - gfx/pics/lugia/back.2bpp.lz.ad953eb5 | Bin 282 -> 0 bytes gfx/pics/lugia/back.png | Bin 379 -> 0 bytes gfx/pics/lugia/front.animated.2bpp.lz.7293eddc | Bin 1128 -> 0 bytes gfx/pics/lugia/front.png | Bin 2154 -> 0 bytes gfx/pics/lugia/shiny.pal | 4 - gfx/pics/machamp/anim0.asm | 11 - gfx/pics/machamp/anim1.asm | 6 - gfx/pics/machamp/back.2bpp.lz.757f4c29 | Bin 482 -> 0 bytes gfx/pics/machamp/back.png | Bin 580 -> 0 bytes gfx/pics/machamp/front.animated.2bpp.lz.2d408542 | Bin 1293 -> 0 bytes gfx/pics/machamp/front.png | Bin 1958 -> 0 bytes gfx/pics/machamp/shiny.pal | 4 - gfx/pics/machoke/anim0.asm | 5 - gfx/pics/machoke/anim1.asm | 10 - gfx/pics/machoke/back.2bpp.lz.2634245e | Bin 375 -> 0 bytes gfx/pics/machoke/back.png | Bin 447 -> 0 bytes gfx/pics/machoke/front.animated.2bpp.lz.f38b95a7 | Bin 863 -> 0 bytes gfx/pics/machoke/front.png | Bin 1317 -> 0 bytes gfx/pics/machoke/shiny.pal | 4 - gfx/pics/machop/anim0.asm | 8 - gfx/pics/machop/anim1.asm | 6 - gfx/pics/machop/back.2bpp.lz.bc17b50a | Bin 335 -> 0 bytes gfx/pics/machop/back.png | Bin 436 -> 0 bytes gfx/pics/machop/front.animated.2bpp.lz.0fd8735f | Bin 537 -> 0 bytes gfx/pics/machop/front.png | Bin 736 -> 0 bytes gfx/pics/machop/shiny.pal | 4 - gfx/pics/magby/anim0.asm | 8 - gfx/pics/magby/anim1.asm | 6 - gfx/pics/magby/back.2bpp.lz.e50ccadb | Bin 308 -> 0 bytes gfx/pics/magby/back.png | Bin 404 -> 0 bytes gfx/pics/magby/front.animated.2bpp.lz.172d0807 | Bin 569 -> 0 bytes gfx/pics/magby/front.png | Bin 853 -> 0 bytes gfx/pics/magby/shiny.pal | 4 - gfx/pics/magcargo/anim0.asm | 7 - gfx/pics/magcargo/anim1.asm | 3 - gfx/pics/magcargo/back.2bpp.lz.56b096bc | Bin 394 -> 0 bytes gfx/pics/magcargo/back.png | Bin 488 -> 0 bytes gfx/pics/magcargo/front.animated.2bpp.lz.53a425f4 | Bin 799 -> 0 bytes gfx/pics/magcargo/front.png | Bin 1100 -> 0 bytes gfx/pics/magcargo/shiny.pal | 4 - gfx/pics/magikarp/anim0.asm | 7 - gfx/pics/magikarp/anim1.asm | 6 - gfx/pics/magikarp/back.2bpp.lz.7f25810a | Bin 345 -> 0 bytes gfx/pics/magikarp/back.png | Bin 475 -> 0 bytes gfx/pics/magikarp/front.animated.2bpp.lz.031ee449 | Bin 529 -> 0 bytes gfx/pics/magikarp/front.png | Bin 805 -> 0 bytes gfx/pics/magikarp/shiny.pal | 4 - gfx/pics/magmar/anim0.asm | 7 - gfx/pics/magmar/anim1.asm | 6 - gfx/pics/magmar/back.2bpp.lz.6916c87b | Bin 402 -> 0 bytes gfx/pics/magmar/back.png | Bin 469 -> 0 bytes gfx/pics/magmar/front.animated.2bpp.lz.0048e21c | Bin 703 -> 0 bytes gfx/pics/magmar/front.png | Bin 1001 -> 0 bytes gfx/pics/magmar/shiny.pal | 4 - gfx/pics/magnemite/anim0.asm | 8 - gfx/pics/magnemite/anim1.asm | 7 - gfx/pics/magnemite/back.2bpp.lz.e00bd515 | Bin 166 -> 0 bytes gfx/pics/magnemite/back.png | Bin 288 -> 0 bytes gfx/pics/magnemite/front.animated.2bpp.lz.e4b07135 | Bin 327 -> 0 bytes gfx/pics/magnemite/front.png | Bin 548 -> 0 bytes gfx/pics/magnemite/shiny.pal | 4 - gfx/pics/magneton/anim0.asm | 12 - gfx/pics/magneton/anim1.asm | 9 - gfx/pics/magneton/back.2bpp.lz.f7a7089b | Bin 425 -> 0 bytes gfx/pics/magneton/back.png | Bin 508 -> 0 bytes gfx/pics/magneton/front.animated.2bpp.lz.cd3b65a6 | Bin 648 -> 0 bytes gfx/pics/magneton/front.png | Bin 938 -> 0 bytes gfx/pics/magneton/shiny.pal | 4 - gfx/pics/mankey/anim0.asm | 7 - gfx/pics/mankey/anim1.asm | 6 - gfx/pics/mankey/back.2bpp.lz.42cb1b61 | Bin 403 -> 0 bytes gfx/pics/mankey/back.png | Bin 497 -> 0 bytes gfx/pics/mankey/front.animated.2bpp.lz.48eac19a | Bin 499 -> 0 bytes gfx/pics/mankey/front.png | Bin 708 -> 0 bytes gfx/pics/mankey/shiny.pal | 4 - gfx/pics/mantine/anim0.asm | 9 - gfx/pics/mantine/anim1.asm | 6 - gfx/pics/mantine/back.2bpp.lz.1320b7f3 | Bin 216 -> 0 bytes gfx/pics/mantine/back.png | Bin 313 -> 0 bytes gfx/pics/mantine/front.animated.2bpp.lz.9eb40d04 | Bin 789 -> 0 bytes gfx/pics/mantine/front.png | Bin 1166 -> 0 bytes gfx/pics/mantine/shiny.pal | 4 - gfx/pics/mareep/anim0.asm | 9 - gfx/pics/mareep/anim1.asm | 6 - gfx/pics/mareep/back.2bpp.lz.b9bdc89c | Bin 353 -> 0 bytes gfx/pics/mareep/back.png | Bin 459 -> 0 bytes gfx/pics/mareep/front.animated.2bpp.lz.f660483d | Bin 467 -> 0 bytes gfx/pics/mareep/front.png | Bin 640 -> 0 bytes gfx/pics/mareep/shiny.pal | 4 - gfx/pics/marill/anim0.asm | 9 - gfx/pics/marill/anim1.asm | 7 - gfx/pics/marill/back.2bpp.lz.87e2be16 | Bin 249 -> 0 bytes gfx/pics/marill/back.png | Bin 329 -> 0 bytes gfx/pics/marill/front.animated.2bpp.lz.7f742686 | Bin 451 -> 0 bytes gfx/pics/marill/front.png | Bin 719 -> 0 bytes gfx/pics/marill/shiny.pal | 4 - gfx/pics/marowak/anim0.asm | 10 - gfx/pics/marowak/anim1.asm | 6 - gfx/pics/marowak/back.2bpp.lz.055ba40e | Bin 368 -> 0 bytes gfx/pics/marowak/back.png | Bin 460 -> 0 bytes gfx/pics/marowak/front.animated.2bpp.lz.ef1553a0 | Bin 700 -> 0 bytes gfx/pics/marowak/front.png | Bin 1099 -> 0 bytes gfx/pics/marowak/shiny.pal | 4 - gfx/pics/meganium/anim0.asm | 11 - gfx/pics/meganium/anim1.asm | 6 - gfx/pics/meganium/back.2bpp.lz.d25a5edb | Bin 322 -> 0 bytes gfx/pics/meganium/back.png | Bin 414 -> 0 bytes gfx/pics/meganium/front.animated.2bpp.lz.fe0b9df4 | Bin 1056 -> 0 bytes gfx/pics/meganium/front.png | Bin 1308 -> 0 bytes gfx/pics/meganium/shiny.pal | 4 - gfx/pics/meowth/anim0.asm | 7 - gfx/pics/meowth/anim1.asm | 6 - gfx/pics/meowth/back.2bpp.lz.4196bd91 | Bin 322 -> 0 bytes gfx/pics/meowth/back.png | Bin 420 -> 0 bytes gfx/pics/meowth/front.animated.2bpp.lz.144f12f0 | Bin 516 -> 0 bytes gfx/pics/meowth/front.png | Bin 830 -> 0 bytes gfx/pics/meowth/shiny.pal | 4 - gfx/pics/metapod/anim0.asm | 5 - gfx/pics/metapod/anim1.asm | 7 - gfx/pics/metapod/back.2bpp.lz.b580afc8 | Bin 245 -> 0 bytes gfx/pics/metapod/back.png | Bin 355 -> 0 bytes gfx/pics/metapod/front.animated.2bpp.lz.5025baa2 | Bin 317 -> 0 bytes gfx/pics/metapod/front.png | Bin 468 -> 0 bytes gfx/pics/metapod/shiny.pal | 4 - gfx/pics/mew/anim0.asm | 18 - gfx/pics/mew/anim1.asm | 9 - gfx/pics/mew/back.2bpp.lz.9947d6eb | Bin 335 -> 0 bytes gfx/pics/mew/back.png | Bin 411 -> 0 bytes gfx/pics/mew/front.animated.2bpp.lz.b6da9713 | Bin 599 -> 0 bytes gfx/pics/mew/front.png | Bin 809 -> 0 bytes gfx/pics/mew/shiny.pal | 4 - gfx/pics/mewtwo/anim0.asm | 17 - gfx/pics/mewtwo/anim1.asm | 6 - gfx/pics/mewtwo/back.2bpp.lz.a7d2c077 | Bin 350 -> 0 bytes gfx/pics/mewtwo/back.png | Bin 463 -> 0 bytes gfx/pics/mewtwo/front.animated.2bpp.lz.45e8b40d | Bin 1008 -> 0 bytes gfx/pics/mewtwo/front.png | Bin 1331 -> 0 bytes gfx/pics/mewtwo/shiny.pal | 4 - gfx/pics/miltank/anim0.asm | 8 - gfx/pics/miltank/anim1.asm | 6 - gfx/pics/miltank/back.2bpp.lz.b7787e72 | Bin 384 -> 0 bytes gfx/pics/miltank/back.png | Bin 476 -> 0 bytes gfx/pics/miltank/front.animated.2bpp.lz.91da7c3b | Bin 625 -> 0 bytes gfx/pics/miltank/front.png | Bin 857 -> 0 bytes gfx/pics/miltank/shiny.pal | 4 - gfx/pics/misdreavus/anim0.asm | 5 - gfx/pics/misdreavus/anim1.asm | 6 - gfx/pics/misdreavus/back.2bpp.lz.8bdebfce | Bin 362 -> 0 bytes gfx/pics/misdreavus/back.png | Bin 395 -> 0 bytes .../misdreavus/front.animated.2bpp.lz.5f73baa2 | Bin 503 -> 0 bytes gfx/pics/misdreavus/front.png | Bin 668 -> 0 bytes gfx/pics/misdreavus/shiny.pal | 4 - gfx/pics/moltres/anim0.asm | 13 - gfx/pics/moltres/anim1.asm | 9 - gfx/pics/moltres/back.2bpp.lz.356242c8 | Bin 416 -> 0 bytes gfx/pics/moltres/back.png | Bin 447 -> 0 bytes gfx/pics/moltres/front.animated.2bpp.lz.281bc0ec | Bin 1020 -> 0 bytes gfx/pics/moltres/front.png | Bin 1647 -> 0 bytes gfx/pics/moltres/shiny.pal | 4 - gfx/pics/mr__mime/anim0.asm | 11 - gfx/pics/mr__mime/anim1.asm | 6 - gfx/pics/mr__mime/back.2bpp.lz.0fb88006 | Bin 285 -> 0 bytes gfx/pics/mr__mime/back.png | Bin 371 -> 0 bytes gfx/pics/mr__mime/front.animated.2bpp.lz.f948d1b8 | Bin 753 -> 0 bytes gfx/pics/mr__mime/front.png | Bin 1375 -> 0 bytes gfx/pics/mr__mime/shiny.pal | 4 - gfx/pics/muk/anim0.asm | 6 - gfx/pics/muk/anim1.asm | 6 - gfx/pics/muk/back.2bpp.lz.a1f2f370 | Bin 347 -> 0 bytes gfx/pics/muk/back.png | Bin 420 -> 0 bytes gfx/pics/muk/front.animated.2bpp.lz.530363b2 | Bin 846 -> 0 bytes gfx/pics/muk/front.png | Bin 1066 -> 0 bytes gfx/pics/muk/shiny.pal | 4 - gfx/pics/murkrow/anim0.asm | 10 - gfx/pics/murkrow/anim1.asm | 6 - gfx/pics/murkrow/back.2bpp.lz.0c347b5b | Bin 343 -> 0 bytes gfx/pics/murkrow/back.png | Bin 407 -> 0 bytes gfx/pics/murkrow/front.animated.2bpp.lz.5d2805e8 | Bin 665 -> 0 bytes gfx/pics/murkrow/front.png | Bin 887 -> 0 bytes gfx/pics/murkrow/shiny.pal | 4 - gfx/pics/natu/anim0.asm | 6 - gfx/pics/natu/anim1.asm | 3 - gfx/pics/natu/back.2bpp.lz.c8339fb4 | Bin 203 -> 0 bytes gfx/pics/natu/back.png | Bin 289 -> 0 bytes gfx/pics/natu/front.animated.2bpp.lz.997efaf6 | Bin 277 -> 0 bytes gfx/pics/natu/front.png | Bin 436 -> 0 bytes gfx/pics/natu/shiny.pal | 4 - gfx/pics/nidoking/anim0.asm | 6 - gfx/pics/nidoking/anim1.asm | 6 - gfx/pics/nidoking/back.2bpp.lz.93211604 | Bin 485 -> 0 bytes gfx/pics/nidoking/back.png | Bin 597 -> 0 bytes gfx/pics/nidoking/front.animated.2bpp.lz.bd38fa1e | Bin 1162 -> 0 bytes gfx/pics/nidoking/front.png | Bin 1491 -> 0 bytes gfx/pics/nidoking/shiny.pal | 4 - gfx/pics/nidoqueen/anim0.asm | 10 - gfx/pics/nidoqueen/anim1.asm | 7 - gfx/pics/nidoqueen/back.2bpp.lz.f1eb0f0c | Bin 387 -> 0 bytes gfx/pics/nidoqueen/back.png | Bin 459 -> 0 bytes gfx/pics/nidoqueen/front.animated.2bpp.lz.0bf11b0a | Bin 1054 -> 0 bytes gfx/pics/nidoqueen/front.png | Bin 1567 -> 0 bytes gfx/pics/nidoqueen/shiny.pal | 4 - gfx/pics/nidoran_f/anim0.asm | 8 - gfx/pics/nidoran_f/anim1.asm | 6 - gfx/pics/nidoran_f/back.2bpp.lz.9b6990f1 | Bin 334 -> 0 bytes gfx/pics/nidoran_f/back.png | Bin 420 -> 0 bytes gfx/pics/nidoran_f/front.animated.2bpp.lz.0a4602e7 | Bin 506 -> 0 bytes gfx/pics/nidoran_f/front.png | Bin 685 -> 0 bytes gfx/pics/nidoran_f/shiny.pal | 4 - gfx/pics/nidoran_m/anim0.asm | 8 - gfx/pics/nidoran_m/anim1.asm | 6 - gfx/pics/nidoran_m/back.2bpp.lz.c9e54720 | Bin 411 -> 0 bytes gfx/pics/nidoran_m/back.png | Bin 469 -> 0 bytes gfx/pics/nidoran_m/front.animated.2bpp.lz.b121beaa | Bin 524 -> 0 bytes gfx/pics/nidoran_m/front.png | Bin 760 -> 0 bytes gfx/pics/nidoran_m/shiny.pal | 4 - gfx/pics/nidorina/anim0.asm | 9 - gfx/pics/nidorina/anim1.asm | 6 - gfx/pics/nidorina/back.2bpp.lz.a00ecf4a | Bin 375 -> 0 bytes gfx/pics/nidorina/back.png | Bin 489 -> 0 bytes gfx/pics/nidorina/front.animated.2bpp.lz.51532540 | Bin 715 -> 0 bytes gfx/pics/nidorina/front.png | Bin 979 -> 0 bytes gfx/pics/nidorina/shiny.pal | 4 - gfx/pics/nidorino/anim0.asm | 12 - gfx/pics/nidorino/anim1.asm | 8 - gfx/pics/nidorino/back.2bpp.lz.8504fdd1 | Bin 371 -> 0 bytes gfx/pics/nidorino/back.png | Bin 474 -> 0 bytes gfx/pics/nidorino/front.animated.2bpp.lz.ba11ef23 | Bin 833 -> 0 bytes gfx/pics/nidorino/front.png | Bin 1181 -> 0 bytes gfx/pics/nidorino/shiny.pal | 4 - gfx/pics/ninetales/anim0.asm | 10 - gfx/pics/ninetales/anim1.asm | 6 - gfx/pics/ninetales/back.2bpp.lz.999b3894 | Bin 433 -> 0 bytes gfx/pics/ninetales/back.png | Bin 519 -> 0 bytes gfx/pics/ninetales/front.animated.2bpp.lz.eef934ff | Bin 1227 -> 0 bytes gfx/pics/ninetales/front.png | Bin 1573 -> 0 bytes gfx/pics/ninetales/shiny.pal | 4 - gfx/pics/noctowl/anim0.asm | 10 - gfx/pics/noctowl/anim1.asm | 6 - gfx/pics/noctowl/back.2bpp.lz.9c8ac57f | Bin 323 -> 0 bytes gfx/pics/noctowl/back.png | Bin 405 -> 0 bytes gfx/pics/noctowl/front.animated.2bpp.lz.7d6594fe | Bin 743 -> 0 bytes gfx/pics/noctowl/front.png | Bin 1072 -> 0 bytes gfx/pics/noctowl/shiny.pal | 4 - gfx/pics/octillery/anim0.asm | 8 - gfx/pics/octillery/anim1.asm | 6 - gfx/pics/octillery/back.2bpp.lz.48b6e47d | Bin 263 -> 0 bytes gfx/pics/octillery/back.png | Bin 354 -> 0 bytes gfx/pics/octillery/front.animated.2bpp.lz.de99954b | Bin 598 -> 0 bytes gfx/pics/octillery/front.png | Bin 780 -> 0 bytes gfx/pics/octillery/shiny.pal | 4 - gfx/pics/oddish/anim0.asm | 11 - gfx/pics/oddish/anim1.asm | 6 - gfx/pics/oddish/back.2bpp.lz.4f9ec682 | Bin 244 -> 0 bytes gfx/pics/oddish/back.png | Bin 355 -> 0 bytes gfx/pics/oddish/front.animated.2bpp.lz.ea2e0dcd | Bin 404 -> 0 bytes gfx/pics/oddish/front.png | Bin 549 -> 0 bytes gfx/pics/oddish/shiny.pal | 4 - gfx/pics/omanyte/anim0.asm | 5 - gfx/pics/omanyte/anim1.asm | 6 - gfx/pics/omanyte/back.2bpp.lz.f442a670 | Bin 392 -> 0 bytes gfx/pics/omanyte/back.png | Bin 451 -> 0 bytes gfx/pics/omanyte/front.animated.2bpp.lz.15b343dc | Bin 446 -> 0 bytes gfx/pics/omanyte/front.png | Bin 606 -> 0 bytes gfx/pics/omanyte/shiny.pal | 4 - gfx/pics/omastar/anim0.asm | 5 - gfx/pics/omastar/anim1.asm | 6 - gfx/pics/omastar/back.2bpp.lz.c75932db | Bin 429 -> 0 bytes gfx/pics/omastar/back.png | Bin 518 -> 0 bytes gfx/pics/omastar/front.animated.2bpp.lz.b3f6c3dc | Bin 656 -> 0 bytes gfx/pics/omastar/front.png | Bin 898 -> 0 bytes gfx/pics/omastar/shiny.pal | 4 - gfx/pics/onix/anim0.asm | 10 - gfx/pics/onix/anim1.asm | 7 - gfx/pics/onix/back.2bpp.lz.cb580eb9 | Bin 378 -> 0 bytes gfx/pics/onix/back.png | Bin 469 -> 0 bytes gfx/pics/onix/front.animated.2bpp.lz.84b7e9ef | Bin 869 -> 0 bytes gfx/pics/onix/front.png | Bin 1528 -> 0 bytes gfx/pics/onix/shiny.pal | 4 - gfx/pics/palette_pointers.asm | 541 --------- gfx/pics/paras/anim0.asm | 6 - gfx/pics/paras/anim1.asm | 6 - gfx/pics/paras/back.2bpp.lz.b5a4d1e2 | Bin 296 -> 0 bytes gfx/pics/paras/back.png | Bin 402 -> 0 bytes gfx/pics/paras/front.animated.2bpp.lz.37a2c2f8 | Bin 486 -> 0 bytes gfx/pics/paras/front.png | Bin 777 -> 0 bytes gfx/pics/paras/shiny.pal | 4 - gfx/pics/parasect/anim0.asm | 13 - gfx/pics/parasect/anim1.asm | 5 - gfx/pics/parasect/back.2bpp.lz.ed08ef08 | Bin 314 -> 0 bytes gfx/pics/parasect/back.png | Bin 378 -> 0 bytes gfx/pics/parasect/front.animated.2bpp.lz.f78f9f36 | Bin 763 -> 0 bytes gfx/pics/parasect/front.png | Bin 1168 -> 0 bytes gfx/pics/parasect/shiny.pal | 4 - gfx/pics/persian/anim0.asm | 10 - gfx/pics/persian/anim1.asm | 6 - gfx/pics/persian/back.2bpp.lz.0e1c1c9a | Bin 383 -> 0 bytes gfx/pics/persian/back.png | Bin 468 -> 0 bytes gfx/pics/persian/front.animated.2bpp.lz.0e6a2521 | Bin 798 -> 0 bytes gfx/pics/persian/front.png | Bin 1240 -> 0 bytes gfx/pics/persian/shiny.pal | 4 - gfx/pics/phanpy/anim0.asm | 8 - gfx/pics/phanpy/anim1.asm | 6 - gfx/pics/phanpy/back.2bpp.lz.a5c509b8 | Bin 275 -> 0 bytes gfx/pics/phanpy/back.png | Bin 347 -> 0 bytes gfx/pics/phanpy/front.animated.2bpp.lz.53b49445 | Bin 414 -> 0 bytes gfx/pics/phanpy/front.png | Bin 606 -> 0 bytes gfx/pics/phanpy/shiny.pal | 4 - gfx/pics/pic_pointers.asm | 511 -------- gfx/pics/pichu/anim0.asm | 6 - gfx/pics/pichu/anim1.asm | 6 - gfx/pics/pichu/back.2bpp.lz.c5580983 | Bin 289 -> 0 bytes gfx/pics/pichu/back.png | Bin 376 -> 0 bytes gfx/pics/pichu/front.animated.2bpp.lz.9c1c3bef | Bin 386 -> 0 bytes gfx/pics/pichu/front.png | Bin 587 -> 0 bytes gfx/pics/pichu/shiny.pal | 4 - gfx/pics/pidgeot/anim0.asm | 8 - gfx/pics/pidgeot/anim1.asm | 9 - gfx/pics/pidgeot/back.2bpp.lz.7d9e44a5 | Bin 339 -> 0 bytes gfx/pics/pidgeot/back.png | Bin 383 -> 0 bytes gfx/pics/pidgeot/front.animated.2bpp.lz.c161ad71 | Bin 920 -> 0 bytes gfx/pics/pidgeot/front.png | Bin 1078 -> 0 bytes gfx/pics/pidgeot/shiny.pal | 4 - gfx/pics/pidgeotto/anim0.asm | 11 - gfx/pics/pidgeotto/anim1.asm | 6 - gfx/pics/pidgeotto/back.2bpp.lz.8a0dd470 | Bin 285 -> 0 bytes gfx/pics/pidgeotto/back.png | Bin 382 -> 0 bytes gfx/pics/pidgeotto/front.animated.2bpp.lz.8ce78b51 | Bin 659 -> 0 bytes gfx/pics/pidgeotto/front.png | Bin 877 -> 0 bytes gfx/pics/pidgeotto/shiny.pal | 4 - gfx/pics/pidgey/anim0.asm | 11 - gfx/pics/pidgey/anim1.asm | 8 - gfx/pics/pidgey/back.2bpp.lz.027129e8 | Bin 391 -> 0 bytes gfx/pics/pidgey/back.png | Bin 517 -> 0 bytes gfx/pics/pidgey/front.animated.2bpp.lz.9acd46ca | Bin 506 -> 0 bytes gfx/pics/pidgey/front.png | Bin 777 -> 0 bytes gfx/pics/pidgey/shiny.pal | 4 - gfx/pics/pikachu/anim0.asm | 12 - gfx/pics/pikachu/anim1.asm | 10 - gfx/pics/pikachu/back.2bpp.lz.98998807 | Bin 354 -> 0 bytes gfx/pics/pikachu/back.png | Bin 427 -> 0 bytes gfx/pics/pikachu/front.animated.2bpp.lz.9c100565 | Bin 570 -> 0 bytes gfx/pics/pikachu/front.png | Bin 799 -> 0 bytes gfx/pics/pikachu/shiny.pal | 4 - gfx/pics/piloswine/anim0.asm | 5 - gfx/pics/piloswine/anim1.asm | 6 - gfx/pics/piloswine/back.2bpp.lz.6fe7da21 | Bin 210 -> 0 bytes gfx/pics/piloswine/back.png | Bin 287 -> 0 bytes gfx/pics/piloswine/front.animated.2bpp.lz.f6f37ed2 | Bin 653 -> 0 bytes gfx/pics/piloswine/front.png | Bin 866 -> 0 bytes gfx/pics/piloswine/shiny.pal | 4 - gfx/pics/pineco/anim0.asm | 4 - gfx/pics/pineco/anim1.asm | 6 - gfx/pics/pineco/back.2bpp.lz.70df8ca3 | Bin 319 -> 0 bytes gfx/pics/pineco/back.png | Bin 387 -> 0 bytes gfx/pics/pineco/front.animated.2bpp.lz.82d91497 | Bin 494 -> 0 bytes gfx/pics/pineco/front.png | Bin 653 -> 0 bytes gfx/pics/pineco/shiny.pal | 4 - gfx/pics/pinsir/anim0.asm | 8 - gfx/pics/pinsir/anim1.asm | 6 - gfx/pics/pinsir/back.2bpp.lz.09ac7dd4 | Bin 429 -> 0 bytes gfx/pics/pinsir/back.png | Bin 514 -> 0 bytes gfx/pics/pinsir/front.animated.2bpp.lz.1e3839f2 | Bin 815 -> 0 bytes gfx/pics/pinsir/front.png | Bin 1137 -> 0 bytes gfx/pics/pinsir/shiny.pal | 4 - gfx/pics/politoed/anim0.asm | 9 - gfx/pics/politoed/anim1.asm | 6 - gfx/pics/politoed/back.2bpp.lz.7873e52f | Bin 279 -> 0 bytes gfx/pics/politoed/back.png | Bin 375 -> 0 bytes gfx/pics/politoed/front.animated.2bpp.lz.408a9c1a | Bin 796 -> 0 bytes gfx/pics/politoed/front.png | Bin 1058 -> 0 bytes gfx/pics/politoed/shiny.pal | 4 - gfx/pics/poliwag/anim0.asm | 8 - gfx/pics/poliwag/anim1.asm | 10 - gfx/pics/poliwag/back.2bpp.lz.35b9ee20 | Bin 240 -> 0 bytes gfx/pics/poliwag/back.png | Bin 305 -> 0 bytes gfx/pics/poliwag/front.animated.2bpp.lz.c7d26488 | Bin 379 -> 0 bytes gfx/pics/poliwag/front.png | Bin 627 -> 0 bytes gfx/pics/poliwag/shiny.pal | 4 - gfx/pics/poliwhirl/anim0.asm | 9 - gfx/pics/poliwhirl/anim1.asm | 6 - gfx/pics/poliwhirl/back.2bpp.lz.76564593 | Bin 336 -> 0 bytes gfx/pics/poliwhirl/back.png | Bin 403 -> 0 bytes gfx/pics/poliwhirl/front.animated.2bpp.lz.9a36033f | Bin 728 -> 0 bytes gfx/pics/poliwhirl/front.png | Bin 1072 -> 0 bytes gfx/pics/poliwhirl/shiny.pal | 4 - gfx/pics/poliwrath/anim0.asm | 8 - gfx/pics/poliwrath/anim1.asm | 6 - gfx/pics/poliwrath/back.2bpp.lz.240e911e | Bin 374 -> 0 bytes gfx/pics/poliwrath/back.png | Bin 446 -> 0 bytes gfx/pics/poliwrath/front.animated.2bpp.lz.fb1157ec | Bin 859 -> 0 bytes gfx/pics/poliwrath/front.png | Bin 1145 -> 0 bytes gfx/pics/poliwrath/shiny.pal | 4 - gfx/pics/ponyta/anim0.asm | 10 - gfx/pics/ponyta/anim1.asm | 5 - gfx/pics/ponyta/back.2bpp.lz.10ddc7ea | Bin 379 -> 0 bytes gfx/pics/ponyta/back.png | Bin 471 -> 0 bytes gfx/pics/ponyta/front.animated.2bpp.lz.2c8708d6 | Bin 665 -> 0 bytes gfx/pics/ponyta/front.png | Bin 989 -> 0 bytes gfx/pics/ponyta/shiny.pal | 4 - gfx/pics/porygon/anim0.asm | 9 - gfx/pics/porygon/anim1.asm | 6 - gfx/pics/porygon/back.2bpp.lz.b3d71350 | Bin 297 -> 0 bytes gfx/pics/porygon/back.png | Bin 366 -> 0 bytes gfx/pics/porygon/front.animated.2bpp.lz.70fc1333 | Bin 522 -> 0 bytes gfx/pics/porygon/front.png | Bin 628 -> 0 bytes gfx/pics/porygon/shiny.pal | 4 - gfx/pics/porygon2/anim0.asm | 7 - gfx/pics/porygon2/anim1.asm | 3 - gfx/pics/porygon2/back.2bpp.lz.5bba6e40 | Bin 320 -> 0 bytes gfx/pics/porygon2/back.png | Bin 396 -> 0 bytes gfx/pics/porygon2/front.animated.2bpp.lz.a6410e75 | Bin 513 -> 0 bytes gfx/pics/porygon2/front.png | Bin 669 -> 0 bytes gfx/pics/porygon2/shiny.pal | 4 - gfx/pics/primeape/anim0.asm | 8 - gfx/pics/primeape/anim1.asm | 8 - gfx/pics/primeape/back.2bpp.lz.690e407d | Bin 359 -> 0 bytes gfx/pics/primeape/back.png | Bin 449 -> 0 bytes gfx/pics/primeape/front.animated.2bpp.lz.218352ec | Bin 881 -> 0 bytes gfx/pics/primeape/front.png | Bin 1197 -> 0 bytes gfx/pics/primeape/shiny.pal | 4 - gfx/pics/psyduck/anim0.asm | 8 - gfx/pics/psyduck/anim1.asm | 6 - gfx/pics/psyduck/back.2bpp.lz.d68cddb2 | Bin 356 -> 0 bytes gfx/pics/psyduck/back.png | Bin 426 -> 0 bytes gfx/pics/psyduck/front.animated.2bpp.lz.e4efd065 | Bin 484 -> 0 bytes gfx/pics/psyduck/front.png | Bin 605 -> 0 bytes gfx/pics/psyduck/shiny.pal | 4 - gfx/pics/pupitar/anim0.asm | 8 - gfx/pics/pupitar/anim1.asm | 7 - gfx/pics/pupitar/back.2bpp.lz.100020c1 | Bin 385 -> 0 bytes gfx/pics/pupitar/back.png | Bin 458 -> 0 bytes gfx/pics/pupitar/front.animated.2bpp.lz.418c0962 | Bin 446 -> 0 bytes gfx/pics/pupitar/front.png | Bin 607 -> 0 bytes gfx/pics/pupitar/shiny.pal | 4 - gfx/pics/quagsire/anim0.asm | 6 - gfx/pics/quagsire/anim1.asm | 4 - gfx/pics/quagsire/back.2bpp.lz.64b2ec05 | Bin 316 -> 0 bytes gfx/pics/quagsire/back.png | Bin 380 -> 0 bytes gfx/pics/quagsire/front.animated.2bpp.lz.bd292a94 | Bin 576 -> 0 bytes gfx/pics/quagsire/front.png | Bin 802 -> 0 bytes gfx/pics/quagsire/shiny.pal | 4 - gfx/pics/questionmark/front.2bpp.lz.14c284f5 | Bin 144 -> 0 bytes gfx/pics/questionmark/front.png | Bin 183 -> 0 bytes gfx/pics/quilava/anim0.asm | 9 - gfx/pics/quilava/anim1.asm | 6 - gfx/pics/quilava/back.2bpp.lz.500906e1 | Bin 400 -> 0 bytes gfx/pics/quilava/back.png | Bin 476 -> 0 bytes gfx/pics/quilava/front.animated.2bpp.lz.f42f4c67 | Bin 738 -> 0 bytes gfx/pics/quilava/front.png | Bin 1069 -> 0 bytes gfx/pics/quilava/shiny.pal | 4 - gfx/pics/qwilfish/anim0.asm | 8 - gfx/pics/qwilfish/anim1.asm | 6 - gfx/pics/qwilfish/back.2bpp.lz.b2bb83c6 | Bin 390 -> 0 bytes gfx/pics/qwilfish/back.png | Bin 468 -> 0 bytes gfx/pics/qwilfish/front.animated.2bpp.lz.9e79c033 | Bin 424 -> 0 bytes gfx/pics/qwilfish/front.png | Bin 640 -> 0 bytes gfx/pics/qwilfish/shiny.pal | 4 - gfx/pics/raichu/anim0.asm | 8 - gfx/pics/raichu/anim1.asm | 6 - gfx/pics/raichu/back.2bpp.lz.fa4c7423 | Bin 375 -> 0 bytes gfx/pics/raichu/back.png | Bin 414 -> 0 bytes gfx/pics/raichu/front.animated.2bpp.lz.25f943cb | Bin 891 -> 0 bytes gfx/pics/raichu/front.png | Bin 1097 -> 0 bytes gfx/pics/raichu/shiny.pal | 4 - gfx/pics/raikou/anim0.asm | 8 - gfx/pics/raikou/anim1.asm | 8 - gfx/pics/raikou/back.2bpp.lz.657ddfaf | Bin 243 -> 0 bytes gfx/pics/raikou/back.png | Bin 350 -> 0 bytes gfx/pics/raikou/front.animated.2bpp.lz.464b6fd7 | Bin 1134 -> 0 bytes gfx/pics/raikou/front.png | Bin 1516 -> 0 bytes gfx/pics/raikou/shiny.pal | 4 - gfx/pics/rapidash/anim0.asm | 14 - gfx/pics/rapidash/anim1.asm | 6 - gfx/pics/rapidash/back.2bpp.lz.fdd1946c | Bin 404 -> 0 bytes gfx/pics/rapidash/back.png | Bin 466 -> 0 bytes gfx/pics/rapidash/front.animated.2bpp.lz.d5ac5a96 | Bin 1068 -> 0 bytes gfx/pics/rapidash/front.png | Bin 1497 -> 0 bytes gfx/pics/rapidash/shiny.pal | 4 - gfx/pics/raticate/anim0.asm | 7 - gfx/pics/raticate/anim1.asm | 10 - gfx/pics/raticate/back.2bpp.lz.b2a77d02 | Bin 357 -> 0 bytes gfx/pics/raticate/back.png | Bin 467 -> 0 bytes gfx/pics/raticate/front.animated.2bpp.lz.ef1a4689 | Bin 797 -> 0 bytes gfx/pics/raticate/front.png | Bin 1052 -> 0 bytes gfx/pics/raticate/shiny.pal | 4 - gfx/pics/rattata/anim0.asm | 10 - gfx/pics/rattata/anim1.asm | 6 - gfx/pics/rattata/back.2bpp.lz.86979cd5 | Bin 329 -> 0 bytes gfx/pics/rattata/back.png | Bin 436 -> 0 bytes gfx/pics/rattata/front.animated.2bpp.lz.5bdaea2b | Bin 534 -> 0 bytes gfx/pics/rattata/front.png | Bin 702 -> 0 bytes gfx/pics/rattata/shiny.pal | 4 - gfx/pics/remoraid/anim0.asm | 5 - gfx/pics/remoraid/anim1.asm | 6 - gfx/pics/remoraid/back.2bpp.lz.8a6e4f29 | Bin 353 -> 0 bytes gfx/pics/remoraid/back.png | Bin 431 -> 0 bytes gfx/pics/remoraid/front.animated.2bpp.lz.4eaf1230 | Bin 379 -> 0 bytes gfx/pics/remoraid/front.png | Bin 653 -> 0 bytes gfx/pics/remoraid/shiny.pal | 4 - gfx/pics/rhydon/anim0.asm | 10 - gfx/pics/rhydon/anim1.asm | 6 - gfx/pics/rhydon/back.2bpp.lz.4a3ea4af | Bin 413 -> 0 bytes gfx/pics/rhydon/back.png | Bin 531 -> 0 bytes gfx/pics/rhydon/front.animated.2bpp.lz.7257fc4f | Bin 953 -> 0 bytes gfx/pics/rhydon/front.png | Bin 1337 -> 0 bytes gfx/pics/rhydon/shiny.pal | 4 - gfx/pics/rhyhorn/anim0.asm | 5 - gfx/pics/rhyhorn/anim1.asm | 6 - gfx/pics/rhyhorn/back.2bpp.lz.b9a8e755 | Bin 300 -> 0 bytes gfx/pics/rhyhorn/back.png | Bin 425 -> 0 bytes gfx/pics/rhyhorn/front.animated.2bpp.lz.bdfdf7dc | Bin 926 -> 0 bytes gfx/pics/rhyhorn/front.png | Bin 1191 -> 0 bytes gfx/pics/rhyhorn/shiny.pal | 4 - gfx/pics/sandshrew/anim0.asm | 13 - gfx/pics/sandshrew/anim1.asm | 7 - gfx/pics/sandshrew/back.2bpp.lz.7655193f | Bin 397 -> 0 bytes gfx/pics/sandshrew/back.png | Bin 518 -> 0 bytes gfx/pics/sandshrew/front.animated.2bpp.lz.758def3d | Bin 512 -> 0 bytes gfx/pics/sandshrew/front.png | Bin 810 -> 0 bytes gfx/pics/sandshrew/shiny.pal | 4 - gfx/pics/sandslash/anim0.asm | 10 - gfx/pics/sandslash/anim1.asm | 6 - gfx/pics/sandslash/back.2bpp.lz.2999f4c6 | Bin 412 -> 0 bytes gfx/pics/sandslash/back.png | Bin 504 -> 0 bytes gfx/pics/sandslash/front.animated.2bpp.lz.d6498722 | Bin 825 -> 0 bytes gfx/pics/sandslash/front.png | Bin 1152 -> 0 bytes gfx/pics/sandslash/shiny.pal | 4 - gfx/pics/scizor/anim0.asm | 10 - gfx/pics/scizor/anim1.asm | 6 - gfx/pics/scizor/back.2bpp.lz.85149f27 | Bin 361 -> 0 bytes gfx/pics/scizor/back.png | Bin 450 -> 0 bytes gfx/pics/scizor/front.animated.2bpp.lz.afd0131a | Bin 1050 -> 0 bytes gfx/pics/scizor/front.png | Bin 1710 -> 0 bytes gfx/pics/scizor/shiny.pal | 4 - gfx/pics/scyther/anim0.asm | 9 - gfx/pics/scyther/anim1.asm | 6 - gfx/pics/scyther/back.2bpp.lz.1d7f8a87 | Bin 366 -> 0 bytes gfx/pics/scyther/back.png | Bin 453 -> 0 bytes gfx/pics/scyther/front.animated.2bpp.lz.86d1a281 | Bin 854 -> 0 bytes gfx/pics/scyther/front.png | Bin 1352 -> 0 bytes gfx/pics/scyther/shiny.pal | 4 - gfx/pics/seadra/anim0.asm | 7 - gfx/pics/seadra/anim1.asm | 7 - gfx/pics/seadra/back.2bpp.lz.354a02e4 | Bin 412 -> 0 bytes gfx/pics/seadra/back.png | Bin 508 -> 0 bytes gfx/pics/seadra/front.animated.2bpp.lz.efa9c88c | Bin 570 -> 0 bytes gfx/pics/seadra/front.png | Bin 791 -> 0 bytes gfx/pics/seadra/shiny.pal | 4 - gfx/pics/seaking/anim0.asm | 7 - gfx/pics/seaking/anim1.asm | 7 - gfx/pics/seaking/back.2bpp.lz.3e699249 | Bin 356 -> 0 bytes gfx/pics/seaking/back.png | Bin 476 -> 0 bytes gfx/pics/seaking/front.animated.2bpp.lz.fb4eb288 | Bin 848 -> 0 bytes gfx/pics/seaking/front.png | Bin 1174 -> 0 bytes gfx/pics/seaking/shiny.pal | 4 - gfx/pics/seel/anim0.asm | 8 - gfx/pics/seel/anim1.asm | 7 - gfx/pics/seel/back.2bpp.lz.518a4d40 | Bin 317 -> 0 bytes gfx/pics/seel/back.png | Bin 375 -> 0 bytes gfx/pics/seel/front.animated.2bpp.lz.2dc48023 | Bin 644 -> 0 bytes gfx/pics/seel/front.png | Bin 808 -> 0 bytes gfx/pics/seel/shiny.pal | 4 - gfx/pics/sentret/anim0.asm | 6 - gfx/pics/sentret/anim1.asm | 6 - gfx/pics/sentret/back.2bpp.lz.c19b7f3b | Bin 261 -> 0 bytes gfx/pics/sentret/back.png | Bin 360 -> 0 bytes gfx/pics/sentret/front.animated.2bpp.lz.07c594c0 | Bin 369 -> 0 bytes gfx/pics/sentret/front.png | Bin 546 -> 0 bytes gfx/pics/sentret/shiny.pal | 4 - gfx/pics/shellder/anim0.asm | 6 - gfx/pics/shellder/anim1.asm | 6 - gfx/pics/shellder/back.2bpp.lz.61e27953 | Bin 395 -> 0 bytes gfx/pics/shellder/back.png | Bin 481 -> 0 bytes gfx/pics/shellder/front.animated.2bpp.lz.df57d475 | Bin 442 -> 0 bytes gfx/pics/shellder/front.png | Bin 605 -> 0 bytes gfx/pics/shellder/shiny.pal | 4 - gfx/pics/shuckle/anim0.asm | 10 - gfx/pics/shuckle/anim1.asm | 6 - gfx/pics/shuckle/back.2bpp.lz.8d66899b | Bin 236 -> 0 bytes gfx/pics/shuckle/back.png | Bin 342 -> 0 bytes gfx/pics/shuckle/front.animated.2bpp.lz.dee153d4 | Bin 379 -> 0 bytes gfx/pics/shuckle/front.png | Bin 633 -> 0 bytes gfx/pics/shuckle/shiny.pal | 4 - gfx/pics/skarmory/anim0.asm | 7 - gfx/pics/skarmory/anim1.asm | 6 - gfx/pics/skarmory/back.2bpp.lz.f5e2e2e4 | Bin 246 -> 0 bytes gfx/pics/skarmory/back.png | Bin 367 -> 0 bytes gfx/pics/skarmory/front.animated.2bpp.lz.7de4675e | Bin 893 -> 0 bytes gfx/pics/skarmory/front.png | Bin 1108 -> 0 bytes gfx/pics/skarmory/shiny.pal | 4 - gfx/pics/skiploom/anim0.asm | 6 - gfx/pics/skiploom/anim1.asm | 6 - gfx/pics/skiploom/back.2bpp.lz.54e87a0c | Bin 302 -> 0 bytes gfx/pics/skiploom/back.png | Bin 405 -> 0 bytes gfx/pics/skiploom/front.animated.2bpp.lz.6436d556 | Bin 468 -> 0 bytes gfx/pics/skiploom/front.png | Bin 638 -> 0 bytes gfx/pics/skiploom/shiny.pal | 4 - gfx/pics/slowbro/anim0.asm | 13 - gfx/pics/slowbro/anim1.asm | 6 - gfx/pics/slowbro/back.2bpp.lz.3676b1f1 | Bin 342 -> 0 bytes gfx/pics/slowbro/back.png | Bin 412 -> 0 bytes gfx/pics/slowbro/front.animated.2bpp.lz.257e2e84 | Bin 917 -> 0 bytes gfx/pics/slowbro/front.png | Bin 1204 -> 0 bytes gfx/pics/slowbro/shiny.pal | 4 - gfx/pics/slowking/anim0.asm | 11 - gfx/pics/slowking/anim1.asm | 4 - gfx/pics/slowking/back.2bpp.lz.a90de69e | Bin 422 -> 0 bytes gfx/pics/slowking/back.png | Bin 507 -> 0 bytes gfx/pics/slowking/front.animated.2bpp.lz.4c2f7140 | Bin 878 -> 0 bytes gfx/pics/slowking/front.png | Bin 1098 -> 0 bytes gfx/pics/slowking/shiny.pal | 4 - gfx/pics/slowpoke/anim0.asm | 5 - gfx/pics/slowpoke/anim1.asm | 3 - gfx/pics/slowpoke/back.2bpp.lz.f2d1bb5c | Bin 235 -> 0 bytes gfx/pics/slowpoke/back.png | Bin 331 -> 0 bytes gfx/pics/slowpoke/front.animated.2bpp.lz.42347014 | Bin 453 -> 0 bytes gfx/pics/slowpoke/front.png | Bin 613 -> 0 bytes gfx/pics/slowpoke/shiny.pal | 4 - gfx/pics/slugma/anim0.asm | 10 - gfx/pics/slugma/anim1.asm | 6 - gfx/pics/slugma/back.2bpp.lz.dc25c77a | Bin 323 -> 0 bytes gfx/pics/slugma/back.png | Bin 406 -> 0 bytes gfx/pics/slugma/front.animated.2bpp.lz.c1a44906 | Bin 454 -> 0 bytes gfx/pics/slugma/front.png | Bin 749 -> 0 bytes gfx/pics/slugma/shiny.pal | 4 - gfx/pics/smeargle/anim0.asm | 7 - gfx/pics/smeargle/anim1.asm | 6 - gfx/pics/smeargle/back.2bpp.lz.2de2de8c | Bin 360 -> 0 bytes gfx/pics/smeargle/back.png | Bin 439 -> 0 bytes gfx/pics/smeargle/front.animated.2bpp.lz.82ec0f51 | Bin 667 -> 0 bytes gfx/pics/smeargle/front.png | Bin 971 -> 0 bytes gfx/pics/smeargle/shiny.pal | 4 - gfx/pics/smoochum/anim0.asm | 5 - gfx/pics/smoochum/anim1.asm | 6 - gfx/pics/smoochum/back.2bpp.lz.af01f906 | Bin 289 -> 0 bytes gfx/pics/smoochum/back.png | Bin 378 -> 0 bytes gfx/pics/smoochum/front.animated.2bpp.lz.5977720b | Bin 453 -> 0 bytes gfx/pics/smoochum/front.png | Bin 593 -> 0 bytes gfx/pics/smoochum/shiny.pal | 4 - gfx/pics/sneasel/anim0.asm | 4 - gfx/pics/sneasel/anim1.asm | 5 - gfx/pics/sneasel/back.2bpp.lz.5298828d | Bin 344 -> 0 bytes gfx/pics/sneasel/back.png | Bin 415 -> 0 bytes gfx/pics/sneasel/front.animated.2bpp.lz.8f7db3e9 | Bin 678 -> 0 bytes gfx/pics/sneasel/front.png | Bin 1004 -> 0 bytes gfx/pics/sneasel/shiny.pal | 4 - gfx/pics/snorlax/anim0.asm | 10 - gfx/pics/snorlax/anim1.asm | 6 - gfx/pics/snorlax/back.2bpp.lz.90570272 | Bin 166 -> 0 bytes gfx/pics/snorlax/back.png | Bin 274 -> 0 bytes gfx/pics/snorlax/front.animated.2bpp.lz.8253357b | Bin 677 -> 0 bytes gfx/pics/snorlax/front.png | Bin 971 -> 0 bytes gfx/pics/snorlax/shiny.pal | 4 - gfx/pics/snubbull/anim0.asm | 11 - gfx/pics/snubbull/anim1.asm | 6 - gfx/pics/snubbull/back.2bpp.lz.26eaaa5d | Bin 331 -> 0 bytes gfx/pics/snubbull/back.png | Bin 431 -> 0 bytes gfx/pics/snubbull/front.animated.2bpp.lz.a1b4eb88 | Bin 633 -> 0 bytes gfx/pics/snubbull/front.png | Bin 882 -> 0 bytes gfx/pics/snubbull/shiny.pal | 4 - gfx/pics/spearow/anim0.asm | 11 - gfx/pics/spearow/anim1.asm | 7 - gfx/pics/spearow/back.2bpp.lz.b8e760aa | Bin 310 -> 0 bytes gfx/pics/spearow/back.png | Bin 416 -> 0 bytes gfx/pics/spearow/front.animated.2bpp.lz.59d61986 | Bin 529 -> 0 bytes gfx/pics/spearow/front.png | Bin 840 -> 0 bytes gfx/pics/spearow/shiny.pal | 4 - gfx/pics/spinarak/anim0.asm | 8 - gfx/pics/spinarak/anim1.asm | 6 - gfx/pics/spinarak/back.2bpp.lz.14002836 | Bin 243 -> 0 bytes gfx/pics/spinarak/back.png | Bin 341 -> 0 bytes gfx/pics/spinarak/front.animated.2bpp.lz.31ab6868 | Bin 302 -> 0 bytes gfx/pics/spinarak/front.png | Bin 474 -> 0 bytes gfx/pics/spinarak/shiny.pal | 4 - gfx/pics/squirtle/anim0.asm | 10 - gfx/pics/squirtle/anim1.asm | 6 - gfx/pics/squirtle/back.2bpp.lz.76295ae8 | Bin 239 -> 0 bytes gfx/pics/squirtle/back.png | Bin 344 -> 0 bytes gfx/pics/squirtle/front.animated.2bpp.lz.9b6f9ec9 | Bin 483 -> 0 bytes gfx/pics/squirtle/front.png | Bin 633 -> 0 bytes gfx/pics/squirtle/shiny.pal | 4 - gfx/pics/stantler/anim0.asm | 9 - gfx/pics/stantler/anim1.asm | 6 - gfx/pics/stantler/back.2bpp.lz.16502aac | Bin 360 -> 0 bytes gfx/pics/stantler/back.png | Bin 483 -> 0 bytes gfx/pics/stantler/front.animated.2bpp.lz.46b7dd06 | Bin 798 -> 0 bytes gfx/pics/stantler/front.png | Bin 1066 -> 0 bytes gfx/pics/stantler/shiny.pal | 4 - gfx/pics/starmie/anim0.asm | 8 - gfx/pics/starmie/anim1.asm | 5 - gfx/pics/starmie/back.2bpp.lz.a8923741 | Bin 267 -> 0 bytes gfx/pics/starmie/back.png | Bin 351 -> 0 bytes gfx/pics/starmie/front.animated.2bpp.lz.522b6699 | Bin 663 -> 0 bytes gfx/pics/starmie/front.png | Bin 911 -> 0 bytes gfx/pics/starmie/shiny.pal | 4 - gfx/pics/staryu/anim0.asm | 8 - gfx/pics/staryu/anim1.asm | 7 - gfx/pics/staryu/back.2bpp.lz.79ea9d00 | Bin 285 -> 0 bytes gfx/pics/staryu/back.png | Bin 379 -> 0 bytes gfx/pics/staryu/front.animated.2bpp.lz.22f1d06b | Bin 517 -> 0 bytes gfx/pics/staryu/front.png | Bin 783 -> 0 bytes gfx/pics/staryu/shiny.pal | 4 - gfx/pics/steelix/anim0.asm | 7 - gfx/pics/steelix/anim1.asm | 6 - gfx/pics/steelix/back.2bpp.lz.f3c03e61 | Bin 384 -> 0 bytes gfx/pics/steelix/back.png | Bin 518 -> 0 bytes gfx/pics/steelix/front.animated.2bpp.lz.42f3f8d1 | Bin 996 -> 0 bytes gfx/pics/steelix/front.png | Bin 1397 -> 0 bytes gfx/pics/steelix/shiny.pal | 4 - gfx/pics/sudowoodo/anim0.asm | 8 - gfx/pics/sudowoodo/anim1.asm | 6 - gfx/pics/sudowoodo/back.2bpp.lz.728036c6 | Bin 369 -> 0 bytes gfx/pics/sudowoodo/back.png | Bin 454 -> 0 bytes gfx/pics/sudowoodo/front.animated.2bpp.lz.b0f04991 | Bin 574 -> 0 bytes gfx/pics/sudowoodo/front.png | Bin 715 -> 0 bytes gfx/pics/sudowoodo/shiny.pal | 4 - gfx/pics/suicune/anim0.asm | 13 - gfx/pics/suicune/anim1.asm | 7 - gfx/pics/suicune/back.2bpp.lz.5c49d112 | Bin 423 -> 0 bytes gfx/pics/suicune/back.png | Bin 518 -> 0 bytes gfx/pics/suicune/front.animated.2bpp.lz.64698c0a | Bin 1085 -> 0 bytes gfx/pics/suicune/front.png | Bin 1669 -> 0 bytes gfx/pics/suicune/shiny.pal | 4 - gfx/pics/sunflora/anim0.asm | 5 - gfx/pics/sunflora/anim1.asm | 6 - gfx/pics/sunflora/back.2bpp.lz.9d0684f0 | Bin 415 -> 0 bytes gfx/pics/sunflora/back.png | Bin 505 -> 0 bytes gfx/pics/sunflora/front.animated.2bpp.lz.258c3e67 | Bin 619 -> 0 bytes gfx/pics/sunflora/front.png | Bin 907 -> 0 bytes gfx/pics/sunflora/shiny.pal | 4 - gfx/pics/sunkern/anim0.asm | 7 - gfx/pics/sunkern/anim1.asm | 6 - gfx/pics/sunkern/back.2bpp.lz.d28f6303 | Bin 309 -> 0 bytes gfx/pics/sunkern/back.png | Bin 393 -> 0 bytes gfx/pics/sunkern/front.animated.2bpp.lz.316c5261 | Bin 371 -> 0 bytes gfx/pics/sunkern/front.png | Bin 539 -> 0 bytes gfx/pics/sunkern/shiny.pal | 4 - gfx/pics/swinub/anim0.asm | 7 - gfx/pics/swinub/anim1.asm | 6 - gfx/pics/swinub/back.2bpp.lz.1ebbfabf | Bin 224 -> 0 bytes gfx/pics/swinub/back.png | Bin 287 -> 0 bytes gfx/pics/swinub/front.animated.2bpp.lz.228147a5 | Bin 298 -> 0 bytes gfx/pics/swinub/front.png | Bin 397 -> 0 bytes gfx/pics/swinub/shiny.pal | 4 - gfx/pics/tangela/anim0.asm | 5 - gfx/pics/tangela/anim1.asm | 6 - gfx/pics/tangela/back.2bpp.lz.435194a6 | Bin 229 -> 0 bytes gfx/pics/tangela/back.png | Bin 321 -> 0 bytes gfx/pics/tangela/front.animated.2bpp.lz.7cb3fed8 | Bin 633 -> 0 bytes gfx/pics/tangela/front.png | Bin 806 -> 0 bytes gfx/pics/tangela/shiny.pal | 4 - gfx/pics/tauros/anim0.asm | 11 - gfx/pics/tauros/anim1.asm | 6 - gfx/pics/tauros/back.2bpp.lz.f487c586 | Bin 231 -> 0 bytes gfx/pics/tauros/back.png | Bin 305 -> 0 bytes gfx/pics/tauros/front.animated.2bpp.lz.982dd0db | Bin 1108 -> 0 bytes gfx/pics/tauros/front.png | Bin 1527 -> 0 bytes gfx/pics/tauros/shiny.pal | 4 - gfx/pics/teddiursa/anim0.asm | 9 - gfx/pics/teddiursa/anim1.asm | 6 - gfx/pics/teddiursa/back.2bpp.lz.53f6e34e | Bin 276 -> 0 bytes gfx/pics/teddiursa/back.png | Bin 344 -> 0 bytes gfx/pics/teddiursa/front.animated.2bpp.lz.5f9648c7 | Bin 395 -> 0 bytes gfx/pics/teddiursa/front.png | Bin 594 -> 0 bytes gfx/pics/teddiursa/shiny.pal | 4 - gfx/pics/tentacool/anim0.asm | 6 - gfx/pics/tentacool/anim1.asm | 6 - gfx/pics/tentacool/back.2bpp.lz.ae7b2102 | Bin 295 -> 0 bytes gfx/pics/tentacool/back.png | Bin 397 -> 0 bytes gfx/pics/tentacool/front.animated.2bpp.lz.7a86457c | Bin 441 -> 0 bytes gfx/pics/tentacool/front.png | Bin 652 -> 0 bytes gfx/pics/tentacool/shiny.pal | 4 - gfx/pics/tentacruel/anim0.asm | 7 - gfx/pics/tentacruel/anim1.asm | 7 - gfx/pics/tentacruel/back.2bpp.lz.0e344f19 | Bin 375 -> 0 bytes gfx/pics/tentacruel/back.png | Bin 437 -> 0 bytes .../tentacruel/front.animated.2bpp.lz.f13e5904 | Bin 702 -> 0 bytes gfx/pics/tentacruel/front.png | Bin 876 -> 0 bytes gfx/pics/tentacruel/shiny.pal | 4 - gfx/pics/togepi/anim0.asm | 8 - gfx/pics/togepi/anim1.asm | 6 - gfx/pics/togepi/back.2bpp.lz.0e22cc02 | Bin 270 -> 0 bytes gfx/pics/togepi/back.png | Bin 376 -> 0 bytes gfx/pics/togepi/front.animated.2bpp.lz.0cf7ba07 | Bin 321 -> 0 bytes gfx/pics/togepi/front.png | Bin 469 -> 0 bytes gfx/pics/togepi/shiny.pal | 4 - gfx/pics/togetic/anim0.asm | 8 - gfx/pics/togetic/anim1.asm | 6 - gfx/pics/togetic/back.2bpp.lz.62cbb330 | Bin 368 -> 0 bytes gfx/pics/togetic/back.png | Bin 464 -> 0 bytes gfx/pics/togetic/front.animated.2bpp.lz.5797583e | Bin 644 -> 0 bytes gfx/pics/togetic/front.png | Bin 962 -> 0 bytes gfx/pics/togetic/shiny.pal | 4 - gfx/pics/totodile/anim0.asm | 10 - gfx/pics/totodile/anim1.asm | 7 - gfx/pics/totodile/back.2bpp.lz.ab6bc2a1 | Bin 332 -> 0 bytes gfx/pics/totodile/back.png | Bin 405 -> 0 bytes gfx/pics/totodile/front.animated.2bpp.lz.afce8cd0 | Bin 561 -> 0 bytes gfx/pics/totodile/front.png | Bin 765 -> 0 bytes gfx/pics/totodile/shiny.pal | 4 - gfx/pics/typhlosion/anim0.asm | 11 - gfx/pics/typhlosion/anim1.asm | 6 - gfx/pics/typhlosion/back.2bpp.lz.83be0292 | Bin 388 -> 0 bytes gfx/pics/typhlosion/back.png | Bin 462 -> 0 bytes .../typhlosion/front.animated.2bpp.lz.65adc1e1 | Bin 941 -> 0 bytes gfx/pics/typhlosion/front.png | Bin 1240 -> 0 bytes gfx/pics/typhlosion/shiny.pal | 4 - gfx/pics/tyranitar/anim0.asm | 9 - gfx/pics/tyranitar/anim1.asm | 6 - gfx/pics/tyranitar/back.2bpp.lz.05b022c9 | Bin 413 -> 0 bytes gfx/pics/tyranitar/back.png | Bin 497 -> 0 bytes gfx/pics/tyranitar/front.animated.2bpp.lz.e0e9187e | Bin 1021 -> 0 bytes gfx/pics/tyranitar/front.png | Bin 1479 -> 0 bytes gfx/pics/tyranitar/shiny.pal | 4 - gfx/pics/tyrogue/anim0.asm | 7 - gfx/pics/tyrogue/anim1.asm | 6 - gfx/pics/tyrogue/back.2bpp.lz.5d84cef1 | Bin 361 -> 0 bytes gfx/pics/tyrogue/back.png | Bin 465 -> 0 bytes gfx/pics/tyrogue/front.animated.2bpp.lz.a3790421 | Bin 470 -> 0 bytes gfx/pics/tyrogue/front.png | Bin 755 -> 0 bytes gfx/pics/tyrogue/shiny.pal | 4 - gfx/pics/umbreon/anim0.asm | 9 - gfx/pics/umbreon/anim1.asm | 6 - gfx/pics/umbreon/back.2bpp.lz.55e50b8c | Bin 343 -> 0 bytes gfx/pics/umbreon/back.png | Bin 433 -> 0 bytes gfx/pics/umbreon/front.animated.2bpp.lz.b484be57 | Bin 618 -> 0 bytes gfx/pics/umbreon/front.png | Bin 977 -> 0 bytes gfx/pics/umbreon/shiny.pal | 4 - gfx/pics/unown/anim0.asm | 12 - gfx/pics/unown/anim1.asm | 6 - gfx/pics/unown/bitmask.asm | 31 - gfx/pics/unown/frames.asm | 45 - gfx/pics/unown/normal.pal | 4 - gfx/pics/unown/shiny.pal | 4 - gfx/pics/unown_a/anim0.asm | 13 - gfx/pics/unown_a/anim1.asm | 6 - gfx/pics/unown_a/back.2bpp.lz.b8389572 | Bin 123 -> 0 bytes gfx/pics/unown_a/back.png | Bin 257 -> 0 bytes gfx/pics/unown_a/front.animated.2bpp.lz.47e16756 | Bin 203 -> 0 bytes gfx/pics/unown_a/front.png | Bin 326 -> 0 bytes gfx/pics/unown_anim_pointers.asm | 27 - gfx/pics/unown_anims.asm | 27 - gfx/pics/unown_b/anim0.asm | 9 - gfx/pics/unown_b/anim1.asm | 6 - gfx/pics/unown_b/back.2bpp.lz.72a0840f | Bin 131 -> 0 bytes gfx/pics/unown_b/back.png | Bin 243 -> 0 bytes gfx/pics/unown_b/front.animated.2bpp.lz.5742d494 | Bin 235 -> 0 bytes gfx/pics/unown_b/front.png | Bin 347 -> 0 bytes gfx/pics/unown_bitmask_pointers.asm | 27 - gfx/pics/unown_bitmasks.asm | 26 - gfx/pics/unown_c/anim0.asm | 9 - gfx/pics/unown_c/anim1.asm | 6 - gfx/pics/unown_c/back.2bpp.lz.f92b665a | Bin 180 -> 0 bytes gfx/pics/unown_c/back.png | Bin 295 -> 0 bytes gfx/pics/unown_c/front.animated.2bpp.lz.5fef639b | Bin 300 -> 0 bytes gfx/pics/unown_c/front.png | Bin 363 -> 0 bytes gfx/pics/unown_d/anim0.asm | 8 - gfx/pics/unown_d/anim1.asm | 6 - gfx/pics/unown_d/back.2bpp.lz.c8213d32 | Bin 150 -> 0 bytes gfx/pics/unown_d/back.png | Bin 252 -> 0 bytes gfx/pics/unown_d/front.animated.2bpp.lz.7810a57f | Bin 385 -> 0 bytes gfx/pics/unown_d/front.png | Bin 423 -> 0 bytes gfx/pics/unown_e/anim0.asm | 9 - gfx/pics/unown_e/anim1.asm | 6 - gfx/pics/unown_e/back.2bpp.lz.777a8ecd | Bin 140 -> 0 bytes gfx/pics/unown_e/back.png | Bin 238 -> 0 bytes gfx/pics/unown_e/front.animated.2bpp.lz.83f43ff7 | Bin 242 -> 0 bytes gfx/pics/unown_e/front.png | Bin 320 -> 0 bytes gfx/pics/unown_extra_pointers.asm | 27 - gfx/pics/unown_extras.asm | 26 - gfx/pics/unown_f/anim0.asm | 10 - gfx/pics/unown_f/anim1.asm | 6 - gfx/pics/unown_f/back.2bpp.lz.3fe1c85a | Bin 153 -> 0 bytes gfx/pics/unown_f/back.png | Bin 259 -> 0 bytes gfx/pics/unown_f/front.animated.2bpp.lz.ec888954 | Bin 207 -> 0 bytes gfx/pics/unown_f/front.png | Bin 327 -> 0 bytes gfx/pics/unown_frame_pointers.asm | 27 - gfx/pics/unown_frames.asm | 27 - gfx/pics/unown_g/anim0.asm | 7 - gfx/pics/unown_g/anim1.asm | 6 - gfx/pics/unown_g/back.2bpp.lz.91650439 | Bin 164 -> 0 bytes gfx/pics/unown_g/back.png | Bin 257 -> 0 bytes gfx/pics/unown_g/front.animated.2bpp.lz.c0b74162 | Bin 281 -> 0 bytes gfx/pics/unown_g/front.png | Bin 334 -> 0 bytes gfx/pics/unown_h/anim0.asm | 11 - gfx/pics/unown_h/anim1.asm | 6 - gfx/pics/unown_h/back.2bpp.lz.78421e5b | Bin 176 -> 0 bytes gfx/pics/unown_h/back.png | Bin 287 -> 0 bytes gfx/pics/unown_h/front.animated.2bpp.lz.9a6afeb9 | Bin 253 -> 0 bytes gfx/pics/unown_h/front.png | Bin 380 -> 0 bytes gfx/pics/unown_i/anim0.asm | 8 - gfx/pics/unown_i/anim1.asm | 6 - gfx/pics/unown_i/back.2bpp.lz.7feb4b30 | Bin 94 -> 0 bytes gfx/pics/unown_i/back.png | Bin 209 -> 0 bytes gfx/pics/unown_i/front.animated.2bpp.lz.f5e7f816 | Bin 163 -> 0 bytes gfx/pics/unown_i/front.png | Bin 262 -> 0 bytes gfx/pics/unown_j/anim0.asm | 8 - gfx/pics/unown_j/anim1.asm | 6 - gfx/pics/unown_j/back.2bpp.lz.b0f3bec2 | Bin 131 -> 0 bytes gfx/pics/unown_j/back.png | Bin 236 -> 0 bytes gfx/pics/unown_j/front.animated.2bpp.lz.d8bf9223 | Bin 229 -> 0 bytes gfx/pics/unown_j/front.png | Bin 297 -> 0 bytes gfx/pics/unown_k/anim0.asm | 8 - gfx/pics/unown_k/anim1.asm | 6 - gfx/pics/unown_k/back.2bpp.lz.745fda48 | Bin 117 -> 0 bytes gfx/pics/unown_k/back.png | Bin 232 -> 0 bytes gfx/pics/unown_k/front.animated.2bpp.lz.fb25b385 | Bin 241 -> 0 bytes gfx/pics/unown_k/front.png | Bin 341 -> 0 bytes gfx/pics/unown_l/anim0.asm | 12 - gfx/pics/unown_l/anim1.asm | 6 - gfx/pics/unown_l/back.2bpp.lz.e38e0d57 | Bin 108 -> 0 bytes gfx/pics/unown_l/back.png | Bin 230 -> 0 bytes gfx/pics/unown_l/front.animated.2bpp.lz.26195a59 | Bin 211 -> 0 bytes gfx/pics/unown_l/front.png | Bin 305 -> 0 bytes gfx/pics/unown_m/anim0.asm | 12 - gfx/pics/unown_m/anim1.asm | 6 - gfx/pics/unown_m/back.2bpp.lz.38d93bc8 | Bin 121 -> 0 bytes gfx/pics/unown_m/back.png | Bin 303 -> 0 bytes gfx/pics/unown_m/front.animated.2bpp.lz.2659315e | Bin 208 -> 0 bytes gfx/pics/unown_m/front.png | Bin 423 -> 0 bytes gfx/pics/unown_n/anim0.asm | 10 - gfx/pics/unown_n/anim1.asm | 6 - gfx/pics/unown_n/back.2bpp.lz.c8b7d3a4 | Bin 123 -> 0 bytes gfx/pics/unown_n/back.png | Bin 252 -> 0 bytes gfx/pics/unown_n/front.animated.2bpp.lz.96ce7c62 | Bin 230 -> 0 bytes gfx/pics/unown_n/front.png | Bin 397 -> 0 bytes gfx/pics/unown_o/anim0.asm | 8 - gfx/pics/unown_o/anim1.asm | 6 - gfx/pics/unown_o/back.2bpp.lz.89ba693c | Bin 130 -> 0 bytes gfx/pics/unown_o/back.png | Bin 282 -> 0 bytes gfx/pics/unown_o/front.animated.2bpp.lz.a9151b66 | Bin 260 -> 0 bytes gfx/pics/unown_o/front.png | Bin 414 -> 0 bytes gfx/pics/unown_p/anim0.asm | 5 - gfx/pics/unown_p/anim1.asm | 6 - gfx/pics/unown_p/back.2bpp.lz.09c618c4 | Bin 94 -> 0 bytes gfx/pics/unown_p/back.png | Bin 224 -> 0 bytes gfx/pics/unown_p/front.animated.2bpp.lz.83a096fc | Bin 185 -> 0 bytes gfx/pics/unown_p/front.png | Bin 273 -> 0 bytes gfx/pics/unown_pic_pointers.asm | 54 - gfx/pics/unown_q/anim0.asm | 8 - gfx/pics/unown_q/anim1.asm | 6 - gfx/pics/unown_q/back.2bpp.lz.e32430b4 | Bin 105 -> 0 bytes gfx/pics/unown_q/back.png | Bin 215 -> 0 bytes gfx/pics/unown_q/front.animated.2bpp.lz.44dad60c | Bin 189 -> 0 bytes gfx/pics/unown_q/front.png | Bin 277 -> 0 bytes gfx/pics/unown_r/anim0.asm | 8 - gfx/pics/unown_r/anim1.asm | 6 - gfx/pics/unown_r/back.2bpp.lz.5df8287c | Bin 90 -> 0 bytes gfx/pics/unown_r/back.png | Bin 219 -> 0 bytes gfx/pics/unown_r/front.animated.2bpp.lz.8e67e3fc | Bin 146 -> 0 bytes gfx/pics/unown_r/front.png | Bin 254 -> 0 bytes gfx/pics/unown_s/anim0.asm | 10 - gfx/pics/unown_s/anim1.asm | 6 - gfx/pics/unown_s/back.2bpp.lz.abd4ad58 | Bin 146 -> 0 bytes gfx/pics/unown_s/back.png | Bin 265 -> 0 bytes gfx/pics/unown_s/front.animated.2bpp.lz.f3db4e89 | Bin 261 -> 0 bytes gfx/pics/unown_s/front.png | Bin 340 -> 0 bytes gfx/pics/unown_t/anim0.asm | 8 - gfx/pics/unown_t/anim1.asm | 6 - gfx/pics/unown_t/back.2bpp.lz.87d48ca0 | Bin 116 -> 0 bytes gfx/pics/unown_t/back.png | Bin 220 -> 0 bytes gfx/pics/unown_t/front.animated.2bpp.lz.8bdc40ae | Bin 259 -> 0 bytes gfx/pics/unown_t/front.png | Bin 331 -> 0 bytes gfx/pics/unown_u/anim0.asm | 6 - gfx/pics/unown_u/anim1.asm | 6 - gfx/pics/unown_u/back.2bpp.lz.40b63dfb | Bin 107 -> 0 bytes gfx/pics/unown_u/back.png | Bin 273 -> 0 bytes gfx/pics/unown_u/front.animated.2bpp.lz.2690db54 | Bin 192 -> 0 bytes gfx/pics/unown_u/front.png | Bin 380 -> 0 bytes gfx/pics/unown_v/anim0.asm | 6 - gfx/pics/unown_v/anim1.asm | 6 - gfx/pics/unown_v/back.2bpp.lz.5b1a6acc | Bin 156 -> 0 bytes gfx/pics/unown_v/back.png | Bin 260 -> 0 bytes gfx/pics/unown_v/front.animated.2bpp.lz.d196c60e | Bin 275 -> 0 bytes gfx/pics/unown_v/front.png | Bin 331 -> 0 bytes gfx/pics/unown_w/anim0.asm | 6 - gfx/pics/unown_w/anim1.asm | 6 - gfx/pics/unown_w/back.2bpp.lz.a55282bf | Bin 126 -> 0 bytes gfx/pics/unown_w/back.png | Bin 255 -> 0 bytes gfx/pics/unown_w/front.animated.2bpp.lz.5b45fa3d | Bin 301 -> 0 bytes gfx/pics/unown_w/front.png | Bin 386 -> 0 bytes gfx/pics/unown_x/anim0.asm | 8 - gfx/pics/unown_x/anim1.asm | 6 - gfx/pics/unown_x/back.2bpp.lz.0001a198 | Bin 113 -> 0 bytes gfx/pics/unown_x/back.png | Bin 242 -> 0 bytes gfx/pics/unown_x/front.animated.2bpp.lz.3362c680 | Bin 230 -> 0 bytes gfx/pics/unown_x/front.png | Bin 323 -> 0 bytes gfx/pics/unown_y/anim0.asm | 9 - gfx/pics/unown_y/anim1.asm | 6 - gfx/pics/unown_y/back.2bpp.lz.292d9ff2 | Bin 102 -> 0 bytes gfx/pics/unown_y/back.png | Bin 248 -> 0 bytes gfx/pics/unown_y/front.animated.2bpp.lz.8cd89db4 | Bin 173 -> 0 bytes gfx/pics/unown_y/front.png | Bin 337 -> 0 bytes gfx/pics/unown_z/anim0.asm | 9 - gfx/pics/unown_z/anim1.asm | 6 - gfx/pics/unown_z/back.2bpp.lz.a41240a1 | Bin 127 -> 0 bytes gfx/pics/unown_z/back.png | Bin 225 -> 0 bytes gfx/pics/unown_z/front.animated.2bpp.lz.2d4170a0 | Bin 299 -> 0 bytes gfx/pics/unown_z/front.png | Bin 367 -> 0 bytes gfx/pics/ursaring/anim0.asm | 9 - gfx/pics/ursaring/anim1.asm | 6 - gfx/pics/ursaring/back.2bpp.lz.0966cee1 | Bin 277 -> 0 bytes gfx/pics/ursaring/back.png | Bin 362 -> 0 bytes gfx/pics/ursaring/front.animated.2bpp.lz.5bcb8114 | Bin 727 -> 0 bytes gfx/pics/ursaring/front.png | Bin 1127 -> 0 bytes gfx/pics/ursaring/shiny.pal | 4 - gfx/pics/vaporeon/anim0.asm | 7 - gfx/pics/vaporeon/anim1.asm | 6 - gfx/pics/vaporeon/back.2bpp.lz.aafe2ea4 | Bin 296 -> 0 bytes gfx/pics/vaporeon/back.png | Bin 405 -> 0 bytes gfx/pics/vaporeon/front.animated.2bpp.lz.6e1ee993 | Bin 691 -> 0 bytes gfx/pics/vaporeon/front.png | Bin 947 -> 0 bytes gfx/pics/vaporeon/shiny.pal | 4 - gfx/pics/venomoth/anim0.asm | 6 - gfx/pics/venomoth/anim1.asm | 6 - gfx/pics/venomoth/back.2bpp.lz.ba3cccb7 | Bin 450 -> 0 bytes gfx/pics/venomoth/back.png | Bin 537 -> 0 bytes gfx/pics/venomoth/front.animated.2bpp.lz.6c0096ec | Bin 796 -> 0 bytes gfx/pics/venomoth/front.png | Bin 1084 -> 0 bytes gfx/pics/venomoth/shiny.pal | 4 - gfx/pics/venonat/anim0.asm | 16 - gfx/pics/venonat/anim1.asm | 6 - gfx/pics/venonat/back.2bpp.lz.63b1017a | Bin 351 -> 0 bytes gfx/pics/venonat/back.png | Bin 428 -> 0 bytes gfx/pics/venonat/front.animated.2bpp.lz.02a36f08 | Bin 481 -> 0 bytes gfx/pics/venonat/front.png | Bin 636 -> 0 bytes gfx/pics/venonat/shiny.pal | 4 - gfx/pics/venusaur/anim0.asm | 10 - gfx/pics/venusaur/anim1.asm | 6 - gfx/pics/venusaur/back.2bpp.lz.1d5b9ebe | Bin 418 -> 0 bytes gfx/pics/venusaur/back.png | Bin 494 -> 0 bytes gfx/pics/venusaur/front.animated.2bpp.lz.48d131f4 | Bin 1098 -> 0 bytes gfx/pics/venusaur/front.png | Bin 1441 -> 0 bytes gfx/pics/venusaur/shiny.pal | 4 - gfx/pics/victreebel/anim0.asm | 7 - gfx/pics/victreebel/anim1.asm | 7 - gfx/pics/victreebel/back.2bpp.lz.a80b1dc4 | Bin 322 -> 0 bytes gfx/pics/victreebel/back.png | Bin 397 -> 0 bytes .../victreebel/front.animated.2bpp.lz.d5d535c1 | Bin 892 -> 0 bytes gfx/pics/victreebel/front.png | Bin 1203 -> 0 bytes gfx/pics/victreebel/shiny.pal | 4 - gfx/pics/vileplume/anim0.asm | 10 - gfx/pics/vileplume/anim1.asm | 8 - gfx/pics/vileplume/back.2bpp.lz.9f944092 | Bin 366 -> 0 bytes gfx/pics/vileplume/back.png | Bin 424 -> 0 bytes gfx/pics/vileplume/front.animated.2bpp.lz.db2287e6 | Bin 708 -> 0 bytes gfx/pics/vileplume/front.png | Bin 851 -> 0 bytes gfx/pics/vileplume/shiny.pal | 4 - gfx/pics/voltorb/anim0.asm | 8 - gfx/pics/voltorb/anim1.asm | 7 - gfx/pics/voltorb/back.2bpp.lz.f19cefe9 | Bin 229 -> 0 bytes gfx/pics/voltorb/back.png | Bin 318 -> 0 bytes gfx/pics/voltorb/front.animated.2bpp.lz.64051f97 | Bin 282 -> 0 bytes gfx/pics/voltorb/front.png | Bin 399 -> 0 bytes gfx/pics/voltorb/shiny.pal | 4 - gfx/pics/vulpix/anim0.asm | 11 - gfx/pics/vulpix/anim1.asm | 7 - gfx/pics/vulpix/back.2bpp.lz.0c7852c8 | Bin 357 -> 0 bytes gfx/pics/vulpix/back.png | Bin 444 -> 0 bytes gfx/pics/vulpix/front.animated.2bpp.lz.df94d884 | Bin 695 -> 0 bytes gfx/pics/vulpix/front.png | Bin 904 -> 0 bytes gfx/pics/vulpix/shiny.pal | 4 - gfx/pics/wartortle/anim0.asm | 8 - gfx/pics/wartortle/anim1.asm | 6 - gfx/pics/wartortle/back.2bpp.lz.f2338cb4 | Bin 358 -> 0 bytes gfx/pics/wartortle/back.png | Bin 439 -> 0 bytes gfx/pics/wartortle/front.animated.2bpp.lz.f50d25f5 | Bin 741 -> 0 bytes gfx/pics/wartortle/front.png | Bin 942 -> 0 bytes gfx/pics/wartortle/shiny.pal | 4 - gfx/pics/weedle/anim0.asm | 10 - gfx/pics/weedle/anim1.asm | 12 - gfx/pics/weedle/back.2bpp.lz.f26ac339 | Bin 256 -> 0 bytes gfx/pics/weedle/back.png | Bin 363 -> 0 bytes gfx/pics/weedle/front.animated.2bpp.lz.9e1dedbd | Bin 333 -> 0 bytes gfx/pics/weedle/front.png | Bin 538 -> 0 bytes gfx/pics/weedle/shiny.pal | 4 - gfx/pics/weepinbell/anim0.asm | 8 - gfx/pics/weepinbell/anim1.asm | 6 - gfx/pics/weepinbell/back.2bpp.lz.f84a5fe6 | Bin 334 -> 0 bytes gfx/pics/weepinbell/back.png | Bin 410 -> 0 bytes .../weepinbell/front.animated.2bpp.lz.7b06c092 | Bin 567 -> 0 bytes gfx/pics/weepinbell/front.png | Bin 764 -> 0 bytes gfx/pics/weepinbell/shiny.pal | 4 - gfx/pics/weezing/anim0.asm | 8 - gfx/pics/weezing/anim1.asm | 8 - gfx/pics/weezing/back.2bpp.lz.5ac5b672 | Bin 340 -> 0 bytes gfx/pics/weezing/back.png | Bin 417 -> 0 bytes gfx/pics/weezing/front.animated.2bpp.lz.75928bd0 | Bin 909 -> 0 bytes gfx/pics/weezing/front.png | Bin 1384 -> 0 bytes gfx/pics/weezing/shiny.pal | 4 - gfx/pics/wigglytuff/anim0.asm | 9 - gfx/pics/wigglytuff/anim1.asm | 6 - gfx/pics/wigglytuff/back.2bpp.lz.fee674ac | Bin 258 -> 0 bytes gfx/pics/wigglytuff/back.png | Bin 333 -> 0 bytes .../wigglytuff/front.animated.2bpp.lz.49311d0b | Bin 670 -> 0 bytes gfx/pics/wigglytuff/front.png | Bin 852 -> 0 bytes gfx/pics/wigglytuff/shiny.pal | 4 - gfx/pics/wobbuffet/anim0.asm | 4 - gfx/pics/wobbuffet/anim1.asm | 3 - gfx/pics/wobbuffet/back.2bpp.lz.a862192a | Bin 270 -> 0 bytes gfx/pics/wobbuffet/back.png | Bin 343 -> 0 bytes gfx/pics/wobbuffet/front.animated.2bpp.lz.f1f4687d | Bin 595 -> 0 bytes gfx/pics/wobbuffet/front.png | Bin 698 -> 0 bytes gfx/pics/wobbuffet/shiny.pal | 4 - gfx/pics/wooper/anim0.asm | 8 - gfx/pics/wooper/anim1.asm | 6 - gfx/pics/wooper/back.2bpp.lz.4f4b7917 | Bin 233 -> 0 bytes gfx/pics/wooper/back.png | Bin 338 -> 0 bytes gfx/pics/wooper/front.animated.2bpp.lz.4e440469 | Bin 352 -> 0 bytes gfx/pics/wooper/front.png | Bin 521 -> 0 bytes gfx/pics/wooper/shiny.pal | 4 - gfx/pics/xatu/anim0.asm | 10 - gfx/pics/xatu/anim1.asm | 11 - gfx/pics/xatu/back.2bpp.lz.4de765ff | Bin 320 -> 0 bytes gfx/pics/xatu/back.png | Bin 396 -> 0 bytes gfx/pics/xatu/front.animated.2bpp.lz.4f452e43 | Bin 599 -> 0 bytes gfx/pics/xatu/front.png | Bin 852 -> 0 bytes gfx/pics/xatu/shiny.pal | 4 - gfx/pics/yanma/anim0.asm | 9 - gfx/pics/yanma/anim1.asm | 6 - gfx/pics/yanma/back.2bpp.lz.2ca27ab3 | Bin 433 -> 0 bytes gfx/pics/yanma/back.png | Bin 514 -> 0 bytes gfx/pics/yanma/front.animated.2bpp.lz.25f91adf | Bin 668 -> 0 bytes gfx/pics/yanma/front.png | Bin 926 -> 0 bytes gfx/pics/yanma/shiny.pal | 4 - gfx/pics/zapdos/anim0.asm | 7 - gfx/pics/zapdos/anim1.asm | 5 - gfx/pics/zapdos/back.2bpp.lz.a44c7524 | Bin 307 -> 0 bytes gfx/pics/zapdos/back.png | Bin 427 -> 0 bytes gfx/pics/zapdos/front.animated.2bpp.lz.05cb214a | Bin 1012 -> 0 bytes gfx/pics/zapdos/front.png | Bin 1258 -> 0 bytes gfx/pics/zapdos/shiny.pal | 4 - gfx/pics/zubat/anim0.asm | 8 - gfx/pics/zubat/anim1.asm | 7 - gfx/pics/zubat/back.2bpp.lz.aa77eb62 | Bin 395 -> 0 bytes gfx/pics/zubat/back.png | Bin 466 -> 0 bytes gfx/pics/zubat/front.animated.2bpp.lz.f12e6581 | Bin 463 -> 0 bytes gfx/pics/zubat/front.png | Bin 616 -> 0 bytes gfx/pics/zubat/shiny.pal | 4 - gfx/pokemon/abra/anim0.asm | 7 + gfx/pokemon/abra/anim1.asm | 6 + gfx/pokemon/abra/back.2bpp.lz.9ac09a32 | Bin 0 -> 335 bytes gfx/pokemon/abra/back.png | Bin 0 -> 445 bytes gfx/pokemon/abra/front.animated.2bpp.lz.12e14d9a | Bin 0 -> 459 bytes gfx/pokemon/abra/front.png | Bin 0 -> 674 bytes gfx/pokemon/abra/shiny.pal | 4 + gfx/pokemon/aerodactyl/anim0.asm | 9 + gfx/pokemon/aerodactyl/anim1.asm | 6 + gfx/pokemon/aerodactyl/back.2bpp.lz.e2da1f61 | Bin 0 -> 334 bytes gfx/pokemon/aerodactyl/back.png | Bin 0 -> 414 bytes .../aerodactyl/front.animated.2bpp.lz.3bceb33e | Bin 0 -> 849 bytes gfx/pokemon/aerodactyl/front.png | Bin 0 -> 1159 bytes gfx/pokemon/aerodactyl/shiny.pal | 4 + gfx/pokemon/aipom/anim0.asm | 7 + gfx/pokemon/aipom/anim1.asm | 6 + gfx/pokemon/aipom/back.2bpp.lz.597d4dda | Bin 0 -> 333 bytes gfx/pokemon/aipom/back.png | Bin 0 -> 410 bytes gfx/pokemon/aipom/front.animated.2bpp.lz.fba7c862 | Bin 0 -> 461 bytes gfx/pokemon/aipom/front.png | Bin 0 -> 664 bytes gfx/pokemon/aipom/shiny.pal | 4 + gfx/pokemon/alakazam/anim0.asm | 9 + gfx/pokemon/alakazam/anim1.asm | 5 + gfx/pokemon/alakazam/back.2bpp.lz.75e7e1c6 | Bin 0 -> 461 bytes gfx/pokemon/alakazam/back.png | Bin 0 -> 532 bytes .../alakazam/front.animated.2bpp.lz.b246e050 | Bin 0 -> 985 bytes gfx/pokemon/alakazam/front.png | Bin 0 -> 1482 bytes gfx/pokemon/alakazam/shiny.pal | 4 + gfx/pokemon/ampharos/anim0.asm | 10 + gfx/pokemon/ampharos/anim1.asm | 7 + gfx/pokemon/ampharos/back.2bpp.lz.06af98c8 | Bin 0 -> 266 bytes gfx/pokemon/ampharos/back.png | Bin 0 -> 394 bytes .../ampharos/front.animated.2bpp.lz.4b908a28 | Bin 0 -> 721 bytes gfx/pokemon/ampharos/front.png | Bin 0 -> 1141 bytes gfx/pokemon/ampharos/shiny.pal | 4 + gfx/pokemon/anim_pointers.asm | 252 ++++ gfx/pokemon/animation.asm | 1140 ++++++++++++++++++ gfx/pokemon/anims.asm | 253 ++++ gfx/pokemon/arbok/anim0.asm | 15 + gfx/pokemon/arbok/anim1.asm | 8 + gfx/pokemon/arbok/back.2bpp.lz.7b18cb93 | Bin 0 -> 279 bytes gfx/pokemon/arbok/back.png | Bin 0 -> 354 bytes gfx/pokemon/arbok/front.animated.2bpp.lz.1589a977 | Bin 0 -> 1009 bytes gfx/pokemon/arbok/front.png | Bin 0 -> 1533 bytes gfx/pokemon/arbok/shiny.pal | 4 + gfx/pokemon/arcanine/anim0.asm | 7 + gfx/pokemon/arcanine/anim1.asm | 6 + gfx/pokemon/arcanine/back.2bpp.lz.f5b35ebf | Bin 0 -> 393 bytes gfx/pokemon/arcanine/back.png | Bin 0 -> 468 bytes .../arcanine/front.animated.2bpp.lz.5ae8eff3 | Bin 0 -> 1023 bytes gfx/pokemon/arcanine/front.png | Bin 0 -> 1580 bytes gfx/pokemon/arcanine/shiny.pal | 4 + gfx/pokemon/ariados/anim0.asm | 8 + gfx/pokemon/ariados/anim1.asm | 8 + gfx/pokemon/ariados/back.2bpp.lz.9fb1c3fc | Bin 0 -> 345 bytes gfx/pokemon/ariados/back.png | Bin 0 -> 428 bytes .../ariados/front.animated.2bpp.lz.5ac5c83c | Bin 0 -> 747 bytes gfx/pokemon/ariados/front.png | Bin 0 -> 1036 bytes gfx/pokemon/ariados/shiny.pal | 4 + gfx/pokemon/articuno/anim0.asm | 9 + gfx/pokemon/articuno/anim1.asm | 8 + gfx/pokemon/articuno/back.2bpp.lz.c263c2aa | Bin 0 -> 256 bytes gfx/pokemon/articuno/back.png | Bin 0 -> 386 bytes .../articuno/front.animated.2bpp.lz.650aef29 | Bin 0 -> 1111 bytes gfx/pokemon/articuno/front.png | Bin 0 -> 1679 bytes gfx/pokemon/articuno/shiny.pal | 4 + gfx/pokemon/azumarill/anim0.asm | 9 + gfx/pokemon/azumarill/anim1.asm | 6 + gfx/pokemon/azumarill/back.2bpp.lz.f7fa0db9 | Bin 0 -> 264 bytes gfx/pokemon/azumarill/back.png | Bin 0 -> 347 bytes .../azumarill/front.animated.2bpp.lz.cc9fd2ed | Bin 0 -> 765 bytes gfx/pokemon/azumarill/front.png | Bin 0 -> 891 bytes gfx/pokemon/azumarill/shiny.pal | 4 + gfx/pokemon/bayleef/anim0.asm | 5 + gfx/pokemon/bayleef/anim1.asm | 6 + gfx/pokemon/bayleef/back.2bpp.lz.c4783e65 | Bin 0 -> 407 bytes gfx/pokemon/bayleef/back.png | Bin 0 -> 484 bytes .../bayleef/front.animated.2bpp.lz.147649f2 | Bin 0 -> 703 bytes gfx/pokemon/bayleef/front.png | Bin 0 -> 971 bytes gfx/pokemon/bayleef/shiny.pal | 4 + gfx/pokemon/beedrill/anim0.asm | 12 + gfx/pokemon/beedrill/anim1.asm | 10 + gfx/pokemon/beedrill/back.2bpp.lz.dfd6a87b | Bin 0 -> 394 bytes gfx/pokemon/beedrill/back.png | Bin 0 -> 460 bytes .../beedrill/front.animated.2bpp.lz.1b5d3117 | Bin 0 -> 1038 bytes gfx/pokemon/beedrill/front.png | Bin 0 -> 1440 bytes gfx/pokemon/beedrill/shiny.pal | 4 + gfx/pokemon/bellossom/anim0.asm | 10 + gfx/pokemon/bellossom/anim1.asm | 6 + gfx/pokemon/bellossom/back.2bpp.lz.10d31691 | Bin 0 -> 350 bytes gfx/pokemon/bellossom/back.png | Bin 0 -> 423 bytes .../bellossom/front.animated.2bpp.lz.289eaecf | Bin 0 -> 678 bytes gfx/pokemon/bellossom/front.png | Bin 0 -> 918 bytes gfx/pokemon/bellossom/shiny.pal | 4 + gfx/pokemon/bellsprout/anim0.asm | 12 + gfx/pokemon/bellsprout/anim1.asm | 8 + gfx/pokemon/bellsprout/back.2bpp.lz.9dacbda8 | Bin 0 -> 287 bytes gfx/pokemon/bellsprout/back.png | Bin 0 -> 365 bytes .../bellsprout/front.animated.2bpp.lz.44df413d | Bin 0 -> 443 bytes gfx/pokemon/bellsprout/front.png | Bin 0 -> 682 bytes gfx/pokemon/bellsprout/shiny.pal | 4 + gfx/pokemon/bitmask_pointers.asm | 252 ++++ gfx/pokemon/bitmasks.asm | 252 ++++ gfx/pokemon/blastoise/anim0.asm | 6 + gfx/pokemon/blastoise/anim1.asm | 6 + gfx/pokemon/blastoise/back.2bpp.lz.b90e8d5a | Bin 0 -> 363 bytes gfx/pokemon/blastoise/back.png | Bin 0 -> 468 bytes .../blastoise/front.animated.2bpp.lz.3899aed0 | Bin 0 -> 1084 bytes gfx/pokemon/blastoise/front.png | Bin 0 -> 1477 bytes gfx/pokemon/blastoise/shiny.pal | 4 + gfx/pokemon/blissey/anim0.asm | 8 + gfx/pokemon/blissey/anim1.asm | 6 + gfx/pokemon/blissey/back.2bpp.lz.d2763673 | Bin 0 -> 268 bytes gfx/pokemon/blissey/back.png | Bin 0 -> 352 bytes .../blissey/front.animated.2bpp.lz.04f2353a | Bin 0 -> 867 bytes gfx/pokemon/blissey/front.png | Bin 0 -> 1070 bytes gfx/pokemon/blissey/shiny.pal | 4 + gfx/pokemon/bulbasaur/anim0.asm | 10 + gfx/pokemon/bulbasaur/anim1.asm | 5 + gfx/pokemon/bulbasaur/back.2bpp.lz.84f8d1c4 | Bin 0 -> 290 bytes gfx/pokemon/bulbasaur/back.png | Bin 0 -> 374 bytes .../bulbasaur/front.animated.2bpp.lz.04627405 | Bin 0 -> 392 bytes gfx/pokemon/bulbasaur/front.png | Bin 0 -> 557 bytes gfx/pokemon/bulbasaur/shiny.pal | 4 + gfx/pokemon/butterfree/anim0.asm | 8 + gfx/pokemon/butterfree/anim1.asm | 6 + gfx/pokemon/butterfree/back.2bpp.lz.a8543d86 | Bin 0 -> 463 bytes gfx/pokemon/butterfree/back.png | Bin 0 -> 499 bytes .../butterfree/front.animated.2bpp.lz.33ba7e24 | Bin 0 -> 909 bytes gfx/pokemon/butterfree/front.png | Bin 0 -> 1052 bytes gfx/pokemon/butterfree/shiny.pal | 4 + gfx/pokemon/caterpie/anim0.asm | 8 + gfx/pokemon/caterpie/anim1.asm | 6 + gfx/pokemon/caterpie/back.2bpp.lz.57e32015 | Bin 0 -> 284 bytes gfx/pokemon/caterpie/back.png | Bin 0 -> 390 bytes .../caterpie/front.animated.2bpp.lz.ec4f7cb8 | Bin 0 -> 313 bytes gfx/pokemon/caterpie/front.png | Bin 0 -> 479 bytes gfx/pokemon/caterpie/shiny.pal | 4 + gfx/pokemon/celebi/anim0.asm | 16 + gfx/pokemon/celebi/anim1.asm | 8 + gfx/pokemon/celebi/back.2bpp.lz.17ea5fe6 | Bin 0 -> 420 bytes gfx/pokemon/celebi/back.png | Bin 0 -> 515 bytes gfx/pokemon/celebi/front.animated.2bpp.lz.16f259a5 | Bin 0 -> 496 bytes gfx/pokemon/celebi/front.png | Bin 0 -> 889 bytes gfx/pokemon/celebi/shiny.pal | 4 + gfx/pokemon/chansey/anim0.asm | 10 + gfx/pokemon/chansey/anim1.asm | 6 + gfx/pokemon/chansey/back.2bpp.lz.14d90ba1 | Bin 0 -> 304 bytes gfx/pokemon/chansey/back.png | Bin 0 -> 389 bytes .../chansey/front.animated.2bpp.lz.158fc381 | Bin 0 -> 634 bytes gfx/pokemon/chansey/front.png | Bin 0 -> 813 bytes gfx/pokemon/chansey/shiny.pal | 4 + gfx/pokemon/charizard/anim0.asm | 8 + gfx/pokemon/charizard/anim1.asm | 6 + gfx/pokemon/charizard/back.2bpp.lz.f04ac62c | Bin 0 -> 360 bytes gfx/pokemon/charizard/back.png | Bin 0 -> 436 bytes .../charizard/front.animated.2bpp.lz.0068f820 | Bin 0 -> 997 bytes gfx/pokemon/charizard/front.png | Bin 0 -> 1217 bytes gfx/pokemon/charizard/shiny.pal | 4 + gfx/pokemon/charmander/anim0.asm | 9 + gfx/pokemon/charmander/anim1.asm | 6 + gfx/pokemon/charmander/back.2bpp.lz.bcb371c6 | Bin 0 -> 301 bytes gfx/pokemon/charmander/back.png | Bin 0 -> 385 bytes .../charmander/front.animated.2bpp.lz.704bfc17 | Bin 0 -> 528 bytes gfx/pokemon/charmander/front.png | Bin 0 -> 786 bytes gfx/pokemon/charmander/shiny.pal | 4 + gfx/pokemon/charmeleon/anim0.asm | 9 + gfx/pokemon/charmeleon/anim1.asm | 8 + gfx/pokemon/charmeleon/back.2bpp.lz.cf73268f | Bin 0 -> 388 bytes gfx/pokemon/charmeleon/back.png | Bin 0 -> 442 bytes .../charmeleon/front.animated.2bpp.lz.0e629968 | Bin 0 -> 778 bytes gfx/pokemon/charmeleon/front.png | Bin 0 -> 1118 bytes gfx/pokemon/charmeleon/shiny.pal | 4 + gfx/pokemon/chikorita/anim0.asm | 10 + gfx/pokemon/chikorita/anim1.asm | 6 + gfx/pokemon/chikorita/back.2bpp.lz.27a21938 | Bin 0 -> 307 bytes gfx/pokemon/chikorita/back.png | Bin 0 -> 403 bytes .../chikorita/front.animated.2bpp.lz.18de5fe9 | Bin 0 -> 612 bytes gfx/pokemon/chikorita/front.png | Bin 0 -> 891 bytes gfx/pokemon/chikorita/shiny.pal | 4 + gfx/pokemon/chinchou/anim0.asm | 11 + gfx/pokemon/chinchou/anim1.asm | 6 + gfx/pokemon/chinchou/back.2bpp.lz.ea061e91 | Bin 0 -> 306 bytes gfx/pokemon/chinchou/back.png | Bin 0 -> 376 bytes .../chinchou/front.animated.2bpp.lz.901aa690 | Bin 0 -> 535 bytes gfx/pokemon/chinchou/front.png | Bin 0 -> 727 bytes gfx/pokemon/chinchou/shiny.pal | 4 + gfx/pokemon/clefable/anim0.asm | 6 + gfx/pokemon/clefable/anim1.asm | 6 + gfx/pokemon/clefable/back.2bpp.lz.d57ec142 | Bin 0 -> 428 bytes gfx/pokemon/clefable/back.png | Bin 0 -> 500 bytes .../clefable/front.animated.2bpp.lz.59d160ad | Bin 0 -> 666 bytes gfx/pokemon/clefable/front.png | Bin 0 -> 938 bytes gfx/pokemon/clefable/shiny.pal | 4 + gfx/pokemon/clefairy/anim0.asm | 9 + gfx/pokemon/clefairy/anim1.asm | 8 + gfx/pokemon/clefairy/back.2bpp.lz.f8aff3dd | Bin 0 -> 351 bytes gfx/pokemon/clefairy/back.png | Bin 0 -> 436 bytes .../clefairy/front.animated.2bpp.lz.0918b60d | Bin 0 -> 454 bytes gfx/pokemon/clefairy/front.png | Bin 0 -> 696 bytes gfx/pokemon/clefairy/shiny.pal | 4 + gfx/pokemon/cleffa/anim0.asm | 5 + gfx/pokemon/cleffa/anim1.asm | 6 + gfx/pokemon/cleffa/back.2bpp.lz.ea9b3d08 | Bin 0 -> 252 bytes gfx/pokemon/cleffa/back.png | Bin 0 -> 337 bytes gfx/pokemon/cleffa/front.animated.2bpp.lz.49630c80 | Bin 0 -> 435 bytes gfx/pokemon/cleffa/front.png | Bin 0 -> 600 bytes gfx/pokemon/cleffa/shiny.pal | 4 + gfx/pokemon/cloyster/anim0.asm | 7 + gfx/pokemon/cloyster/anim1.asm | 4 + gfx/pokemon/cloyster/back.2bpp.lz.5ad194b3 | Bin 0 -> 458 bytes gfx/pokemon/cloyster/back.png | Bin 0 -> 556 bytes .../cloyster/front.animated.2bpp.lz.fe85709f | Bin 0 -> 908 bytes gfx/pokemon/cloyster/front.png | Bin 0 -> 1257 bytes gfx/pokemon/cloyster/shiny.pal | 4 + gfx/pokemon/corsola/anim0.asm | 7 + gfx/pokemon/corsola/anim1.asm | 6 + gfx/pokemon/corsola/back.2bpp.lz.2b6c7860 | Bin 0 -> 307 bytes gfx/pokemon/corsola/back.png | Bin 0 -> 388 bytes .../corsola/front.animated.2bpp.lz.2e7905aa | Bin 0 -> 559 bytes gfx/pokemon/corsola/front.png | Bin 0 -> 735 bytes gfx/pokemon/corsola/shiny.pal | 4 + gfx/pokemon/crobat/anim0.asm | 10 + gfx/pokemon/crobat/anim1.asm | 6 + gfx/pokemon/crobat/back.2bpp.lz.30850b2e | Bin 0 -> 269 bytes gfx/pokemon/crobat/back.png | Bin 0 -> 354 bytes gfx/pokemon/crobat/front.animated.2bpp.lz.dc386ff0 | Bin 0 -> 638 bytes gfx/pokemon/crobat/front.png | Bin 0 -> 951 bytes gfx/pokemon/crobat/shiny.pal | 4 + gfx/pokemon/croconaw/anim0.asm | 7 + gfx/pokemon/croconaw/anim1.asm | 6 + gfx/pokemon/croconaw/back.2bpp.lz.a605c82f | Bin 0 -> 399 bytes gfx/pokemon/croconaw/back.png | Bin 0 -> 478 bytes .../croconaw/front.animated.2bpp.lz.a797986d | Bin 0 -> 844 bytes gfx/pokemon/croconaw/front.png | Bin 0 -> 1182 bytes gfx/pokemon/croconaw/shiny.pal | 4 + gfx/pokemon/cubone/anim0.asm | 12 + gfx/pokemon/cubone/anim1.asm | 6 + gfx/pokemon/cubone/back.2bpp.lz.bd849dfb | Bin 0 -> 394 bytes gfx/pokemon/cubone/back.png | Bin 0 -> 472 bytes gfx/pokemon/cubone/front.animated.2bpp.lz.0d63a3a4 | Bin 0 -> 527 bytes gfx/pokemon/cubone/front.png | Bin 0 -> 855 bytes gfx/pokemon/cubone/shiny.pal | 4 + gfx/pokemon/cyndaquil/anim0.asm | 12 + gfx/pokemon/cyndaquil/anim1.asm | 6 + gfx/pokemon/cyndaquil/back.2bpp.lz.68baeeeb | Bin 0 -> 410 bytes gfx/pokemon/cyndaquil/back.png | Bin 0 -> 498 bytes .../cyndaquil/front.animated.2bpp.lz.0d5dce8d | Bin 0 -> 579 bytes gfx/pokemon/cyndaquil/front.png | Bin 0 -> 776 bytes gfx/pokemon/cyndaquil/shiny.pal | 4 + gfx/pokemon/delibird/anim0.asm | 12 + gfx/pokemon/delibird/anim1.asm | 6 + gfx/pokemon/delibird/back.2bpp.lz.11463d76 | Bin 0 -> 347 bytes gfx/pokemon/delibird/back.png | Bin 0 -> 447 bytes .../delibird/front.animated.2bpp.lz.a3126c48 | Bin 0 -> 594 bytes gfx/pokemon/delibird/front.png | Bin 0 -> 951 bytes gfx/pokemon/delibird/shiny.pal | 4 + gfx/pokemon/dewgong/anim0.asm | 7 + gfx/pokemon/dewgong/anim1.asm | 9 + gfx/pokemon/dewgong/back.2bpp.lz.4e1fef76 | Bin 0 -> 236 bytes gfx/pokemon/dewgong/back.png | Bin 0 -> 337 bytes .../dewgong/front.animated.2bpp.lz.cc53359c | Bin 0 -> 892 bytes gfx/pokemon/dewgong/front.png | Bin 0 -> 1578 bytes gfx/pokemon/dewgong/shiny.pal | 4 + gfx/pokemon/diglett/anim0.asm | 7 + gfx/pokemon/diglett/anim1.asm | 6 + gfx/pokemon/diglett/back.2bpp.lz.31d8cacc | Bin 0 -> 191 bytes gfx/pokemon/diglett/back.png | Bin 0 -> 285 bytes .../diglett/front.animated.2bpp.lz.52b0361e | Bin 0 -> 349 bytes gfx/pokemon/diglett/front.png | Bin 0 -> 529 bytes gfx/pokemon/diglett/shiny.pal | 4 + gfx/pokemon/ditto/anim0.asm | 11 + gfx/pokemon/ditto/anim1.asm | 6 + gfx/pokemon/ditto/back.2bpp.lz.b01a9d91 | Bin 0 -> 256 bytes gfx/pokemon/ditto/back.png | Bin 0 -> 315 bytes gfx/pokemon/ditto/front.animated.2bpp.lz.344c90fd | Bin 0 -> 352 bytes gfx/pokemon/ditto/front.png | Bin 0 -> 692 bytes gfx/pokemon/ditto/shiny.pal | 4 + gfx/pokemon/dodrio/anim0.asm | 6 + gfx/pokemon/dodrio/anim1.asm | 6 + gfx/pokemon/dodrio/back.2bpp.lz.a5480e88 | Bin 0 -> 455 bytes gfx/pokemon/dodrio/back.png | Bin 0 -> 553 bytes gfx/pokemon/dodrio/front.animated.2bpp.lz.2aaff569 | Bin 0 -> 881 bytes gfx/pokemon/dodrio/front.png | Bin 0 -> 1315 bytes gfx/pokemon/dodrio/shiny.pal | 4 + gfx/pokemon/doduo/anim0.asm | 9 + gfx/pokemon/doduo/anim1.asm | 8 + gfx/pokemon/doduo/back.2bpp.lz.05a57563 | Bin 0 -> 404 bytes gfx/pokemon/doduo/back.png | Bin 0 -> 447 bytes gfx/pokemon/doduo/front.animated.2bpp.lz.89c4acbd | Bin 0 -> 428 bytes gfx/pokemon/doduo/front.png | Bin 0 -> 650 bytes gfx/pokemon/doduo/shiny.pal | 4 + gfx/pokemon/donphan/anim0.asm | 6 + gfx/pokemon/donphan/anim1.asm | 6 + gfx/pokemon/donphan/back.2bpp.lz.5067b370 | Bin 0 -> 233 bytes gfx/pokemon/donphan/back.png | Bin 0 -> 352 bytes .../donphan/front.animated.2bpp.lz.9e1b7048 | Bin 0 -> 819 bytes gfx/pokemon/donphan/front.png | Bin 0 -> 1170 bytes gfx/pokemon/donphan/shiny.pal | 4 + gfx/pokemon/dragonair/anim0.asm | 8 + gfx/pokemon/dragonair/anim1.asm | 10 + gfx/pokemon/dragonair/back.2bpp.lz.9b6fda5b | Bin 0 -> 307 bytes gfx/pokemon/dragonair/back.png | Bin 0 -> 430 bytes .../dragonair/front.animated.2bpp.lz.bb9ee373 | Bin 0 -> 646 bytes gfx/pokemon/dragonair/front.png | Bin 0 -> 1064 bytes gfx/pokemon/dragonair/shiny.pal | 4 + gfx/pokemon/dragonite/anim0.asm | 13 + gfx/pokemon/dragonite/anim1.asm | 8 + gfx/pokemon/dragonite/back.2bpp.lz.c408806f | Bin 0 -> 279 bytes gfx/pokemon/dragonite/back.png | Bin 0 -> 386 bytes .../dragonite/front.animated.2bpp.lz.b914dfd9 | Bin 0 -> 860 bytes gfx/pokemon/dragonite/front.png | Bin 0 -> 1282 bytes gfx/pokemon/dragonite/shiny.pal | 4 + gfx/pokemon/dratini/anim0.asm | 8 + gfx/pokemon/dratini/anim1.asm | 6 + gfx/pokemon/dratini/back.2bpp.lz.be4d6a2a | Bin 0 -> 249 bytes gfx/pokemon/dratini/back.png | Bin 0 -> 357 bytes .../dratini/front.animated.2bpp.lz.838e4248 | Bin 0 -> 427 bytes gfx/pokemon/dratini/front.png | Bin 0 -> 674 bytes gfx/pokemon/dratini/shiny.pal | 4 + gfx/pokemon/drowzee/anim0.asm | 11 + gfx/pokemon/drowzee/anim1.asm | 8 + gfx/pokemon/drowzee/back.2bpp.lz.55367f5a | Bin 0 -> 251 bytes gfx/pokemon/drowzee/back.png | Bin 0 -> 353 bytes .../drowzee/front.animated.2bpp.lz.1f23711a | Bin 0 -> 684 bytes gfx/pokemon/drowzee/front.png | Bin 0 -> 1013 bytes gfx/pokemon/drowzee/shiny.pal | 4 + gfx/pokemon/dugtrio/anim0.asm | 16 + gfx/pokemon/dugtrio/anim1.asm | 10 + gfx/pokemon/dugtrio/back.2bpp.lz.e821a89c | Bin 0 -> 334 bytes gfx/pokemon/dugtrio/back.png | Bin 0 -> 397 bytes .../dugtrio/front.animated.2bpp.lz.5c9e668c | Bin 0 -> 651 bytes gfx/pokemon/dugtrio/front.png | Bin 0 -> 984 bytes gfx/pokemon/dugtrio/shiny.pal | 4 + gfx/pokemon/dunsparce/anim0.asm | 8 + gfx/pokemon/dunsparce/anim1.asm | 6 + gfx/pokemon/dunsparce/back.2bpp.lz.aee69114 | Bin 0 -> 234 bytes gfx/pokemon/dunsparce/back.png | Bin 0 -> 332 bytes .../dunsparce/front.animated.2bpp.lz.04ea863c | Bin 0 -> 606 bytes gfx/pokemon/dunsparce/front.png | Bin 0 -> 860 bytes gfx/pokemon/dunsparce/shiny.pal | 4 + gfx/pokemon/eevee/anim0.asm | 9 + gfx/pokemon/eevee/anim1.asm | 8 + gfx/pokemon/eevee/back.2bpp.lz.bc34ce62 | Bin 0 -> 380 bytes gfx/pokemon/eevee/back.png | Bin 0 -> 473 bytes gfx/pokemon/eevee/front.animated.2bpp.lz.04e72b48 | Bin 0 -> 465 bytes gfx/pokemon/eevee/front.png | Bin 0 -> 741 bytes gfx/pokemon/eevee/shiny.pal | 4 + gfx/pokemon/egg/anim0.asm | 8 + gfx/pokemon/egg/anim1.asm | 5 + gfx/pokemon/egg/front.animated.2bpp.lz.7b468eff | Bin 0 -> 382 bytes gfx/pokemon/egg/front.png | Bin 0 -> 435 bytes gfx/pokemon/ekans/anim0.asm | 9 + gfx/pokemon/ekans/anim1.asm | 8 + gfx/pokemon/ekans/back.2bpp.lz.671d14d9 | Bin 0 -> 356 bytes gfx/pokemon/ekans/back.png | Bin 0 -> 449 bytes gfx/pokemon/ekans/front.animated.2bpp.lz.018a1c72 | Bin 0 -> 575 bytes gfx/pokemon/ekans/front.png | Bin 0 -> 792 bytes gfx/pokemon/ekans/shiny.pal | 4 + gfx/pokemon/electabuzz/anim0.asm | 13 + gfx/pokemon/electabuzz/anim1.asm | 6 + gfx/pokemon/electabuzz/back.2bpp.lz.e97330fe | Bin 0 -> 386 bytes gfx/pokemon/electabuzz/back.png | Bin 0 -> 461 bytes .../electabuzz/front.animated.2bpp.lz.381e1c6e | Bin 0 -> 793 bytes gfx/pokemon/electabuzz/front.png | Bin 0 -> 1036 bytes gfx/pokemon/electabuzz/shiny.pal | 4 + gfx/pokemon/electrode/anim0.asm | 4 + gfx/pokemon/electrode/anim1.asm | 3 + gfx/pokemon/electrode/back.2bpp.lz.874e1f1c | Bin 0 -> 246 bytes gfx/pokemon/electrode/back.png | Bin 0 -> 308 bytes .../electrode/front.animated.2bpp.lz.d7943ad8 | Bin 0 -> 369 bytes gfx/pokemon/electrode/front.png | Bin 0 -> 480 bytes gfx/pokemon/electrode/shiny.pal | 4 + gfx/pokemon/elekid/anim0.asm | 11 + gfx/pokemon/elekid/anim1.asm | 7 + gfx/pokemon/elekid/back.2bpp.lz.227a1b23 | Bin 0 -> 421 bytes gfx/pokemon/elekid/back.png | Bin 0 -> 508 bytes gfx/pokemon/elekid/front.animated.2bpp.lz.3bbb6b61 | Bin 0 -> 702 bytes gfx/pokemon/elekid/front.png | Bin 0 -> 1092 bytes gfx/pokemon/elekid/shiny.pal | 4 + gfx/pokemon/entei/anim0.asm | 6 + gfx/pokemon/entei/anim1.asm | 6 + gfx/pokemon/entei/back.2bpp.lz.d1e1986a | Bin 0 -> 340 bytes gfx/pokemon/entei/back.png | Bin 0 -> 448 bytes gfx/pokemon/entei/front.animated.2bpp.lz.ebaf8024 | Bin 0 -> 1093 bytes gfx/pokemon/entei/front.png | Bin 0 -> 1553 bytes gfx/pokemon/entei/shiny.pal | 4 + gfx/pokemon/espeon/anim0.asm | 9 + gfx/pokemon/espeon/anim1.asm | 6 + gfx/pokemon/espeon/back.2bpp.lz.0e77f26e | Bin 0 -> 333 bytes gfx/pokemon/espeon/back.png | Bin 0 -> 410 bytes gfx/pokemon/espeon/front.animated.2bpp.lz.069f57ec | Bin 0 -> 606 bytes gfx/pokemon/espeon/front.png | Bin 0 -> 897 bytes gfx/pokemon/espeon/shiny.pal | 4 + gfx/pokemon/exeggcute/anim0.asm | 17 + gfx/pokemon/exeggcute/anim1.asm | 6 + gfx/pokemon/exeggcute/back.2bpp.lz.060c38b0 | Bin 0 -> 358 bytes gfx/pokemon/exeggcute/back.png | Bin 0 -> 431 bytes .../exeggcute/front.animated.2bpp.lz.578a4722 | Bin 0 -> 808 bytes gfx/pokemon/exeggcute/front.png | Bin 0 -> 1229 bytes gfx/pokemon/exeggcute/shiny.pal | 4 + gfx/pokemon/exeggutor/anim0.asm | 9 + gfx/pokemon/exeggutor/anim1.asm | 6 + gfx/pokemon/exeggutor/back.2bpp.lz.e012643e | Bin 0 -> 472 bytes gfx/pokemon/exeggutor/back.png | Bin 0 -> 527 bytes .../exeggutor/front.animated.2bpp.lz.3915d572 | Bin 0 -> 772 bytes gfx/pokemon/exeggutor/front.png | Bin 0 -> 927 bytes gfx/pokemon/exeggutor/shiny.pal | 4 + gfx/pokemon/extra_pointers.asm | 252 ++++ gfx/pokemon/extras.asm | 252 ++++ gfx/pokemon/farfetch_d/anim0.asm | 6 + gfx/pokemon/farfetch_d/anim1.asm | 5 + gfx/pokemon/farfetch_d/back.2bpp.lz.6f28ebc4 | Bin 0 -> 411 bytes gfx/pokemon/farfetch_d/back.png | Bin 0 -> 479 bytes .../farfetch_d/front.animated.2bpp.lz.a4ae9393 | Bin 0 -> 712 bytes gfx/pokemon/farfetch_d/front.png | Bin 0 -> 1049 bytes gfx/pokemon/farfetch_d/shiny.pal | 4 + gfx/pokemon/fearow/anim0.asm | 8 + gfx/pokemon/fearow/anim1.asm | 6 + gfx/pokemon/fearow/back.2bpp.lz.a7a39118 | Bin 0 -> 249 bytes gfx/pokemon/fearow/back.png | Bin 0 -> 339 bytes gfx/pokemon/fearow/front.animated.2bpp.lz.393b11d6 | Bin 0 -> 998 bytes gfx/pokemon/fearow/front.png | Bin 0 -> 1316 bytes gfx/pokemon/fearow/shiny.pal | 4 + gfx/pokemon/feraligatr/anim0.asm | 7 + gfx/pokemon/feraligatr/anim1.asm | 6 + gfx/pokemon/feraligatr/back.2bpp.lz.f95abe99 | Bin 0 -> 427 bytes gfx/pokemon/feraligatr/back.png | Bin 0 -> 550 bytes .../feraligatr/front.animated.2bpp.lz.fade72cc | Bin 0 -> 1177 bytes gfx/pokemon/feraligatr/front.png | Bin 0 -> 1454 bytes gfx/pokemon/feraligatr/shiny.pal | 4 + gfx/pokemon/flaaffy/anim0.asm | 8 + gfx/pokemon/flaaffy/anim1.asm | 6 + gfx/pokemon/flaaffy/back.2bpp.lz.461855e4 | Bin 0 -> 369 bytes gfx/pokemon/flaaffy/back.png | Bin 0 -> 489 bytes .../flaaffy/front.animated.2bpp.lz.6a27aac3 | Bin 0 -> 587 bytes gfx/pokemon/flaaffy/front.png | Bin 0 -> 840 bytes gfx/pokemon/flaaffy/shiny.pal | 4 + gfx/pokemon/flareon/anim0.asm | 7 + gfx/pokemon/flareon/anim1.asm | 6 + gfx/pokemon/flareon/back.2bpp.lz.d58af0e5 | Bin 0 -> 393 bytes gfx/pokemon/flareon/back.png | Bin 0 -> 455 bytes .../flareon/front.animated.2bpp.lz.7b68c716 | Bin 0 -> 714 bytes gfx/pokemon/flareon/front.png | Bin 0 -> 1090 bytes gfx/pokemon/flareon/shiny.pal | 4 + gfx/pokemon/forretress/anim0.asm | 11 + gfx/pokemon/forretress/anim1.asm | 6 + gfx/pokemon/forretress/back.2bpp.lz.2b8e5f48 | Bin 0 -> 147 bytes gfx/pokemon/forretress/back.png | Bin 0 -> 229 bytes .../forretress/front.animated.2bpp.lz.761b9f80 | Bin 0 -> 646 bytes gfx/pokemon/forretress/front.png | Bin 0 -> 947 bytes gfx/pokemon/forretress/shiny.pal | 4 + gfx/pokemon/frame_pointers.asm | 252 ++++ gfx/pokemon/furret/anim0.asm | 8 + gfx/pokemon/furret/anim1.asm | 6 + gfx/pokemon/furret/back.2bpp.lz.24792550 | Bin 0 -> 358 bytes gfx/pokemon/furret/back.png | Bin 0 -> 450 bytes gfx/pokemon/furret/front.animated.2bpp.lz.f72a2758 | Bin 0 -> 581 bytes gfx/pokemon/furret/front.png | Bin 0 -> 869 bytes gfx/pokemon/furret/shiny.pal | 4 + gfx/pokemon/gastly/anim0.asm | 8 + gfx/pokemon/gastly/anim1.asm | 6 + gfx/pokemon/gastly/back.2bpp.lz.4078fa56 | Bin 0 -> 250 bytes gfx/pokemon/gastly/back.png | Bin 0 -> 319 bytes gfx/pokemon/gastly/front.animated.2bpp.lz.84148c1e | Bin 0 -> 766 bytes gfx/pokemon/gastly/front.png | Bin 0 -> 993 bytes gfx/pokemon/gastly/shiny.pal | 4 + gfx/pokemon/gengar/anim0.asm | 9 + gfx/pokemon/gengar/anim1.asm | 9 + gfx/pokemon/gengar/back.2bpp.lz.5237ee63 | Bin 0 -> 330 bytes gfx/pokemon/gengar/back.png | Bin 0 -> 396 bytes gfx/pokemon/gengar/front.animated.2bpp.lz.65ddc6f5 | Bin 0 -> 657 bytes gfx/pokemon/gengar/front.png | Bin 0 -> 917 bytes gfx/pokemon/gengar/shiny.pal | 4 + gfx/pokemon/geodude/anim0.asm | 8 + gfx/pokemon/geodude/anim1.asm | 6 + gfx/pokemon/geodude/back.2bpp.lz.d5aa5e9f | Bin 0 -> 367 bytes gfx/pokemon/geodude/back.png | Bin 0 -> 471 bytes .../geodude/front.animated.2bpp.lz.d743f2c9 | Bin 0 -> 361 bytes gfx/pokemon/geodude/front.png | Bin 0 -> 557 bytes gfx/pokemon/geodude/shiny.pal | 4 + gfx/pokemon/girafarig/anim0.asm | 14 + gfx/pokemon/girafarig/anim1.asm | 4 + gfx/pokemon/girafarig/back.2bpp.lz.5dd68457 | Bin 0 -> 360 bytes gfx/pokemon/girafarig/back.png | Bin 0 -> 458 bytes .../girafarig/front.animated.2bpp.lz.76d809c4 | Bin 0 -> 687 bytes gfx/pokemon/girafarig/front.png | Bin 0 -> 1201 bytes gfx/pokemon/girafarig/shiny.pal | 4 + gfx/pokemon/gligar/anim0.asm | 3 + gfx/pokemon/gligar/anim1.asm | 3 + gfx/pokemon/gligar/back.2bpp.lz.ee922122 | Bin 0 -> 389 bytes gfx/pokemon/gligar/back.png | Bin 0 -> 467 bytes gfx/pokemon/gligar/front.animated.2bpp.lz.4dcc41b3 | Bin 0 -> 692 bytes gfx/pokemon/gligar/front.png | Bin 0 -> 748 bytes gfx/pokemon/gligar/shiny.pal | 4 + gfx/pokemon/gloom/anim0.asm | 12 + gfx/pokemon/gloom/anim1.asm | 6 + gfx/pokemon/gloom/back.2bpp.lz.9a321f63 | Bin 0 -> 394 bytes gfx/pokemon/gloom/back.png | Bin 0 -> 455 bytes gfx/pokemon/gloom/front.animated.2bpp.lz.c6ef04a5 | Bin 0 -> 588 bytes gfx/pokemon/gloom/front.png | Bin 0 -> 800 bytes gfx/pokemon/gloom/shiny.pal | 4 + gfx/pokemon/golbat/anim0.asm | 11 + gfx/pokemon/golbat/anim1.asm | 6 + gfx/pokemon/golbat/back.2bpp.lz.e277e260 | Bin 0 -> 176 bytes gfx/pokemon/golbat/back.png | Bin 0 -> 285 bytes gfx/pokemon/golbat/front.animated.2bpp.lz.c35ffe9b | Bin 0 -> 814 bytes gfx/pokemon/golbat/front.png | Bin 0 -> 1209 bytes gfx/pokemon/golbat/shiny.pal | 4 + gfx/pokemon/goldeen/anim0.asm | 8 + gfx/pokemon/goldeen/anim1.asm | 6 + gfx/pokemon/goldeen/back.2bpp.lz.d0e5751e | Bin 0 -> 393 bytes gfx/pokemon/goldeen/back.png | Bin 0 -> 488 bytes .../goldeen/front.animated.2bpp.lz.c451a8c4 | Bin 0 -> 610 bytes gfx/pokemon/goldeen/front.png | Bin 0 -> 824 bytes gfx/pokemon/goldeen/shiny.pal | 4 + gfx/pokemon/golduck/anim0.asm | 13 + gfx/pokemon/golduck/anim1.asm | 6 + gfx/pokemon/golduck/back.2bpp.lz.2d022642 | Bin 0 -> 341 bytes gfx/pokemon/golduck/back.png | Bin 0 -> 413 bytes .../golduck/front.animated.2bpp.lz.09e97414 | Bin 0 -> 936 bytes gfx/pokemon/golduck/front.png | Bin 0 -> 1594 bytes gfx/pokemon/golduck/shiny.pal | 4 + gfx/pokemon/golem/anim0.asm | 7 + gfx/pokemon/golem/anim1.asm | 6 + gfx/pokemon/golem/back.2bpp.lz.ae903dee | Bin 0 -> 198 bytes gfx/pokemon/golem/back.png | Bin 0 -> 288 bytes gfx/pokemon/golem/front.animated.2bpp.lz.a16f21c8 | Bin 0 -> 735 bytes gfx/pokemon/golem/front.png | Bin 0 -> 963 bytes gfx/pokemon/golem/shiny.pal | 4 + gfx/pokemon/granbull/anim0.asm | 8 + gfx/pokemon/granbull/anim1.asm | 6 + gfx/pokemon/granbull/back.2bpp.lz.7f1208ed | Bin 0 -> 312 bytes gfx/pokemon/granbull/back.png | Bin 0 -> 389 bytes .../granbull/front.animated.2bpp.lz.4504768b | Bin 0 -> 628 bytes gfx/pokemon/granbull/front.png | Bin 0 -> 820 bytes gfx/pokemon/granbull/shiny.pal | 4 + gfx/pokemon/graveler/anim0.asm | 10 + gfx/pokemon/graveler/anim1.asm | 7 + gfx/pokemon/graveler/back.2bpp.lz.c7867de7 | Bin 0 -> 333 bytes gfx/pokemon/graveler/back.png | Bin 0 -> 441 bytes .../graveler/front.animated.2bpp.lz.68d07c61 | Bin 0 -> 664 bytes gfx/pokemon/graveler/front.png | Bin 0 -> 957 bytes gfx/pokemon/graveler/shiny.pal | 4 + gfx/pokemon/grimer/anim0.asm | 6 + gfx/pokemon/grimer/anim1.asm | 8 + gfx/pokemon/grimer/back.2bpp.lz.833bd626 | Bin 0 -> 286 bytes gfx/pokemon/grimer/back.png | Bin 0 -> 386 bytes gfx/pokemon/grimer/front.animated.2bpp.lz.dfe40e91 | Bin 0 -> 518 bytes gfx/pokemon/grimer/front.png | Bin 0 -> 740 bytes gfx/pokemon/grimer/shiny.pal | 4 + gfx/pokemon/growlithe/anim0.asm | 9 + gfx/pokemon/growlithe/anim1.asm | 7 + gfx/pokemon/growlithe/back.2bpp.lz.7f5831f6 | Bin 0 -> 375 bytes gfx/pokemon/growlithe/back.png | Bin 0 -> 448 bytes .../growlithe/front.animated.2bpp.lz.f7b376fa | Bin 0 -> 453 bytes gfx/pokemon/growlithe/front.png | Bin 0 -> 655 bytes gfx/pokemon/growlithe/shiny.pal | 4 + gfx/pokemon/gyarados/anim0.asm | 6 + gfx/pokemon/gyarados/anim1.asm | 6 + gfx/pokemon/gyarados/back.2bpp.lz.fc577f9e | Bin 0 -> 435 bytes gfx/pokemon/gyarados/back.png | Bin 0 -> 520 bytes .../gyarados/front.animated.2bpp.lz.1b498e2b | Bin 0 -> 974 bytes gfx/pokemon/gyarados/front.png | Bin 0 -> 1403 bytes gfx/pokemon/gyarados/shiny.pal | 4 + gfx/pokemon/haunter/anim0.asm | 7 + gfx/pokemon/haunter/anim1.asm | 3 + gfx/pokemon/haunter/back.2bpp.lz.8a5dc2c1 | Bin 0 -> 320 bytes gfx/pokemon/haunter/back.png | Bin 0 -> 385 bytes .../haunter/front.animated.2bpp.lz.aeed5f7e | Bin 0 -> 624 bytes gfx/pokemon/haunter/front.png | Bin 0 -> 900 bytes gfx/pokemon/haunter/shiny.pal | 4 + gfx/pokemon/heracross/anim0.asm | 5 + gfx/pokemon/heracross/anim1.asm | 6 + gfx/pokemon/heracross/back.2bpp.lz.ba09608b | Bin 0 -> 385 bytes gfx/pokemon/heracross/back.png | Bin 0 -> 464 bytes .../heracross/front.animated.2bpp.lz.0742fe2b | Bin 0 -> 644 bytes gfx/pokemon/heracross/front.png | Bin 0 -> 926 bytes gfx/pokemon/heracross/shiny.pal | 4 + gfx/pokemon/hitmonchan/anim0.asm | 11 + gfx/pokemon/hitmonchan/anim1.asm | 8 + gfx/pokemon/hitmonchan/back.2bpp.lz.68e28b98 | Bin 0 -> 365 bytes gfx/pokemon/hitmonchan/back.png | Bin 0 -> 439 bytes .../hitmonchan/front.animated.2bpp.lz.61836c4c | Bin 0 -> 579 bytes gfx/pokemon/hitmonchan/front.png | Bin 0 -> 894 bytes gfx/pokemon/hitmonchan/shiny.pal | 4 + gfx/pokemon/hitmonlee/anim0.asm | 13 + gfx/pokemon/hitmonlee/anim1.asm | 6 + gfx/pokemon/hitmonlee/back.2bpp.lz.374e3caa | Bin 0 -> 278 bytes gfx/pokemon/hitmonlee/back.png | Bin 0 -> 391 bytes .../hitmonlee/front.animated.2bpp.lz.d174eba1 | Bin 0 -> 1050 bytes gfx/pokemon/hitmonlee/front.png | Bin 0 -> 1669 bytes gfx/pokemon/hitmonlee/shiny.pal | 4 + gfx/pokemon/hitmontop/anim0.asm | 9 + gfx/pokemon/hitmontop/anim1.asm | 7 + gfx/pokemon/hitmontop/back.2bpp.lz.ea3f1576 | Bin 0 -> 458 bytes gfx/pokemon/hitmontop/back.png | Bin 0 -> 538 bytes .../hitmontop/front.animated.2bpp.lz.1b3e96fc | Bin 0 -> 872 bytes gfx/pokemon/hitmontop/front.png | Bin 0 -> 1093 bytes gfx/pokemon/hitmontop/shiny.pal | 4 + gfx/pokemon/ho_oh/anim0.asm | 11 + gfx/pokemon/ho_oh/anim1.asm | 6 + gfx/pokemon/ho_oh/back.2bpp.lz.1412f260 | Bin 0 -> 337 bytes gfx/pokemon/ho_oh/back.png | Bin 0 -> 464 bytes gfx/pokemon/ho_oh/front.animated.2bpp.lz.db80b5eb | Bin 0 -> 1303 bytes gfx/pokemon/ho_oh/front.png | Bin 0 -> 1754 bytes gfx/pokemon/ho_oh/shiny.pal | 4 + gfx/pokemon/hoothoot/anim0.asm | 12 + gfx/pokemon/hoothoot/anim1.asm | 8 + gfx/pokemon/hoothoot/back.2bpp.lz.7ebb0b29 | Bin 0 -> 324 bytes gfx/pokemon/hoothoot/back.png | Bin 0 -> 427 bytes .../hoothoot/front.animated.2bpp.lz.752ab202 | Bin 0 -> 457 bytes gfx/pokemon/hoothoot/front.png | Bin 0 -> 633 bytes gfx/pokemon/hoothoot/shiny.pal | 4 + gfx/pokemon/hoppip/anim0.asm | 6 + gfx/pokemon/hoppip/anim1.asm | 7 + gfx/pokemon/hoppip/back.2bpp.lz.5684c023 | Bin 0 -> 312 bytes gfx/pokemon/hoppip/back.png | Bin 0 -> 391 bytes gfx/pokemon/hoppip/front.animated.2bpp.lz.a03efe74 | Bin 0 -> 403 bytes gfx/pokemon/hoppip/front.png | Bin 0 -> 527 bytes gfx/pokemon/hoppip/shiny.pal | 4 + gfx/pokemon/horsea/anim0.asm | 8 + gfx/pokemon/horsea/anim1.asm | 6 + gfx/pokemon/horsea/back.2bpp.lz.50b6afb9 | Bin 0 -> 261 bytes gfx/pokemon/horsea/back.png | Bin 0 -> 355 bytes gfx/pokemon/horsea/front.animated.2bpp.lz.8b84f98e | Bin 0 -> 339 bytes gfx/pokemon/horsea/front.png | Bin 0 -> 529 bytes gfx/pokemon/horsea/shiny.pal | 4 + gfx/pokemon/houndoom/anim0.asm | 10 + gfx/pokemon/houndoom/anim1.asm | 6 + gfx/pokemon/houndoom/back.2bpp.lz.5fa55a47 | Bin 0 -> 289 bytes gfx/pokemon/houndoom/back.png | Bin 0 -> 357 bytes .../houndoom/front.animated.2bpp.lz.2d450e90 | Bin 0 -> 727 bytes gfx/pokemon/houndoom/front.png | Bin 0 -> 1203 bytes gfx/pokemon/houndoom/shiny.pal | 4 + gfx/pokemon/houndour/anim0.asm | 7 + gfx/pokemon/houndour/anim1.asm | 8 + gfx/pokemon/houndour/back.2bpp.lz.ae5f2dc9 | Bin 0 -> 240 bytes gfx/pokemon/houndour/back.png | Bin 0 -> 341 bytes .../houndour/front.animated.2bpp.lz.f847f4f6 | Bin 0 -> 503 bytes gfx/pokemon/houndour/front.png | Bin 0 -> 757 bytes gfx/pokemon/houndour/shiny.pal | 4 + gfx/pokemon/hypno/anim0.asm | 7 + gfx/pokemon/hypno/anim1.asm | 6 + gfx/pokemon/hypno/back.2bpp.lz.c091ce88 | Bin 0 -> 401 bytes gfx/pokemon/hypno/back.png | Bin 0 -> 485 bytes gfx/pokemon/hypno/front.animated.2bpp.lz.638333a3 | Bin 0 -> 837 bytes gfx/pokemon/hypno/front.png | Bin 0 -> 1173 bytes gfx/pokemon/hypno/shiny.pal | 4 + gfx/pokemon/igglybuff/anim0.asm | 6 + gfx/pokemon/igglybuff/anim1.asm | 6 + gfx/pokemon/igglybuff/back.2bpp.lz.c0c17dcb | Bin 0 -> 265 bytes gfx/pokemon/igglybuff/back.png | Bin 0 -> 358 bytes .../igglybuff/front.animated.2bpp.lz.1e00afc3 | Bin 0 -> 357 bytes gfx/pokemon/igglybuff/front.png | Bin 0 -> 488 bytes gfx/pokemon/igglybuff/shiny.pal | 4 + gfx/pokemon/ivysaur/anim0.asm | 6 + gfx/pokemon/ivysaur/anim1.asm | 8 + gfx/pokemon/ivysaur/back.2bpp.lz.bed1ff58 | Bin 0 -> 343 bytes gfx/pokemon/ivysaur/back.png | Bin 0 -> 423 bytes .../ivysaur/front.animated.2bpp.lz.3abed0fa | Bin 0 -> 586 bytes gfx/pokemon/ivysaur/front.png | Bin 0 -> 748 bytes gfx/pokemon/ivysaur/shiny.pal | 4 + gfx/pokemon/jigglypuff/anim0.asm | 11 + gfx/pokemon/jigglypuff/anim1.asm | 6 + gfx/pokemon/jigglypuff/back.2bpp.lz.87d5730b | Bin 0 -> 245 bytes gfx/pokemon/jigglypuff/back.png | Bin 0 -> 317 bytes .../jigglypuff/front.animated.2bpp.lz.9fd159f4 | Bin 0 -> 487 bytes gfx/pokemon/jigglypuff/front.png | Bin 0 -> 644 bytes gfx/pokemon/jigglypuff/shiny.pal | 4 + gfx/pokemon/johto_frames.asm | 102 ++ gfx/pokemon/jolteon/anim0.asm | 10 + gfx/pokemon/jolteon/anim1.asm | 6 + gfx/pokemon/jolteon/back.2bpp.lz.f248aac4 | Bin 0 -> 315 bytes gfx/pokemon/jolteon/back.png | Bin 0 -> 407 bytes .../jolteon/front.animated.2bpp.lz.b2b07d79 | Bin 0 -> 823 bytes gfx/pokemon/jolteon/front.png | Bin 0 -> 1091 bytes gfx/pokemon/jolteon/shiny.pal | 4 + gfx/pokemon/jumpluff/anim0.asm | 5 + gfx/pokemon/jumpluff/anim1.asm | 6 + gfx/pokemon/jumpluff/back.2bpp.lz.b258a699 | Bin 0 -> 364 bytes gfx/pokemon/jumpluff/back.png | Bin 0 -> 436 bytes .../jumpluff/front.animated.2bpp.lz.6d1d8175 | Bin 0 -> 701 bytes gfx/pokemon/jumpluff/front.png | Bin 0 -> 1064 bytes gfx/pokemon/jumpluff/shiny.pal | 4 + gfx/pokemon/jynx/anim0.asm | 8 + gfx/pokemon/jynx/anim1.asm | 6 + gfx/pokemon/jynx/back.2bpp.lz.1eef1c1b | Bin 0 -> 179 bytes gfx/pokemon/jynx/back.png | Bin 0 -> 293 bytes gfx/pokemon/jynx/front.animated.2bpp.lz.6aaf67b0 | Bin 0 -> 597 bytes gfx/pokemon/jynx/front.png | Bin 0 -> 829 bytes gfx/pokemon/jynx/shiny.pal | 4 + gfx/pokemon/kabuto/anim0.asm | 6 + gfx/pokemon/kabuto/anim1.asm | 8 + gfx/pokemon/kabuto/back.2bpp.lz.0717a29b | Bin 0 -> 323 bytes gfx/pokemon/kabuto/back.png | Bin 0 -> 369 bytes gfx/pokemon/kabuto/front.animated.2bpp.lz.afe4e2dc | Bin 0 -> 353 bytes gfx/pokemon/kabuto/front.png | Bin 0 -> 526 bytes gfx/pokemon/kabuto/shiny.pal | 4 + gfx/pokemon/kabutops/anim0.asm | 8 + gfx/pokemon/kabutops/anim1.asm | 6 + gfx/pokemon/kabutops/back.2bpp.lz.98a1dfc4 | Bin 0 -> 394 bytes gfx/pokemon/kabutops/back.png | Bin 0 -> 476 bytes .../kabutops/front.animated.2bpp.lz.d5e4bfeb | Bin 0 -> 725 bytes gfx/pokemon/kabutops/front.png | Bin 0 -> 1015 bytes gfx/pokemon/kabutops/shiny.pal | 4 + gfx/pokemon/kadabra/anim0.asm | 8 + gfx/pokemon/kadabra/anim1.asm | 6 + gfx/pokemon/kadabra/back.2bpp.lz.6b26c1a0 | Bin 0 -> 359 bytes gfx/pokemon/kadabra/back.png | Bin 0 -> 450 bytes .../kadabra/front.animated.2bpp.lz.bc78f9cf | Bin 0 -> 773 bytes gfx/pokemon/kadabra/front.png | Bin 0 -> 1086 bytes gfx/pokemon/kadabra/shiny.pal | 4 + gfx/pokemon/kakuna/anim0.asm | 4 + gfx/pokemon/kakuna/anim1.asm | 6 + gfx/pokemon/kakuna/back.2bpp.lz.3bffa4c3 | Bin 0 -> 275 bytes gfx/pokemon/kakuna/back.png | Bin 0 -> 356 bytes gfx/pokemon/kakuna/front.animated.2bpp.lz.c7425e72 | Bin 0 -> 334 bytes gfx/pokemon/kakuna/front.png | Bin 0 -> 410 bytes gfx/pokemon/kakuna/shiny.pal | 4 + gfx/pokemon/kangaskhan/anim0.asm | 9 + gfx/pokemon/kangaskhan/anim1.asm | 8 + gfx/pokemon/kangaskhan/back.2bpp.lz.0d7cc337 | Bin 0 -> 443 bytes gfx/pokemon/kangaskhan/back.png | Bin 0 -> 530 bytes .../kangaskhan/front.animated.2bpp.lz.09c81009 | Bin 0 -> 970 bytes gfx/pokemon/kangaskhan/front.png | Bin 0 -> 1437 bytes gfx/pokemon/kangaskhan/shiny.pal | 4 + gfx/pokemon/kanto_frames.asm | 152 +++ gfx/pokemon/kingdra/anim0.asm | 10 + gfx/pokemon/kingdra/anim1.asm | 6 + gfx/pokemon/kingdra/back.2bpp.lz.e48ecb3f | Bin 0 -> 352 bytes gfx/pokemon/kingdra/back.png | Bin 0 -> 434 bytes .../kingdra/front.animated.2bpp.lz.668c0516 | Bin 0 -> 782 bytes gfx/pokemon/kingdra/front.png | Bin 0 -> 1158 bytes gfx/pokemon/kingdra/shiny.pal | 4 + gfx/pokemon/kingler/anim0.asm | 10 + gfx/pokemon/kingler/anim1.asm | 6 + gfx/pokemon/kingler/back.2bpp.lz.88e96d65 | Bin 0 -> 331 bytes gfx/pokemon/kingler/back.png | Bin 0 -> 417 bytes .../kingler/front.animated.2bpp.lz.35305199 | Bin 0 -> 812 bytes gfx/pokemon/kingler/front.png | Bin 0 -> 1094 bytes gfx/pokemon/kingler/shiny.pal | 4 + gfx/pokemon/koffing/anim0.asm | 7 + gfx/pokemon/koffing/anim1.asm | 3 + gfx/pokemon/koffing/back.2bpp.lz.8c0a2526 | Bin 0 -> 378 bytes gfx/pokemon/koffing/back.png | Bin 0 -> 464 bytes .../koffing/front.animated.2bpp.lz.00044b3f | Bin 0 -> 482 bytes gfx/pokemon/koffing/front.png | Bin 0 -> 826 bytes gfx/pokemon/koffing/shiny.pal | 4 + gfx/pokemon/krabby/anim0.asm | 11 + gfx/pokemon/krabby/anim1.asm | 5 + gfx/pokemon/krabby/back.2bpp.lz.2bc2487b | Bin 0 -> 419 bytes gfx/pokemon/krabby/back.png | Bin 0 -> 504 bytes gfx/pokemon/krabby/front.animated.2bpp.lz.39592514 | Bin 0 -> 492 bytes gfx/pokemon/krabby/front.png | Bin 0 -> 850 bytes gfx/pokemon/krabby/shiny.pal | 4 + gfx/pokemon/lanturn/anim0.asm | 9 + gfx/pokemon/lanturn/anim1.asm | 6 + gfx/pokemon/lanturn/back.2bpp.lz.8e9c7c1a | Bin 0 -> 286 bytes gfx/pokemon/lanturn/back.png | Bin 0 -> 348 bytes .../lanturn/front.animated.2bpp.lz.1bfac161 | Bin 0 -> 472 bytes gfx/pokemon/lanturn/front.png | Bin 0 -> 847 bytes gfx/pokemon/lanturn/shiny.pal | 4 + gfx/pokemon/lapras/anim0.asm | 7 + gfx/pokemon/lapras/anim1.asm | 6 + gfx/pokemon/lapras/back.2bpp.lz.d09351a1 | Bin 0 -> 308 bytes gfx/pokemon/lapras/back.png | Bin 0 -> 428 bytes gfx/pokemon/lapras/front.animated.2bpp.lz.8290ef8e | Bin 0 -> 736 bytes gfx/pokemon/lapras/front.png | Bin 0 -> 947 bytes gfx/pokemon/lapras/shiny.pal | 4 + gfx/pokemon/larvitar/anim0.asm | 6 + gfx/pokemon/larvitar/anim1.asm | 6 + gfx/pokemon/larvitar/back.2bpp.lz.4b2ac395 | Bin 0 -> 298 bytes gfx/pokemon/larvitar/back.png | Bin 0 -> 379 bytes .../larvitar/front.animated.2bpp.lz.83859c57 | Bin 0 -> 413 bytes gfx/pokemon/larvitar/front.png | Bin 0 -> 570 bytes gfx/pokemon/larvitar/shiny.pal | 4 + gfx/pokemon/ledian/anim0.asm | 9 + gfx/pokemon/ledian/anim1.asm | 6 + gfx/pokemon/ledian/back.2bpp.lz.48657bbb | Bin 0 -> 385 bytes gfx/pokemon/ledian/back.png | Bin 0 -> 453 bytes gfx/pokemon/ledian/front.animated.2bpp.lz.83e819c3 | Bin 0 -> 593 bytes gfx/pokemon/ledian/front.png | Bin 0 -> 832 bytes gfx/pokemon/ledian/shiny.pal | 4 + gfx/pokemon/ledyba/anim0.asm | 7 + gfx/pokemon/ledyba/anim1.asm | 7 + gfx/pokemon/ledyba/back.2bpp.lz.d50e8860 | Bin 0 -> 411 bytes gfx/pokemon/ledyba/back.png | Bin 0 -> 531 bytes gfx/pokemon/ledyba/front.animated.2bpp.lz.1700dc27 | Bin 0 -> 658 bytes gfx/pokemon/ledyba/front.png | Bin 0 -> 913 bytes gfx/pokemon/ledyba/shiny.pal | 4 + gfx/pokemon/lickitung/anim0.asm | 7 + gfx/pokemon/lickitung/anim1.asm | 6 + gfx/pokemon/lickitung/back.2bpp.lz.a127e40b | Bin 0 -> 321 bytes gfx/pokemon/lickitung/back.png | Bin 0 -> 398 bytes .../lickitung/front.animated.2bpp.lz.328a7c53 | Bin 0 -> 787 bytes gfx/pokemon/lickitung/front.png | Bin 0 -> 1126 bytes gfx/pokemon/lickitung/shiny.pal | 4 + gfx/pokemon/lugia/anim0.asm | 8 + gfx/pokemon/lugia/anim1.asm | 8 + gfx/pokemon/lugia/back.2bpp.lz.ad953eb5 | Bin 0 -> 282 bytes gfx/pokemon/lugia/back.png | Bin 0 -> 379 bytes gfx/pokemon/lugia/front.animated.2bpp.lz.7293eddc | Bin 0 -> 1128 bytes gfx/pokemon/lugia/front.png | Bin 0 -> 2154 bytes gfx/pokemon/lugia/shiny.pal | 4 + gfx/pokemon/machamp/anim0.asm | 11 + gfx/pokemon/machamp/anim1.asm | 6 + gfx/pokemon/machamp/back.2bpp.lz.757f4c29 | Bin 0 -> 482 bytes gfx/pokemon/machamp/back.png | Bin 0 -> 580 bytes .../machamp/front.animated.2bpp.lz.2d408542 | Bin 0 -> 1293 bytes gfx/pokemon/machamp/front.png | Bin 0 -> 1958 bytes gfx/pokemon/machamp/shiny.pal | 4 + gfx/pokemon/machoke/anim0.asm | 5 + gfx/pokemon/machoke/anim1.asm | 10 + gfx/pokemon/machoke/back.2bpp.lz.2634245e | Bin 0 -> 375 bytes gfx/pokemon/machoke/back.png | Bin 0 -> 447 bytes .../machoke/front.animated.2bpp.lz.f38b95a7 | Bin 0 -> 863 bytes gfx/pokemon/machoke/front.png | Bin 0 -> 1317 bytes gfx/pokemon/machoke/shiny.pal | 4 + gfx/pokemon/machop/anim0.asm | 8 + gfx/pokemon/machop/anim1.asm | 6 + gfx/pokemon/machop/back.2bpp.lz.bc17b50a | Bin 0 -> 335 bytes gfx/pokemon/machop/back.png | Bin 0 -> 436 bytes gfx/pokemon/machop/front.animated.2bpp.lz.0fd8735f | Bin 0 -> 537 bytes gfx/pokemon/machop/front.png | Bin 0 -> 736 bytes gfx/pokemon/machop/shiny.pal | 4 + gfx/pokemon/magby/anim0.asm | 8 + gfx/pokemon/magby/anim1.asm | 6 + gfx/pokemon/magby/back.2bpp.lz.e50ccadb | Bin 0 -> 308 bytes gfx/pokemon/magby/back.png | Bin 0 -> 404 bytes gfx/pokemon/magby/front.animated.2bpp.lz.172d0807 | Bin 0 -> 569 bytes gfx/pokemon/magby/front.png | Bin 0 -> 853 bytes gfx/pokemon/magby/shiny.pal | 4 + gfx/pokemon/magcargo/anim0.asm | 7 + gfx/pokemon/magcargo/anim1.asm | 3 + gfx/pokemon/magcargo/back.2bpp.lz.56b096bc | Bin 0 -> 394 bytes gfx/pokemon/magcargo/back.png | Bin 0 -> 488 bytes .../magcargo/front.animated.2bpp.lz.53a425f4 | Bin 0 -> 799 bytes gfx/pokemon/magcargo/front.png | Bin 0 -> 1100 bytes gfx/pokemon/magcargo/shiny.pal | 4 + gfx/pokemon/magikarp/anim0.asm | 7 + gfx/pokemon/magikarp/anim1.asm | 6 + gfx/pokemon/magikarp/back.2bpp.lz.7f25810a | Bin 0 -> 345 bytes gfx/pokemon/magikarp/back.png | Bin 0 -> 475 bytes .../magikarp/front.animated.2bpp.lz.031ee449 | Bin 0 -> 529 bytes gfx/pokemon/magikarp/front.png | Bin 0 -> 805 bytes gfx/pokemon/magikarp/shiny.pal | 4 + gfx/pokemon/magmar/anim0.asm | 7 + gfx/pokemon/magmar/anim1.asm | 6 + gfx/pokemon/magmar/back.2bpp.lz.6916c87b | Bin 0 -> 402 bytes gfx/pokemon/magmar/back.png | Bin 0 -> 469 bytes gfx/pokemon/magmar/front.animated.2bpp.lz.0048e21c | Bin 0 -> 703 bytes gfx/pokemon/magmar/front.png | Bin 0 -> 1001 bytes gfx/pokemon/magmar/shiny.pal | 4 + gfx/pokemon/magnemite/anim0.asm | 8 + gfx/pokemon/magnemite/anim1.asm | 7 + gfx/pokemon/magnemite/back.2bpp.lz.e00bd515 | Bin 0 -> 166 bytes gfx/pokemon/magnemite/back.png | Bin 0 -> 288 bytes .../magnemite/front.animated.2bpp.lz.e4b07135 | Bin 0 -> 327 bytes gfx/pokemon/magnemite/front.png | Bin 0 -> 548 bytes gfx/pokemon/magnemite/shiny.pal | 4 + gfx/pokemon/magneton/anim0.asm | 12 + gfx/pokemon/magneton/anim1.asm | 9 + gfx/pokemon/magneton/back.2bpp.lz.f7a7089b | Bin 0 -> 425 bytes gfx/pokemon/magneton/back.png | Bin 0 -> 508 bytes .../magneton/front.animated.2bpp.lz.cd3b65a6 | Bin 0 -> 648 bytes gfx/pokemon/magneton/front.png | Bin 0 -> 938 bytes gfx/pokemon/magneton/shiny.pal | 4 + gfx/pokemon/mankey/anim0.asm | 7 + gfx/pokemon/mankey/anim1.asm | 6 + gfx/pokemon/mankey/back.2bpp.lz.42cb1b61 | Bin 0 -> 403 bytes gfx/pokemon/mankey/back.png | Bin 0 -> 497 bytes gfx/pokemon/mankey/front.animated.2bpp.lz.48eac19a | Bin 0 -> 499 bytes gfx/pokemon/mankey/front.png | Bin 0 -> 708 bytes gfx/pokemon/mankey/shiny.pal | 4 + gfx/pokemon/mantine/anim0.asm | 9 + gfx/pokemon/mantine/anim1.asm | 6 + gfx/pokemon/mantine/back.2bpp.lz.1320b7f3 | Bin 0 -> 216 bytes gfx/pokemon/mantine/back.png | Bin 0 -> 313 bytes .../mantine/front.animated.2bpp.lz.9eb40d04 | Bin 0 -> 789 bytes gfx/pokemon/mantine/front.png | Bin 0 -> 1166 bytes gfx/pokemon/mantine/shiny.pal | 4 + gfx/pokemon/mareep/anim0.asm | 9 + gfx/pokemon/mareep/anim1.asm | 6 + gfx/pokemon/mareep/back.2bpp.lz.b9bdc89c | Bin 0 -> 353 bytes gfx/pokemon/mareep/back.png | Bin 0 -> 459 bytes gfx/pokemon/mareep/front.animated.2bpp.lz.f660483d | Bin 0 -> 467 bytes gfx/pokemon/mareep/front.png | Bin 0 -> 640 bytes gfx/pokemon/mareep/shiny.pal | 4 + gfx/pokemon/marill/anim0.asm | 9 + gfx/pokemon/marill/anim1.asm | 7 + gfx/pokemon/marill/back.2bpp.lz.87e2be16 | Bin 0 -> 249 bytes gfx/pokemon/marill/back.png | Bin 0 -> 329 bytes gfx/pokemon/marill/front.animated.2bpp.lz.7f742686 | Bin 0 -> 451 bytes gfx/pokemon/marill/front.png | Bin 0 -> 719 bytes gfx/pokemon/marill/shiny.pal | 4 + gfx/pokemon/marowak/anim0.asm | 10 + gfx/pokemon/marowak/anim1.asm | 6 + gfx/pokemon/marowak/back.2bpp.lz.055ba40e | Bin 0 -> 368 bytes gfx/pokemon/marowak/back.png | Bin 0 -> 460 bytes .../marowak/front.animated.2bpp.lz.ef1553a0 | Bin 0 -> 700 bytes gfx/pokemon/marowak/front.png | Bin 0 -> 1099 bytes gfx/pokemon/marowak/shiny.pal | 4 + gfx/pokemon/meganium/anim0.asm | 11 + gfx/pokemon/meganium/anim1.asm | 6 + gfx/pokemon/meganium/back.2bpp.lz.d25a5edb | Bin 0 -> 322 bytes gfx/pokemon/meganium/back.png | Bin 0 -> 414 bytes .../meganium/front.animated.2bpp.lz.fe0b9df4 | Bin 0 -> 1056 bytes gfx/pokemon/meganium/front.png | Bin 0 -> 1308 bytes gfx/pokemon/meganium/shiny.pal | 4 + gfx/pokemon/meowth/anim0.asm | 7 + gfx/pokemon/meowth/anim1.asm | 6 + gfx/pokemon/meowth/back.2bpp.lz.4196bd91 | Bin 0 -> 322 bytes gfx/pokemon/meowth/back.png | Bin 0 -> 420 bytes gfx/pokemon/meowth/front.animated.2bpp.lz.144f12f0 | Bin 0 -> 516 bytes gfx/pokemon/meowth/front.png | Bin 0 -> 830 bytes gfx/pokemon/meowth/shiny.pal | 4 + gfx/pokemon/metapod/anim0.asm | 5 + gfx/pokemon/metapod/anim1.asm | 7 + gfx/pokemon/metapod/back.2bpp.lz.b580afc8 | Bin 0 -> 245 bytes gfx/pokemon/metapod/back.png | Bin 0 -> 355 bytes .../metapod/front.animated.2bpp.lz.5025baa2 | Bin 0 -> 317 bytes gfx/pokemon/metapod/front.png | Bin 0 -> 468 bytes gfx/pokemon/metapod/shiny.pal | 4 + gfx/pokemon/mew/anim0.asm | 18 + gfx/pokemon/mew/anim1.asm | 9 + gfx/pokemon/mew/back.2bpp.lz.9947d6eb | Bin 0 -> 335 bytes gfx/pokemon/mew/back.png | Bin 0 -> 411 bytes gfx/pokemon/mew/front.animated.2bpp.lz.b6da9713 | Bin 0 -> 599 bytes gfx/pokemon/mew/front.png | Bin 0 -> 809 bytes gfx/pokemon/mew/shiny.pal | 4 + gfx/pokemon/mewtwo/anim0.asm | 17 + gfx/pokemon/mewtwo/anim1.asm | 6 + gfx/pokemon/mewtwo/back.2bpp.lz.a7d2c077 | Bin 0 -> 350 bytes gfx/pokemon/mewtwo/back.png | Bin 0 -> 463 bytes gfx/pokemon/mewtwo/front.animated.2bpp.lz.45e8b40d | Bin 0 -> 1008 bytes gfx/pokemon/mewtwo/front.png | Bin 0 -> 1331 bytes gfx/pokemon/mewtwo/shiny.pal | 4 + gfx/pokemon/miltank/anim0.asm | 8 + gfx/pokemon/miltank/anim1.asm | 6 + gfx/pokemon/miltank/back.2bpp.lz.b7787e72 | Bin 0 -> 384 bytes gfx/pokemon/miltank/back.png | Bin 0 -> 476 bytes .../miltank/front.animated.2bpp.lz.91da7c3b | Bin 0 -> 625 bytes gfx/pokemon/miltank/front.png | Bin 0 -> 857 bytes gfx/pokemon/miltank/shiny.pal | 4 + gfx/pokemon/misdreavus/anim0.asm | 5 + gfx/pokemon/misdreavus/anim1.asm | 6 + gfx/pokemon/misdreavus/back.2bpp.lz.8bdebfce | Bin 0 -> 362 bytes gfx/pokemon/misdreavus/back.png | Bin 0 -> 395 bytes .../misdreavus/front.animated.2bpp.lz.5f73baa2 | Bin 0 -> 503 bytes gfx/pokemon/misdreavus/front.png | Bin 0 -> 668 bytes gfx/pokemon/misdreavus/shiny.pal | 4 + gfx/pokemon/moltres/anim0.asm | 13 + gfx/pokemon/moltres/anim1.asm | 9 + gfx/pokemon/moltres/back.2bpp.lz.356242c8 | Bin 0 -> 416 bytes gfx/pokemon/moltres/back.png | Bin 0 -> 447 bytes .../moltres/front.animated.2bpp.lz.281bc0ec | Bin 0 -> 1020 bytes gfx/pokemon/moltres/front.png | Bin 0 -> 1647 bytes gfx/pokemon/moltres/shiny.pal | 4 + gfx/pokemon/mr__mime/anim0.asm | 11 + gfx/pokemon/mr__mime/anim1.asm | 6 + gfx/pokemon/mr__mime/back.2bpp.lz.0fb88006 | Bin 0 -> 285 bytes gfx/pokemon/mr__mime/back.png | Bin 0 -> 371 bytes .../mr__mime/front.animated.2bpp.lz.f948d1b8 | Bin 0 -> 753 bytes gfx/pokemon/mr__mime/front.png | Bin 0 -> 1375 bytes gfx/pokemon/mr__mime/shiny.pal | 4 + gfx/pokemon/muk/anim0.asm | 6 + gfx/pokemon/muk/anim1.asm | 6 + gfx/pokemon/muk/back.2bpp.lz.a1f2f370 | Bin 0 -> 347 bytes gfx/pokemon/muk/back.png | Bin 0 -> 420 bytes gfx/pokemon/muk/front.animated.2bpp.lz.530363b2 | Bin 0 -> 846 bytes gfx/pokemon/muk/front.png | Bin 0 -> 1066 bytes gfx/pokemon/muk/shiny.pal | 4 + gfx/pokemon/murkrow/anim0.asm | 10 + gfx/pokemon/murkrow/anim1.asm | 6 + gfx/pokemon/murkrow/back.2bpp.lz.0c347b5b | Bin 0 -> 343 bytes gfx/pokemon/murkrow/back.png | Bin 0 -> 407 bytes .../murkrow/front.animated.2bpp.lz.5d2805e8 | Bin 0 -> 665 bytes gfx/pokemon/murkrow/front.png | Bin 0 -> 887 bytes gfx/pokemon/murkrow/shiny.pal | 4 + gfx/pokemon/natu/anim0.asm | 6 + gfx/pokemon/natu/anim1.asm | 3 + gfx/pokemon/natu/back.2bpp.lz.c8339fb4 | Bin 0 -> 203 bytes gfx/pokemon/natu/back.png | Bin 0 -> 289 bytes gfx/pokemon/natu/front.animated.2bpp.lz.997efaf6 | Bin 0 -> 277 bytes gfx/pokemon/natu/front.png | Bin 0 -> 436 bytes gfx/pokemon/natu/shiny.pal | 4 + gfx/pokemon/nidoking/anim0.asm | 6 + gfx/pokemon/nidoking/anim1.asm | 6 + gfx/pokemon/nidoking/back.2bpp.lz.93211604 | Bin 0 -> 485 bytes gfx/pokemon/nidoking/back.png | Bin 0 -> 597 bytes .../nidoking/front.animated.2bpp.lz.bd38fa1e | Bin 0 -> 1162 bytes gfx/pokemon/nidoking/front.png | Bin 0 -> 1491 bytes gfx/pokemon/nidoking/shiny.pal | 4 + gfx/pokemon/nidoqueen/anim0.asm | 10 + gfx/pokemon/nidoqueen/anim1.asm | 7 + gfx/pokemon/nidoqueen/back.2bpp.lz.f1eb0f0c | Bin 0 -> 387 bytes gfx/pokemon/nidoqueen/back.png | Bin 0 -> 459 bytes .../nidoqueen/front.animated.2bpp.lz.0bf11b0a | Bin 0 -> 1054 bytes gfx/pokemon/nidoqueen/front.png | Bin 0 -> 1567 bytes gfx/pokemon/nidoqueen/shiny.pal | 4 + gfx/pokemon/nidoran_f/anim0.asm | 8 + gfx/pokemon/nidoran_f/anim1.asm | 6 + gfx/pokemon/nidoran_f/back.2bpp.lz.9b6990f1 | Bin 0 -> 334 bytes gfx/pokemon/nidoran_f/back.png | Bin 0 -> 420 bytes .../nidoran_f/front.animated.2bpp.lz.0a4602e7 | Bin 0 -> 506 bytes gfx/pokemon/nidoran_f/front.png | Bin 0 -> 685 bytes gfx/pokemon/nidoran_f/shiny.pal | 4 + gfx/pokemon/nidoran_m/anim0.asm | 8 + gfx/pokemon/nidoran_m/anim1.asm | 6 + gfx/pokemon/nidoran_m/back.2bpp.lz.c9e54720 | Bin 0 -> 411 bytes gfx/pokemon/nidoran_m/back.png | Bin 0 -> 469 bytes .../nidoran_m/front.animated.2bpp.lz.b121beaa | Bin 0 -> 524 bytes gfx/pokemon/nidoran_m/front.png | Bin 0 -> 760 bytes gfx/pokemon/nidoran_m/shiny.pal | 4 + gfx/pokemon/nidorina/anim0.asm | 9 + gfx/pokemon/nidorina/anim1.asm | 6 + gfx/pokemon/nidorina/back.2bpp.lz.a00ecf4a | Bin 0 -> 375 bytes gfx/pokemon/nidorina/back.png | Bin 0 -> 489 bytes .../nidorina/front.animated.2bpp.lz.51532540 | Bin 0 -> 715 bytes gfx/pokemon/nidorina/front.png | Bin 0 -> 979 bytes gfx/pokemon/nidorina/shiny.pal | 4 + gfx/pokemon/nidorino/anim0.asm | 12 + gfx/pokemon/nidorino/anim1.asm | 8 + gfx/pokemon/nidorino/back.2bpp.lz.8504fdd1 | Bin 0 -> 371 bytes gfx/pokemon/nidorino/back.png | Bin 0 -> 474 bytes .../nidorino/front.animated.2bpp.lz.ba11ef23 | Bin 0 -> 833 bytes gfx/pokemon/nidorino/front.png | Bin 0 -> 1181 bytes gfx/pokemon/nidorino/shiny.pal | 4 + gfx/pokemon/ninetales/anim0.asm | 10 + gfx/pokemon/ninetales/anim1.asm | 6 + gfx/pokemon/ninetales/back.2bpp.lz.999b3894 | Bin 0 -> 433 bytes gfx/pokemon/ninetales/back.png | Bin 0 -> 519 bytes .../ninetales/front.animated.2bpp.lz.eef934ff | Bin 0 -> 1227 bytes gfx/pokemon/ninetales/front.png | Bin 0 -> 1573 bytes gfx/pokemon/ninetales/shiny.pal | 4 + gfx/pokemon/noctowl/anim0.asm | 10 + gfx/pokemon/noctowl/anim1.asm | 6 + gfx/pokemon/noctowl/back.2bpp.lz.9c8ac57f | Bin 0 -> 323 bytes gfx/pokemon/noctowl/back.png | Bin 0 -> 405 bytes .../noctowl/front.animated.2bpp.lz.7d6594fe | Bin 0 -> 743 bytes gfx/pokemon/noctowl/front.png | Bin 0 -> 1072 bytes gfx/pokemon/noctowl/shiny.pal | 4 + gfx/pokemon/octillery/anim0.asm | 8 + gfx/pokemon/octillery/anim1.asm | 6 + gfx/pokemon/octillery/back.2bpp.lz.48b6e47d | Bin 0 -> 263 bytes gfx/pokemon/octillery/back.png | Bin 0 -> 354 bytes .../octillery/front.animated.2bpp.lz.de99954b | Bin 0 -> 598 bytes gfx/pokemon/octillery/front.png | Bin 0 -> 780 bytes gfx/pokemon/octillery/shiny.pal | 4 + gfx/pokemon/oddish/anim0.asm | 11 + gfx/pokemon/oddish/anim1.asm | 6 + gfx/pokemon/oddish/back.2bpp.lz.4f9ec682 | Bin 0 -> 244 bytes gfx/pokemon/oddish/back.png | Bin 0 -> 355 bytes gfx/pokemon/oddish/front.animated.2bpp.lz.ea2e0dcd | Bin 0 -> 404 bytes gfx/pokemon/oddish/front.png | Bin 0 -> 549 bytes gfx/pokemon/oddish/shiny.pal | 4 + gfx/pokemon/omanyte/anim0.asm | 5 + gfx/pokemon/omanyte/anim1.asm | 6 + gfx/pokemon/omanyte/back.2bpp.lz.f442a670 | Bin 0 -> 392 bytes gfx/pokemon/omanyte/back.png | Bin 0 -> 451 bytes .../omanyte/front.animated.2bpp.lz.15b343dc | Bin 0 -> 446 bytes gfx/pokemon/omanyte/front.png | Bin 0 -> 606 bytes gfx/pokemon/omanyte/shiny.pal | 4 + gfx/pokemon/omastar/anim0.asm | 5 + gfx/pokemon/omastar/anim1.asm | 6 + gfx/pokemon/omastar/back.2bpp.lz.c75932db | Bin 0 -> 429 bytes gfx/pokemon/omastar/back.png | Bin 0 -> 518 bytes .../omastar/front.animated.2bpp.lz.b3f6c3dc | Bin 0 -> 656 bytes gfx/pokemon/omastar/front.png | Bin 0 -> 898 bytes gfx/pokemon/omastar/shiny.pal | 4 + gfx/pokemon/onix/anim0.asm | 10 + gfx/pokemon/onix/anim1.asm | 7 + gfx/pokemon/onix/back.2bpp.lz.cb580eb9 | Bin 0 -> 378 bytes gfx/pokemon/onix/back.png | Bin 0 -> 469 bytes gfx/pokemon/onix/front.animated.2bpp.lz.84b7e9ef | Bin 0 -> 869 bytes gfx/pokemon/onix/front.png | Bin 0 -> 1528 bytes gfx/pokemon/onix/shiny.pal | 4 + gfx/pokemon/palette_pointers.asm | 541 +++++++++ gfx/pokemon/paras/anim0.asm | 6 + gfx/pokemon/paras/anim1.asm | 6 + gfx/pokemon/paras/back.2bpp.lz.b5a4d1e2 | Bin 0 -> 296 bytes gfx/pokemon/paras/back.png | Bin 0 -> 402 bytes gfx/pokemon/paras/front.animated.2bpp.lz.37a2c2f8 | Bin 0 -> 486 bytes gfx/pokemon/paras/front.png | Bin 0 -> 777 bytes gfx/pokemon/paras/shiny.pal | 4 + gfx/pokemon/parasect/anim0.asm | 13 + gfx/pokemon/parasect/anim1.asm | 5 + gfx/pokemon/parasect/back.2bpp.lz.ed08ef08 | Bin 0 -> 314 bytes gfx/pokemon/parasect/back.png | Bin 0 -> 378 bytes .../parasect/front.animated.2bpp.lz.f78f9f36 | Bin 0 -> 763 bytes gfx/pokemon/parasect/front.png | Bin 0 -> 1168 bytes gfx/pokemon/parasect/shiny.pal | 4 + gfx/pokemon/persian/anim0.asm | 10 + gfx/pokemon/persian/anim1.asm | 6 + gfx/pokemon/persian/back.2bpp.lz.0e1c1c9a | Bin 0 -> 383 bytes gfx/pokemon/persian/back.png | Bin 0 -> 468 bytes .../persian/front.animated.2bpp.lz.0e6a2521 | Bin 0 -> 798 bytes gfx/pokemon/persian/front.png | Bin 0 -> 1240 bytes gfx/pokemon/persian/shiny.pal | 4 + gfx/pokemon/phanpy/anim0.asm | 8 + gfx/pokemon/phanpy/anim1.asm | 6 + gfx/pokemon/phanpy/back.2bpp.lz.a5c509b8 | Bin 0 -> 275 bytes gfx/pokemon/phanpy/back.png | Bin 0 -> 347 bytes gfx/pokemon/phanpy/front.animated.2bpp.lz.53b49445 | Bin 0 -> 414 bytes gfx/pokemon/phanpy/front.png | Bin 0 -> 606 bytes gfx/pokemon/phanpy/shiny.pal | 4 + gfx/pokemon/pic_pointers.asm | 511 ++++++++ gfx/pokemon/pichu/anim0.asm | 6 + gfx/pokemon/pichu/anim1.asm | 6 + gfx/pokemon/pichu/back.2bpp.lz.c5580983 | Bin 0 -> 289 bytes gfx/pokemon/pichu/back.png | Bin 0 -> 376 bytes gfx/pokemon/pichu/front.animated.2bpp.lz.9c1c3bef | Bin 0 -> 386 bytes gfx/pokemon/pichu/front.png | Bin 0 -> 587 bytes gfx/pokemon/pichu/shiny.pal | 4 + gfx/pokemon/pidgeot/anim0.asm | 8 + gfx/pokemon/pidgeot/anim1.asm | 9 + gfx/pokemon/pidgeot/back.2bpp.lz.7d9e44a5 | Bin 0 -> 339 bytes gfx/pokemon/pidgeot/back.png | Bin 0 -> 383 bytes .../pidgeot/front.animated.2bpp.lz.c161ad71 | Bin 0 -> 920 bytes gfx/pokemon/pidgeot/front.png | Bin 0 -> 1078 bytes gfx/pokemon/pidgeot/shiny.pal | 4 + gfx/pokemon/pidgeotto/anim0.asm | 11 + gfx/pokemon/pidgeotto/anim1.asm | 6 + gfx/pokemon/pidgeotto/back.2bpp.lz.8a0dd470 | Bin 0 -> 285 bytes gfx/pokemon/pidgeotto/back.png | Bin 0 -> 382 bytes .../pidgeotto/front.animated.2bpp.lz.8ce78b51 | Bin 0 -> 659 bytes gfx/pokemon/pidgeotto/front.png | Bin 0 -> 877 bytes gfx/pokemon/pidgeotto/shiny.pal | 4 + gfx/pokemon/pidgey/anim0.asm | 11 + gfx/pokemon/pidgey/anim1.asm | 8 + gfx/pokemon/pidgey/back.2bpp.lz.027129e8 | Bin 0 -> 391 bytes gfx/pokemon/pidgey/back.png | Bin 0 -> 517 bytes gfx/pokemon/pidgey/front.animated.2bpp.lz.9acd46ca | Bin 0 -> 506 bytes gfx/pokemon/pidgey/front.png | Bin 0 -> 777 bytes gfx/pokemon/pidgey/shiny.pal | 4 + gfx/pokemon/pikachu/anim0.asm | 12 + gfx/pokemon/pikachu/anim1.asm | 10 + gfx/pokemon/pikachu/back.2bpp.lz.98998807 | Bin 0 -> 354 bytes gfx/pokemon/pikachu/back.png | Bin 0 -> 427 bytes .../pikachu/front.animated.2bpp.lz.9c100565 | Bin 0 -> 570 bytes gfx/pokemon/pikachu/front.png | Bin 0 -> 799 bytes gfx/pokemon/pikachu/shiny.pal | 4 + gfx/pokemon/piloswine/anim0.asm | 5 + gfx/pokemon/piloswine/anim1.asm | 6 + gfx/pokemon/piloswine/back.2bpp.lz.6fe7da21 | Bin 0 -> 210 bytes gfx/pokemon/piloswine/back.png | Bin 0 -> 287 bytes .../piloswine/front.animated.2bpp.lz.f6f37ed2 | Bin 0 -> 653 bytes gfx/pokemon/piloswine/front.png | Bin 0 -> 866 bytes gfx/pokemon/piloswine/shiny.pal | 4 + gfx/pokemon/pineco/anim0.asm | 4 + gfx/pokemon/pineco/anim1.asm | 6 + gfx/pokemon/pineco/back.2bpp.lz.70df8ca3 | Bin 0 -> 319 bytes gfx/pokemon/pineco/back.png | Bin 0 -> 387 bytes gfx/pokemon/pineco/front.animated.2bpp.lz.82d91497 | Bin 0 -> 494 bytes gfx/pokemon/pineco/front.png | Bin 0 -> 653 bytes gfx/pokemon/pineco/shiny.pal | 4 + gfx/pokemon/pinsir/anim0.asm | 8 + gfx/pokemon/pinsir/anim1.asm | 6 + gfx/pokemon/pinsir/back.2bpp.lz.09ac7dd4 | Bin 0 -> 429 bytes gfx/pokemon/pinsir/back.png | Bin 0 -> 514 bytes gfx/pokemon/pinsir/front.animated.2bpp.lz.1e3839f2 | Bin 0 -> 815 bytes gfx/pokemon/pinsir/front.png | Bin 0 -> 1137 bytes gfx/pokemon/pinsir/shiny.pal | 4 + gfx/pokemon/politoed/anim0.asm | 9 + gfx/pokemon/politoed/anim1.asm | 6 + gfx/pokemon/politoed/back.2bpp.lz.7873e52f | Bin 0 -> 279 bytes gfx/pokemon/politoed/back.png | Bin 0 -> 375 bytes .../politoed/front.animated.2bpp.lz.408a9c1a | Bin 0 -> 796 bytes gfx/pokemon/politoed/front.png | Bin 0 -> 1058 bytes gfx/pokemon/politoed/shiny.pal | 4 + gfx/pokemon/poliwag/anim0.asm | 8 + gfx/pokemon/poliwag/anim1.asm | 10 + gfx/pokemon/poliwag/back.2bpp.lz.35b9ee20 | Bin 0 -> 240 bytes gfx/pokemon/poliwag/back.png | Bin 0 -> 305 bytes .../poliwag/front.animated.2bpp.lz.c7d26488 | Bin 0 -> 379 bytes gfx/pokemon/poliwag/front.png | Bin 0 -> 627 bytes gfx/pokemon/poliwag/shiny.pal | 4 + gfx/pokemon/poliwhirl/anim0.asm | 9 + gfx/pokemon/poliwhirl/anim1.asm | 6 + gfx/pokemon/poliwhirl/back.2bpp.lz.76564593 | Bin 0 -> 336 bytes gfx/pokemon/poliwhirl/back.png | Bin 0 -> 403 bytes .../poliwhirl/front.animated.2bpp.lz.9a36033f | Bin 0 -> 728 bytes gfx/pokemon/poliwhirl/front.png | Bin 0 -> 1072 bytes gfx/pokemon/poliwhirl/shiny.pal | 4 + gfx/pokemon/poliwrath/anim0.asm | 8 + gfx/pokemon/poliwrath/anim1.asm | 6 + gfx/pokemon/poliwrath/back.2bpp.lz.240e911e | Bin 0 -> 374 bytes gfx/pokemon/poliwrath/back.png | Bin 0 -> 446 bytes .../poliwrath/front.animated.2bpp.lz.fb1157ec | Bin 0 -> 859 bytes gfx/pokemon/poliwrath/front.png | Bin 0 -> 1145 bytes gfx/pokemon/poliwrath/shiny.pal | 4 + gfx/pokemon/ponyta/anim0.asm | 10 + gfx/pokemon/ponyta/anim1.asm | 5 + gfx/pokemon/ponyta/back.2bpp.lz.10ddc7ea | Bin 0 -> 379 bytes gfx/pokemon/ponyta/back.png | Bin 0 -> 471 bytes gfx/pokemon/ponyta/front.animated.2bpp.lz.2c8708d6 | Bin 0 -> 665 bytes gfx/pokemon/ponyta/front.png | Bin 0 -> 989 bytes gfx/pokemon/ponyta/shiny.pal | 4 + gfx/pokemon/porygon/anim0.asm | 9 + gfx/pokemon/porygon/anim1.asm | 6 + gfx/pokemon/porygon/back.2bpp.lz.b3d71350 | Bin 0 -> 297 bytes gfx/pokemon/porygon/back.png | Bin 0 -> 366 bytes .../porygon/front.animated.2bpp.lz.70fc1333 | Bin 0 -> 522 bytes gfx/pokemon/porygon/front.png | Bin 0 -> 628 bytes gfx/pokemon/porygon/shiny.pal | 4 + gfx/pokemon/porygon2/anim0.asm | 7 + gfx/pokemon/porygon2/anim1.asm | 3 + gfx/pokemon/porygon2/back.2bpp.lz.5bba6e40 | Bin 0 -> 320 bytes gfx/pokemon/porygon2/back.png | Bin 0 -> 396 bytes .../porygon2/front.animated.2bpp.lz.a6410e75 | Bin 0 -> 513 bytes gfx/pokemon/porygon2/front.png | Bin 0 -> 669 bytes gfx/pokemon/porygon2/shiny.pal | 4 + gfx/pokemon/primeape/anim0.asm | 8 + gfx/pokemon/primeape/anim1.asm | 8 + gfx/pokemon/primeape/back.2bpp.lz.690e407d | Bin 0 -> 359 bytes gfx/pokemon/primeape/back.png | Bin 0 -> 449 bytes .../primeape/front.animated.2bpp.lz.218352ec | Bin 0 -> 881 bytes gfx/pokemon/primeape/front.png | Bin 0 -> 1197 bytes gfx/pokemon/primeape/shiny.pal | 4 + gfx/pokemon/psyduck/anim0.asm | 8 + gfx/pokemon/psyduck/anim1.asm | 6 + gfx/pokemon/psyduck/back.2bpp.lz.d68cddb2 | Bin 0 -> 356 bytes gfx/pokemon/psyduck/back.png | Bin 0 -> 426 bytes .../psyduck/front.animated.2bpp.lz.e4efd065 | Bin 0 -> 484 bytes gfx/pokemon/psyduck/front.png | Bin 0 -> 605 bytes gfx/pokemon/psyduck/shiny.pal | 4 + gfx/pokemon/pupitar/anim0.asm | 8 + gfx/pokemon/pupitar/anim1.asm | 7 + gfx/pokemon/pupitar/back.2bpp.lz.100020c1 | Bin 0 -> 385 bytes gfx/pokemon/pupitar/back.png | Bin 0 -> 458 bytes .../pupitar/front.animated.2bpp.lz.418c0962 | Bin 0 -> 446 bytes gfx/pokemon/pupitar/front.png | Bin 0 -> 607 bytes gfx/pokemon/pupitar/shiny.pal | 4 + gfx/pokemon/quagsire/anim0.asm | 6 + gfx/pokemon/quagsire/anim1.asm | 4 + gfx/pokemon/quagsire/back.2bpp.lz.64b2ec05 | Bin 0 -> 316 bytes gfx/pokemon/quagsire/back.png | Bin 0 -> 380 bytes .../quagsire/front.animated.2bpp.lz.bd292a94 | Bin 0 -> 576 bytes gfx/pokemon/quagsire/front.png | Bin 0 -> 802 bytes gfx/pokemon/quagsire/shiny.pal | 4 + gfx/pokemon/questionmark/front.2bpp.lz.14c284f5 | Bin 0 -> 144 bytes gfx/pokemon/questionmark/front.png | Bin 0 -> 183 bytes gfx/pokemon/quilava/anim0.asm | 9 + gfx/pokemon/quilava/anim1.asm | 6 + gfx/pokemon/quilava/back.2bpp.lz.500906e1 | Bin 0 -> 400 bytes gfx/pokemon/quilava/back.png | Bin 0 -> 476 bytes .../quilava/front.animated.2bpp.lz.f42f4c67 | Bin 0 -> 738 bytes gfx/pokemon/quilava/front.png | Bin 0 -> 1069 bytes gfx/pokemon/quilava/shiny.pal | 4 + gfx/pokemon/qwilfish/anim0.asm | 8 + gfx/pokemon/qwilfish/anim1.asm | 6 + gfx/pokemon/qwilfish/back.2bpp.lz.b2bb83c6 | Bin 0 -> 390 bytes gfx/pokemon/qwilfish/back.png | Bin 0 -> 468 bytes .../qwilfish/front.animated.2bpp.lz.9e79c033 | Bin 0 -> 424 bytes gfx/pokemon/qwilfish/front.png | Bin 0 -> 640 bytes gfx/pokemon/qwilfish/shiny.pal | 4 + gfx/pokemon/raichu/anim0.asm | 8 + gfx/pokemon/raichu/anim1.asm | 6 + gfx/pokemon/raichu/back.2bpp.lz.fa4c7423 | Bin 0 -> 375 bytes gfx/pokemon/raichu/back.png | Bin 0 -> 414 bytes gfx/pokemon/raichu/front.animated.2bpp.lz.25f943cb | Bin 0 -> 891 bytes gfx/pokemon/raichu/front.png | Bin 0 -> 1097 bytes gfx/pokemon/raichu/shiny.pal | 4 + gfx/pokemon/raikou/anim0.asm | 8 + gfx/pokemon/raikou/anim1.asm | 8 + gfx/pokemon/raikou/back.2bpp.lz.657ddfaf | Bin 0 -> 243 bytes gfx/pokemon/raikou/back.png | Bin 0 -> 350 bytes gfx/pokemon/raikou/front.animated.2bpp.lz.464b6fd7 | Bin 0 -> 1134 bytes gfx/pokemon/raikou/front.png | Bin 0 -> 1516 bytes gfx/pokemon/raikou/shiny.pal | 4 + gfx/pokemon/rapidash/anim0.asm | 14 + gfx/pokemon/rapidash/anim1.asm | 6 + gfx/pokemon/rapidash/back.2bpp.lz.fdd1946c | Bin 0 -> 404 bytes gfx/pokemon/rapidash/back.png | Bin 0 -> 466 bytes .../rapidash/front.animated.2bpp.lz.d5ac5a96 | Bin 0 -> 1068 bytes gfx/pokemon/rapidash/front.png | Bin 0 -> 1497 bytes gfx/pokemon/rapidash/shiny.pal | 4 + gfx/pokemon/raticate/anim0.asm | 7 + gfx/pokemon/raticate/anim1.asm | 10 + gfx/pokemon/raticate/back.2bpp.lz.b2a77d02 | Bin 0 -> 357 bytes gfx/pokemon/raticate/back.png | Bin 0 -> 467 bytes .../raticate/front.animated.2bpp.lz.ef1a4689 | Bin 0 -> 797 bytes gfx/pokemon/raticate/front.png | Bin 0 -> 1052 bytes gfx/pokemon/raticate/shiny.pal | 4 + gfx/pokemon/rattata/anim0.asm | 10 + gfx/pokemon/rattata/anim1.asm | 6 + gfx/pokemon/rattata/back.2bpp.lz.86979cd5 | Bin 0 -> 329 bytes gfx/pokemon/rattata/back.png | Bin 0 -> 436 bytes .../rattata/front.animated.2bpp.lz.5bdaea2b | Bin 0 -> 534 bytes gfx/pokemon/rattata/front.png | Bin 0 -> 702 bytes gfx/pokemon/rattata/shiny.pal | 4 + gfx/pokemon/remoraid/anim0.asm | 5 + gfx/pokemon/remoraid/anim1.asm | 6 + gfx/pokemon/remoraid/back.2bpp.lz.8a6e4f29 | Bin 0 -> 353 bytes gfx/pokemon/remoraid/back.png | Bin 0 -> 431 bytes .../remoraid/front.animated.2bpp.lz.4eaf1230 | Bin 0 -> 379 bytes gfx/pokemon/remoraid/front.png | Bin 0 -> 653 bytes gfx/pokemon/remoraid/shiny.pal | 4 + gfx/pokemon/rhydon/anim0.asm | 10 + gfx/pokemon/rhydon/anim1.asm | 6 + gfx/pokemon/rhydon/back.2bpp.lz.4a3ea4af | Bin 0 -> 413 bytes gfx/pokemon/rhydon/back.png | Bin 0 -> 531 bytes gfx/pokemon/rhydon/front.animated.2bpp.lz.7257fc4f | Bin 0 -> 953 bytes gfx/pokemon/rhydon/front.png | Bin 0 -> 1337 bytes gfx/pokemon/rhydon/shiny.pal | 4 + gfx/pokemon/rhyhorn/anim0.asm | 5 + gfx/pokemon/rhyhorn/anim1.asm | 6 + gfx/pokemon/rhyhorn/back.2bpp.lz.b9a8e755 | Bin 0 -> 300 bytes gfx/pokemon/rhyhorn/back.png | Bin 0 -> 425 bytes .../rhyhorn/front.animated.2bpp.lz.bdfdf7dc | Bin 0 -> 926 bytes gfx/pokemon/rhyhorn/front.png | Bin 0 -> 1191 bytes gfx/pokemon/rhyhorn/shiny.pal | 4 + gfx/pokemon/sandshrew/anim0.asm | 13 + gfx/pokemon/sandshrew/anim1.asm | 7 + gfx/pokemon/sandshrew/back.2bpp.lz.7655193f | Bin 0 -> 397 bytes gfx/pokemon/sandshrew/back.png | Bin 0 -> 518 bytes .../sandshrew/front.animated.2bpp.lz.758def3d | Bin 0 -> 512 bytes gfx/pokemon/sandshrew/front.png | Bin 0 -> 810 bytes gfx/pokemon/sandshrew/shiny.pal | 4 + gfx/pokemon/sandslash/anim0.asm | 10 + gfx/pokemon/sandslash/anim1.asm | 6 + gfx/pokemon/sandslash/back.2bpp.lz.2999f4c6 | Bin 0 -> 412 bytes gfx/pokemon/sandslash/back.png | Bin 0 -> 504 bytes .../sandslash/front.animated.2bpp.lz.d6498722 | Bin 0 -> 825 bytes gfx/pokemon/sandslash/front.png | Bin 0 -> 1152 bytes gfx/pokemon/sandslash/shiny.pal | 4 + gfx/pokemon/scizor/anim0.asm | 10 + gfx/pokemon/scizor/anim1.asm | 6 + gfx/pokemon/scizor/back.2bpp.lz.85149f27 | Bin 0 -> 361 bytes gfx/pokemon/scizor/back.png | Bin 0 -> 450 bytes gfx/pokemon/scizor/front.animated.2bpp.lz.afd0131a | Bin 0 -> 1050 bytes gfx/pokemon/scizor/front.png | Bin 0 -> 1710 bytes gfx/pokemon/scizor/shiny.pal | 4 + gfx/pokemon/scyther/anim0.asm | 9 + gfx/pokemon/scyther/anim1.asm | 6 + gfx/pokemon/scyther/back.2bpp.lz.1d7f8a87 | Bin 0 -> 366 bytes gfx/pokemon/scyther/back.png | Bin 0 -> 453 bytes .../scyther/front.animated.2bpp.lz.86d1a281 | Bin 0 -> 854 bytes gfx/pokemon/scyther/front.png | Bin 0 -> 1352 bytes gfx/pokemon/scyther/shiny.pal | 4 + gfx/pokemon/seadra/anim0.asm | 7 + gfx/pokemon/seadra/anim1.asm | 7 + gfx/pokemon/seadra/back.2bpp.lz.354a02e4 | Bin 0 -> 412 bytes gfx/pokemon/seadra/back.png | Bin 0 -> 508 bytes gfx/pokemon/seadra/front.animated.2bpp.lz.efa9c88c | Bin 0 -> 570 bytes gfx/pokemon/seadra/front.png | Bin 0 -> 791 bytes gfx/pokemon/seadra/shiny.pal | 4 + gfx/pokemon/seaking/anim0.asm | 7 + gfx/pokemon/seaking/anim1.asm | 7 + gfx/pokemon/seaking/back.2bpp.lz.3e699249 | Bin 0 -> 356 bytes gfx/pokemon/seaking/back.png | Bin 0 -> 476 bytes .../seaking/front.animated.2bpp.lz.fb4eb288 | Bin 0 -> 848 bytes gfx/pokemon/seaking/front.png | Bin 0 -> 1174 bytes gfx/pokemon/seaking/shiny.pal | 4 + gfx/pokemon/seel/anim0.asm | 8 + gfx/pokemon/seel/anim1.asm | 7 + gfx/pokemon/seel/back.2bpp.lz.518a4d40 | Bin 0 -> 317 bytes gfx/pokemon/seel/back.png | Bin 0 -> 375 bytes gfx/pokemon/seel/front.animated.2bpp.lz.2dc48023 | Bin 0 -> 644 bytes gfx/pokemon/seel/front.png | Bin 0 -> 808 bytes gfx/pokemon/seel/shiny.pal | 4 + gfx/pokemon/sentret/anim0.asm | 6 + gfx/pokemon/sentret/anim1.asm | 6 + gfx/pokemon/sentret/back.2bpp.lz.c19b7f3b | Bin 0 -> 261 bytes gfx/pokemon/sentret/back.png | Bin 0 -> 360 bytes .../sentret/front.animated.2bpp.lz.07c594c0 | Bin 0 -> 369 bytes gfx/pokemon/sentret/front.png | Bin 0 -> 546 bytes gfx/pokemon/sentret/shiny.pal | 4 + gfx/pokemon/shellder/anim0.asm | 6 + gfx/pokemon/shellder/anim1.asm | 6 + gfx/pokemon/shellder/back.2bpp.lz.61e27953 | Bin 0 -> 395 bytes gfx/pokemon/shellder/back.png | Bin 0 -> 481 bytes .../shellder/front.animated.2bpp.lz.df57d475 | Bin 0 -> 442 bytes gfx/pokemon/shellder/front.png | Bin 0 -> 605 bytes gfx/pokemon/shellder/shiny.pal | 4 + gfx/pokemon/shuckle/anim0.asm | 10 + gfx/pokemon/shuckle/anim1.asm | 6 + gfx/pokemon/shuckle/back.2bpp.lz.8d66899b | Bin 0 -> 236 bytes gfx/pokemon/shuckle/back.png | Bin 0 -> 342 bytes .../shuckle/front.animated.2bpp.lz.dee153d4 | Bin 0 -> 379 bytes gfx/pokemon/shuckle/front.png | Bin 0 -> 633 bytes gfx/pokemon/shuckle/shiny.pal | 4 + gfx/pokemon/skarmory/anim0.asm | 7 + gfx/pokemon/skarmory/anim1.asm | 6 + gfx/pokemon/skarmory/back.2bpp.lz.f5e2e2e4 | Bin 0 -> 246 bytes gfx/pokemon/skarmory/back.png | Bin 0 -> 367 bytes .../skarmory/front.animated.2bpp.lz.7de4675e | Bin 0 -> 893 bytes gfx/pokemon/skarmory/front.png | Bin 0 -> 1108 bytes gfx/pokemon/skarmory/shiny.pal | 4 + gfx/pokemon/skiploom/anim0.asm | 6 + gfx/pokemon/skiploom/anim1.asm | 6 + gfx/pokemon/skiploom/back.2bpp.lz.54e87a0c | Bin 0 -> 302 bytes gfx/pokemon/skiploom/back.png | Bin 0 -> 405 bytes .../skiploom/front.animated.2bpp.lz.6436d556 | Bin 0 -> 468 bytes gfx/pokemon/skiploom/front.png | Bin 0 -> 638 bytes gfx/pokemon/skiploom/shiny.pal | 4 + gfx/pokemon/slowbro/anim0.asm | 13 + gfx/pokemon/slowbro/anim1.asm | 6 + gfx/pokemon/slowbro/back.2bpp.lz.3676b1f1 | Bin 0 -> 342 bytes gfx/pokemon/slowbro/back.png | Bin 0 -> 412 bytes .../slowbro/front.animated.2bpp.lz.257e2e84 | Bin 0 -> 917 bytes gfx/pokemon/slowbro/front.png | Bin 0 -> 1204 bytes gfx/pokemon/slowbro/shiny.pal | 4 + gfx/pokemon/slowking/anim0.asm | 11 + gfx/pokemon/slowking/anim1.asm | 4 + gfx/pokemon/slowking/back.2bpp.lz.a90de69e | Bin 0 -> 422 bytes gfx/pokemon/slowking/back.png | Bin 0 -> 507 bytes .../slowking/front.animated.2bpp.lz.4c2f7140 | Bin 0 -> 878 bytes gfx/pokemon/slowking/front.png | Bin 0 -> 1098 bytes gfx/pokemon/slowking/shiny.pal | 4 + gfx/pokemon/slowpoke/anim0.asm | 5 + gfx/pokemon/slowpoke/anim1.asm | 3 + gfx/pokemon/slowpoke/back.2bpp.lz.f2d1bb5c | Bin 0 -> 235 bytes gfx/pokemon/slowpoke/back.png | Bin 0 -> 331 bytes .../slowpoke/front.animated.2bpp.lz.42347014 | Bin 0 -> 453 bytes gfx/pokemon/slowpoke/front.png | Bin 0 -> 613 bytes gfx/pokemon/slowpoke/shiny.pal | 4 + gfx/pokemon/slugma/anim0.asm | 10 + gfx/pokemon/slugma/anim1.asm | 6 + gfx/pokemon/slugma/back.2bpp.lz.dc25c77a | Bin 0 -> 323 bytes gfx/pokemon/slugma/back.png | Bin 0 -> 406 bytes gfx/pokemon/slugma/front.animated.2bpp.lz.c1a44906 | Bin 0 -> 454 bytes gfx/pokemon/slugma/front.png | Bin 0 -> 749 bytes gfx/pokemon/slugma/shiny.pal | 4 + gfx/pokemon/smeargle/anim0.asm | 7 + gfx/pokemon/smeargle/anim1.asm | 6 + gfx/pokemon/smeargle/back.2bpp.lz.2de2de8c | Bin 0 -> 360 bytes gfx/pokemon/smeargle/back.png | Bin 0 -> 439 bytes .../smeargle/front.animated.2bpp.lz.82ec0f51 | Bin 0 -> 667 bytes gfx/pokemon/smeargle/front.png | Bin 0 -> 971 bytes gfx/pokemon/smeargle/shiny.pal | 4 + gfx/pokemon/smoochum/anim0.asm | 5 + gfx/pokemon/smoochum/anim1.asm | 6 + gfx/pokemon/smoochum/back.2bpp.lz.af01f906 | Bin 0 -> 289 bytes gfx/pokemon/smoochum/back.png | Bin 0 -> 378 bytes .../smoochum/front.animated.2bpp.lz.5977720b | Bin 0 -> 453 bytes gfx/pokemon/smoochum/front.png | Bin 0 -> 593 bytes gfx/pokemon/smoochum/shiny.pal | 4 + gfx/pokemon/sneasel/anim0.asm | 4 + gfx/pokemon/sneasel/anim1.asm | 5 + gfx/pokemon/sneasel/back.2bpp.lz.5298828d | Bin 0 -> 344 bytes gfx/pokemon/sneasel/back.png | Bin 0 -> 415 bytes .../sneasel/front.animated.2bpp.lz.8f7db3e9 | Bin 0 -> 678 bytes gfx/pokemon/sneasel/front.png | Bin 0 -> 1004 bytes gfx/pokemon/sneasel/shiny.pal | 4 + gfx/pokemon/snorlax/anim0.asm | 10 + gfx/pokemon/snorlax/anim1.asm | 6 + gfx/pokemon/snorlax/back.2bpp.lz.90570272 | Bin 0 -> 166 bytes gfx/pokemon/snorlax/back.png | Bin 0 -> 274 bytes .../snorlax/front.animated.2bpp.lz.8253357b | Bin 0 -> 677 bytes gfx/pokemon/snorlax/front.png | Bin 0 -> 971 bytes gfx/pokemon/snorlax/shiny.pal | 4 + gfx/pokemon/snubbull/anim0.asm | 11 + gfx/pokemon/snubbull/anim1.asm | 6 + gfx/pokemon/snubbull/back.2bpp.lz.26eaaa5d | Bin 0 -> 331 bytes gfx/pokemon/snubbull/back.png | Bin 0 -> 431 bytes .../snubbull/front.animated.2bpp.lz.a1b4eb88 | Bin 0 -> 633 bytes gfx/pokemon/snubbull/front.png | Bin 0 -> 882 bytes gfx/pokemon/snubbull/shiny.pal | 4 + gfx/pokemon/spearow/anim0.asm | 11 + gfx/pokemon/spearow/anim1.asm | 7 + gfx/pokemon/spearow/back.2bpp.lz.b8e760aa | Bin 0 -> 310 bytes gfx/pokemon/spearow/back.png | Bin 0 -> 416 bytes .../spearow/front.animated.2bpp.lz.59d61986 | Bin 0 -> 529 bytes gfx/pokemon/spearow/front.png | Bin 0 -> 840 bytes gfx/pokemon/spearow/shiny.pal | 4 + gfx/pokemon/spinarak/anim0.asm | 8 + gfx/pokemon/spinarak/anim1.asm | 6 + gfx/pokemon/spinarak/back.2bpp.lz.14002836 | Bin 0 -> 243 bytes gfx/pokemon/spinarak/back.png | Bin 0 -> 341 bytes .../spinarak/front.animated.2bpp.lz.31ab6868 | Bin 0 -> 302 bytes gfx/pokemon/spinarak/front.png | Bin 0 -> 474 bytes gfx/pokemon/spinarak/shiny.pal | 4 + gfx/pokemon/squirtle/anim0.asm | 10 + gfx/pokemon/squirtle/anim1.asm | 6 + gfx/pokemon/squirtle/back.2bpp.lz.76295ae8 | Bin 0 -> 239 bytes gfx/pokemon/squirtle/back.png | Bin 0 -> 344 bytes .../squirtle/front.animated.2bpp.lz.9b6f9ec9 | Bin 0 -> 483 bytes gfx/pokemon/squirtle/front.png | Bin 0 -> 633 bytes gfx/pokemon/squirtle/shiny.pal | 4 + gfx/pokemon/stantler/anim0.asm | 9 + gfx/pokemon/stantler/anim1.asm | 6 + gfx/pokemon/stantler/back.2bpp.lz.16502aac | Bin 0 -> 360 bytes gfx/pokemon/stantler/back.png | Bin 0 -> 483 bytes .../stantler/front.animated.2bpp.lz.46b7dd06 | Bin 0 -> 798 bytes gfx/pokemon/stantler/front.png | Bin 0 -> 1066 bytes gfx/pokemon/stantler/shiny.pal | 4 + gfx/pokemon/starmie/anim0.asm | 8 + gfx/pokemon/starmie/anim1.asm | 5 + gfx/pokemon/starmie/back.2bpp.lz.a8923741 | Bin 0 -> 267 bytes gfx/pokemon/starmie/back.png | Bin 0 -> 351 bytes .../starmie/front.animated.2bpp.lz.522b6699 | Bin 0 -> 663 bytes gfx/pokemon/starmie/front.png | Bin 0 -> 911 bytes gfx/pokemon/starmie/shiny.pal | 4 + gfx/pokemon/staryu/anim0.asm | 8 + gfx/pokemon/staryu/anim1.asm | 7 + gfx/pokemon/staryu/back.2bpp.lz.79ea9d00 | Bin 0 -> 285 bytes gfx/pokemon/staryu/back.png | Bin 0 -> 379 bytes gfx/pokemon/staryu/front.animated.2bpp.lz.22f1d06b | Bin 0 -> 517 bytes gfx/pokemon/staryu/front.png | Bin 0 -> 783 bytes gfx/pokemon/staryu/shiny.pal | 4 + gfx/pokemon/steelix/anim0.asm | 7 + gfx/pokemon/steelix/anim1.asm | 6 + gfx/pokemon/steelix/back.2bpp.lz.f3c03e61 | Bin 0 -> 384 bytes gfx/pokemon/steelix/back.png | Bin 0 -> 518 bytes .../steelix/front.animated.2bpp.lz.42f3f8d1 | Bin 0 -> 996 bytes gfx/pokemon/steelix/front.png | Bin 0 -> 1397 bytes gfx/pokemon/steelix/shiny.pal | 4 + gfx/pokemon/sudowoodo/anim0.asm | 8 + gfx/pokemon/sudowoodo/anim1.asm | 6 + gfx/pokemon/sudowoodo/back.2bpp.lz.728036c6 | Bin 0 -> 369 bytes gfx/pokemon/sudowoodo/back.png | Bin 0 -> 454 bytes .../sudowoodo/front.animated.2bpp.lz.b0f04991 | Bin 0 -> 574 bytes gfx/pokemon/sudowoodo/front.png | Bin 0 -> 715 bytes gfx/pokemon/sudowoodo/shiny.pal | 4 + gfx/pokemon/suicune/anim0.asm | 13 + gfx/pokemon/suicune/anim1.asm | 7 + gfx/pokemon/suicune/back.2bpp.lz.5c49d112 | Bin 0 -> 423 bytes gfx/pokemon/suicune/back.png | Bin 0 -> 518 bytes .../suicune/front.animated.2bpp.lz.64698c0a | Bin 0 -> 1085 bytes gfx/pokemon/suicune/front.png | Bin 0 -> 1669 bytes gfx/pokemon/suicune/shiny.pal | 4 + gfx/pokemon/sunflora/anim0.asm | 5 + gfx/pokemon/sunflora/anim1.asm | 6 + gfx/pokemon/sunflora/back.2bpp.lz.9d0684f0 | Bin 0 -> 415 bytes gfx/pokemon/sunflora/back.png | Bin 0 -> 505 bytes .../sunflora/front.animated.2bpp.lz.258c3e67 | Bin 0 -> 619 bytes gfx/pokemon/sunflora/front.png | Bin 0 -> 907 bytes gfx/pokemon/sunflora/shiny.pal | 4 + gfx/pokemon/sunkern/anim0.asm | 7 + gfx/pokemon/sunkern/anim1.asm | 6 + gfx/pokemon/sunkern/back.2bpp.lz.d28f6303 | Bin 0 -> 309 bytes gfx/pokemon/sunkern/back.png | Bin 0 -> 393 bytes .../sunkern/front.animated.2bpp.lz.316c5261 | Bin 0 -> 371 bytes gfx/pokemon/sunkern/front.png | Bin 0 -> 539 bytes gfx/pokemon/sunkern/shiny.pal | 4 + gfx/pokemon/swinub/anim0.asm | 7 + gfx/pokemon/swinub/anim1.asm | 6 + gfx/pokemon/swinub/back.2bpp.lz.1ebbfabf | Bin 0 -> 224 bytes gfx/pokemon/swinub/back.png | Bin 0 -> 287 bytes gfx/pokemon/swinub/front.animated.2bpp.lz.228147a5 | Bin 0 -> 298 bytes gfx/pokemon/swinub/front.png | Bin 0 -> 397 bytes gfx/pokemon/swinub/shiny.pal | 4 + gfx/pokemon/tangela/anim0.asm | 5 + gfx/pokemon/tangela/anim1.asm | 6 + gfx/pokemon/tangela/back.2bpp.lz.435194a6 | Bin 0 -> 229 bytes gfx/pokemon/tangela/back.png | Bin 0 -> 321 bytes .../tangela/front.animated.2bpp.lz.7cb3fed8 | Bin 0 -> 633 bytes gfx/pokemon/tangela/front.png | Bin 0 -> 806 bytes gfx/pokemon/tangela/shiny.pal | 4 + gfx/pokemon/tauros/anim0.asm | 11 + gfx/pokemon/tauros/anim1.asm | 6 + gfx/pokemon/tauros/back.2bpp.lz.f487c586 | Bin 0 -> 231 bytes gfx/pokemon/tauros/back.png | Bin 0 -> 305 bytes gfx/pokemon/tauros/front.animated.2bpp.lz.982dd0db | Bin 0 -> 1108 bytes gfx/pokemon/tauros/front.png | Bin 0 -> 1527 bytes gfx/pokemon/tauros/shiny.pal | 4 + gfx/pokemon/teddiursa/anim0.asm | 9 + gfx/pokemon/teddiursa/anim1.asm | 6 + gfx/pokemon/teddiursa/back.2bpp.lz.53f6e34e | Bin 0 -> 276 bytes gfx/pokemon/teddiursa/back.png | Bin 0 -> 344 bytes .../teddiursa/front.animated.2bpp.lz.5f9648c7 | Bin 0 -> 395 bytes gfx/pokemon/teddiursa/front.png | Bin 0 -> 594 bytes gfx/pokemon/teddiursa/shiny.pal | 4 + gfx/pokemon/tentacool/anim0.asm | 6 + gfx/pokemon/tentacool/anim1.asm | 6 + gfx/pokemon/tentacool/back.2bpp.lz.ae7b2102 | Bin 0 -> 295 bytes gfx/pokemon/tentacool/back.png | Bin 0 -> 397 bytes .../tentacool/front.animated.2bpp.lz.7a86457c | Bin 0 -> 441 bytes gfx/pokemon/tentacool/front.png | Bin 0 -> 652 bytes gfx/pokemon/tentacool/shiny.pal | 4 + gfx/pokemon/tentacruel/anim0.asm | 7 + gfx/pokemon/tentacruel/anim1.asm | 7 + gfx/pokemon/tentacruel/back.2bpp.lz.0e344f19 | Bin 0 -> 375 bytes gfx/pokemon/tentacruel/back.png | Bin 0 -> 437 bytes .../tentacruel/front.animated.2bpp.lz.f13e5904 | Bin 0 -> 702 bytes gfx/pokemon/tentacruel/front.png | Bin 0 -> 876 bytes gfx/pokemon/tentacruel/shiny.pal | 4 + gfx/pokemon/togepi/anim0.asm | 8 + gfx/pokemon/togepi/anim1.asm | 6 + gfx/pokemon/togepi/back.2bpp.lz.0e22cc02 | Bin 0 -> 270 bytes gfx/pokemon/togepi/back.png | Bin 0 -> 376 bytes gfx/pokemon/togepi/front.animated.2bpp.lz.0cf7ba07 | Bin 0 -> 321 bytes gfx/pokemon/togepi/front.png | Bin 0 -> 469 bytes gfx/pokemon/togepi/shiny.pal | 4 + gfx/pokemon/togetic/anim0.asm | 8 + gfx/pokemon/togetic/anim1.asm | 6 + gfx/pokemon/togetic/back.2bpp.lz.62cbb330 | Bin 0 -> 368 bytes gfx/pokemon/togetic/back.png | Bin 0 -> 464 bytes .../togetic/front.animated.2bpp.lz.5797583e | Bin 0 -> 644 bytes gfx/pokemon/togetic/front.png | Bin 0 -> 962 bytes gfx/pokemon/togetic/shiny.pal | 4 + gfx/pokemon/totodile/anim0.asm | 10 + gfx/pokemon/totodile/anim1.asm | 7 + gfx/pokemon/totodile/back.2bpp.lz.ab6bc2a1 | Bin 0 -> 332 bytes gfx/pokemon/totodile/back.png | Bin 0 -> 405 bytes .../totodile/front.animated.2bpp.lz.afce8cd0 | Bin 0 -> 561 bytes gfx/pokemon/totodile/front.png | Bin 0 -> 765 bytes gfx/pokemon/totodile/shiny.pal | 4 + gfx/pokemon/typhlosion/anim0.asm | 11 + gfx/pokemon/typhlosion/anim1.asm | 6 + gfx/pokemon/typhlosion/back.2bpp.lz.83be0292 | Bin 0 -> 388 bytes gfx/pokemon/typhlosion/back.png | Bin 0 -> 462 bytes .../typhlosion/front.animated.2bpp.lz.65adc1e1 | Bin 0 -> 941 bytes gfx/pokemon/typhlosion/front.png | Bin 0 -> 1240 bytes gfx/pokemon/typhlosion/shiny.pal | 4 + gfx/pokemon/tyranitar/anim0.asm | 9 + gfx/pokemon/tyranitar/anim1.asm | 6 + gfx/pokemon/tyranitar/back.2bpp.lz.05b022c9 | Bin 0 -> 413 bytes gfx/pokemon/tyranitar/back.png | Bin 0 -> 497 bytes .../tyranitar/front.animated.2bpp.lz.e0e9187e | Bin 0 -> 1021 bytes gfx/pokemon/tyranitar/front.png | Bin 0 -> 1479 bytes gfx/pokemon/tyranitar/shiny.pal | 4 + gfx/pokemon/tyrogue/anim0.asm | 7 + gfx/pokemon/tyrogue/anim1.asm | 6 + gfx/pokemon/tyrogue/back.2bpp.lz.5d84cef1 | Bin 0 -> 361 bytes gfx/pokemon/tyrogue/back.png | Bin 0 -> 465 bytes .../tyrogue/front.animated.2bpp.lz.a3790421 | Bin 0 -> 470 bytes gfx/pokemon/tyrogue/front.png | Bin 0 -> 755 bytes gfx/pokemon/tyrogue/shiny.pal | 4 + gfx/pokemon/umbreon/anim0.asm | 9 + gfx/pokemon/umbreon/anim1.asm | 6 + gfx/pokemon/umbreon/back.2bpp.lz.55e50b8c | Bin 0 -> 343 bytes gfx/pokemon/umbreon/back.png | Bin 0 -> 433 bytes .../umbreon/front.animated.2bpp.lz.b484be57 | Bin 0 -> 618 bytes gfx/pokemon/umbreon/front.png | Bin 0 -> 977 bytes gfx/pokemon/umbreon/shiny.pal | 4 + gfx/pokemon/unown/anim0.asm | 12 + gfx/pokemon/unown/anim1.asm | 6 + gfx/pokemon/unown/bitmask.asm | 31 + gfx/pokemon/unown/frames.asm | 45 + gfx/pokemon/unown/normal.pal | 4 + gfx/pokemon/unown/shiny.pal | 4 + gfx/pokemon/unown_a/anim0.asm | 13 + gfx/pokemon/unown_a/anim1.asm | 6 + gfx/pokemon/unown_a/back.2bpp.lz.b8389572 | Bin 0 -> 123 bytes gfx/pokemon/unown_a/back.png | Bin 0 -> 257 bytes .../unown_a/front.animated.2bpp.lz.47e16756 | Bin 0 -> 203 bytes gfx/pokemon/unown_a/front.png | Bin 0 -> 326 bytes gfx/pokemon/unown_anim_pointers.asm | 27 + gfx/pokemon/unown_anims.asm | 27 + gfx/pokemon/unown_b/anim0.asm | 9 + gfx/pokemon/unown_b/anim1.asm | 6 + gfx/pokemon/unown_b/back.2bpp.lz.72a0840f | Bin 0 -> 131 bytes gfx/pokemon/unown_b/back.png | Bin 0 -> 243 bytes .../unown_b/front.animated.2bpp.lz.5742d494 | Bin 0 -> 235 bytes gfx/pokemon/unown_b/front.png | Bin 0 -> 347 bytes gfx/pokemon/unown_bitmask_pointers.asm | 27 + gfx/pokemon/unown_bitmasks.asm | 26 + gfx/pokemon/unown_c/anim0.asm | 9 + gfx/pokemon/unown_c/anim1.asm | 6 + gfx/pokemon/unown_c/back.2bpp.lz.f92b665a | Bin 0 -> 180 bytes gfx/pokemon/unown_c/back.png | Bin 0 -> 295 bytes .../unown_c/front.animated.2bpp.lz.5fef639b | Bin 0 -> 300 bytes gfx/pokemon/unown_c/front.png | Bin 0 -> 363 bytes gfx/pokemon/unown_d/anim0.asm | 8 + gfx/pokemon/unown_d/anim1.asm | 6 + gfx/pokemon/unown_d/back.2bpp.lz.c8213d32 | Bin 0 -> 150 bytes gfx/pokemon/unown_d/back.png | Bin 0 -> 252 bytes .../unown_d/front.animated.2bpp.lz.7810a57f | Bin 0 -> 385 bytes gfx/pokemon/unown_d/front.png | Bin 0 -> 423 bytes gfx/pokemon/unown_e/anim0.asm | 9 + gfx/pokemon/unown_e/anim1.asm | 6 + gfx/pokemon/unown_e/back.2bpp.lz.777a8ecd | Bin 0 -> 140 bytes gfx/pokemon/unown_e/back.png | Bin 0 -> 238 bytes .../unown_e/front.animated.2bpp.lz.83f43ff7 | Bin 0 -> 242 bytes gfx/pokemon/unown_e/front.png | Bin 0 -> 320 bytes gfx/pokemon/unown_extra_pointers.asm | 27 + gfx/pokemon/unown_extras.asm | 26 + gfx/pokemon/unown_f/anim0.asm | 10 + gfx/pokemon/unown_f/anim1.asm | 6 + gfx/pokemon/unown_f/back.2bpp.lz.3fe1c85a | Bin 0 -> 153 bytes gfx/pokemon/unown_f/back.png | Bin 0 -> 259 bytes .../unown_f/front.animated.2bpp.lz.ec888954 | Bin 0 -> 207 bytes gfx/pokemon/unown_f/front.png | Bin 0 -> 327 bytes gfx/pokemon/unown_frame_pointers.asm | 27 + gfx/pokemon/unown_frames.asm | 27 + gfx/pokemon/unown_g/anim0.asm | 7 + gfx/pokemon/unown_g/anim1.asm | 6 + gfx/pokemon/unown_g/back.2bpp.lz.91650439 | Bin 0 -> 164 bytes gfx/pokemon/unown_g/back.png | Bin 0 -> 257 bytes .../unown_g/front.animated.2bpp.lz.c0b74162 | Bin 0 -> 281 bytes gfx/pokemon/unown_g/front.png | Bin 0 -> 334 bytes gfx/pokemon/unown_h/anim0.asm | 11 + gfx/pokemon/unown_h/anim1.asm | 6 + gfx/pokemon/unown_h/back.2bpp.lz.78421e5b | Bin 0 -> 176 bytes gfx/pokemon/unown_h/back.png | Bin 0 -> 287 bytes .../unown_h/front.animated.2bpp.lz.9a6afeb9 | Bin 0 -> 253 bytes gfx/pokemon/unown_h/front.png | Bin 0 -> 380 bytes gfx/pokemon/unown_i/anim0.asm | 8 + gfx/pokemon/unown_i/anim1.asm | 6 + gfx/pokemon/unown_i/back.2bpp.lz.7feb4b30 | Bin 0 -> 94 bytes gfx/pokemon/unown_i/back.png | Bin 0 -> 209 bytes .../unown_i/front.animated.2bpp.lz.f5e7f816 | Bin 0 -> 163 bytes gfx/pokemon/unown_i/front.png | Bin 0 -> 262 bytes gfx/pokemon/unown_j/anim0.asm | 8 + gfx/pokemon/unown_j/anim1.asm | 6 + gfx/pokemon/unown_j/back.2bpp.lz.b0f3bec2 | Bin 0 -> 131 bytes gfx/pokemon/unown_j/back.png | Bin 0 -> 236 bytes .../unown_j/front.animated.2bpp.lz.d8bf9223 | Bin 0 -> 229 bytes gfx/pokemon/unown_j/front.png | Bin 0 -> 297 bytes gfx/pokemon/unown_k/anim0.asm | 8 + gfx/pokemon/unown_k/anim1.asm | 6 + gfx/pokemon/unown_k/back.2bpp.lz.745fda48 | Bin 0 -> 117 bytes gfx/pokemon/unown_k/back.png | Bin 0 -> 232 bytes .../unown_k/front.animated.2bpp.lz.fb25b385 | Bin 0 -> 241 bytes gfx/pokemon/unown_k/front.png | Bin 0 -> 341 bytes gfx/pokemon/unown_l/anim0.asm | 12 + gfx/pokemon/unown_l/anim1.asm | 6 + gfx/pokemon/unown_l/back.2bpp.lz.e38e0d57 | Bin 0 -> 108 bytes gfx/pokemon/unown_l/back.png | Bin 0 -> 230 bytes .../unown_l/front.animated.2bpp.lz.26195a59 | Bin 0 -> 211 bytes gfx/pokemon/unown_l/front.png | Bin 0 -> 305 bytes gfx/pokemon/unown_m/anim0.asm | 12 + gfx/pokemon/unown_m/anim1.asm | 6 + gfx/pokemon/unown_m/back.2bpp.lz.38d93bc8 | Bin 0 -> 121 bytes gfx/pokemon/unown_m/back.png | Bin 0 -> 303 bytes .../unown_m/front.animated.2bpp.lz.2659315e | Bin 0 -> 208 bytes gfx/pokemon/unown_m/front.png | Bin 0 -> 423 bytes gfx/pokemon/unown_n/anim0.asm | 10 + gfx/pokemon/unown_n/anim1.asm | 6 + gfx/pokemon/unown_n/back.2bpp.lz.c8b7d3a4 | Bin 0 -> 123 bytes gfx/pokemon/unown_n/back.png | Bin 0 -> 252 bytes .../unown_n/front.animated.2bpp.lz.96ce7c62 | Bin 0 -> 230 bytes gfx/pokemon/unown_n/front.png | Bin 0 -> 397 bytes gfx/pokemon/unown_o/anim0.asm | 8 + gfx/pokemon/unown_o/anim1.asm | 6 + gfx/pokemon/unown_o/back.2bpp.lz.89ba693c | Bin 0 -> 130 bytes gfx/pokemon/unown_o/back.png | Bin 0 -> 282 bytes .../unown_o/front.animated.2bpp.lz.a9151b66 | Bin 0 -> 260 bytes gfx/pokemon/unown_o/front.png | Bin 0 -> 414 bytes gfx/pokemon/unown_p/anim0.asm | 5 + gfx/pokemon/unown_p/anim1.asm | 6 + gfx/pokemon/unown_p/back.2bpp.lz.09c618c4 | Bin 0 -> 94 bytes gfx/pokemon/unown_p/back.png | Bin 0 -> 224 bytes .../unown_p/front.animated.2bpp.lz.83a096fc | Bin 0 -> 185 bytes gfx/pokemon/unown_p/front.png | Bin 0 -> 273 bytes gfx/pokemon/unown_pic_pointers.asm | 54 + gfx/pokemon/unown_q/anim0.asm | 8 + gfx/pokemon/unown_q/anim1.asm | 6 + gfx/pokemon/unown_q/back.2bpp.lz.e32430b4 | Bin 0 -> 105 bytes gfx/pokemon/unown_q/back.png | Bin 0 -> 215 bytes .../unown_q/front.animated.2bpp.lz.44dad60c | Bin 0 -> 189 bytes gfx/pokemon/unown_q/front.png | Bin 0 -> 277 bytes gfx/pokemon/unown_r/anim0.asm | 8 + gfx/pokemon/unown_r/anim1.asm | 6 + gfx/pokemon/unown_r/back.2bpp.lz.5df8287c | Bin 0 -> 90 bytes gfx/pokemon/unown_r/back.png | Bin 0 -> 219 bytes .../unown_r/front.animated.2bpp.lz.8e67e3fc | Bin 0 -> 146 bytes gfx/pokemon/unown_r/front.png | Bin 0 -> 254 bytes gfx/pokemon/unown_s/anim0.asm | 10 + gfx/pokemon/unown_s/anim1.asm | 6 + gfx/pokemon/unown_s/back.2bpp.lz.abd4ad58 | Bin 0 -> 146 bytes gfx/pokemon/unown_s/back.png | Bin 0 -> 265 bytes .../unown_s/front.animated.2bpp.lz.f3db4e89 | Bin 0 -> 261 bytes gfx/pokemon/unown_s/front.png | Bin 0 -> 340 bytes gfx/pokemon/unown_t/anim0.asm | 8 + gfx/pokemon/unown_t/anim1.asm | 6 + gfx/pokemon/unown_t/back.2bpp.lz.87d48ca0 | Bin 0 -> 116 bytes gfx/pokemon/unown_t/back.png | Bin 0 -> 220 bytes .../unown_t/front.animated.2bpp.lz.8bdc40ae | Bin 0 -> 259 bytes gfx/pokemon/unown_t/front.png | Bin 0 -> 331 bytes gfx/pokemon/unown_u/anim0.asm | 6 + gfx/pokemon/unown_u/anim1.asm | 6 + gfx/pokemon/unown_u/back.2bpp.lz.40b63dfb | Bin 0 -> 107 bytes gfx/pokemon/unown_u/back.png | Bin 0 -> 273 bytes .../unown_u/front.animated.2bpp.lz.2690db54 | Bin 0 -> 192 bytes gfx/pokemon/unown_u/front.png | Bin 0 -> 380 bytes gfx/pokemon/unown_v/anim0.asm | 6 + gfx/pokemon/unown_v/anim1.asm | 6 + gfx/pokemon/unown_v/back.2bpp.lz.5b1a6acc | Bin 0 -> 156 bytes gfx/pokemon/unown_v/back.png | Bin 0 -> 260 bytes .../unown_v/front.animated.2bpp.lz.d196c60e | Bin 0 -> 275 bytes gfx/pokemon/unown_v/front.png | Bin 0 -> 331 bytes gfx/pokemon/unown_w/anim0.asm | 6 + gfx/pokemon/unown_w/anim1.asm | 6 + gfx/pokemon/unown_w/back.2bpp.lz.a55282bf | Bin 0 -> 126 bytes gfx/pokemon/unown_w/back.png | Bin 0 -> 255 bytes .../unown_w/front.animated.2bpp.lz.5b45fa3d | Bin 0 -> 301 bytes gfx/pokemon/unown_w/front.png | Bin 0 -> 386 bytes gfx/pokemon/unown_x/anim0.asm | 8 + gfx/pokemon/unown_x/anim1.asm | 6 + gfx/pokemon/unown_x/back.2bpp.lz.0001a198 | Bin 0 -> 113 bytes gfx/pokemon/unown_x/back.png | Bin 0 -> 242 bytes .../unown_x/front.animated.2bpp.lz.3362c680 | Bin 0 -> 230 bytes gfx/pokemon/unown_x/front.png | Bin 0 -> 323 bytes gfx/pokemon/unown_y/anim0.asm | 9 + gfx/pokemon/unown_y/anim1.asm | 6 + gfx/pokemon/unown_y/back.2bpp.lz.292d9ff2 | Bin 0 -> 102 bytes gfx/pokemon/unown_y/back.png | Bin 0 -> 248 bytes .../unown_y/front.animated.2bpp.lz.8cd89db4 | Bin 0 -> 173 bytes gfx/pokemon/unown_y/front.png | Bin 0 -> 337 bytes gfx/pokemon/unown_z/anim0.asm | 9 + gfx/pokemon/unown_z/anim1.asm | 6 + gfx/pokemon/unown_z/back.2bpp.lz.a41240a1 | Bin 0 -> 127 bytes gfx/pokemon/unown_z/back.png | Bin 0 -> 225 bytes .../unown_z/front.animated.2bpp.lz.2d4170a0 | Bin 0 -> 299 bytes gfx/pokemon/unown_z/front.png | Bin 0 -> 367 bytes gfx/pokemon/ursaring/anim0.asm | 9 + gfx/pokemon/ursaring/anim1.asm | 6 + gfx/pokemon/ursaring/back.2bpp.lz.0966cee1 | Bin 0 -> 277 bytes gfx/pokemon/ursaring/back.png | Bin 0 -> 362 bytes .../ursaring/front.animated.2bpp.lz.5bcb8114 | Bin 0 -> 727 bytes gfx/pokemon/ursaring/front.png | Bin 0 -> 1127 bytes gfx/pokemon/ursaring/shiny.pal | 4 + gfx/pokemon/vaporeon/anim0.asm | 7 + gfx/pokemon/vaporeon/anim1.asm | 6 + gfx/pokemon/vaporeon/back.2bpp.lz.aafe2ea4 | Bin 0 -> 296 bytes gfx/pokemon/vaporeon/back.png | Bin 0 -> 405 bytes .../vaporeon/front.animated.2bpp.lz.6e1ee993 | Bin 0 -> 691 bytes gfx/pokemon/vaporeon/front.png | Bin 0 -> 947 bytes gfx/pokemon/vaporeon/shiny.pal | 4 + gfx/pokemon/venomoth/anim0.asm | 6 + gfx/pokemon/venomoth/anim1.asm | 6 + gfx/pokemon/venomoth/back.2bpp.lz.ba3cccb7 | Bin 0 -> 450 bytes gfx/pokemon/venomoth/back.png | Bin 0 -> 537 bytes .../venomoth/front.animated.2bpp.lz.6c0096ec | Bin 0 -> 796 bytes gfx/pokemon/venomoth/front.png | Bin 0 -> 1084 bytes gfx/pokemon/venomoth/shiny.pal | 4 + gfx/pokemon/venonat/anim0.asm | 16 + gfx/pokemon/venonat/anim1.asm | 6 + gfx/pokemon/venonat/back.2bpp.lz.63b1017a | Bin 0 -> 351 bytes gfx/pokemon/venonat/back.png | Bin 0 -> 428 bytes .../venonat/front.animated.2bpp.lz.02a36f08 | Bin 0 -> 481 bytes gfx/pokemon/venonat/front.png | Bin 0 -> 636 bytes gfx/pokemon/venonat/shiny.pal | 4 + gfx/pokemon/venusaur/anim0.asm | 10 + gfx/pokemon/venusaur/anim1.asm | 6 + gfx/pokemon/venusaur/back.2bpp.lz.1d5b9ebe | Bin 0 -> 418 bytes gfx/pokemon/venusaur/back.png | Bin 0 -> 494 bytes .../venusaur/front.animated.2bpp.lz.48d131f4 | Bin 0 -> 1098 bytes gfx/pokemon/venusaur/front.png | Bin 0 -> 1441 bytes gfx/pokemon/venusaur/shiny.pal | 4 + gfx/pokemon/victreebel/anim0.asm | 7 + gfx/pokemon/victreebel/anim1.asm | 7 + gfx/pokemon/victreebel/back.2bpp.lz.a80b1dc4 | Bin 0 -> 322 bytes gfx/pokemon/victreebel/back.png | Bin 0 -> 397 bytes .../victreebel/front.animated.2bpp.lz.d5d535c1 | Bin 0 -> 892 bytes gfx/pokemon/victreebel/front.png | Bin 0 -> 1203 bytes gfx/pokemon/victreebel/shiny.pal | 4 + gfx/pokemon/vileplume/anim0.asm | 10 + gfx/pokemon/vileplume/anim1.asm | 8 + gfx/pokemon/vileplume/back.2bpp.lz.9f944092 | Bin 0 -> 366 bytes gfx/pokemon/vileplume/back.png | Bin 0 -> 424 bytes .../vileplume/front.animated.2bpp.lz.db2287e6 | Bin 0 -> 708 bytes gfx/pokemon/vileplume/front.png | Bin 0 -> 851 bytes gfx/pokemon/vileplume/shiny.pal | 4 + gfx/pokemon/voltorb/anim0.asm | 8 + gfx/pokemon/voltorb/anim1.asm | 7 + gfx/pokemon/voltorb/back.2bpp.lz.f19cefe9 | Bin 0 -> 229 bytes gfx/pokemon/voltorb/back.png | Bin 0 -> 318 bytes .../voltorb/front.animated.2bpp.lz.64051f97 | Bin 0 -> 282 bytes gfx/pokemon/voltorb/front.png | Bin 0 -> 399 bytes gfx/pokemon/voltorb/shiny.pal | 4 + gfx/pokemon/vulpix/anim0.asm | 11 + gfx/pokemon/vulpix/anim1.asm | 7 + gfx/pokemon/vulpix/back.2bpp.lz.0c7852c8 | Bin 0 -> 357 bytes gfx/pokemon/vulpix/back.png | Bin 0 -> 444 bytes gfx/pokemon/vulpix/front.animated.2bpp.lz.df94d884 | Bin 0 -> 695 bytes gfx/pokemon/vulpix/front.png | Bin 0 -> 904 bytes gfx/pokemon/vulpix/shiny.pal | 4 + gfx/pokemon/wartortle/anim0.asm | 8 + gfx/pokemon/wartortle/anim1.asm | 6 + gfx/pokemon/wartortle/back.2bpp.lz.f2338cb4 | Bin 0 -> 358 bytes gfx/pokemon/wartortle/back.png | Bin 0 -> 439 bytes .../wartortle/front.animated.2bpp.lz.f50d25f5 | Bin 0 -> 741 bytes gfx/pokemon/wartortle/front.png | Bin 0 -> 942 bytes gfx/pokemon/wartortle/shiny.pal | 4 + gfx/pokemon/weedle/anim0.asm | 10 + gfx/pokemon/weedle/anim1.asm | 12 + gfx/pokemon/weedle/back.2bpp.lz.f26ac339 | Bin 0 -> 256 bytes gfx/pokemon/weedle/back.png | Bin 0 -> 363 bytes gfx/pokemon/weedle/front.animated.2bpp.lz.9e1dedbd | Bin 0 -> 333 bytes gfx/pokemon/weedle/front.png | Bin 0 -> 538 bytes gfx/pokemon/weedle/shiny.pal | 4 + gfx/pokemon/weepinbell/anim0.asm | 8 + gfx/pokemon/weepinbell/anim1.asm | 6 + gfx/pokemon/weepinbell/back.2bpp.lz.f84a5fe6 | Bin 0 -> 334 bytes gfx/pokemon/weepinbell/back.png | Bin 0 -> 410 bytes .../weepinbell/front.animated.2bpp.lz.7b06c092 | Bin 0 -> 567 bytes gfx/pokemon/weepinbell/front.png | Bin 0 -> 764 bytes gfx/pokemon/weepinbell/shiny.pal | 4 + gfx/pokemon/weezing/anim0.asm | 8 + gfx/pokemon/weezing/anim1.asm | 8 + gfx/pokemon/weezing/back.2bpp.lz.5ac5b672 | Bin 0 -> 340 bytes gfx/pokemon/weezing/back.png | Bin 0 -> 417 bytes .../weezing/front.animated.2bpp.lz.75928bd0 | Bin 0 -> 909 bytes gfx/pokemon/weezing/front.png | Bin 0 -> 1384 bytes gfx/pokemon/weezing/shiny.pal | 4 + gfx/pokemon/wigglytuff/anim0.asm | 9 + gfx/pokemon/wigglytuff/anim1.asm | 6 + gfx/pokemon/wigglytuff/back.2bpp.lz.fee674ac | Bin 0 -> 258 bytes gfx/pokemon/wigglytuff/back.png | Bin 0 -> 333 bytes .../wigglytuff/front.animated.2bpp.lz.49311d0b | Bin 0 -> 670 bytes gfx/pokemon/wigglytuff/front.png | Bin 0 -> 852 bytes gfx/pokemon/wigglytuff/shiny.pal | 4 + gfx/pokemon/wobbuffet/anim0.asm | 4 + gfx/pokemon/wobbuffet/anim1.asm | 3 + gfx/pokemon/wobbuffet/back.2bpp.lz.a862192a | Bin 0 -> 270 bytes gfx/pokemon/wobbuffet/back.png | Bin 0 -> 343 bytes .../wobbuffet/front.animated.2bpp.lz.f1f4687d | Bin 0 -> 595 bytes gfx/pokemon/wobbuffet/front.png | Bin 0 -> 698 bytes gfx/pokemon/wobbuffet/shiny.pal | 4 + gfx/pokemon/wooper/anim0.asm | 8 + gfx/pokemon/wooper/anim1.asm | 6 + gfx/pokemon/wooper/back.2bpp.lz.4f4b7917 | Bin 0 -> 233 bytes gfx/pokemon/wooper/back.png | Bin 0 -> 338 bytes gfx/pokemon/wooper/front.animated.2bpp.lz.4e440469 | Bin 0 -> 352 bytes gfx/pokemon/wooper/front.png | Bin 0 -> 521 bytes gfx/pokemon/wooper/shiny.pal | 4 + gfx/pokemon/xatu/anim0.asm | 10 + gfx/pokemon/xatu/anim1.asm | 11 + gfx/pokemon/xatu/back.2bpp.lz.4de765ff | Bin 0 -> 320 bytes gfx/pokemon/xatu/back.png | Bin 0 -> 396 bytes gfx/pokemon/xatu/front.animated.2bpp.lz.4f452e43 | Bin 0 -> 599 bytes gfx/pokemon/xatu/front.png | Bin 0 -> 852 bytes gfx/pokemon/xatu/shiny.pal | 4 + gfx/pokemon/yanma/anim0.asm | 9 + gfx/pokemon/yanma/anim1.asm | 6 + gfx/pokemon/yanma/back.2bpp.lz.2ca27ab3 | Bin 0 -> 433 bytes gfx/pokemon/yanma/back.png | Bin 0 -> 514 bytes gfx/pokemon/yanma/front.animated.2bpp.lz.25f91adf | Bin 0 -> 668 bytes gfx/pokemon/yanma/front.png | Bin 0 -> 926 bytes gfx/pokemon/yanma/shiny.pal | 4 + gfx/pokemon/zapdos/anim0.asm | 7 + gfx/pokemon/zapdos/anim1.asm | 5 + gfx/pokemon/zapdos/back.2bpp.lz.a44c7524 | Bin 0 -> 307 bytes gfx/pokemon/zapdos/back.png | Bin 0 -> 427 bytes gfx/pokemon/zapdos/front.animated.2bpp.lz.05cb214a | Bin 0 -> 1012 bytes gfx/pokemon/zapdos/front.png | Bin 0 -> 1258 bytes gfx/pokemon/zapdos/shiny.pal | 4 + gfx/pokemon/zubat/anim0.asm | 8 + gfx/pokemon/zubat/anim1.asm | 7 + gfx/pokemon/zubat/back.2bpp.lz.aa77eb62 | Bin 0 -> 395 bytes gfx/pokemon/zubat/back.png | Bin 0 -> 466 bytes gfx/pokemon/zubat/front.animated.2bpp.lz.f12e6581 | Bin 0 -> 463 bytes gfx/pokemon/zubat/front.png | Bin 0 -> 616 bytes gfx/pokemon/zubat/shiny.pal | 4 + main.asm | 36 +- 4136 files changed, 10624 insertions(+), 10624 deletions(-) delete mode 100644 gfx/pics/abra/anim0.asm delete mode 100644 gfx/pics/abra/anim1.asm delete mode 100644 gfx/pics/abra/back.2bpp.lz.9ac09a32 delete mode 100644 gfx/pics/abra/back.png delete mode 100644 gfx/pics/abra/front.animated.2bpp.lz.12e14d9a delete mode 100644 gfx/pics/abra/front.png delete mode 100644 gfx/pics/abra/shiny.pal delete mode 100644 gfx/pics/aerodactyl/anim0.asm delete mode 100644 gfx/pics/aerodactyl/anim1.asm delete mode 100644 gfx/pics/aerodactyl/back.2bpp.lz.e2da1f61 delete mode 100644 gfx/pics/aerodactyl/back.png delete mode 100644 gfx/pics/aerodactyl/front.animated.2bpp.lz.3bceb33e delete mode 100644 gfx/pics/aerodactyl/front.png delete mode 100644 gfx/pics/aerodactyl/shiny.pal delete mode 100644 gfx/pics/aipom/anim0.asm delete mode 100644 gfx/pics/aipom/anim1.asm delete mode 100644 gfx/pics/aipom/back.2bpp.lz.597d4dda delete mode 100644 gfx/pics/aipom/back.png delete mode 100644 gfx/pics/aipom/front.animated.2bpp.lz.fba7c862 delete mode 100644 gfx/pics/aipom/front.png delete mode 100644 gfx/pics/aipom/shiny.pal delete mode 100644 gfx/pics/alakazam/anim0.asm delete mode 100644 gfx/pics/alakazam/anim1.asm delete mode 100644 gfx/pics/alakazam/back.2bpp.lz.75e7e1c6 delete mode 100644 gfx/pics/alakazam/back.png delete mode 100644 gfx/pics/alakazam/front.animated.2bpp.lz.b246e050 delete mode 100644 gfx/pics/alakazam/front.png delete mode 100644 gfx/pics/alakazam/shiny.pal delete mode 100644 gfx/pics/ampharos/anim0.asm delete mode 100644 gfx/pics/ampharos/anim1.asm delete mode 100644 gfx/pics/ampharos/back.2bpp.lz.06af98c8 delete mode 100644 gfx/pics/ampharos/back.png delete mode 100644 gfx/pics/ampharos/front.animated.2bpp.lz.4b908a28 delete mode 100644 gfx/pics/ampharos/front.png delete mode 100644 gfx/pics/ampharos/shiny.pal delete mode 100644 gfx/pics/anim_pointers.asm delete mode 100644 gfx/pics/animation.asm delete mode 100644 gfx/pics/anims.asm delete mode 100644 gfx/pics/arbok/anim0.asm delete mode 100644 gfx/pics/arbok/anim1.asm delete mode 100644 gfx/pics/arbok/back.2bpp.lz.7b18cb93 delete mode 100644 gfx/pics/arbok/back.png delete mode 100644 gfx/pics/arbok/front.animated.2bpp.lz.1589a977 delete mode 100644 gfx/pics/arbok/front.png delete mode 100644 gfx/pics/arbok/shiny.pal delete mode 100644 gfx/pics/arcanine/anim0.asm delete mode 100644 gfx/pics/arcanine/anim1.asm delete mode 100644 gfx/pics/arcanine/back.2bpp.lz.f5b35ebf delete mode 100644 gfx/pics/arcanine/back.png delete mode 100644 gfx/pics/arcanine/front.animated.2bpp.lz.5ae8eff3 delete mode 100644 gfx/pics/arcanine/front.png delete mode 100644 gfx/pics/arcanine/shiny.pal delete mode 100644 gfx/pics/ariados/anim0.asm delete mode 100644 gfx/pics/ariados/anim1.asm delete mode 100644 gfx/pics/ariados/back.2bpp.lz.9fb1c3fc delete mode 100644 gfx/pics/ariados/back.png delete mode 100644 gfx/pics/ariados/front.animated.2bpp.lz.5ac5c83c delete mode 100644 gfx/pics/ariados/front.png delete mode 100644 gfx/pics/ariados/shiny.pal delete mode 100644 gfx/pics/articuno/anim0.asm delete mode 100644 gfx/pics/articuno/anim1.asm delete mode 100644 gfx/pics/articuno/back.2bpp.lz.c263c2aa delete mode 100644 gfx/pics/articuno/back.png delete mode 100644 gfx/pics/articuno/front.animated.2bpp.lz.650aef29 delete mode 100644 gfx/pics/articuno/front.png delete mode 100644 gfx/pics/articuno/shiny.pal delete mode 100644 gfx/pics/azumarill/anim0.asm delete mode 100644 gfx/pics/azumarill/anim1.asm delete mode 100644 gfx/pics/azumarill/back.2bpp.lz.f7fa0db9 delete mode 100644 gfx/pics/azumarill/back.png delete mode 100644 gfx/pics/azumarill/front.animated.2bpp.lz.cc9fd2ed delete mode 100644 gfx/pics/azumarill/front.png delete mode 100644 gfx/pics/azumarill/shiny.pal delete mode 100644 gfx/pics/bayleef/anim0.asm delete mode 100644 gfx/pics/bayleef/anim1.asm delete mode 100644 gfx/pics/bayleef/back.2bpp.lz.c4783e65 delete mode 100644 gfx/pics/bayleef/back.png delete mode 100644 gfx/pics/bayleef/front.animated.2bpp.lz.147649f2 delete mode 100644 gfx/pics/bayleef/front.png delete mode 100644 gfx/pics/bayleef/shiny.pal delete mode 100644 gfx/pics/beedrill/anim0.asm delete mode 100644 gfx/pics/beedrill/anim1.asm delete mode 100644 gfx/pics/beedrill/back.2bpp.lz.dfd6a87b delete mode 100644 gfx/pics/beedrill/back.png delete mode 100644 gfx/pics/beedrill/front.animated.2bpp.lz.1b5d3117 delete mode 100644 gfx/pics/beedrill/front.png delete mode 100644 gfx/pics/beedrill/shiny.pal delete mode 100644 gfx/pics/bellossom/anim0.asm delete mode 100644 gfx/pics/bellossom/anim1.asm delete mode 100644 gfx/pics/bellossom/back.2bpp.lz.10d31691 delete mode 100644 gfx/pics/bellossom/back.png delete mode 100644 gfx/pics/bellossom/front.animated.2bpp.lz.289eaecf delete mode 100644 gfx/pics/bellossom/front.png delete mode 100644 gfx/pics/bellossom/shiny.pal delete mode 100644 gfx/pics/bellsprout/anim0.asm delete mode 100644 gfx/pics/bellsprout/anim1.asm delete mode 100644 gfx/pics/bellsprout/back.2bpp.lz.9dacbda8 delete mode 100644 gfx/pics/bellsprout/back.png delete mode 100644 gfx/pics/bellsprout/front.animated.2bpp.lz.44df413d delete mode 100644 gfx/pics/bellsprout/front.png delete mode 100644 gfx/pics/bellsprout/shiny.pal delete mode 100644 gfx/pics/bitmask_pointers.asm delete mode 100644 gfx/pics/bitmasks.asm delete mode 100644 gfx/pics/blastoise/anim0.asm delete mode 100644 gfx/pics/blastoise/anim1.asm delete mode 100644 gfx/pics/blastoise/back.2bpp.lz.b90e8d5a delete mode 100644 gfx/pics/blastoise/back.png delete mode 100644 gfx/pics/blastoise/front.animated.2bpp.lz.3899aed0 delete mode 100644 gfx/pics/blastoise/front.png delete mode 100644 gfx/pics/blastoise/shiny.pal delete mode 100644 gfx/pics/blissey/anim0.asm delete mode 100644 gfx/pics/blissey/anim1.asm delete mode 100644 gfx/pics/blissey/back.2bpp.lz.d2763673 delete mode 100644 gfx/pics/blissey/back.png delete mode 100644 gfx/pics/blissey/front.animated.2bpp.lz.04f2353a delete mode 100644 gfx/pics/blissey/front.png delete mode 100644 gfx/pics/blissey/shiny.pal delete mode 100644 gfx/pics/bulbasaur/anim0.asm delete mode 100644 gfx/pics/bulbasaur/anim1.asm delete mode 100644 gfx/pics/bulbasaur/back.2bpp.lz.84f8d1c4 delete mode 100644 gfx/pics/bulbasaur/back.png delete mode 100644 gfx/pics/bulbasaur/front.animated.2bpp.lz.04627405 delete mode 100644 gfx/pics/bulbasaur/front.png delete mode 100644 gfx/pics/bulbasaur/shiny.pal delete mode 100644 gfx/pics/butterfree/anim0.asm delete mode 100644 gfx/pics/butterfree/anim1.asm delete mode 100644 gfx/pics/butterfree/back.2bpp.lz.a8543d86 delete mode 100644 gfx/pics/butterfree/back.png delete mode 100644 gfx/pics/butterfree/front.animated.2bpp.lz.33ba7e24 delete mode 100644 gfx/pics/butterfree/front.png delete mode 100644 gfx/pics/butterfree/shiny.pal delete mode 100644 gfx/pics/caterpie/anim0.asm delete mode 100644 gfx/pics/caterpie/anim1.asm delete mode 100644 gfx/pics/caterpie/back.2bpp.lz.57e32015 delete mode 100644 gfx/pics/caterpie/back.png delete mode 100644 gfx/pics/caterpie/front.animated.2bpp.lz.ec4f7cb8 delete mode 100644 gfx/pics/caterpie/front.png delete mode 100644 gfx/pics/caterpie/shiny.pal delete mode 100644 gfx/pics/celebi/anim0.asm delete mode 100644 gfx/pics/celebi/anim1.asm delete mode 100644 gfx/pics/celebi/back.2bpp.lz.17ea5fe6 delete mode 100644 gfx/pics/celebi/back.png delete mode 100644 gfx/pics/celebi/front.animated.2bpp.lz.16f259a5 delete mode 100644 gfx/pics/celebi/front.png delete mode 100644 gfx/pics/celebi/shiny.pal delete mode 100644 gfx/pics/chansey/anim0.asm delete mode 100644 gfx/pics/chansey/anim1.asm delete mode 100644 gfx/pics/chansey/back.2bpp.lz.14d90ba1 delete mode 100644 gfx/pics/chansey/back.png delete mode 100644 gfx/pics/chansey/front.animated.2bpp.lz.158fc381 delete mode 100644 gfx/pics/chansey/front.png delete mode 100644 gfx/pics/chansey/shiny.pal delete mode 100644 gfx/pics/charizard/anim0.asm delete mode 100644 gfx/pics/charizard/anim1.asm delete mode 100644 gfx/pics/charizard/back.2bpp.lz.f04ac62c delete mode 100644 gfx/pics/charizard/back.png delete mode 100644 gfx/pics/charizard/front.animated.2bpp.lz.0068f820 delete mode 100644 gfx/pics/charizard/front.png delete mode 100644 gfx/pics/charizard/shiny.pal delete mode 100644 gfx/pics/charmander/anim0.asm delete mode 100644 gfx/pics/charmander/anim1.asm delete mode 100644 gfx/pics/charmander/back.2bpp.lz.bcb371c6 delete mode 100644 gfx/pics/charmander/back.png delete mode 100644 gfx/pics/charmander/front.animated.2bpp.lz.704bfc17 delete mode 100644 gfx/pics/charmander/front.png delete mode 100644 gfx/pics/charmander/shiny.pal delete mode 100644 gfx/pics/charmeleon/anim0.asm delete mode 100644 gfx/pics/charmeleon/anim1.asm delete mode 100644 gfx/pics/charmeleon/back.2bpp.lz.cf73268f delete mode 100644 gfx/pics/charmeleon/back.png delete mode 100644 gfx/pics/charmeleon/front.animated.2bpp.lz.0e629968 delete mode 100644 gfx/pics/charmeleon/front.png delete mode 100644 gfx/pics/charmeleon/shiny.pal delete mode 100644 gfx/pics/chikorita/anim0.asm delete mode 100644 gfx/pics/chikorita/anim1.asm delete mode 100644 gfx/pics/chikorita/back.2bpp.lz.27a21938 delete mode 100644 gfx/pics/chikorita/back.png delete mode 100644 gfx/pics/chikorita/front.animated.2bpp.lz.18de5fe9 delete mode 100644 gfx/pics/chikorita/front.png delete mode 100644 gfx/pics/chikorita/shiny.pal delete mode 100644 gfx/pics/chinchou/anim0.asm delete mode 100644 gfx/pics/chinchou/anim1.asm delete mode 100644 gfx/pics/chinchou/back.2bpp.lz.ea061e91 delete mode 100644 gfx/pics/chinchou/back.png delete mode 100644 gfx/pics/chinchou/front.animated.2bpp.lz.901aa690 delete mode 100644 gfx/pics/chinchou/front.png delete mode 100644 gfx/pics/chinchou/shiny.pal delete mode 100644 gfx/pics/clefable/anim0.asm delete mode 100644 gfx/pics/clefable/anim1.asm delete mode 100644 gfx/pics/clefable/back.2bpp.lz.d57ec142 delete mode 100644 gfx/pics/clefable/back.png delete mode 100644 gfx/pics/clefable/front.animated.2bpp.lz.59d160ad delete mode 100644 gfx/pics/clefable/front.png delete mode 100644 gfx/pics/clefable/shiny.pal delete mode 100644 gfx/pics/clefairy/anim0.asm delete mode 100644 gfx/pics/clefairy/anim1.asm delete mode 100644 gfx/pics/clefairy/back.2bpp.lz.f8aff3dd delete mode 100644 gfx/pics/clefairy/back.png delete mode 100644 gfx/pics/clefairy/front.animated.2bpp.lz.0918b60d delete mode 100644 gfx/pics/clefairy/front.png delete mode 100644 gfx/pics/clefairy/shiny.pal delete mode 100644 gfx/pics/cleffa/anim0.asm delete mode 100644 gfx/pics/cleffa/anim1.asm delete mode 100644 gfx/pics/cleffa/back.2bpp.lz.ea9b3d08 delete mode 100644 gfx/pics/cleffa/back.png delete mode 100644 gfx/pics/cleffa/front.animated.2bpp.lz.49630c80 delete mode 100644 gfx/pics/cleffa/front.png delete mode 100644 gfx/pics/cleffa/shiny.pal delete mode 100644 gfx/pics/cloyster/anim0.asm delete mode 100644 gfx/pics/cloyster/anim1.asm delete mode 100644 gfx/pics/cloyster/back.2bpp.lz.5ad194b3 delete mode 100644 gfx/pics/cloyster/back.png delete mode 100644 gfx/pics/cloyster/front.animated.2bpp.lz.fe85709f delete mode 100644 gfx/pics/cloyster/front.png delete mode 100644 gfx/pics/cloyster/shiny.pal delete mode 100644 gfx/pics/corsola/anim0.asm delete mode 100644 gfx/pics/corsola/anim1.asm delete mode 100644 gfx/pics/corsola/back.2bpp.lz.2b6c7860 delete mode 100644 gfx/pics/corsola/back.png delete mode 100644 gfx/pics/corsola/front.animated.2bpp.lz.2e7905aa delete mode 100644 gfx/pics/corsola/front.png delete mode 100644 gfx/pics/corsola/shiny.pal delete mode 100644 gfx/pics/crobat/anim0.asm delete mode 100644 gfx/pics/crobat/anim1.asm delete mode 100644 gfx/pics/crobat/back.2bpp.lz.30850b2e delete mode 100644 gfx/pics/crobat/back.png delete mode 100644 gfx/pics/crobat/front.animated.2bpp.lz.dc386ff0 delete mode 100644 gfx/pics/crobat/front.png delete mode 100644 gfx/pics/crobat/shiny.pal delete mode 100644 gfx/pics/croconaw/anim0.asm delete mode 100644 gfx/pics/croconaw/anim1.asm delete mode 100644 gfx/pics/croconaw/back.2bpp.lz.a605c82f delete mode 100644 gfx/pics/croconaw/back.png delete mode 100644 gfx/pics/croconaw/front.animated.2bpp.lz.a797986d delete mode 100644 gfx/pics/croconaw/front.png delete mode 100644 gfx/pics/croconaw/shiny.pal delete mode 100644 gfx/pics/cubone/anim0.asm delete mode 100644 gfx/pics/cubone/anim1.asm delete mode 100644 gfx/pics/cubone/back.2bpp.lz.bd849dfb delete mode 100644 gfx/pics/cubone/back.png delete mode 100644 gfx/pics/cubone/front.animated.2bpp.lz.0d63a3a4 delete mode 100644 gfx/pics/cubone/front.png delete mode 100644 gfx/pics/cubone/shiny.pal delete mode 100644 gfx/pics/cyndaquil/anim0.asm delete mode 100644 gfx/pics/cyndaquil/anim1.asm delete mode 100644 gfx/pics/cyndaquil/back.2bpp.lz.68baeeeb delete mode 100644 gfx/pics/cyndaquil/back.png delete mode 100644 gfx/pics/cyndaquil/front.animated.2bpp.lz.0d5dce8d delete mode 100644 gfx/pics/cyndaquil/front.png delete mode 100644 gfx/pics/cyndaquil/shiny.pal delete mode 100644 gfx/pics/delibird/anim0.asm delete mode 100644 gfx/pics/delibird/anim1.asm delete mode 100644 gfx/pics/delibird/back.2bpp.lz.11463d76 delete mode 100644 gfx/pics/delibird/back.png delete mode 100644 gfx/pics/delibird/front.animated.2bpp.lz.a3126c48 delete mode 100644 gfx/pics/delibird/front.png delete mode 100644 gfx/pics/delibird/shiny.pal delete mode 100644 gfx/pics/dewgong/anim0.asm delete mode 100644 gfx/pics/dewgong/anim1.asm delete mode 100644 gfx/pics/dewgong/back.2bpp.lz.4e1fef76 delete mode 100644 gfx/pics/dewgong/back.png delete mode 100644 gfx/pics/dewgong/front.animated.2bpp.lz.cc53359c delete mode 100644 gfx/pics/dewgong/front.png delete mode 100644 gfx/pics/dewgong/shiny.pal delete mode 100644 gfx/pics/diglett/anim0.asm delete mode 100644 gfx/pics/diglett/anim1.asm delete mode 100644 gfx/pics/diglett/back.2bpp.lz.31d8cacc delete mode 100644 gfx/pics/diglett/back.png delete mode 100644 gfx/pics/diglett/front.animated.2bpp.lz.52b0361e delete mode 100644 gfx/pics/diglett/front.png delete mode 100644 gfx/pics/diglett/shiny.pal delete mode 100644 gfx/pics/ditto/anim0.asm delete mode 100644 gfx/pics/ditto/anim1.asm delete mode 100644 gfx/pics/ditto/back.2bpp.lz.b01a9d91 delete mode 100644 gfx/pics/ditto/back.png delete mode 100644 gfx/pics/ditto/front.animated.2bpp.lz.344c90fd delete mode 100644 gfx/pics/ditto/front.png delete mode 100644 gfx/pics/ditto/shiny.pal delete mode 100644 gfx/pics/dodrio/anim0.asm delete mode 100644 gfx/pics/dodrio/anim1.asm delete mode 100644 gfx/pics/dodrio/back.2bpp.lz.a5480e88 delete mode 100644 gfx/pics/dodrio/back.png delete mode 100644 gfx/pics/dodrio/front.animated.2bpp.lz.2aaff569 delete mode 100644 gfx/pics/dodrio/front.png delete mode 100644 gfx/pics/dodrio/shiny.pal delete mode 100644 gfx/pics/doduo/anim0.asm delete mode 100644 gfx/pics/doduo/anim1.asm delete mode 100644 gfx/pics/doduo/back.2bpp.lz.05a57563 delete mode 100644 gfx/pics/doduo/back.png delete mode 100644 gfx/pics/doduo/front.animated.2bpp.lz.89c4acbd delete mode 100644 gfx/pics/doduo/front.png delete mode 100644 gfx/pics/doduo/shiny.pal delete mode 100644 gfx/pics/donphan/anim0.asm delete mode 100644 gfx/pics/donphan/anim1.asm delete mode 100644 gfx/pics/donphan/back.2bpp.lz.5067b370 delete mode 100644 gfx/pics/donphan/back.png delete mode 100644 gfx/pics/donphan/front.animated.2bpp.lz.9e1b7048 delete mode 100644 gfx/pics/donphan/front.png delete mode 100644 gfx/pics/donphan/shiny.pal delete mode 100644 gfx/pics/dragonair/anim0.asm delete mode 100644 gfx/pics/dragonair/anim1.asm delete mode 100644 gfx/pics/dragonair/back.2bpp.lz.9b6fda5b delete mode 100644 gfx/pics/dragonair/back.png delete mode 100644 gfx/pics/dragonair/front.animated.2bpp.lz.bb9ee373 delete mode 100644 gfx/pics/dragonair/front.png delete mode 100644 gfx/pics/dragonair/shiny.pal delete mode 100644 gfx/pics/dragonite/anim0.asm delete mode 100644 gfx/pics/dragonite/anim1.asm delete mode 100644 gfx/pics/dragonite/back.2bpp.lz.c408806f delete mode 100644 gfx/pics/dragonite/back.png delete mode 100644 gfx/pics/dragonite/front.animated.2bpp.lz.b914dfd9 delete mode 100644 gfx/pics/dragonite/front.png delete mode 100644 gfx/pics/dragonite/shiny.pal delete mode 100644 gfx/pics/dratini/anim0.asm delete mode 100644 gfx/pics/dratini/anim1.asm delete mode 100644 gfx/pics/dratini/back.2bpp.lz.be4d6a2a delete mode 100644 gfx/pics/dratini/back.png delete mode 100644 gfx/pics/dratini/front.animated.2bpp.lz.838e4248 delete mode 100644 gfx/pics/dratini/front.png delete mode 100644 gfx/pics/dratini/shiny.pal delete mode 100644 gfx/pics/drowzee/anim0.asm delete mode 100644 gfx/pics/drowzee/anim1.asm delete mode 100644 gfx/pics/drowzee/back.2bpp.lz.55367f5a delete mode 100644 gfx/pics/drowzee/back.png delete mode 100644 gfx/pics/drowzee/front.animated.2bpp.lz.1f23711a delete mode 100644 gfx/pics/drowzee/front.png delete mode 100644 gfx/pics/drowzee/shiny.pal delete mode 100644 gfx/pics/dugtrio/anim0.asm delete mode 100644 gfx/pics/dugtrio/anim1.asm delete mode 100644 gfx/pics/dugtrio/back.2bpp.lz.e821a89c delete mode 100644 gfx/pics/dugtrio/back.png delete mode 100644 gfx/pics/dugtrio/front.animated.2bpp.lz.5c9e668c delete mode 100644 gfx/pics/dugtrio/front.png delete mode 100644 gfx/pics/dugtrio/shiny.pal delete mode 100644 gfx/pics/dunsparce/anim0.asm delete mode 100644 gfx/pics/dunsparce/anim1.asm delete mode 100644 gfx/pics/dunsparce/back.2bpp.lz.aee69114 delete mode 100644 gfx/pics/dunsparce/back.png delete mode 100644 gfx/pics/dunsparce/front.animated.2bpp.lz.04ea863c delete mode 100644 gfx/pics/dunsparce/front.png delete mode 100644 gfx/pics/dunsparce/shiny.pal delete mode 100644 gfx/pics/eevee/anim0.asm delete mode 100644 gfx/pics/eevee/anim1.asm delete mode 100644 gfx/pics/eevee/back.2bpp.lz.bc34ce62 delete mode 100644 gfx/pics/eevee/back.png delete mode 100644 gfx/pics/eevee/front.animated.2bpp.lz.04e72b48 delete mode 100644 gfx/pics/eevee/front.png delete mode 100644 gfx/pics/eevee/shiny.pal delete mode 100644 gfx/pics/egg/anim0.asm delete mode 100644 gfx/pics/egg/anim1.asm delete mode 100644 gfx/pics/egg/front.animated.2bpp.lz.7b468eff delete mode 100644 gfx/pics/egg/front.png delete mode 100644 gfx/pics/ekans/anim0.asm delete mode 100644 gfx/pics/ekans/anim1.asm delete mode 100644 gfx/pics/ekans/back.2bpp.lz.671d14d9 delete mode 100644 gfx/pics/ekans/back.png delete mode 100644 gfx/pics/ekans/front.animated.2bpp.lz.018a1c72 delete mode 100644 gfx/pics/ekans/front.png delete mode 100644 gfx/pics/ekans/shiny.pal delete mode 100644 gfx/pics/electabuzz/anim0.asm delete mode 100644 gfx/pics/electabuzz/anim1.asm delete mode 100644 gfx/pics/electabuzz/back.2bpp.lz.e97330fe delete mode 100644 gfx/pics/electabuzz/back.png delete mode 100644 gfx/pics/electabuzz/front.animated.2bpp.lz.381e1c6e delete mode 100644 gfx/pics/electabuzz/front.png delete mode 100644 gfx/pics/electabuzz/shiny.pal delete mode 100644 gfx/pics/electrode/anim0.asm delete mode 100644 gfx/pics/electrode/anim1.asm delete mode 100644 gfx/pics/electrode/back.2bpp.lz.874e1f1c delete mode 100644 gfx/pics/electrode/back.png delete mode 100644 gfx/pics/electrode/front.animated.2bpp.lz.d7943ad8 delete mode 100644 gfx/pics/electrode/front.png delete mode 100644 gfx/pics/electrode/shiny.pal delete mode 100644 gfx/pics/elekid/anim0.asm delete mode 100644 gfx/pics/elekid/anim1.asm delete mode 100644 gfx/pics/elekid/back.2bpp.lz.227a1b23 delete mode 100644 gfx/pics/elekid/back.png delete mode 100644 gfx/pics/elekid/front.animated.2bpp.lz.3bbb6b61 delete mode 100644 gfx/pics/elekid/front.png delete mode 100644 gfx/pics/elekid/shiny.pal delete mode 100644 gfx/pics/entei/anim0.asm delete mode 100644 gfx/pics/entei/anim1.asm delete mode 100644 gfx/pics/entei/back.2bpp.lz.d1e1986a delete mode 100644 gfx/pics/entei/back.png delete mode 100644 gfx/pics/entei/front.animated.2bpp.lz.ebaf8024 delete mode 100644 gfx/pics/entei/front.png delete mode 100644 gfx/pics/entei/shiny.pal delete mode 100644 gfx/pics/espeon/anim0.asm delete mode 100644 gfx/pics/espeon/anim1.asm delete mode 100644 gfx/pics/espeon/back.2bpp.lz.0e77f26e delete mode 100644 gfx/pics/espeon/back.png delete mode 100644 gfx/pics/espeon/front.animated.2bpp.lz.069f57ec delete mode 100644 gfx/pics/espeon/front.png delete mode 100644 gfx/pics/espeon/shiny.pal delete mode 100644 gfx/pics/exeggcute/anim0.asm delete mode 100644 gfx/pics/exeggcute/anim1.asm delete mode 100644 gfx/pics/exeggcute/back.2bpp.lz.060c38b0 delete mode 100644 gfx/pics/exeggcute/back.png delete mode 100644 gfx/pics/exeggcute/front.animated.2bpp.lz.578a4722 delete mode 100644 gfx/pics/exeggcute/front.png delete mode 100644 gfx/pics/exeggcute/shiny.pal delete mode 100644 gfx/pics/exeggutor/anim0.asm delete mode 100644 gfx/pics/exeggutor/anim1.asm delete mode 100644 gfx/pics/exeggutor/back.2bpp.lz.e012643e delete mode 100644 gfx/pics/exeggutor/back.png delete mode 100644 gfx/pics/exeggutor/front.animated.2bpp.lz.3915d572 delete mode 100644 gfx/pics/exeggutor/front.png delete mode 100644 gfx/pics/exeggutor/shiny.pal delete mode 100644 gfx/pics/extra_pointers.asm delete mode 100644 gfx/pics/extras.asm delete mode 100644 gfx/pics/farfetch_d/anim0.asm delete mode 100644 gfx/pics/farfetch_d/anim1.asm delete mode 100644 gfx/pics/farfetch_d/back.2bpp.lz.6f28ebc4 delete mode 100644 gfx/pics/farfetch_d/back.png delete mode 100644 gfx/pics/farfetch_d/front.animated.2bpp.lz.a4ae9393 delete mode 100644 gfx/pics/farfetch_d/front.png delete mode 100644 gfx/pics/farfetch_d/shiny.pal delete mode 100644 gfx/pics/fearow/anim0.asm delete mode 100644 gfx/pics/fearow/anim1.asm delete mode 100644 gfx/pics/fearow/back.2bpp.lz.a7a39118 delete mode 100644 gfx/pics/fearow/back.png delete mode 100644 gfx/pics/fearow/front.animated.2bpp.lz.393b11d6 delete mode 100644 gfx/pics/fearow/front.png delete mode 100644 gfx/pics/fearow/shiny.pal delete mode 100644 gfx/pics/feraligatr/anim0.asm delete mode 100644 gfx/pics/feraligatr/anim1.asm delete mode 100644 gfx/pics/feraligatr/back.2bpp.lz.f95abe99 delete mode 100644 gfx/pics/feraligatr/back.png delete mode 100644 gfx/pics/feraligatr/front.animated.2bpp.lz.fade72cc delete mode 100644 gfx/pics/feraligatr/front.png delete mode 100644 gfx/pics/feraligatr/shiny.pal delete mode 100644 gfx/pics/flaaffy/anim0.asm delete mode 100644 gfx/pics/flaaffy/anim1.asm delete mode 100644 gfx/pics/flaaffy/back.2bpp.lz.461855e4 delete mode 100644 gfx/pics/flaaffy/back.png delete mode 100644 gfx/pics/flaaffy/front.animated.2bpp.lz.6a27aac3 delete mode 100644 gfx/pics/flaaffy/front.png delete mode 100644 gfx/pics/flaaffy/shiny.pal delete mode 100644 gfx/pics/flareon/anim0.asm delete mode 100644 gfx/pics/flareon/anim1.asm delete mode 100644 gfx/pics/flareon/back.2bpp.lz.d58af0e5 delete mode 100644 gfx/pics/flareon/back.png delete mode 100644 gfx/pics/flareon/front.animated.2bpp.lz.7b68c716 delete mode 100644 gfx/pics/flareon/front.png delete mode 100644 gfx/pics/flareon/shiny.pal delete mode 100644 gfx/pics/forretress/anim0.asm delete mode 100644 gfx/pics/forretress/anim1.asm delete mode 100644 gfx/pics/forretress/back.2bpp.lz.2b8e5f48 delete mode 100644 gfx/pics/forretress/back.png delete mode 100644 gfx/pics/forretress/front.animated.2bpp.lz.761b9f80 delete mode 100644 gfx/pics/forretress/front.png delete mode 100644 gfx/pics/forretress/shiny.pal delete mode 100644 gfx/pics/frame_pointers.asm delete mode 100644 gfx/pics/furret/anim0.asm delete mode 100644 gfx/pics/furret/anim1.asm delete mode 100644 gfx/pics/furret/back.2bpp.lz.24792550 delete mode 100644 gfx/pics/furret/back.png delete mode 100644 gfx/pics/furret/front.animated.2bpp.lz.f72a2758 delete mode 100644 gfx/pics/furret/front.png delete mode 100644 gfx/pics/furret/shiny.pal delete mode 100644 gfx/pics/gastly/anim0.asm delete mode 100644 gfx/pics/gastly/anim1.asm delete mode 100644 gfx/pics/gastly/back.2bpp.lz.4078fa56 delete mode 100644 gfx/pics/gastly/back.png delete mode 100644 gfx/pics/gastly/front.animated.2bpp.lz.84148c1e delete mode 100644 gfx/pics/gastly/front.png delete mode 100644 gfx/pics/gastly/shiny.pal delete mode 100644 gfx/pics/gengar/anim0.asm delete mode 100644 gfx/pics/gengar/anim1.asm delete mode 100644 gfx/pics/gengar/back.2bpp.lz.5237ee63 delete mode 100644 gfx/pics/gengar/back.png delete mode 100644 gfx/pics/gengar/front.animated.2bpp.lz.65ddc6f5 delete mode 100644 gfx/pics/gengar/front.png delete mode 100644 gfx/pics/gengar/shiny.pal delete mode 100644 gfx/pics/geodude/anim0.asm delete mode 100644 gfx/pics/geodude/anim1.asm delete mode 100644 gfx/pics/geodude/back.2bpp.lz.d5aa5e9f delete mode 100644 gfx/pics/geodude/back.png delete mode 100644 gfx/pics/geodude/front.animated.2bpp.lz.d743f2c9 delete mode 100644 gfx/pics/geodude/front.png delete mode 100644 gfx/pics/geodude/shiny.pal delete mode 100644 gfx/pics/girafarig/anim0.asm delete mode 100644 gfx/pics/girafarig/anim1.asm delete mode 100644 gfx/pics/girafarig/back.2bpp.lz.5dd68457 delete mode 100644 gfx/pics/girafarig/back.png delete mode 100644 gfx/pics/girafarig/front.animated.2bpp.lz.76d809c4 delete mode 100644 gfx/pics/girafarig/front.png delete mode 100644 gfx/pics/girafarig/shiny.pal delete mode 100644 gfx/pics/gligar/anim0.asm delete mode 100644 gfx/pics/gligar/anim1.asm delete mode 100644 gfx/pics/gligar/back.2bpp.lz.ee922122 delete mode 100644 gfx/pics/gligar/back.png delete mode 100644 gfx/pics/gligar/front.animated.2bpp.lz.4dcc41b3 delete mode 100644 gfx/pics/gligar/front.png delete mode 100644 gfx/pics/gligar/shiny.pal delete mode 100644 gfx/pics/gloom/anim0.asm delete mode 100644 gfx/pics/gloom/anim1.asm delete mode 100644 gfx/pics/gloom/back.2bpp.lz.9a321f63 delete mode 100644 gfx/pics/gloom/back.png delete mode 100644 gfx/pics/gloom/front.animated.2bpp.lz.c6ef04a5 delete mode 100644 gfx/pics/gloom/front.png delete mode 100644 gfx/pics/gloom/shiny.pal delete mode 100644 gfx/pics/golbat/anim0.asm delete mode 100644 gfx/pics/golbat/anim1.asm delete mode 100644 gfx/pics/golbat/back.2bpp.lz.e277e260 delete mode 100644 gfx/pics/golbat/back.png delete mode 100644 gfx/pics/golbat/front.animated.2bpp.lz.c35ffe9b delete mode 100644 gfx/pics/golbat/front.png delete mode 100644 gfx/pics/golbat/shiny.pal delete mode 100644 gfx/pics/goldeen/anim0.asm delete mode 100644 gfx/pics/goldeen/anim1.asm delete mode 100644 gfx/pics/goldeen/back.2bpp.lz.d0e5751e delete mode 100644 gfx/pics/goldeen/back.png delete mode 100644 gfx/pics/goldeen/front.animated.2bpp.lz.c451a8c4 delete mode 100644 gfx/pics/goldeen/front.png delete mode 100644 gfx/pics/goldeen/shiny.pal delete mode 100644 gfx/pics/golduck/anim0.asm delete mode 100644 gfx/pics/golduck/anim1.asm delete mode 100644 gfx/pics/golduck/back.2bpp.lz.2d022642 delete mode 100644 gfx/pics/golduck/back.png delete mode 100644 gfx/pics/golduck/front.animated.2bpp.lz.09e97414 delete mode 100644 gfx/pics/golduck/front.png delete mode 100644 gfx/pics/golduck/shiny.pal delete mode 100644 gfx/pics/golem/anim0.asm delete mode 100644 gfx/pics/golem/anim1.asm delete mode 100644 gfx/pics/golem/back.2bpp.lz.ae903dee delete mode 100644 gfx/pics/golem/back.png delete mode 100644 gfx/pics/golem/front.animated.2bpp.lz.a16f21c8 delete mode 100644 gfx/pics/golem/front.png delete mode 100644 gfx/pics/golem/shiny.pal delete mode 100644 gfx/pics/granbull/anim0.asm delete mode 100644 gfx/pics/granbull/anim1.asm delete mode 100644 gfx/pics/granbull/back.2bpp.lz.7f1208ed delete mode 100644 gfx/pics/granbull/back.png delete mode 100644 gfx/pics/granbull/front.animated.2bpp.lz.4504768b delete mode 100644 gfx/pics/granbull/front.png delete mode 100644 gfx/pics/granbull/shiny.pal delete mode 100644 gfx/pics/graveler/anim0.asm delete mode 100644 gfx/pics/graveler/anim1.asm delete mode 100644 gfx/pics/graveler/back.2bpp.lz.c7867de7 delete mode 100644 gfx/pics/graveler/back.png delete mode 100644 gfx/pics/graveler/front.animated.2bpp.lz.68d07c61 delete mode 100644 gfx/pics/graveler/front.png delete mode 100644 gfx/pics/graveler/shiny.pal delete mode 100644 gfx/pics/grimer/anim0.asm delete mode 100644 gfx/pics/grimer/anim1.asm delete mode 100644 gfx/pics/grimer/back.2bpp.lz.833bd626 delete mode 100644 gfx/pics/grimer/back.png delete mode 100644 gfx/pics/grimer/front.animated.2bpp.lz.dfe40e91 delete mode 100644 gfx/pics/grimer/front.png delete mode 100644 gfx/pics/grimer/shiny.pal delete mode 100644 gfx/pics/growlithe/anim0.asm delete mode 100644 gfx/pics/growlithe/anim1.asm delete mode 100644 gfx/pics/growlithe/back.2bpp.lz.7f5831f6 delete mode 100644 gfx/pics/growlithe/back.png delete mode 100644 gfx/pics/growlithe/front.animated.2bpp.lz.f7b376fa delete mode 100644 gfx/pics/growlithe/front.png delete mode 100644 gfx/pics/growlithe/shiny.pal delete mode 100644 gfx/pics/gyarados/anim0.asm delete mode 100644 gfx/pics/gyarados/anim1.asm delete mode 100644 gfx/pics/gyarados/back.2bpp.lz.fc577f9e delete mode 100644 gfx/pics/gyarados/back.png delete mode 100644 gfx/pics/gyarados/front.animated.2bpp.lz.1b498e2b delete mode 100644 gfx/pics/gyarados/front.png delete mode 100644 gfx/pics/gyarados/shiny.pal delete mode 100644 gfx/pics/haunter/anim0.asm delete mode 100644 gfx/pics/haunter/anim1.asm delete mode 100644 gfx/pics/haunter/back.2bpp.lz.8a5dc2c1 delete mode 100644 gfx/pics/haunter/back.png delete mode 100644 gfx/pics/haunter/front.animated.2bpp.lz.aeed5f7e delete mode 100644 gfx/pics/haunter/front.png delete mode 100644 gfx/pics/haunter/shiny.pal delete mode 100644 gfx/pics/heracross/anim0.asm delete mode 100644 gfx/pics/heracross/anim1.asm delete mode 100644 gfx/pics/heracross/back.2bpp.lz.ba09608b delete mode 100644 gfx/pics/heracross/back.png delete mode 100644 gfx/pics/heracross/front.animated.2bpp.lz.0742fe2b delete mode 100644 gfx/pics/heracross/front.png delete mode 100644 gfx/pics/heracross/shiny.pal delete mode 100644 gfx/pics/hitmonchan/anim0.asm delete mode 100644 gfx/pics/hitmonchan/anim1.asm delete mode 100644 gfx/pics/hitmonchan/back.2bpp.lz.68e28b98 delete mode 100644 gfx/pics/hitmonchan/back.png delete mode 100644 gfx/pics/hitmonchan/front.animated.2bpp.lz.61836c4c delete mode 100644 gfx/pics/hitmonchan/front.png delete mode 100644 gfx/pics/hitmonchan/shiny.pal delete mode 100644 gfx/pics/hitmonlee/anim0.asm delete mode 100644 gfx/pics/hitmonlee/anim1.asm delete mode 100644 gfx/pics/hitmonlee/back.2bpp.lz.374e3caa delete mode 100644 gfx/pics/hitmonlee/back.png delete mode 100644 gfx/pics/hitmonlee/front.animated.2bpp.lz.d174eba1 delete mode 100644 gfx/pics/hitmonlee/front.png delete mode 100644 gfx/pics/hitmonlee/shiny.pal delete mode 100644 gfx/pics/hitmontop/anim0.asm delete mode 100644 gfx/pics/hitmontop/anim1.asm delete mode 100644 gfx/pics/hitmontop/back.2bpp.lz.ea3f1576 delete mode 100644 gfx/pics/hitmontop/back.png delete mode 100644 gfx/pics/hitmontop/front.animated.2bpp.lz.1b3e96fc delete mode 100644 gfx/pics/hitmontop/front.png delete mode 100644 gfx/pics/hitmontop/shiny.pal delete mode 100644 gfx/pics/ho_oh/anim0.asm delete mode 100644 gfx/pics/ho_oh/anim1.asm delete mode 100644 gfx/pics/ho_oh/back.2bpp.lz.1412f260 delete mode 100644 gfx/pics/ho_oh/back.png delete mode 100644 gfx/pics/ho_oh/front.animated.2bpp.lz.db80b5eb delete mode 100644 gfx/pics/ho_oh/front.png delete mode 100644 gfx/pics/ho_oh/shiny.pal delete mode 100644 gfx/pics/hoothoot/anim0.asm delete mode 100644 gfx/pics/hoothoot/anim1.asm delete mode 100644 gfx/pics/hoothoot/back.2bpp.lz.7ebb0b29 delete mode 100644 gfx/pics/hoothoot/back.png delete mode 100644 gfx/pics/hoothoot/front.animated.2bpp.lz.752ab202 delete mode 100644 gfx/pics/hoothoot/front.png delete mode 100644 gfx/pics/hoothoot/shiny.pal delete mode 100644 gfx/pics/hoppip/anim0.asm delete mode 100644 gfx/pics/hoppip/anim1.asm delete mode 100644 gfx/pics/hoppip/back.2bpp.lz.5684c023 delete mode 100644 gfx/pics/hoppip/back.png delete mode 100644 gfx/pics/hoppip/front.animated.2bpp.lz.a03efe74 delete mode 100644 gfx/pics/hoppip/front.png delete mode 100644 gfx/pics/hoppip/shiny.pal delete mode 100644 gfx/pics/horsea/anim0.asm delete mode 100644 gfx/pics/horsea/anim1.asm delete mode 100644 gfx/pics/horsea/back.2bpp.lz.50b6afb9 delete mode 100644 gfx/pics/horsea/back.png delete mode 100644 gfx/pics/horsea/front.animated.2bpp.lz.8b84f98e delete mode 100644 gfx/pics/horsea/front.png delete mode 100644 gfx/pics/horsea/shiny.pal delete mode 100644 gfx/pics/houndoom/anim0.asm delete mode 100644 gfx/pics/houndoom/anim1.asm delete mode 100644 gfx/pics/houndoom/back.2bpp.lz.5fa55a47 delete mode 100644 gfx/pics/houndoom/back.png delete mode 100644 gfx/pics/houndoom/front.animated.2bpp.lz.2d450e90 delete mode 100644 gfx/pics/houndoom/front.png delete mode 100644 gfx/pics/houndoom/shiny.pal delete mode 100644 gfx/pics/houndour/anim0.asm delete mode 100644 gfx/pics/houndour/anim1.asm delete mode 100644 gfx/pics/houndour/back.2bpp.lz.ae5f2dc9 delete mode 100644 gfx/pics/houndour/back.png delete mode 100644 gfx/pics/houndour/front.animated.2bpp.lz.f847f4f6 delete mode 100644 gfx/pics/houndour/front.png delete mode 100644 gfx/pics/houndour/shiny.pal delete mode 100644 gfx/pics/hypno/anim0.asm delete mode 100644 gfx/pics/hypno/anim1.asm delete mode 100644 gfx/pics/hypno/back.2bpp.lz.c091ce88 delete mode 100644 gfx/pics/hypno/back.png delete mode 100644 gfx/pics/hypno/front.animated.2bpp.lz.638333a3 delete mode 100644 gfx/pics/hypno/front.png delete mode 100644 gfx/pics/hypno/shiny.pal delete mode 100644 gfx/pics/igglybuff/anim0.asm delete mode 100644 gfx/pics/igglybuff/anim1.asm delete mode 100644 gfx/pics/igglybuff/back.2bpp.lz.c0c17dcb delete mode 100644 gfx/pics/igglybuff/back.png delete mode 100644 gfx/pics/igglybuff/front.animated.2bpp.lz.1e00afc3 delete mode 100644 gfx/pics/igglybuff/front.png delete mode 100644 gfx/pics/igglybuff/shiny.pal delete mode 100644 gfx/pics/ivysaur/anim0.asm delete mode 100644 gfx/pics/ivysaur/anim1.asm delete mode 100644 gfx/pics/ivysaur/back.2bpp.lz.bed1ff58 delete mode 100644 gfx/pics/ivysaur/back.png delete mode 100644 gfx/pics/ivysaur/front.animated.2bpp.lz.3abed0fa delete mode 100644 gfx/pics/ivysaur/front.png delete mode 100644 gfx/pics/ivysaur/shiny.pal delete mode 100644 gfx/pics/jigglypuff/anim0.asm delete mode 100644 gfx/pics/jigglypuff/anim1.asm delete mode 100644 gfx/pics/jigglypuff/back.2bpp.lz.87d5730b delete mode 100644 gfx/pics/jigglypuff/back.png delete mode 100644 gfx/pics/jigglypuff/front.animated.2bpp.lz.9fd159f4 delete mode 100644 gfx/pics/jigglypuff/front.png delete mode 100644 gfx/pics/jigglypuff/shiny.pal delete mode 100644 gfx/pics/johto_frames.asm delete mode 100644 gfx/pics/jolteon/anim0.asm delete mode 100644 gfx/pics/jolteon/anim1.asm delete mode 100644 gfx/pics/jolteon/back.2bpp.lz.f248aac4 delete mode 100644 gfx/pics/jolteon/back.png delete mode 100644 gfx/pics/jolteon/front.animated.2bpp.lz.b2b07d79 delete mode 100644 gfx/pics/jolteon/front.png delete mode 100644 gfx/pics/jolteon/shiny.pal delete mode 100644 gfx/pics/jumpluff/anim0.asm delete mode 100644 gfx/pics/jumpluff/anim1.asm delete mode 100644 gfx/pics/jumpluff/back.2bpp.lz.b258a699 delete mode 100644 gfx/pics/jumpluff/back.png delete mode 100644 gfx/pics/jumpluff/front.animated.2bpp.lz.6d1d8175 delete mode 100644 gfx/pics/jumpluff/front.png delete mode 100644 gfx/pics/jumpluff/shiny.pal delete mode 100644 gfx/pics/jynx/anim0.asm delete mode 100644 gfx/pics/jynx/anim1.asm delete mode 100644 gfx/pics/jynx/back.2bpp.lz.1eef1c1b delete mode 100644 gfx/pics/jynx/back.png delete mode 100644 gfx/pics/jynx/front.animated.2bpp.lz.6aaf67b0 delete mode 100644 gfx/pics/jynx/front.png delete mode 100644 gfx/pics/jynx/shiny.pal delete mode 100644 gfx/pics/kabuto/anim0.asm delete mode 100644 gfx/pics/kabuto/anim1.asm delete mode 100644 gfx/pics/kabuto/back.2bpp.lz.0717a29b delete mode 100644 gfx/pics/kabuto/back.png delete mode 100644 gfx/pics/kabuto/front.animated.2bpp.lz.afe4e2dc delete mode 100644 gfx/pics/kabuto/front.png delete mode 100644 gfx/pics/kabuto/shiny.pal delete mode 100644 gfx/pics/kabutops/anim0.asm delete mode 100644 gfx/pics/kabutops/anim1.asm delete mode 100644 gfx/pics/kabutops/back.2bpp.lz.98a1dfc4 delete mode 100644 gfx/pics/kabutops/back.png delete mode 100644 gfx/pics/kabutops/front.animated.2bpp.lz.d5e4bfeb delete mode 100644 gfx/pics/kabutops/front.png delete mode 100644 gfx/pics/kabutops/shiny.pal delete mode 100644 gfx/pics/kadabra/anim0.asm delete mode 100644 gfx/pics/kadabra/anim1.asm delete mode 100644 gfx/pics/kadabra/back.2bpp.lz.6b26c1a0 delete mode 100644 gfx/pics/kadabra/back.png delete mode 100644 gfx/pics/kadabra/front.animated.2bpp.lz.bc78f9cf delete mode 100644 gfx/pics/kadabra/front.png delete mode 100644 gfx/pics/kadabra/shiny.pal delete mode 100644 gfx/pics/kakuna/anim0.asm delete mode 100644 gfx/pics/kakuna/anim1.asm delete mode 100644 gfx/pics/kakuna/back.2bpp.lz.3bffa4c3 delete mode 100644 gfx/pics/kakuna/back.png delete mode 100644 gfx/pics/kakuna/front.animated.2bpp.lz.c7425e72 delete mode 100644 gfx/pics/kakuna/front.png delete mode 100644 gfx/pics/kakuna/shiny.pal delete mode 100644 gfx/pics/kangaskhan/anim0.asm delete mode 100644 gfx/pics/kangaskhan/anim1.asm delete mode 100644 gfx/pics/kangaskhan/back.2bpp.lz.0d7cc337 delete mode 100644 gfx/pics/kangaskhan/back.png delete mode 100644 gfx/pics/kangaskhan/front.animated.2bpp.lz.09c81009 delete mode 100644 gfx/pics/kangaskhan/front.png delete mode 100644 gfx/pics/kangaskhan/shiny.pal delete mode 100644 gfx/pics/kanto_frames.asm delete mode 100644 gfx/pics/kingdra/anim0.asm delete mode 100644 gfx/pics/kingdra/anim1.asm delete mode 100644 gfx/pics/kingdra/back.2bpp.lz.e48ecb3f delete mode 100644 gfx/pics/kingdra/back.png delete mode 100644 gfx/pics/kingdra/front.animated.2bpp.lz.668c0516 delete mode 100644 gfx/pics/kingdra/front.png delete mode 100644 gfx/pics/kingdra/shiny.pal delete mode 100644 gfx/pics/kingler/anim0.asm delete mode 100644 gfx/pics/kingler/anim1.asm delete mode 100644 gfx/pics/kingler/back.2bpp.lz.88e96d65 delete mode 100644 gfx/pics/kingler/back.png delete mode 100644 gfx/pics/kingler/front.animated.2bpp.lz.35305199 delete mode 100644 gfx/pics/kingler/front.png delete mode 100644 gfx/pics/kingler/shiny.pal delete mode 100644 gfx/pics/koffing/anim0.asm delete mode 100644 gfx/pics/koffing/anim1.asm delete mode 100644 gfx/pics/koffing/back.2bpp.lz.8c0a2526 delete mode 100644 gfx/pics/koffing/back.png delete mode 100644 gfx/pics/koffing/front.animated.2bpp.lz.00044b3f delete mode 100644 gfx/pics/koffing/front.png delete mode 100644 gfx/pics/koffing/shiny.pal delete mode 100644 gfx/pics/krabby/anim0.asm delete mode 100644 gfx/pics/krabby/anim1.asm delete mode 100644 gfx/pics/krabby/back.2bpp.lz.2bc2487b delete mode 100644 gfx/pics/krabby/back.png delete mode 100644 gfx/pics/krabby/front.animated.2bpp.lz.39592514 delete mode 100644 gfx/pics/krabby/front.png delete mode 100644 gfx/pics/krabby/shiny.pal delete mode 100644 gfx/pics/lanturn/anim0.asm delete mode 100644 gfx/pics/lanturn/anim1.asm delete mode 100644 gfx/pics/lanturn/back.2bpp.lz.8e9c7c1a delete mode 100644 gfx/pics/lanturn/back.png delete mode 100644 gfx/pics/lanturn/front.animated.2bpp.lz.1bfac161 delete mode 100644 gfx/pics/lanturn/front.png delete mode 100644 gfx/pics/lanturn/shiny.pal delete mode 100644 gfx/pics/lapras/anim0.asm delete mode 100644 gfx/pics/lapras/anim1.asm delete mode 100644 gfx/pics/lapras/back.2bpp.lz.d09351a1 delete mode 100644 gfx/pics/lapras/back.png delete mode 100644 gfx/pics/lapras/front.animated.2bpp.lz.8290ef8e delete mode 100644 gfx/pics/lapras/front.png delete mode 100644 gfx/pics/lapras/shiny.pal delete mode 100644 gfx/pics/larvitar/anim0.asm delete mode 100644 gfx/pics/larvitar/anim1.asm delete mode 100644 gfx/pics/larvitar/back.2bpp.lz.4b2ac395 delete mode 100644 gfx/pics/larvitar/back.png delete mode 100644 gfx/pics/larvitar/front.animated.2bpp.lz.83859c57 delete mode 100644 gfx/pics/larvitar/front.png delete mode 100644 gfx/pics/larvitar/shiny.pal delete mode 100644 gfx/pics/ledian/anim0.asm delete mode 100644 gfx/pics/ledian/anim1.asm delete mode 100644 gfx/pics/ledian/back.2bpp.lz.48657bbb delete mode 100644 gfx/pics/ledian/back.png delete mode 100644 gfx/pics/ledian/front.animated.2bpp.lz.83e819c3 delete mode 100644 gfx/pics/ledian/front.png delete mode 100644 gfx/pics/ledian/shiny.pal delete mode 100644 gfx/pics/ledyba/anim0.asm delete mode 100644 gfx/pics/ledyba/anim1.asm delete mode 100644 gfx/pics/ledyba/back.2bpp.lz.d50e8860 delete mode 100644 gfx/pics/ledyba/back.png delete mode 100644 gfx/pics/ledyba/front.animated.2bpp.lz.1700dc27 delete mode 100644 gfx/pics/ledyba/front.png delete mode 100644 gfx/pics/ledyba/shiny.pal delete mode 100644 gfx/pics/lickitung/anim0.asm delete mode 100644 gfx/pics/lickitung/anim1.asm delete mode 100644 gfx/pics/lickitung/back.2bpp.lz.a127e40b delete mode 100644 gfx/pics/lickitung/back.png delete mode 100644 gfx/pics/lickitung/front.animated.2bpp.lz.328a7c53 delete mode 100644 gfx/pics/lickitung/front.png delete mode 100644 gfx/pics/lickitung/shiny.pal delete mode 100644 gfx/pics/lugia/anim0.asm delete mode 100644 gfx/pics/lugia/anim1.asm delete mode 100644 gfx/pics/lugia/back.2bpp.lz.ad953eb5 delete mode 100644 gfx/pics/lugia/back.png delete mode 100644 gfx/pics/lugia/front.animated.2bpp.lz.7293eddc delete mode 100644 gfx/pics/lugia/front.png delete mode 100644 gfx/pics/lugia/shiny.pal delete mode 100644 gfx/pics/machamp/anim0.asm delete mode 100644 gfx/pics/machamp/anim1.asm delete mode 100644 gfx/pics/machamp/back.2bpp.lz.757f4c29 delete mode 100644 gfx/pics/machamp/back.png delete mode 100644 gfx/pics/machamp/front.animated.2bpp.lz.2d408542 delete mode 100644 gfx/pics/machamp/front.png delete mode 100644 gfx/pics/machamp/shiny.pal delete mode 100644 gfx/pics/machoke/anim0.asm delete mode 100644 gfx/pics/machoke/anim1.asm delete mode 100644 gfx/pics/machoke/back.2bpp.lz.2634245e delete mode 100644 gfx/pics/machoke/back.png delete mode 100644 gfx/pics/machoke/front.animated.2bpp.lz.f38b95a7 delete mode 100644 gfx/pics/machoke/front.png delete mode 100644 gfx/pics/machoke/shiny.pal delete mode 100644 gfx/pics/machop/anim0.asm delete mode 100644 gfx/pics/machop/anim1.asm delete mode 100644 gfx/pics/machop/back.2bpp.lz.bc17b50a delete mode 100644 gfx/pics/machop/back.png delete mode 100644 gfx/pics/machop/front.animated.2bpp.lz.0fd8735f delete mode 100644 gfx/pics/machop/front.png delete mode 100644 gfx/pics/machop/shiny.pal delete mode 100644 gfx/pics/magby/anim0.asm delete mode 100644 gfx/pics/magby/anim1.asm delete mode 100644 gfx/pics/magby/back.2bpp.lz.e50ccadb delete mode 100644 gfx/pics/magby/back.png delete mode 100644 gfx/pics/magby/front.animated.2bpp.lz.172d0807 delete mode 100644 gfx/pics/magby/front.png delete mode 100644 gfx/pics/magby/shiny.pal delete mode 100644 gfx/pics/magcargo/anim0.asm delete mode 100644 gfx/pics/magcargo/anim1.asm delete mode 100644 gfx/pics/magcargo/back.2bpp.lz.56b096bc delete mode 100644 gfx/pics/magcargo/back.png delete mode 100644 gfx/pics/magcargo/front.animated.2bpp.lz.53a425f4 delete mode 100644 gfx/pics/magcargo/front.png delete mode 100644 gfx/pics/magcargo/shiny.pal delete mode 100644 gfx/pics/magikarp/anim0.asm delete mode 100644 gfx/pics/magikarp/anim1.asm delete mode 100644 gfx/pics/magikarp/back.2bpp.lz.7f25810a delete mode 100644 gfx/pics/magikarp/back.png delete mode 100644 gfx/pics/magikarp/front.animated.2bpp.lz.031ee449 delete mode 100644 gfx/pics/magikarp/front.png delete mode 100644 gfx/pics/magikarp/shiny.pal delete mode 100644 gfx/pics/magmar/anim0.asm delete mode 100644 gfx/pics/magmar/anim1.asm delete mode 100644 gfx/pics/magmar/back.2bpp.lz.6916c87b delete mode 100644 gfx/pics/magmar/back.png delete mode 100644 gfx/pics/magmar/front.animated.2bpp.lz.0048e21c delete mode 100644 gfx/pics/magmar/front.png delete mode 100644 gfx/pics/magmar/shiny.pal delete mode 100644 gfx/pics/magnemite/anim0.asm delete mode 100644 gfx/pics/magnemite/anim1.asm delete mode 100644 gfx/pics/magnemite/back.2bpp.lz.e00bd515 delete mode 100644 gfx/pics/magnemite/back.png delete mode 100644 gfx/pics/magnemite/front.animated.2bpp.lz.e4b07135 delete mode 100644 gfx/pics/magnemite/front.png delete mode 100644 gfx/pics/magnemite/shiny.pal delete mode 100644 gfx/pics/magneton/anim0.asm delete mode 100644 gfx/pics/magneton/anim1.asm delete mode 100644 gfx/pics/magneton/back.2bpp.lz.f7a7089b delete mode 100644 gfx/pics/magneton/back.png delete mode 100644 gfx/pics/magneton/front.animated.2bpp.lz.cd3b65a6 delete mode 100644 gfx/pics/magneton/front.png delete mode 100644 gfx/pics/magneton/shiny.pal delete mode 100644 gfx/pics/mankey/anim0.asm delete mode 100644 gfx/pics/mankey/anim1.asm delete mode 100644 gfx/pics/mankey/back.2bpp.lz.42cb1b61 delete mode 100644 gfx/pics/mankey/back.png delete mode 100644 gfx/pics/mankey/front.animated.2bpp.lz.48eac19a delete mode 100644 gfx/pics/mankey/front.png delete mode 100644 gfx/pics/mankey/shiny.pal delete mode 100644 gfx/pics/mantine/anim0.asm delete mode 100644 gfx/pics/mantine/anim1.asm delete mode 100644 gfx/pics/mantine/back.2bpp.lz.1320b7f3 delete mode 100644 gfx/pics/mantine/back.png delete mode 100644 gfx/pics/mantine/front.animated.2bpp.lz.9eb40d04 delete mode 100644 gfx/pics/mantine/front.png delete mode 100644 gfx/pics/mantine/shiny.pal delete mode 100644 gfx/pics/mareep/anim0.asm delete mode 100644 gfx/pics/mareep/anim1.asm delete mode 100644 gfx/pics/mareep/back.2bpp.lz.b9bdc89c delete mode 100644 gfx/pics/mareep/back.png delete mode 100644 gfx/pics/mareep/front.animated.2bpp.lz.f660483d delete mode 100644 gfx/pics/mareep/front.png delete mode 100644 gfx/pics/mareep/shiny.pal delete mode 100644 gfx/pics/marill/anim0.asm delete mode 100644 gfx/pics/marill/anim1.asm delete mode 100644 gfx/pics/marill/back.2bpp.lz.87e2be16 delete mode 100644 gfx/pics/marill/back.png delete mode 100644 gfx/pics/marill/front.animated.2bpp.lz.7f742686 delete mode 100644 gfx/pics/marill/front.png delete mode 100644 gfx/pics/marill/shiny.pal delete mode 100644 gfx/pics/marowak/anim0.asm delete mode 100644 gfx/pics/marowak/anim1.asm delete mode 100644 gfx/pics/marowak/back.2bpp.lz.055ba40e delete mode 100644 gfx/pics/marowak/back.png delete mode 100644 gfx/pics/marowak/front.animated.2bpp.lz.ef1553a0 delete mode 100644 gfx/pics/marowak/front.png delete mode 100644 gfx/pics/marowak/shiny.pal delete mode 100644 gfx/pics/meganium/anim0.asm delete mode 100644 gfx/pics/meganium/anim1.asm delete mode 100644 gfx/pics/meganium/back.2bpp.lz.d25a5edb delete mode 100644 gfx/pics/meganium/back.png delete mode 100644 gfx/pics/meganium/front.animated.2bpp.lz.fe0b9df4 delete mode 100644 gfx/pics/meganium/front.png delete mode 100644 gfx/pics/meganium/shiny.pal delete mode 100644 gfx/pics/meowth/anim0.asm delete mode 100644 gfx/pics/meowth/anim1.asm delete mode 100644 gfx/pics/meowth/back.2bpp.lz.4196bd91 delete mode 100644 gfx/pics/meowth/back.png delete mode 100644 gfx/pics/meowth/front.animated.2bpp.lz.144f12f0 delete mode 100644 gfx/pics/meowth/front.png delete mode 100644 gfx/pics/meowth/shiny.pal delete mode 100644 gfx/pics/metapod/anim0.asm delete mode 100644 gfx/pics/metapod/anim1.asm delete mode 100644 gfx/pics/metapod/back.2bpp.lz.b580afc8 delete mode 100644 gfx/pics/metapod/back.png delete mode 100644 gfx/pics/metapod/front.animated.2bpp.lz.5025baa2 delete mode 100644 gfx/pics/metapod/front.png delete mode 100644 gfx/pics/metapod/shiny.pal delete mode 100644 gfx/pics/mew/anim0.asm delete mode 100644 gfx/pics/mew/anim1.asm delete mode 100644 gfx/pics/mew/back.2bpp.lz.9947d6eb delete mode 100644 gfx/pics/mew/back.png delete mode 100644 gfx/pics/mew/front.animated.2bpp.lz.b6da9713 delete mode 100644 gfx/pics/mew/front.png delete mode 100644 gfx/pics/mew/shiny.pal delete mode 100644 gfx/pics/mewtwo/anim0.asm delete mode 100644 gfx/pics/mewtwo/anim1.asm delete mode 100644 gfx/pics/mewtwo/back.2bpp.lz.a7d2c077 delete mode 100644 gfx/pics/mewtwo/back.png delete mode 100644 gfx/pics/mewtwo/front.animated.2bpp.lz.45e8b40d delete mode 100644 gfx/pics/mewtwo/front.png delete mode 100644 gfx/pics/mewtwo/shiny.pal delete mode 100644 gfx/pics/miltank/anim0.asm delete mode 100644 gfx/pics/miltank/anim1.asm delete mode 100644 gfx/pics/miltank/back.2bpp.lz.b7787e72 delete mode 100644 gfx/pics/miltank/back.png delete mode 100644 gfx/pics/miltank/front.animated.2bpp.lz.91da7c3b delete mode 100644 gfx/pics/miltank/front.png delete mode 100644 gfx/pics/miltank/shiny.pal delete mode 100644 gfx/pics/misdreavus/anim0.asm delete mode 100644 gfx/pics/misdreavus/anim1.asm delete mode 100644 gfx/pics/misdreavus/back.2bpp.lz.8bdebfce delete mode 100644 gfx/pics/misdreavus/back.png delete mode 100644 gfx/pics/misdreavus/front.animated.2bpp.lz.5f73baa2 delete mode 100644 gfx/pics/misdreavus/front.png delete mode 100644 gfx/pics/misdreavus/shiny.pal delete mode 100644 gfx/pics/moltres/anim0.asm delete mode 100644 gfx/pics/moltres/anim1.asm delete mode 100644 gfx/pics/moltres/back.2bpp.lz.356242c8 delete mode 100644 gfx/pics/moltres/back.png delete mode 100644 gfx/pics/moltres/front.animated.2bpp.lz.281bc0ec delete mode 100644 gfx/pics/moltres/front.png delete mode 100644 gfx/pics/moltres/shiny.pal delete mode 100644 gfx/pics/mr__mime/anim0.asm delete mode 100644 gfx/pics/mr__mime/anim1.asm delete mode 100644 gfx/pics/mr__mime/back.2bpp.lz.0fb88006 delete mode 100644 gfx/pics/mr__mime/back.png delete mode 100644 gfx/pics/mr__mime/front.animated.2bpp.lz.f948d1b8 delete mode 100644 gfx/pics/mr__mime/front.png delete mode 100644 gfx/pics/mr__mime/shiny.pal delete mode 100644 gfx/pics/muk/anim0.asm delete mode 100644 gfx/pics/muk/anim1.asm delete mode 100644 gfx/pics/muk/back.2bpp.lz.a1f2f370 delete mode 100644 gfx/pics/muk/back.png delete mode 100644 gfx/pics/muk/front.animated.2bpp.lz.530363b2 delete mode 100644 gfx/pics/muk/front.png delete mode 100644 gfx/pics/muk/shiny.pal delete mode 100644 gfx/pics/murkrow/anim0.asm delete mode 100644 gfx/pics/murkrow/anim1.asm delete mode 100644 gfx/pics/murkrow/back.2bpp.lz.0c347b5b delete mode 100644 gfx/pics/murkrow/back.png delete mode 100644 gfx/pics/murkrow/front.animated.2bpp.lz.5d2805e8 delete mode 100644 gfx/pics/murkrow/front.png delete mode 100644 gfx/pics/murkrow/shiny.pal delete mode 100644 gfx/pics/natu/anim0.asm delete mode 100644 gfx/pics/natu/anim1.asm delete mode 100644 gfx/pics/natu/back.2bpp.lz.c8339fb4 delete mode 100644 gfx/pics/natu/back.png delete mode 100644 gfx/pics/natu/front.animated.2bpp.lz.997efaf6 delete mode 100644 gfx/pics/natu/front.png delete mode 100644 gfx/pics/natu/shiny.pal delete mode 100644 gfx/pics/nidoking/anim0.asm delete mode 100644 gfx/pics/nidoking/anim1.asm delete mode 100644 gfx/pics/nidoking/back.2bpp.lz.93211604 delete mode 100644 gfx/pics/nidoking/back.png delete mode 100644 gfx/pics/nidoking/front.animated.2bpp.lz.bd38fa1e delete mode 100644 gfx/pics/nidoking/front.png delete mode 100644 gfx/pics/nidoking/shiny.pal delete mode 100644 gfx/pics/nidoqueen/anim0.asm delete mode 100644 gfx/pics/nidoqueen/anim1.asm delete mode 100644 gfx/pics/nidoqueen/back.2bpp.lz.f1eb0f0c delete mode 100644 gfx/pics/nidoqueen/back.png delete mode 100644 gfx/pics/nidoqueen/front.animated.2bpp.lz.0bf11b0a delete mode 100644 gfx/pics/nidoqueen/front.png delete mode 100644 gfx/pics/nidoqueen/shiny.pal delete mode 100644 gfx/pics/nidoran_f/anim0.asm delete mode 100644 gfx/pics/nidoran_f/anim1.asm delete mode 100644 gfx/pics/nidoran_f/back.2bpp.lz.9b6990f1 delete mode 100644 gfx/pics/nidoran_f/back.png delete mode 100644 gfx/pics/nidoran_f/front.animated.2bpp.lz.0a4602e7 delete mode 100644 gfx/pics/nidoran_f/front.png delete mode 100644 gfx/pics/nidoran_f/shiny.pal delete mode 100644 gfx/pics/nidoran_m/anim0.asm delete mode 100644 gfx/pics/nidoran_m/anim1.asm delete mode 100644 gfx/pics/nidoran_m/back.2bpp.lz.c9e54720 delete mode 100644 gfx/pics/nidoran_m/back.png delete mode 100644 gfx/pics/nidoran_m/front.animated.2bpp.lz.b121beaa delete mode 100644 gfx/pics/nidoran_m/front.png delete mode 100644 gfx/pics/nidoran_m/shiny.pal delete mode 100644 gfx/pics/nidorina/anim0.asm delete mode 100644 gfx/pics/nidorina/anim1.asm delete mode 100644 gfx/pics/nidorina/back.2bpp.lz.a00ecf4a delete mode 100644 gfx/pics/nidorina/back.png delete mode 100644 gfx/pics/nidorina/front.animated.2bpp.lz.51532540 delete mode 100644 gfx/pics/nidorina/front.png delete mode 100644 gfx/pics/nidorina/shiny.pal delete mode 100644 gfx/pics/nidorino/anim0.asm delete mode 100644 gfx/pics/nidorino/anim1.asm delete mode 100644 gfx/pics/nidorino/back.2bpp.lz.8504fdd1 delete mode 100644 gfx/pics/nidorino/back.png delete mode 100644 gfx/pics/nidorino/front.animated.2bpp.lz.ba11ef23 delete mode 100644 gfx/pics/nidorino/front.png delete mode 100644 gfx/pics/nidorino/shiny.pal delete mode 100644 gfx/pics/ninetales/anim0.asm delete mode 100644 gfx/pics/ninetales/anim1.asm delete mode 100644 gfx/pics/ninetales/back.2bpp.lz.999b3894 delete mode 100644 gfx/pics/ninetales/back.png delete mode 100644 gfx/pics/ninetales/front.animated.2bpp.lz.eef934ff delete mode 100644 gfx/pics/ninetales/front.png delete mode 100644 gfx/pics/ninetales/shiny.pal delete mode 100644 gfx/pics/noctowl/anim0.asm delete mode 100644 gfx/pics/noctowl/anim1.asm delete mode 100644 gfx/pics/noctowl/back.2bpp.lz.9c8ac57f delete mode 100644 gfx/pics/noctowl/back.png delete mode 100644 gfx/pics/noctowl/front.animated.2bpp.lz.7d6594fe delete mode 100644 gfx/pics/noctowl/front.png delete mode 100644 gfx/pics/noctowl/shiny.pal delete mode 100644 gfx/pics/octillery/anim0.asm delete mode 100644 gfx/pics/octillery/anim1.asm delete mode 100644 gfx/pics/octillery/back.2bpp.lz.48b6e47d delete mode 100644 gfx/pics/octillery/back.png delete mode 100644 gfx/pics/octillery/front.animated.2bpp.lz.de99954b delete mode 100644 gfx/pics/octillery/front.png delete mode 100644 gfx/pics/octillery/shiny.pal delete mode 100644 gfx/pics/oddish/anim0.asm delete mode 100644 gfx/pics/oddish/anim1.asm delete mode 100644 gfx/pics/oddish/back.2bpp.lz.4f9ec682 delete mode 100644 gfx/pics/oddish/back.png delete mode 100644 gfx/pics/oddish/front.animated.2bpp.lz.ea2e0dcd delete mode 100644 gfx/pics/oddish/front.png delete mode 100644 gfx/pics/oddish/shiny.pal delete mode 100644 gfx/pics/omanyte/anim0.asm delete mode 100644 gfx/pics/omanyte/anim1.asm delete mode 100644 gfx/pics/omanyte/back.2bpp.lz.f442a670 delete mode 100644 gfx/pics/omanyte/back.png delete mode 100644 gfx/pics/omanyte/front.animated.2bpp.lz.15b343dc delete mode 100644 gfx/pics/omanyte/front.png delete mode 100644 gfx/pics/omanyte/shiny.pal delete mode 100644 gfx/pics/omastar/anim0.asm delete mode 100644 gfx/pics/omastar/anim1.asm delete mode 100644 gfx/pics/omastar/back.2bpp.lz.c75932db delete mode 100644 gfx/pics/omastar/back.png delete mode 100644 gfx/pics/omastar/front.animated.2bpp.lz.b3f6c3dc delete mode 100644 gfx/pics/omastar/front.png delete mode 100644 gfx/pics/omastar/shiny.pal delete mode 100644 gfx/pics/onix/anim0.asm delete mode 100644 gfx/pics/onix/anim1.asm delete mode 100644 gfx/pics/onix/back.2bpp.lz.cb580eb9 delete mode 100644 gfx/pics/onix/back.png delete mode 100644 gfx/pics/onix/front.animated.2bpp.lz.84b7e9ef delete mode 100644 gfx/pics/onix/front.png delete mode 100644 gfx/pics/onix/shiny.pal delete mode 100644 gfx/pics/palette_pointers.asm delete mode 100644 gfx/pics/paras/anim0.asm delete mode 100644 gfx/pics/paras/anim1.asm delete mode 100644 gfx/pics/paras/back.2bpp.lz.b5a4d1e2 delete mode 100644 gfx/pics/paras/back.png delete mode 100644 gfx/pics/paras/front.animated.2bpp.lz.37a2c2f8 delete mode 100644 gfx/pics/paras/front.png delete mode 100644 gfx/pics/paras/shiny.pal delete mode 100644 gfx/pics/parasect/anim0.asm delete mode 100644 gfx/pics/parasect/anim1.asm delete mode 100644 gfx/pics/parasect/back.2bpp.lz.ed08ef08 delete mode 100644 gfx/pics/parasect/back.png delete mode 100644 gfx/pics/parasect/front.animated.2bpp.lz.f78f9f36 delete mode 100644 gfx/pics/parasect/front.png delete mode 100644 gfx/pics/parasect/shiny.pal delete mode 100644 gfx/pics/persian/anim0.asm delete mode 100644 gfx/pics/persian/anim1.asm delete mode 100644 gfx/pics/persian/back.2bpp.lz.0e1c1c9a delete mode 100644 gfx/pics/persian/back.png delete mode 100644 gfx/pics/persian/front.animated.2bpp.lz.0e6a2521 delete mode 100644 gfx/pics/persian/front.png delete mode 100644 gfx/pics/persian/shiny.pal delete mode 100644 gfx/pics/phanpy/anim0.asm delete mode 100644 gfx/pics/phanpy/anim1.asm delete mode 100644 gfx/pics/phanpy/back.2bpp.lz.a5c509b8 delete mode 100644 gfx/pics/phanpy/back.png delete mode 100644 gfx/pics/phanpy/front.animated.2bpp.lz.53b49445 delete mode 100644 gfx/pics/phanpy/front.png delete mode 100644 gfx/pics/phanpy/shiny.pal delete mode 100644 gfx/pics/pic_pointers.asm delete mode 100644 gfx/pics/pichu/anim0.asm delete mode 100644 gfx/pics/pichu/anim1.asm delete mode 100644 gfx/pics/pichu/back.2bpp.lz.c5580983 delete mode 100644 gfx/pics/pichu/back.png delete mode 100644 gfx/pics/pichu/front.animated.2bpp.lz.9c1c3bef delete mode 100644 gfx/pics/pichu/front.png delete mode 100644 gfx/pics/pichu/shiny.pal delete mode 100644 gfx/pics/pidgeot/anim0.asm delete mode 100644 gfx/pics/pidgeot/anim1.asm delete mode 100644 gfx/pics/pidgeot/back.2bpp.lz.7d9e44a5 delete mode 100644 gfx/pics/pidgeot/back.png delete mode 100644 gfx/pics/pidgeot/front.animated.2bpp.lz.c161ad71 delete mode 100644 gfx/pics/pidgeot/front.png delete mode 100644 gfx/pics/pidgeot/shiny.pal delete mode 100644 gfx/pics/pidgeotto/anim0.asm delete mode 100644 gfx/pics/pidgeotto/anim1.asm delete mode 100644 gfx/pics/pidgeotto/back.2bpp.lz.8a0dd470 delete mode 100644 gfx/pics/pidgeotto/back.png delete mode 100644 gfx/pics/pidgeotto/front.animated.2bpp.lz.8ce78b51 delete mode 100644 gfx/pics/pidgeotto/front.png delete mode 100644 gfx/pics/pidgeotto/shiny.pal delete mode 100644 gfx/pics/pidgey/anim0.asm delete mode 100644 gfx/pics/pidgey/anim1.asm delete mode 100644 gfx/pics/pidgey/back.2bpp.lz.027129e8 delete mode 100644 gfx/pics/pidgey/back.png delete mode 100644 gfx/pics/pidgey/front.animated.2bpp.lz.9acd46ca delete mode 100644 gfx/pics/pidgey/front.png delete mode 100644 gfx/pics/pidgey/shiny.pal delete mode 100644 gfx/pics/pikachu/anim0.asm delete mode 100644 gfx/pics/pikachu/anim1.asm delete mode 100644 gfx/pics/pikachu/back.2bpp.lz.98998807 delete mode 100644 gfx/pics/pikachu/back.png delete mode 100644 gfx/pics/pikachu/front.animated.2bpp.lz.9c100565 delete mode 100644 gfx/pics/pikachu/front.png delete mode 100644 gfx/pics/pikachu/shiny.pal delete mode 100644 gfx/pics/piloswine/anim0.asm delete mode 100644 gfx/pics/piloswine/anim1.asm delete mode 100644 gfx/pics/piloswine/back.2bpp.lz.6fe7da21 delete mode 100644 gfx/pics/piloswine/back.png delete mode 100644 gfx/pics/piloswine/front.animated.2bpp.lz.f6f37ed2 delete mode 100644 gfx/pics/piloswine/front.png delete mode 100644 gfx/pics/piloswine/shiny.pal delete mode 100644 gfx/pics/pineco/anim0.asm delete mode 100644 gfx/pics/pineco/anim1.asm delete mode 100644 gfx/pics/pineco/back.2bpp.lz.70df8ca3 delete mode 100644 gfx/pics/pineco/back.png delete mode 100644 gfx/pics/pineco/front.animated.2bpp.lz.82d91497 delete mode 100644 gfx/pics/pineco/front.png delete mode 100644 gfx/pics/pineco/shiny.pal delete mode 100644 gfx/pics/pinsir/anim0.asm delete mode 100644 gfx/pics/pinsir/anim1.asm delete mode 100644 gfx/pics/pinsir/back.2bpp.lz.09ac7dd4 delete mode 100644 gfx/pics/pinsir/back.png delete mode 100644 gfx/pics/pinsir/front.animated.2bpp.lz.1e3839f2 delete mode 100644 gfx/pics/pinsir/front.png delete mode 100644 gfx/pics/pinsir/shiny.pal delete mode 100644 gfx/pics/politoed/anim0.asm delete mode 100644 gfx/pics/politoed/anim1.asm delete mode 100644 gfx/pics/politoed/back.2bpp.lz.7873e52f delete mode 100644 gfx/pics/politoed/back.png delete mode 100644 gfx/pics/politoed/front.animated.2bpp.lz.408a9c1a delete mode 100644 gfx/pics/politoed/front.png delete mode 100644 gfx/pics/politoed/shiny.pal delete mode 100644 gfx/pics/poliwag/anim0.asm delete mode 100644 gfx/pics/poliwag/anim1.asm delete mode 100644 gfx/pics/poliwag/back.2bpp.lz.35b9ee20 delete mode 100644 gfx/pics/poliwag/back.png delete mode 100644 gfx/pics/poliwag/front.animated.2bpp.lz.c7d26488 delete mode 100644 gfx/pics/poliwag/front.png delete mode 100644 gfx/pics/poliwag/shiny.pal delete mode 100644 gfx/pics/poliwhirl/anim0.asm delete mode 100644 gfx/pics/poliwhirl/anim1.asm delete mode 100644 gfx/pics/poliwhirl/back.2bpp.lz.76564593 delete mode 100644 gfx/pics/poliwhirl/back.png delete mode 100644 gfx/pics/poliwhirl/front.animated.2bpp.lz.9a36033f delete mode 100644 gfx/pics/poliwhirl/front.png delete mode 100644 gfx/pics/poliwhirl/shiny.pal delete mode 100644 gfx/pics/poliwrath/anim0.asm delete mode 100644 gfx/pics/poliwrath/anim1.asm delete mode 100644 gfx/pics/poliwrath/back.2bpp.lz.240e911e delete mode 100644 gfx/pics/poliwrath/back.png delete mode 100644 gfx/pics/poliwrath/front.animated.2bpp.lz.fb1157ec delete mode 100644 gfx/pics/poliwrath/front.png delete mode 100644 gfx/pics/poliwrath/shiny.pal delete mode 100644 gfx/pics/ponyta/anim0.asm delete mode 100644 gfx/pics/ponyta/anim1.asm delete mode 100644 gfx/pics/ponyta/back.2bpp.lz.10ddc7ea delete mode 100644 gfx/pics/ponyta/back.png delete mode 100644 gfx/pics/ponyta/front.animated.2bpp.lz.2c8708d6 delete mode 100644 gfx/pics/ponyta/front.png delete mode 100644 gfx/pics/ponyta/shiny.pal delete mode 100644 gfx/pics/porygon/anim0.asm delete mode 100644 gfx/pics/porygon/anim1.asm delete mode 100644 gfx/pics/porygon/back.2bpp.lz.b3d71350 delete mode 100644 gfx/pics/porygon/back.png delete mode 100644 gfx/pics/porygon/front.animated.2bpp.lz.70fc1333 delete mode 100644 gfx/pics/porygon/front.png delete mode 100644 gfx/pics/porygon/shiny.pal delete mode 100644 gfx/pics/porygon2/anim0.asm delete mode 100644 gfx/pics/porygon2/anim1.asm delete mode 100644 gfx/pics/porygon2/back.2bpp.lz.5bba6e40 delete mode 100644 gfx/pics/porygon2/back.png delete mode 100644 gfx/pics/porygon2/front.animated.2bpp.lz.a6410e75 delete mode 100644 gfx/pics/porygon2/front.png delete mode 100644 gfx/pics/porygon2/shiny.pal delete mode 100644 gfx/pics/primeape/anim0.asm delete mode 100644 gfx/pics/primeape/anim1.asm delete mode 100644 gfx/pics/primeape/back.2bpp.lz.690e407d delete mode 100644 gfx/pics/primeape/back.png delete mode 100644 gfx/pics/primeape/front.animated.2bpp.lz.218352ec delete mode 100644 gfx/pics/primeape/front.png delete mode 100644 gfx/pics/primeape/shiny.pal delete mode 100644 gfx/pics/psyduck/anim0.asm delete mode 100644 gfx/pics/psyduck/anim1.asm delete mode 100644 gfx/pics/psyduck/back.2bpp.lz.d68cddb2 delete mode 100644 gfx/pics/psyduck/back.png delete mode 100644 gfx/pics/psyduck/front.animated.2bpp.lz.e4efd065 delete mode 100644 gfx/pics/psyduck/front.png delete mode 100644 gfx/pics/psyduck/shiny.pal delete mode 100644 gfx/pics/pupitar/anim0.asm delete mode 100644 gfx/pics/pupitar/anim1.asm delete mode 100644 gfx/pics/pupitar/back.2bpp.lz.100020c1 delete mode 100644 gfx/pics/pupitar/back.png delete mode 100644 gfx/pics/pupitar/front.animated.2bpp.lz.418c0962 delete mode 100644 gfx/pics/pupitar/front.png delete mode 100644 gfx/pics/pupitar/shiny.pal delete mode 100644 gfx/pics/quagsire/anim0.asm delete mode 100644 gfx/pics/quagsire/anim1.asm delete mode 100644 gfx/pics/quagsire/back.2bpp.lz.64b2ec05 delete mode 100644 gfx/pics/quagsire/back.png delete mode 100644 gfx/pics/quagsire/front.animated.2bpp.lz.bd292a94 delete mode 100644 gfx/pics/quagsire/front.png delete mode 100644 gfx/pics/quagsire/shiny.pal delete mode 100644 gfx/pics/questionmark/front.2bpp.lz.14c284f5 delete mode 100644 gfx/pics/questionmark/front.png delete mode 100644 gfx/pics/quilava/anim0.asm delete mode 100644 gfx/pics/quilava/anim1.asm delete mode 100644 gfx/pics/quilava/back.2bpp.lz.500906e1 delete mode 100644 gfx/pics/quilava/back.png delete mode 100644 gfx/pics/quilava/front.animated.2bpp.lz.f42f4c67 delete mode 100644 gfx/pics/quilava/front.png delete mode 100644 gfx/pics/quilava/shiny.pal delete mode 100644 gfx/pics/qwilfish/anim0.asm delete mode 100644 gfx/pics/qwilfish/anim1.asm delete mode 100644 gfx/pics/qwilfish/back.2bpp.lz.b2bb83c6 delete mode 100644 gfx/pics/qwilfish/back.png delete mode 100644 gfx/pics/qwilfish/front.animated.2bpp.lz.9e79c033 delete mode 100644 gfx/pics/qwilfish/front.png delete mode 100644 gfx/pics/qwilfish/shiny.pal delete mode 100644 gfx/pics/raichu/anim0.asm delete mode 100644 gfx/pics/raichu/anim1.asm delete mode 100644 gfx/pics/raichu/back.2bpp.lz.fa4c7423 delete mode 100644 gfx/pics/raichu/back.png delete mode 100644 gfx/pics/raichu/front.animated.2bpp.lz.25f943cb delete mode 100644 gfx/pics/raichu/front.png delete mode 100644 gfx/pics/raichu/shiny.pal delete mode 100644 gfx/pics/raikou/anim0.asm delete mode 100644 gfx/pics/raikou/anim1.asm delete mode 100644 gfx/pics/raikou/back.2bpp.lz.657ddfaf delete mode 100644 gfx/pics/raikou/back.png delete mode 100644 gfx/pics/raikou/front.animated.2bpp.lz.464b6fd7 delete mode 100644 gfx/pics/raikou/front.png delete mode 100644 gfx/pics/raikou/shiny.pal delete mode 100644 gfx/pics/rapidash/anim0.asm delete mode 100644 gfx/pics/rapidash/anim1.asm delete mode 100644 gfx/pics/rapidash/back.2bpp.lz.fdd1946c delete mode 100644 gfx/pics/rapidash/back.png delete mode 100644 gfx/pics/rapidash/front.animated.2bpp.lz.d5ac5a96 delete mode 100644 gfx/pics/rapidash/front.png delete mode 100644 gfx/pics/rapidash/shiny.pal delete mode 100644 gfx/pics/raticate/anim0.asm delete mode 100644 gfx/pics/raticate/anim1.asm delete mode 100644 gfx/pics/raticate/back.2bpp.lz.b2a77d02 delete mode 100644 gfx/pics/raticate/back.png delete mode 100644 gfx/pics/raticate/front.animated.2bpp.lz.ef1a4689 delete mode 100644 gfx/pics/raticate/front.png delete mode 100644 gfx/pics/raticate/shiny.pal delete mode 100644 gfx/pics/rattata/anim0.asm delete mode 100644 gfx/pics/rattata/anim1.asm delete mode 100644 gfx/pics/rattata/back.2bpp.lz.86979cd5 delete mode 100644 gfx/pics/rattata/back.png delete mode 100644 gfx/pics/rattata/front.animated.2bpp.lz.5bdaea2b delete mode 100644 gfx/pics/rattata/front.png delete mode 100644 gfx/pics/rattata/shiny.pal delete mode 100644 gfx/pics/remoraid/anim0.asm delete mode 100644 gfx/pics/remoraid/anim1.asm delete mode 100644 gfx/pics/remoraid/back.2bpp.lz.8a6e4f29 delete mode 100644 gfx/pics/remoraid/back.png delete mode 100644 gfx/pics/remoraid/front.animated.2bpp.lz.4eaf1230 delete mode 100644 gfx/pics/remoraid/front.png delete mode 100644 gfx/pics/remoraid/shiny.pal delete mode 100644 gfx/pics/rhydon/anim0.asm delete mode 100644 gfx/pics/rhydon/anim1.asm delete mode 100644 gfx/pics/rhydon/back.2bpp.lz.4a3ea4af delete mode 100644 gfx/pics/rhydon/back.png delete mode 100644 gfx/pics/rhydon/front.animated.2bpp.lz.7257fc4f delete mode 100644 gfx/pics/rhydon/front.png delete mode 100644 gfx/pics/rhydon/shiny.pal delete mode 100644 gfx/pics/rhyhorn/anim0.asm delete mode 100644 gfx/pics/rhyhorn/anim1.asm delete mode 100644 gfx/pics/rhyhorn/back.2bpp.lz.b9a8e755 delete mode 100644 gfx/pics/rhyhorn/back.png delete mode 100644 gfx/pics/rhyhorn/front.animated.2bpp.lz.bdfdf7dc delete mode 100644 gfx/pics/rhyhorn/front.png delete mode 100644 gfx/pics/rhyhorn/shiny.pal delete mode 100644 gfx/pics/sandshrew/anim0.asm delete mode 100644 gfx/pics/sandshrew/anim1.asm delete mode 100644 gfx/pics/sandshrew/back.2bpp.lz.7655193f delete mode 100644 gfx/pics/sandshrew/back.png delete mode 100644 gfx/pics/sandshrew/front.animated.2bpp.lz.758def3d delete mode 100644 gfx/pics/sandshrew/front.png delete mode 100644 gfx/pics/sandshrew/shiny.pal delete mode 100644 gfx/pics/sandslash/anim0.asm delete mode 100644 gfx/pics/sandslash/anim1.asm delete mode 100644 gfx/pics/sandslash/back.2bpp.lz.2999f4c6 delete mode 100644 gfx/pics/sandslash/back.png delete mode 100644 gfx/pics/sandslash/front.animated.2bpp.lz.d6498722 delete mode 100644 gfx/pics/sandslash/front.png delete mode 100644 gfx/pics/sandslash/shiny.pal delete mode 100644 gfx/pics/scizor/anim0.asm delete mode 100644 gfx/pics/scizor/anim1.asm delete mode 100644 gfx/pics/scizor/back.2bpp.lz.85149f27 delete mode 100644 gfx/pics/scizor/back.png delete mode 100644 gfx/pics/scizor/front.animated.2bpp.lz.afd0131a delete mode 100644 gfx/pics/scizor/front.png delete mode 100644 gfx/pics/scizor/shiny.pal delete mode 100644 gfx/pics/scyther/anim0.asm delete mode 100644 gfx/pics/scyther/anim1.asm delete mode 100644 gfx/pics/scyther/back.2bpp.lz.1d7f8a87 delete mode 100644 gfx/pics/scyther/back.png delete mode 100644 gfx/pics/scyther/front.animated.2bpp.lz.86d1a281 delete mode 100644 gfx/pics/scyther/front.png delete mode 100644 gfx/pics/scyther/shiny.pal delete mode 100644 gfx/pics/seadra/anim0.asm delete mode 100644 gfx/pics/seadra/anim1.asm delete mode 100644 gfx/pics/seadra/back.2bpp.lz.354a02e4 delete mode 100644 gfx/pics/seadra/back.png delete mode 100644 gfx/pics/seadra/front.animated.2bpp.lz.efa9c88c delete mode 100644 gfx/pics/seadra/front.png delete mode 100644 gfx/pics/seadra/shiny.pal delete mode 100644 gfx/pics/seaking/anim0.asm delete mode 100644 gfx/pics/seaking/anim1.asm delete mode 100644 gfx/pics/seaking/back.2bpp.lz.3e699249 delete mode 100644 gfx/pics/seaking/back.png delete mode 100644 gfx/pics/seaking/front.animated.2bpp.lz.fb4eb288 delete mode 100644 gfx/pics/seaking/front.png delete mode 100644 gfx/pics/seaking/shiny.pal delete mode 100644 gfx/pics/seel/anim0.asm delete mode 100644 gfx/pics/seel/anim1.asm delete mode 100644 gfx/pics/seel/back.2bpp.lz.518a4d40 delete mode 100644 gfx/pics/seel/back.png delete mode 100644 gfx/pics/seel/front.animated.2bpp.lz.2dc48023 delete mode 100644 gfx/pics/seel/front.png delete mode 100644 gfx/pics/seel/shiny.pal delete mode 100644 gfx/pics/sentret/anim0.asm delete mode 100644 gfx/pics/sentret/anim1.asm delete mode 100644 gfx/pics/sentret/back.2bpp.lz.c19b7f3b delete mode 100644 gfx/pics/sentret/back.png delete mode 100644 gfx/pics/sentret/front.animated.2bpp.lz.07c594c0 delete mode 100644 gfx/pics/sentret/front.png delete mode 100644 gfx/pics/sentret/shiny.pal delete mode 100644 gfx/pics/shellder/anim0.asm delete mode 100644 gfx/pics/shellder/anim1.asm delete mode 100644 gfx/pics/shellder/back.2bpp.lz.61e27953 delete mode 100644 gfx/pics/shellder/back.png delete mode 100644 gfx/pics/shellder/front.animated.2bpp.lz.df57d475 delete mode 100644 gfx/pics/shellder/front.png delete mode 100644 gfx/pics/shellder/shiny.pal delete mode 100644 gfx/pics/shuckle/anim0.asm delete mode 100644 gfx/pics/shuckle/anim1.asm delete mode 100644 gfx/pics/shuckle/back.2bpp.lz.8d66899b delete mode 100644 gfx/pics/shuckle/back.png delete mode 100644 gfx/pics/shuckle/front.animated.2bpp.lz.dee153d4 delete mode 100644 gfx/pics/shuckle/front.png delete mode 100644 gfx/pics/shuckle/shiny.pal delete mode 100644 gfx/pics/skarmory/anim0.asm delete mode 100644 gfx/pics/skarmory/anim1.asm delete mode 100644 gfx/pics/skarmory/back.2bpp.lz.f5e2e2e4 delete mode 100644 gfx/pics/skarmory/back.png delete mode 100644 gfx/pics/skarmory/front.animated.2bpp.lz.7de4675e delete mode 100644 gfx/pics/skarmory/front.png delete mode 100644 gfx/pics/skarmory/shiny.pal delete mode 100644 gfx/pics/skiploom/anim0.asm delete mode 100644 gfx/pics/skiploom/anim1.asm delete mode 100644 gfx/pics/skiploom/back.2bpp.lz.54e87a0c delete mode 100644 gfx/pics/skiploom/back.png delete mode 100644 gfx/pics/skiploom/front.animated.2bpp.lz.6436d556 delete mode 100644 gfx/pics/skiploom/front.png delete mode 100644 gfx/pics/skiploom/shiny.pal delete mode 100644 gfx/pics/slowbro/anim0.asm delete mode 100644 gfx/pics/slowbro/anim1.asm delete mode 100644 gfx/pics/slowbro/back.2bpp.lz.3676b1f1 delete mode 100644 gfx/pics/slowbro/back.png delete mode 100644 gfx/pics/slowbro/front.animated.2bpp.lz.257e2e84 delete mode 100644 gfx/pics/slowbro/front.png delete mode 100644 gfx/pics/slowbro/shiny.pal delete mode 100644 gfx/pics/slowking/anim0.asm delete mode 100644 gfx/pics/slowking/anim1.asm delete mode 100644 gfx/pics/slowking/back.2bpp.lz.a90de69e delete mode 100644 gfx/pics/slowking/back.png delete mode 100644 gfx/pics/slowking/front.animated.2bpp.lz.4c2f7140 delete mode 100644 gfx/pics/slowking/front.png delete mode 100644 gfx/pics/slowking/shiny.pal delete mode 100644 gfx/pics/slowpoke/anim0.asm delete mode 100644 gfx/pics/slowpoke/anim1.asm delete mode 100644 gfx/pics/slowpoke/back.2bpp.lz.f2d1bb5c delete mode 100644 gfx/pics/slowpoke/back.png delete mode 100644 gfx/pics/slowpoke/front.animated.2bpp.lz.42347014 delete mode 100644 gfx/pics/slowpoke/front.png delete mode 100644 gfx/pics/slowpoke/shiny.pal delete mode 100644 gfx/pics/slugma/anim0.asm delete mode 100644 gfx/pics/slugma/anim1.asm delete mode 100644 gfx/pics/slugma/back.2bpp.lz.dc25c77a delete mode 100644 gfx/pics/slugma/back.png delete mode 100644 gfx/pics/slugma/front.animated.2bpp.lz.c1a44906 delete mode 100644 gfx/pics/slugma/front.png delete mode 100644 gfx/pics/slugma/shiny.pal delete mode 100644 gfx/pics/smeargle/anim0.asm delete mode 100644 gfx/pics/smeargle/anim1.asm delete mode 100644 gfx/pics/smeargle/back.2bpp.lz.2de2de8c delete mode 100644 gfx/pics/smeargle/back.png delete mode 100644 gfx/pics/smeargle/front.animated.2bpp.lz.82ec0f51 delete mode 100644 gfx/pics/smeargle/front.png delete mode 100644 gfx/pics/smeargle/shiny.pal delete mode 100644 gfx/pics/smoochum/anim0.asm delete mode 100644 gfx/pics/smoochum/anim1.asm delete mode 100644 gfx/pics/smoochum/back.2bpp.lz.af01f906 delete mode 100644 gfx/pics/smoochum/back.png delete mode 100644 gfx/pics/smoochum/front.animated.2bpp.lz.5977720b delete mode 100644 gfx/pics/smoochum/front.png delete mode 100644 gfx/pics/smoochum/shiny.pal delete mode 100644 gfx/pics/sneasel/anim0.asm delete mode 100644 gfx/pics/sneasel/anim1.asm delete mode 100644 gfx/pics/sneasel/back.2bpp.lz.5298828d delete mode 100644 gfx/pics/sneasel/back.png delete mode 100644 gfx/pics/sneasel/front.animated.2bpp.lz.8f7db3e9 delete mode 100644 gfx/pics/sneasel/front.png delete mode 100644 gfx/pics/sneasel/shiny.pal delete mode 100644 gfx/pics/snorlax/anim0.asm delete mode 100644 gfx/pics/snorlax/anim1.asm delete mode 100644 gfx/pics/snorlax/back.2bpp.lz.90570272 delete mode 100644 gfx/pics/snorlax/back.png delete mode 100644 gfx/pics/snorlax/front.animated.2bpp.lz.8253357b delete mode 100644 gfx/pics/snorlax/front.png delete mode 100644 gfx/pics/snorlax/shiny.pal delete mode 100644 gfx/pics/snubbull/anim0.asm delete mode 100644 gfx/pics/snubbull/anim1.asm delete mode 100644 gfx/pics/snubbull/back.2bpp.lz.26eaaa5d delete mode 100644 gfx/pics/snubbull/back.png delete mode 100644 gfx/pics/snubbull/front.animated.2bpp.lz.a1b4eb88 delete mode 100644 gfx/pics/snubbull/front.png delete mode 100644 gfx/pics/snubbull/shiny.pal delete mode 100644 gfx/pics/spearow/anim0.asm delete mode 100644 gfx/pics/spearow/anim1.asm delete mode 100644 gfx/pics/spearow/back.2bpp.lz.b8e760aa delete mode 100644 gfx/pics/spearow/back.png delete mode 100644 gfx/pics/spearow/front.animated.2bpp.lz.59d61986 delete mode 100644 gfx/pics/spearow/front.png delete mode 100644 gfx/pics/spearow/shiny.pal delete mode 100644 gfx/pics/spinarak/anim0.asm delete mode 100644 gfx/pics/spinarak/anim1.asm delete mode 100644 gfx/pics/spinarak/back.2bpp.lz.14002836 delete mode 100644 gfx/pics/spinarak/back.png delete mode 100644 gfx/pics/spinarak/front.animated.2bpp.lz.31ab6868 delete mode 100644 gfx/pics/spinarak/front.png delete mode 100644 gfx/pics/spinarak/shiny.pal delete mode 100644 gfx/pics/squirtle/anim0.asm delete mode 100644 gfx/pics/squirtle/anim1.asm delete mode 100644 gfx/pics/squirtle/back.2bpp.lz.76295ae8 delete mode 100644 gfx/pics/squirtle/back.png delete mode 100644 gfx/pics/squirtle/front.animated.2bpp.lz.9b6f9ec9 delete mode 100644 gfx/pics/squirtle/front.png delete mode 100644 gfx/pics/squirtle/shiny.pal delete mode 100644 gfx/pics/stantler/anim0.asm delete mode 100644 gfx/pics/stantler/anim1.asm delete mode 100644 gfx/pics/stantler/back.2bpp.lz.16502aac delete mode 100644 gfx/pics/stantler/back.png delete mode 100644 gfx/pics/stantler/front.animated.2bpp.lz.46b7dd06 delete mode 100644 gfx/pics/stantler/front.png delete mode 100644 gfx/pics/stantler/shiny.pal delete mode 100644 gfx/pics/starmie/anim0.asm delete mode 100644 gfx/pics/starmie/anim1.asm delete mode 100644 gfx/pics/starmie/back.2bpp.lz.a8923741 delete mode 100644 gfx/pics/starmie/back.png delete mode 100644 gfx/pics/starmie/front.animated.2bpp.lz.522b6699 delete mode 100644 gfx/pics/starmie/front.png delete mode 100644 gfx/pics/starmie/shiny.pal delete mode 100644 gfx/pics/staryu/anim0.asm delete mode 100644 gfx/pics/staryu/anim1.asm delete mode 100644 gfx/pics/staryu/back.2bpp.lz.79ea9d00 delete mode 100644 gfx/pics/staryu/back.png delete mode 100644 gfx/pics/staryu/front.animated.2bpp.lz.22f1d06b delete mode 100644 gfx/pics/staryu/front.png delete mode 100644 gfx/pics/staryu/shiny.pal delete mode 100644 gfx/pics/steelix/anim0.asm delete mode 100644 gfx/pics/steelix/anim1.asm delete mode 100644 gfx/pics/steelix/back.2bpp.lz.f3c03e61 delete mode 100644 gfx/pics/steelix/back.png delete mode 100644 gfx/pics/steelix/front.animated.2bpp.lz.42f3f8d1 delete mode 100644 gfx/pics/steelix/front.png delete mode 100644 gfx/pics/steelix/shiny.pal delete mode 100644 gfx/pics/sudowoodo/anim0.asm delete mode 100644 gfx/pics/sudowoodo/anim1.asm delete mode 100644 gfx/pics/sudowoodo/back.2bpp.lz.728036c6 delete mode 100644 gfx/pics/sudowoodo/back.png delete mode 100644 gfx/pics/sudowoodo/front.animated.2bpp.lz.b0f04991 delete mode 100644 gfx/pics/sudowoodo/front.png delete mode 100644 gfx/pics/sudowoodo/shiny.pal delete mode 100644 gfx/pics/suicune/anim0.asm delete mode 100644 gfx/pics/suicune/anim1.asm delete mode 100644 gfx/pics/suicune/back.2bpp.lz.5c49d112 delete mode 100644 gfx/pics/suicune/back.png delete mode 100644 gfx/pics/suicune/front.animated.2bpp.lz.64698c0a delete mode 100644 gfx/pics/suicune/front.png delete mode 100644 gfx/pics/suicune/shiny.pal delete mode 100644 gfx/pics/sunflora/anim0.asm delete mode 100644 gfx/pics/sunflora/anim1.asm delete mode 100644 gfx/pics/sunflora/back.2bpp.lz.9d0684f0 delete mode 100644 gfx/pics/sunflora/back.png delete mode 100644 gfx/pics/sunflora/front.animated.2bpp.lz.258c3e67 delete mode 100644 gfx/pics/sunflora/front.png delete mode 100644 gfx/pics/sunflora/shiny.pal delete mode 100644 gfx/pics/sunkern/anim0.asm delete mode 100644 gfx/pics/sunkern/anim1.asm delete mode 100644 gfx/pics/sunkern/back.2bpp.lz.d28f6303 delete mode 100644 gfx/pics/sunkern/back.png delete mode 100644 gfx/pics/sunkern/front.animated.2bpp.lz.316c5261 delete mode 100644 gfx/pics/sunkern/front.png delete mode 100644 gfx/pics/sunkern/shiny.pal delete mode 100644 gfx/pics/swinub/anim0.asm delete mode 100644 gfx/pics/swinub/anim1.asm delete mode 100644 gfx/pics/swinub/back.2bpp.lz.1ebbfabf delete mode 100644 gfx/pics/swinub/back.png delete mode 100644 gfx/pics/swinub/front.animated.2bpp.lz.228147a5 delete mode 100644 gfx/pics/swinub/front.png delete mode 100644 gfx/pics/swinub/shiny.pal delete mode 100644 gfx/pics/tangela/anim0.asm delete mode 100644 gfx/pics/tangela/anim1.asm delete mode 100644 gfx/pics/tangela/back.2bpp.lz.435194a6 delete mode 100644 gfx/pics/tangela/back.png delete mode 100644 gfx/pics/tangela/front.animated.2bpp.lz.7cb3fed8 delete mode 100644 gfx/pics/tangela/front.png delete mode 100644 gfx/pics/tangela/shiny.pal delete mode 100644 gfx/pics/tauros/anim0.asm delete mode 100644 gfx/pics/tauros/anim1.asm delete mode 100644 gfx/pics/tauros/back.2bpp.lz.f487c586 delete mode 100644 gfx/pics/tauros/back.png delete mode 100644 gfx/pics/tauros/front.animated.2bpp.lz.982dd0db delete mode 100644 gfx/pics/tauros/front.png delete mode 100644 gfx/pics/tauros/shiny.pal delete mode 100644 gfx/pics/teddiursa/anim0.asm delete mode 100644 gfx/pics/teddiursa/anim1.asm delete mode 100644 gfx/pics/teddiursa/back.2bpp.lz.53f6e34e delete mode 100644 gfx/pics/teddiursa/back.png delete mode 100644 gfx/pics/teddiursa/front.animated.2bpp.lz.5f9648c7 delete mode 100644 gfx/pics/teddiursa/front.png delete mode 100644 gfx/pics/teddiursa/shiny.pal delete mode 100644 gfx/pics/tentacool/anim0.asm delete mode 100644 gfx/pics/tentacool/anim1.asm delete mode 100644 gfx/pics/tentacool/back.2bpp.lz.ae7b2102 delete mode 100644 gfx/pics/tentacool/back.png delete mode 100644 gfx/pics/tentacool/front.animated.2bpp.lz.7a86457c delete mode 100644 gfx/pics/tentacool/front.png delete mode 100644 gfx/pics/tentacool/shiny.pal delete mode 100644 gfx/pics/tentacruel/anim0.asm delete mode 100644 gfx/pics/tentacruel/anim1.asm delete mode 100644 gfx/pics/tentacruel/back.2bpp.lz.0e344f19 delete mode 100644 gfx/pics/tentacruel/back.png delete mode 100644 gfx/pics/tentacruel/front.animated.2bpp.lz.f13e5904 delete mode 100644 gfx/pics/tentacruel/front.png delete mode 100644 gfx/pics/tentacruel/shiny.pal delete mode 100644 gfx/pics/togepi/anim0.asm delete mode 100644 gfx/pics/togepi/anim1.asm delete mode 100644 gfx/pics/togepi/back.2bpp.lz.0e22cc02 delete mode 100644 gfx/pics/togepi/back.png delete mode 100644 gfx/pics/togepi/front.animated.2bpp.lz.0cf7ba07 delete mode 100644 gfx/pics/togepi/front.png delete mode 100644 gfx/pics/togepi/shiny.pal delete mode 100644 gfx/pics/togetic/anim0.asm delete mode 100644 gfx/pics/togetic/anim1.asm delete mode 100644 gfx/pics/togetic/back.2bpp.lz.62cbb330 delete mode 100644 gfx/pics/togetic/back.png delete mode 100644 gfx/pics/togetic/front.animated.2bpp.lz.5797583e delete mode 100644 gfx/pics/togetic/front.png delete mode 100644 gfx/pics/togetic/shiny.pal delete mode 100644 gfx/pics/totodile/anim0.asm delete mode 100644 gfx/pics/totodile/anim1.asm delete mode 100644 gfx/pics/totodile/back.2bpp.lz.ab6bc2a1 delete mode 100644 gfx/pics/totodile/back.png delete mode 100644 gfx/pics/totodile/front.animated.2bpp.lz.afce8cd0 delete mode 100644 gfx/pics/totodile/front.png delete mode 100644 gfx/pics/totodile/shiny.pal delete mode 100644 gfx/pics/typhlosion/anim0.asm delete mode 100644 gfx/pics/typhlosion/anim1.asm delete mode 100644 gfx/pics/typhlosion/back.2bpp.lz.83be0292 delete mode 100644 gfx/pics/typhlosion/back.png delete mode 100644 gfx/pics/typhlosion/front.animated.2bpp.lz.65adc1e1 delete mode 100644 gfx/pics/typhlosion/front.png delete mode 100644 gfx/pics/typhlosion/shiny.pal delete mode 100644 gfx/pics/tyranitar/anim0.asm delete mode 100644 gfx/pics/tyranitar/anim1.asm delete mode 100644 gfx/pics/tyranitar/back.2bpp.lz.05b022c9 delete mode 100644 gfx/pics/tyranitar/back.png delete mode 100644 gfx/pics/tyranitar/front.animated.2bpp.lz.e0e9187e delete mode 100644 gfx/pics/tyranitar/front.png delete mode 100644 gfx/pics/tyranitar/shiny.pal delete mode 100644 gfx/pics/tyrogue/anim0.asm delete mode 100644 gfx/pics/tyrogue/anim1.asm delete mode 100644 gfx/pics/tyrogue/back.2bpp.lz.5d84cef1 delete mode 100644 gfx/pics/tyrogue/back.png delete mode 100644 gfx/pics/tyrogue/front.animated.2bpp.lz.a3790421 delete mode 100644 gfx/pics/tyrogue/front.png delete mode 100644 gfx/pics/tyrogue/shiny.pal delete mode 100644 gfx/pics/umbreon/anim0.asm delete mode 100644 gfx/pics/umbreon/anim1.asm delete mode 100644 gfx/pics/umbreon/back.2bpp.lz.55e50b8c delete mode 100644 gfx/pics/umbreon/back.png delete mode 100644 gfx/pics/umbreon/front.animated.2bpp.lz.b484be57 delete mode 100644 gfx/pics/umbreon/front.png delete mode 100644 gfx/pics/umbreon/shiny.pal delete mode 100644 gfx/pics/unown/anim0.asm delete mode 100644 gfx/pics/unown/anim1.asm delete mode 100644 gfx/pics/unown/bitmask.asm delete mode 100644 gfx/pics/unown/frames.asm delete mode 100644 gfx/pics/unown/normal.pal delete mode 100644 gfx/pics/unown/shiny.pal delete mode 100644 gfx/pics/unown_a/anim0.asm delete mode 100644 gfx/pics/unown_a/anim1.asm delete mode 100644 gfx/pics/unown_a/back.2bpp.lz.b8389572 delete mode 100644 gfx/pics/unown_a/back.png delete mode 100644 gfx/pics/unown_a/front.animated.2bpp.lz.47e16756 delete mode 100644 gfx/pics/unown_a/front.png delete mode 100644 gfx/pics/unown_anim_pointers.asm delete mode 100644 gfx/pics/unown_anims.asm delete mode 100644 gfx/pics/unown_b/anim0.asm delete mode 100644 gfx/pics/unown_b/anim1.asm delete mode 100644 gfx/pics/unown_b/back.2bpp.lz.72a0840f delete mode 100644 gfx/pics/unown_b/back.png delete mode 100644 gfx/pics/unown_b/front.animated.2bpp.lz.5742d494 delete mode 100644 gfx/pics/unown_b/front.png delete mode 100644 gfx/pics/unown_bitmask_pointers.asm delete mode 100644 gfx/pics/unown_bitmasks.asm delete mode 100644 gfx/pics/unown_c/anim0.asm delete mode 100644 gfx/pics/unown_c/anim1.asm delete mode 100644 gfx/pics/unown_c/back.2bpp.lz.f92b665a delete mode 100644 gfx/pics/unown_c/back.png delete mode 100644 gfx/pics/unown_c/front.animated.2bpp.lz.5fef639b delete mode 100644 gfx/pics/unown_c/front.png delete mode 100644 gfx/pics/unown_d/anim0.asm delete mode 100644 gfx/pics/unown_d/anim1.asm delete mode 100644 gfx/pics/unown_d/back.2bpp.lz.c8213d32 delete mode 100644 gfx/pics/unown_d/back.png delete mode 100644 gfx/pics/unown_d/front.animated.2bpp.lz.7810a57f delete mode 100644 gfx/pics/unown_d/front.png delete mode 100644 gfx/pics/unown_e/anim0.asm delete mode 100644 gfx/pics/unown_e/anim1.asm delete mode 100644 gfx/pics/unown_e/back.2bpp.lz.777a8ecd delete mode 100644 gfx/pics/unown_e/back.png delete mode 100644 gfx/pics/unown_e/front.animated.2bpp.lz.83f43ff7 delete mode 100644 gfx/pics/unown_e/front.png delete mode 100644 gfx/pics/unown_extra_pointers.asm delete mode 100644 gfx/pics/unown_extras.asm delete mode 100644 gfx/pics/unown_f/anim0.asm delete mode 100644 gfx/pics/unown_f/anim1.asm delete mode 100644 gfx/pics/unown_f/back.2bpp.lz.3fe1c85a delete mode 100644 gfx/pics/unown_f/back.png delete mode 100644 gfx/pics/unown_f/front.animated.2bpp.lz.ec888954 delete mode 100644 gfx/pics/unown_f/front.png delete mode 100644 gfx/pics/unown_frame_pointers.asm delete mode 100644 gfx/pics/unown_frames.asm delete mode 100644 gfx/pics/unown_g/anim0.asm delete mode 100644 gfx/pics/unown_g/anim1.asm delete mode 100644 gfx/pics/unown_g/back.2bpp.lz.91650439 delete mode 100644 gfx/pics/unown_g/back.png delete mode 100644 gfx/pics/unown_g/front.animated.2bpp.lz.c0b74162 delete mode 100644 gfx/pics/unown_g/front.png delete mode 100644 gfx/pics/unown_h/anim0.asm delete mode 100644 gfx/pics/unown_h/anim1.asm delete mode 100644 gfx/pics/unown_h/back.2bpp.lz.78421e5b delete mode 100644 gfx/pics/unown_h/back.png delete mode 100644 gfx/pics/unown_h/front.animated.2bpp.lz.9a6afeb9 delete mode 100644 gfx/pics/unown_h/front.png delete mode 100644 gfx/pics/unown_i/anim0.asm delete mode 100644 gfx/pics/unown_i/anim1.asm delete mode 100644 gfx/pics/unown_i/back.2bpp.lz.7feb4b30 delete mode 100644 gfx/pics/unown_i/back.png delete mode 100644 gfx/pics/unown_i/front.animated.2bpp.lz.f5e7f816 delete mode 100644 gfx/pics/unown_i/front.png delete mode 100644 gfx/pics/unown_j/anim0.asm delete mode 100644 gfx/pics/unown_j/anim1.asm delete mode 100644 gfx/pics/unown_j/back.2bpp.lz.b0f3bec2 delete mode 100644 gfx/pics/unown_j/back.png delete mode 100644 gfx/pics/unown_j/front.animated.2bpp.lz.d8bf9223 delete mode 100644 gfx/pics/unown_j/front.png delete mode 100644 gfx/pics/unown_k/anim0.asm delete mode 100644 gfx/pics/unown_k/anim1.asm delete mode 100644 gfx/pics/unown_k/back.2bpp.lz.745fda48 delete mode 100644 gfx/pics/unown_k/back.png delete mode 100644 gfx/pics/unown_k/front.animated.2bpp.lz.fb25b385 delete mode 100644 gfx/pics/unown_k/front.png delete mode 100644 gfx/pics/unown_l/anim0.asm delete mode 100644 gfx/pics/unown_l/anim1.asm delete mode 100644 gfx/pics/unown_l/back.2bpp.lz.e38e0d57 delete mode 100644 gfx/pics/unown_l/back.png delete mode 100644 gfx/pics/unown_l/front.animated.2bpp.lz.26195a59 delete mode 100644 gfx/pics/unown_l/front.png delete mode 100644 gfx/pics/unown_m/anim0.asm delete mode 100644 gfx/pics/unown_m/anim1.asm delete mode 100644 gfx/pics/unown_m/back.2bpp.lz.38d93bc8 delete mode 100644 gfx/pics/unown_m/back.png delete mode 100644 gfx/pics/unown_m/front.animated.2bpp.lz.2659315e delete mode 100644 gfx/pics/unown_m/front.png delete mode 100644 gfx/pics/unown_n/anim0.asm delete mode 100644 gfx/pics/unown_n/anim1.asm delete mode 100644 gfx/pics/unown_n/back.2bpp.lz.c8b7d3a4 delete mode 100644 gfx/pics/unown_n/back.png delete mode 100644 gfx/pics/unown_n/front.animated.2bpp.lz.96ce7c62 delete mode 100644 gfx/pics/unown_n/front.png delete mode 100644 gfx/pics/unown_o/anim0.asm delete mode 100644 gfx/pics/unown_o/anim1.asm delete mode 100644 gfx/pics/unown_o/back.2bpp.lz.89ba693c delete mode 100644 gfx/pics/unown_o/back.png delete mode 100644 gfx/pics/unown_o/front.animated.2bpp.lz.a9151b66 delete mode 100644 gfx/pics/unown_o/front.png delete mode 100644 gfx/pics/unown_p/anim0.asm delete mode 100644 gfx/pics/unown_p/anim1.asm delete mode 100644 gfx/pics/unown_p/back.2bpp.lz.09c618c4 delete mode 100644 gfx/pics/unown_p/back.png delete mode 100644 gfx/pics/unown_p/front.animated.2bpp.lz.83a096fc delete mode 100644 gfx/pics/unown_p/front.png delete mode 100644 gfx/pics/unown_pic_pointers.asm delete mode 100644 gfx/pics/unown_q/anim0.asm delete mode 100644 gfx/pics/unown_q/anim1.asm delete mode 100644 gfx/pics/unown_q/back.2bpp.lz.e32430b4 delete mode 100644 gfx/pics/unown_q/back.png delete mode 100644 gfx/pics/unown_q/front.animated.2bpp.lz.44dad60c delete mode 100644 gfx/pics/unown_q/front.png delete mode 100644 gfx/pics/unown_r/anim0.asm delete mode 100644 gfx/pics/unown_r/anim1.asm delete mode 100644 gfx/pics/unown_r/back.2bpp.lz.5df8287c delete mode 100644 gfx/pics/unown_r/back.png delete mode 100644 gfx/pics/unown_r/front.animated.2bpp.lz.8e67e3fc delete mode 100644 gfx/pics/unown_r/front.png delete mode 100644 gfx/pics/unown_s/anim0.asm delete mode 100644 gfx/pics/unown_s/anim1.asm delete mode 100644 gfx/pics/unown_s/back.2bpp.lz.abd4ad58 delete mode 100644 gfx/pics/unown_s/back.png delete mode 100644 gfx/pics/unown_s/front.animated.2bpp.lz.f3db4e89 delete mode 100644 gfx/pics/unown_s/front.png delete mode 100644 gfx/pics/unown_t/anim0.asm delete mode 100644 gfx/pics/unown_t/anim1.asm delete mode 100644 gfx/pics/unown_t/back.2bpp.lz.87d48ca0 delete mode 100644 gfx/pics/unown_t/back.png delete mode 100644 gfx/pics/unown_t/front.animated.2bpp.lz.8bdc40ae delete mode 100644 gfx/pics/unown_t/front.png delete mode 100644 gfx/pics/unown_u/anim0.asm delete mode 100644 gfx/pics/unown_u/anim1.asm delete mode 100644 gfx/pics/unown_u/back.2bpp.lz.40b63dfb delete mode 100644 gfx/pics/unown_u/back.png delete mode 100644 gfx/pics/unown_u/front.animated.2bpp.lz.2690db54 delete mode 100644 gfx/pics/unown_u/front.png delete mode 100644 gfx/pics/unown_v/anim0.asm delete mode 100644 gfx/pics/unown_v/anim1.asm delete mode 100644 gfx/pics/unown_v/back.2bpp.lz.5b1a6acc delete mode 100644 gfx/pics/unown_v/back.png delete mode 100644 gfx/pics/unown_v/front.animated.2bpp.lz.d196c60e delete mode 100644 gfx/pics/unown_v/front.png delete mode 100644 gfx/pics/unown_w/anim0.asm delete mode 100644 gfx/pics/unown_w/anim1.asm delete mode 100644 gfx/pics/unown_w/back.2bpp.lz.a55282bf delete mode 100644 gfx/pics/unown_w/back.png delete mode 100644 gfx/pics/unown_w/front.animated.2bpp.lz.5b45fa3d delete mode 100644 gfx/pics/unown_w/front.png delete mode 100644 gfx/pics/unown_x/anim0.asm delete mode 100644 gfx/pics/unown_x/anim1.asm delete mode 100644 gfx/pics/unown_x/back.2bpp.lz.0001a198 delete mode 100644 gfx/pics/unown_x/back.png delete mode 100644 gfx/pics/unown_x/front.animated.2bpp.lz.3362c680 delete mode 100644 gfx/pics/unown_x/front.png delete mode 100644 gfx/pics/unown_y/anim0.asm delete mode 100644 gfx/pics/unown_y/anim1.asm delete mode 100644 gfx/pics/unown_y/back.2bpp.lz.292d9ff2 delete mode 100644 gfx/pics/unown_y/back.png delete mode 100644 gfx/pics/unown_y/front.animated.2bpp.lz.8cd89db4 delete mode 100644 gfx/pics/unown_y/front.png delete mode 100644 gfx/pics/unown_z/anim0.asm delete mode 100644 gfx/pics/unown_z/anim1.asm delete mode 100644 gfx/pics/unown_z/back.2bpp.lz.a41240a1 delete mode 100644 gfx/pics/unown_z/back.png delete mode 100644 gfx/pics/unown_z/front.animated.2bpp.lz.2d4170a0 delete mode 100644 gfx/pics/unown_z/front.png delete mode 100644 gfx/pics/ursaring/anim0.asm delete mode 100644 gfx/pics/ursaring/anim1.asm delete mode 100644 gfx/pics/ursaring/back.2bpp.lz.0966cee1 delete mode 100644 gfx/pics/ursaring/back.png delete mode 100644 gfx/pics/ursaring/front.animated.2bpp.lz.5bcb8114 delete mode 100644 gfx/pics/ursaring/front.png delete mode 100644 gfx/pics/ursaring/shiny.pal delete mode 100644 gfx/pics/vaporeon/anim0.asm delete mode 100644 gfx/pics/vaporeon/anim1.asm delete mode 100644 gfx/pics/vaporeon/back.2bpp.lz.aafe2ea4 delete mode 100644 gfx/pics/vaporeon/back.png delete mode 100644 gfx/pics/vaporeon/front.animated.2bpp.lz.6e1ee993 delete mode 100644 gfx/pics/vaporeon/front.png delete mode 100644 gfx/pics/vaporeon/shiny.pal delete mode 100644 gfx/pics/venomoth/anim0.asm delete mode 100644 gfx/pics/venomoth/anim1.asm delete mode 100644 gfx/pics/venomoth/back.2bpp.lz.ba3cccb7 delete mode 100644 gfx/pics/venomoth/back.png delete mode 100644 gfx/pics/venomoth/front.animated.2bpp.lz.6c0096ec delete mode 100644 gfx/pics/venomoth/front.png delete mode 100644 gfx/pics/venomoth/shiny.pal delete mode 100644 gfx/pics/venonat/anim0.asm delete mode 100644 gfx/pics/venonat/anim1.asm delete mode 100644 gfx/pics/venonat/back.2bpp.lz.63b1017a delete mode 100644 gfx/pics/venonat/back.png delete mode 100644 gfx/pics/venonat/front.animated.2bpp.lz.02a36f08 delete mode 100644 gfx/pics/venonat/front.png delete mode 100644 gfx/pics/venonat/shiny.pal delete mode 100644 gfx/pics/venusaur/anim0.asm delete mode 100644 gfx/pics/venusaur/anim1.asm delete mode 100644 gfx/pics/venusaur/back.2bpp.lz.1d5b9ebe delete mode 100644 gfx/pics/venusaur/back.png delete mode 100644 gfx/pics/venusaur/front.animated.2bpp.lz.48d131f4 delete mode 100644 gfx/pics/venusaur/front.png delete mode 100644 gfx/pics/venusaur/shiny.pal delete mode 100644 gfx/pics/victreebel/anim0.asm delete mode 100644 gfx/pics/victreebel/anim1.asm delete mode 100644 gfx/pics/victreebel/back.2bpp.lz.a80b1dc4 delete mode 100644 gfx/pics/victreebel/back.png delete mode 100644 gfx/pics/victreebel/front.animated.2bpp.lz.d5d535c1 delete mode 100644 gfx/pics/victreebel/front.png delete mode 100644 gfx/pics/victreebel/shiny.pal delete mode 100644 gfx/pics/vileplume/anim0.asm delete mode 100644 gfx/pics/vileplume/anim1.asm delete mode 100644 gfx/pics/vileplume/back.2bpp.lz.9f944092 delete mode 100644 gfx/pics/vileplume/back.png delete mode 100644 gfx/pics/vileplume/front.animated.2bpp.lz.db2287e6 delete mode 100644 gfx/pics/vileplume/front.png delete mode 100644 gfx/pics/vileplume/shiny.pal delete mode 100644 gfx/pics/voltorb/anim0.asm delete mode 100644 gfx/pics/voltorb/anim1.asm delete mode 100644 gfx/pics/voltorb/back.2bpp.lz.f19cefe9 delete mode 100644 gfx/pics/voltorb/back.png delete mode 100644 gfx/pics/voltorb/front.animated.2bpp.lz.64051f97 delete mode 100644 gfx/pics/voltorb/front.png delete mode 100644 gfx/pics/voltorb/shiny.pal delete mode 100644 gfx/pics/vulpix/anim0.asm delete mode 100644 gfx/pics/vulpix/anim1.asm delete mode 100644 gfx/pics/vulpix/back.2bpp.lz.0c7852c8 delete mode 100644 gfx/pics/vulpix/back.png delete mode 100644 gfx/pics/vulpix/front.animated.2bpp.lz.df94d884 delete mode 100644 gfx/pics/vulpix/front.png delete mode 100644 gfx/pics/vulpix/shiny.pal delete mode 100644 gfx/pics/wartortle/anim0.asm delete mode 100644 gfx/pics/wartortle/anim1.asm delete mode 100644 gfx/pics/wartortle/back.2bpp.lz.f2338cb4 delete mode 100644 gfx/pics/wartortle/back.png delete mode 100644 gfx/pics/wartortle/front.animated.2bpp.lz.f50d25f5 delete mode 100644 gfx/pics/wartortle/front.png delete mode 100644 gfx/pics/wartortle/shiny.pal delete mode 100644 gfx/pics/weedle/anim0.asm delete mode 100644 gfx/pics/weedle/anim1.asm delete mode 100644 gfx/pics/weedle/back.2bpp.lz.f26ac339 delete mode 100644 gfx/pics/weedle/back.png delete mode 100644 gfx/pics/weedle/front.animated.2bpp.lz.9e1dedbd delete mode 100644 gfx/pics/weedle/front.png delete mode 100644 gfx/pics/weedle/shiny.pal delete mode 100644 gfx/pics/weepinbell/anim0.asm delete mode 100644 gfx/pics/weepinbell/anim1.asm delete mode 100644 gfx/pics/weepinbell/back.2bpp.lz.f84a5fe6 delete mode 100644 gfx/pics/weepinbell/back.png delete mode 100644 gfx/pics/weepinbell/front.animated.2bpp.lz.7b06c092 delete mode 100644 gfx/pics/weepinbell/front.png delete mode 100644 gfx/pics/weepinbell/shiny.pal delete mode 100644 gfx/pics/weezing/anim0.asm delete mode 100644 gfx/pics/weezing/anim1.asm delete mode 100644 gfx/pics/weezing/back.2bpp.lz.5ac5b672 delete mode 100644 gfx/pics/weezing/back.png delete mode 100644 gfx/pics/weezing/front.animated.2bpp.lz.75928bd0 delete mode 100644 gfx/pics/weezing/front.png delete mode 100644 gfx/pics/weezing/shiny.pal delete mode 100644 gfx/pics/wigglytuff/anim0.asm delete mode 100644 gfx/pics/wigglytuff/anim1.asm delete mode 100644 gfx/pics/wigglytuff/back.2bpp.lz.fee674ac delete mode 100644 gfx/pics/wigglytuff/back.png delete mode 100644 gfx/pics/wigglytuff/front.animated.2bpp.lz.49311d0b delete mode 100644 gfx/pics/wigglytuff/front.png delete mode 100644 gfx/pics/wigglytuff/shiny.pal delete mode 100644 gfx/pics/wobbuffet/anim0.asm delete mode 100644 gfx/pics/wobbuffet/anim1.asm delete mode 100644 gfx/pics/wobbuffet/back.2bpp.lz.a862192a delete mode 100644 gfx/pics/wobbuffet/back.png delete mode 100644 gfx/pics/wobbuffet/front.animated.2bpp.lz.f1f4687d delete mode 100644 gfx/pics/wobbuffet/front.png delete mode 100644 gfx/pics/wobbuffet/shiny.pal delete mode 100644 gfx/pics/wooper/anim0.asm delete mode 100644 gfx/pics/wooper/anim1.asm delete mode 100644 gfx/pics/wooper/back.2bpp.lz.4f4b7917 delete mode 100644 gfx/pics/wooper/back.png delete mode 100644 gfx/pics/wooper/front.animated.2bpp.lz.4e440469 delete mode 100644 gfx/pics/wooper/front.png delete mode 100644 gfx/pics/wooper/shiny.pal delete mode 100644 gfx/pics/xatu/anim0.asm delete mode 100644 gfx/pics/xatu/anim1.asm delete mode 100644 gfx/pics/xatu/back.2bpp.lz.4de765ff delete mode 100644 gfx/pics/xatu/back.png delete mode 100644 gfx/pics/xatu/front.animated.2bpp.lz.4f452e43 delete mode 100644 gfx/pics/xatu/front.png delete mode 100644 gfx/pics/xatu/shiny.pal delete mode 100644 gfx/pics/yanma/anim0.asm delete mode 100644 gfx/pics/yanma/anim1.asm delete mode 100644 gfx/pics/yanma/back.2bpp.lz.2ca27ab3 delete mode 100644 gfx/pics/yanma/back.png delete mode 100644 gfx/pics/yanma/front.animated.2bpp.lz.25f91adf delete mode 100644 gfx/pics/yanma/front.png delete mode 100644 gfx/pics/yanma/shiny.pal delete mode 100644 gfx/pics/zapdos/anim0.asm delete mode 100644 gfx/pics/zapdos/anim1.asm delete mode 100644 gfx/pics/zapdos/back.2bpp.lz.a44c7524 delete mode 100644 gfx/pics/zapdos/back.png delete mode 100644 gfx/pics/zapdos/front.animated.2bpp.lz.05cb214a delete mode 100644 gfx/pics/zapdos/front.png delete mode 100644 gfx/pics/zapdos/shiny.pal delete mode 100644 gfx/pics/zubat/anim0.asm delete mode 100644 gfx/pics/zubat/anim1.asm delete mode 100644 gfx/pics/zubat/back.2bpp.lz.aa77eb62 delete mode 100644 gfx/pics/zubat/back.png delete mode 100644 gfx/pics/zubat/front.animated.2bpp.lz.f12e6581 delete mode 100644 gfx/pics/zubat/front.png delete mode 100644 gfx/pics/zubat/shiny.pal create mode 100644 gfx/pokemon/abra/anim0.asm create mode 100644 gfx/pokemon/abra/anim1.asm create mode 100644 gfx/pokemon/abra/back.2bpp.lz.9ac09a32 create mode 100644 gfx/pokemon/abra/back.png create mode 100644 gfx/pokemon/abra/front.animated.2bpp.lz.12e14d9a create mode 100644 gfx/pokemon/abra/front.png create mode 100644 gfx/pokemon/abra/shiny.pal create mode 100644 gfx/pokemon/aerodactyl/anim0.asm create mode 100644 gfx/pokemon/aerodactyl/anim1.asm create mode 100644 gfx/pokemon/aerodactyl/back.2bpp.lz.e2da1f61 create mode 100644 gfx/pokemon/aerodactyl/back.png create mode 100644 gfx/pokemon/aerodactyl/front.animated.2bpp.lz.3bceb33e create mode 100644 gfx/pokemon/aerodactyl/front.png create mode 100644 gfx/pokemon/aerodactyl/shiny.pal create mode 100644 gfx/pokemon/aipom/anim0.asm create mode 100644 gfx/pokemon/aipom/anim1.asm create mode 100644 gfx/pokemon/aipom/back.2bpp.lz.597d4dda create mode 100644 gfx/pokemon/aipom/back.png create mode 100644 gfx/pokemon/aipom/front.animated.2bpp.lz.fba7c862 create mode 100644 gfx/pokemon/aipom/front.png create mode 100644 gfx/pokemon/aipom/shiny.pal create mode 100644 gfx/pokemon/alakazam/anim0.asm create mode 100644 gfx/pokemon/alakazam/anim1.asm create mode 100644 gfx/pokemon/alakazam/back.2bpp.lz.75e7e1c6 create mode 100644 gfx/pokemon/alakazam/back.png create mode 100644 gfx/pokemon/alakazam/front.animated.2bpp.lz.b246e050 create mode 100644 gfx/pokemon/alakazam/front.png create mode 100644 gfx/pokemon/alakazam/shiny.pal create mode 100644 gfx/pokemon/ampharos/anim0.asm create mode 100644 gfx/pokemon/ampharos/anim1.asm create mode 100644 gfx/pokemon/ampharos/back.2bpp.lz.06af98c8 create mode 100644 gfx/pokemon/ampharos/back.png create mode 100644 gfx/pokemon/ampharos/front.animated.2bpp.lz.4b908a28 create mode 100644 gfx/pokemon/ampharos/front.png create mode 100644 gfx/pokemon/ampharos/shiny.pal create mode 100644 gfx/pokemon/anim_pointers.asm create mode 100644 gfx/pokemon/animation.asm create mode 100644 gfx/pokemon/anims.asm create mode 100644 gfx/pokemon/arbok/anim0.asm create mode 100644 gfx/pokemon/arbok/anim1.asm create mode 100644 gfx/pokemon/arbok/back.2bpp.lz.7b18cb93 create mode 100644 gfx/pokemon/arbok/back.png create mode 100644 gfx/pokemon/arbok/front.animated.2bpp.lz.1589a977 create mode 100644 gfx/pokemon/arbok/front.png create mode 100644 gfx/pokemon/arbok/shiny.pal create mode 100644 gfx/pokemon/arcanine/anim0.asm create mode 100644 gfx/pokemon/arcanine/anim1.asm create mode 100644 gfx/pokemon/arcanine/back.2bpp.lz.f5b35ebf create mode 100644 gfx/pokemon/arcanine/back.png create mode 100644 gfx/pokemon/arcanine/front.animated.2bpp.lz.5ae8eff3 create mode 100644 gfx/pokemon/arcanine/front.png create mode 100644 gfx/pokemon/arcanine/shiny.pal create mode 100644 gfx/pokemon/ariados/anim0.asm create mode 100644 gfx/pokemon/ariados/anim1.asm create mode 100644 gfx/pokemon/ariados/back.2bpp.lz.9fb1c3fc create mode 100644 gfx/pokemon/ariados/back.png create mode 100644 gfx/pokemon/ariados/front.animated.2bpp.lz.5ac5c83c create mode 100644 gfx/pokemon/ariados/front.png create mode 100644 gfx/pokemon/ariados/shiny.pal create mode 100644 gfx/pokemon/articuno/anim0.asm create mode 100644 gfx/pokemon/articuno/anim1.asm create mode 100644 gfx/pokemon/articuno/back.2bpp.lz.c263c2aa create mode 100644 gfx/pokemon/articuno/back.png create mode 100644 gfx/pokemon/articuno/front.animated.2bpp.lz.650aef29 create mode 100644 gfx/pokemon/articuno/front.png create mode 100644 gfx/pokemon/articuno/shiny.pal create mode 100644 gfx/pokemon/azumarill/anim0.asm create mode 100644 gfx/pokemon/azumarill/anim1.asm create mode 100644 gfx/pokemon/azumarill/back.2bpp.lz.f7fa0db9 create mode 100644 gfx/pokemon/azumarill/back.png create mode 100644 gfx/pokemon/azumarill/front.animated.2bpp.lz.cc9fd2ed create mode 100644 gfx/pokemon/azumarill/front.png create mode 100644 gfx/pokemon/azumarill/shiny.pal create mode 100644 gfx/pokemon/bayleef/anim0.asm create mode 100644 gfx/pokemon/bayleef/anim1.asm create mode 100644 gfx/pokemon/bayleef/back.2bpp.lz.c4783e65 create mode 100644 gfx/pokemon/bayleef/back.png create mode 100644 gfx/pokemon/bayleef/front.animated.2bpp.lz.147649f2 create mode 100644 gfx/pokemon/bayleef/front.png create mode 100644 gfx/pokemon/bayleef/shiny.pal create mode 100644 gfx/pokemon/beedrill/anim0.asm create mode 100644 gfx/pokemon/beedrill/anim1.asm create mode 100644 gfx/pokemon/beedrill/back.2bpp.lz.dfd6a87b create mode 100644 gfx/pokemon/beedrill/back.png create mode 100644 gfx/pokemon/beedrill/front.animated.2bpp.lz.1b5d3117 create mode 100644 gfx/pokemon/beedrill/front.png create mode 100644 gfx/pokemon/beedrill/shiny.pal create mode 100644 gfx/pokemon/bellossom/anim0.asm create mode 100644 gfx/pokemon/bellossom/anim1.asm create mode 100644 gfx/pokemon/bellossom/back.2bpp.lz.10d31691 create mode 100644 gfx/pokemon/bellossom/back.png create mode 100644 gfx/pokemon/bellossom/front.animated.2bpp.lz.289eaecf create mode 100644 gfx/pokemon/bellossom/front.png create mode 100644 gfx/pokemon/bellossom/shiny.pal create mode 100644 gfx/pokemon/bellsprout/anim0.asm create mode 100644 gfx/pokemon/bellsprout/anim1.asm create mode 100644 gfx/pokemon/bellsprout/back.2bpp.lz.9dacbda8 create mode 100644 gfx/pokemon/bellsprout/back.png create mode 100644 gfx/pokemon/bellsprout/front.animated.2bpp.lz.44df413d create mode 100644 gfx/pokemon/bellsprout/front.png create mode 100644 gfx/pokemon/bellsprout/shiny.pal create mode 100644 gfx/pokemon/bitmask_pointers.asm create mode 100644 gfx/pokemon/bitmasks.asm create mode 100644 gfx/pokemon/blastoise/anim0.asm create mode 100644 gfx/pokemon/blastoise/anim1.asm create mode 100644 gfx/pokemon/blastoise/back.2bpp.lz.b90e8d5a create mode 100644 gfx/pokemon/blastoise/back.png create mode 100644 gfx/pokemon/blastoise/front.animated.2bpp.lz.3899aed0 create mode 100644 gfx/pokemon/blastoise/front.png create mode 100644 gfx/pokemon/blastoise/shiny.pal create mode 100644 gfx/pokemon/blissey/anim0.asm create mode 100644 gfx/pokemon/blissey/anim1.asm create mode 100644 gfx/pokemon/blissey/back.2bpp.lz.d2763673 create mode 100644 gfx/pokemon/blissey/back.png create mode 100644 gfx/pokemon/blissey/front.animated.2bpp.lz.04f2353a create mode 100644 gfx/pokemon/blissey/front.png create mode 100644 gfx/pokemon/blissey/shiny.pal create mode 100644 gfx/pokemon/bulbasaur/anim0.asm create mode 100644 gfx/pokemon/bulbasaur/anim1.asm create mode 100644 gfx/pokemon/bulbasaur/back.2bpp.lz.84f8d1c4 create mode 100644 gfx/pokemon/bulbasaur/back.png create mode 100644 gfx/pokemon/bulbasaur/front.animated.2bpp.lz.04627405 create mode 100644 gfx/pokemon/bulbasaur/front.png create mode 100644 gfx/pokemon/bulbasaur/shiny.pal create mode 100644 gfx/pokemon/butterfree/anim0.asm create mode 100644 gfx/pokemon/butterfree/anim1.asm create mode 100644 gfx/pokemon/butterfree/back.2bpp.lz.a8543d86 create mode 100644 gfx/pokemon/butterfree/back.png create mode 100644 gfx/pokemon/butterfree/front.animated.2bpp.lz.33ba7e24 create mode 100644 gfx/pokemon/butterfree/front.png create mode 100644 gfx/pokemon/butterfree/shiny.pal create mode 100644 gfx/pokemon/caterpie/anim0.asm create mode 100644 gfx/pokemon/caterpie/anim1.asm create mode 100644 gfx/pokemon/caterpie/back.2bpp.lz.57e32015 create mode 100644 gfx/pokemon/caterpie/back.png create mode 100644 gfx/pokemon/caterpie/front.animated.2bpp.lz.ec4f7cb8 create mode 100644 gfx/pokemon/caterpie/front.png create mode 100644 gfx/pokemon/caterpie/shiny.pal create mode 100644 gfx/pokemon/celebi/anim0.asm create mode 100644 gfx/pokemon/celebi/anim1.asm create mode 100644 gfx/pokemon/celebi/back.2bpp.lz.17ea5fe6 create mode 100644 gfx/pokemon/celebi/back.png create mode 100644 gfx/pokemon/celebi/front.animated.2bpp.lz.16f259a5 create mode 100644 gfx/pokemon/celebi/front.png create mode 100644 gfx/pokemon/celebi/shiny.pal create mode 100644 gfx/pokemon/chansey/anim0.asm create mode 100644 gfx/pokemon/chansey/anim1.asm create mode 100644 gfx/pokemon/chansey/back.2bpp.lz.14d90ba1 create mode 100644 gfx/pokemon/chansey/back.png create mode 100644 gfx/pokemon/chansey/front.animated.2bpp.lz.158fc381 create mode 100644 gfx/pokemon/chansey/front.png create mode 100644 gfx/pokemon/chansey/shiny.pal create mode 100644 gfx/pokemon/charizard/anim0.asm create mode 100644 gfx/pokemon/charizard/anim1.asm create mode 100644 gfx/pokemon/charizard/back.2bpp.lz.f04ac62c create mode 100644 gfx/pokemon/charizard/back.png create mode 100644 gfx/pokemon/charizard/front.animated.2bpp.lz.0068f820 create mode 100644 gfx/pokemon/charizard/front.png create mode 100644 gfx/pokemon/charizard/shiny.pal create mode 100644 gfx/pokemon/charmander/anim0.asm create mode 100644 gfx/pokemon/charmander/anim1.asm create mode 100644 gfx/pokemon/charmander/back.2bpp.lz.bcb371c6 create mode 100644 gfx/pokemon/charmander/back.png create mode 100644 gfx/pokemon/charmander/front.animated.2bpp.lz.704bfc17 create mode 100644 gfx/pokemon/charmander/front.png create mode 100644 gfx/pokemon/charmander/shiny.pal create mode 100644 gfx/pokemon/charmeleon/anim0.asm create mode 100644 gfx/pokemon/charmeleon/anim1.asm create mode 100644 gfx/pokemon/charmeleon/back.2bpp.lz.cf73268f create mode 100644 gfx/pokemon/charmeleon/back.png create mode 100644 gfx/pokemon/charmeleon/front.animated.2bpp.lz.0e629968 create mode 100644 gfx/pokemon/charmeleon/front.png create mode 100644 gfx/pokemon/charmeleon/shiny.pal create mode 100644 gfx/pokemon/chikorita/anim0.asm create mode 100644 gfx/pokemon/chikorita/anim1.asm create mode 100644 gfx/pokemon/chikorita/back.2bpp.lz.27a21938 create mode 100644 gfx/pokemon/chikorita/back.png create mode 100644 gfx/pokemon/chikorita/front.animated.2bpp.lz.18de5fe9 create mode 100644 gfx/pokemon/chikorita/front.png create mode 100644 gfx/pokemon/chikorita/shiny.pal create mode 100644 gfx/pokemon/chinchou/anim0.asm create mode 100644 gfx/pokemon/chinchou/anim1.asm create mode 100644 gfx/pokemon/chinchou/back.2bpp.lz.ea061e91 create mode 100644 gfx/pokemon/chinchou/back.png create mode 100644 gfx/pokemon/chinchou/front.animated.2bpp.lz.901aa690 create mode 100644 gfx/pokemon/chinchou/front.png create mode 100644 gfx/pokemon/chinchou/shiny.pal create mode 100644 gfx/pokemon/clefable/anim0.asm create mode 100644 gfx/pokemon/clefable/anim1.asm create mode 100644 gfx/pokemon/clefable/back.2bpp.lz.d57ec142 create mode 100644 gfx/pokemon/clefable/back.png create mode 100644 gfx/pokemon/clefable/front.animated.2bpp.lz.59d160ad create mode 100644 gfx/pokemon/clefable/front.png create mode 100644 gfx/pokemon/clefable/shiny.pal create mode 100644 gfx/pokemon/clefairy/anim0.asm create mode 100644 gfx/pokemon/clefairy/anim1.asm create mode 100644 gfx/pokemon/clefairy/back.2bpp.lz.f8aff3dd create mode 100644 gfx/pokemon/clefairy/back.png create mode 100644 gfx/pokemon/clefairy/front.animated.2bpp.lz.0918b60d create mode 100644 gfx/pokemon/clefairy/front.png create mode 100644 gfx/pokemon/clefairy/shiny.pal create mode 100644 gfx/pokemon/cleffa/anim0.asm create mode 100644 gfx/pokemon/cleffa/anim1.asm create mode 100644 gfx/pokemon/cleffa/back.2bpp.lz.ea9b3d08 create mode 100644 gfx/pokemon/cleffa/back.png create mode 100644 gfx/pokemon/cleffa/front.animated.2bpp.lz.49630c80 create mode 100644 gfx/pokemon/cleffa/front.png create mode 100644 gfx/pokemon/cleffa/shiny.pal create mode 100644 gfx/pokemon/cloyster/anim0.asm create mode 100644 gfx/pokemon/cloyster/anim1.asm create mode 100644 gfx/pokemon/cloyster/back.2bpp.lz.5ad194b3 create mode 100644 gfx/pokemon/cloyster/back.png create mode 100644 gfx/pokemon/cloyster/front.animated.2bpp.lz.fe85709f create mode 100644 gfx/pokemon/cloyster/front.png create mode 100644 gfx/pokemon/cloyster/shiny.pal create mode 100644 gfx/pokemon/corsola/anim0.asm create mode 100644 gfx/pokemon/corsola/anim1.asm create mode 100644 gfx/pokemon/corsola/back.2bpp.lz.2b6c7860 create mode 100644 gfx/pokemon/corsola/back.png create mode 100644 gfx/pokemon/corsola/front.animated.2bpp.lz.2e7905aa create mode 100644 gfx/pokemon/corsola/front.png create mode 100644 gfx/pokemon/corsola/shiny.pal create mode 100644 gfx/pokemon/crobat/anim0.asm create mode 100644 gfx/pokemon/crobat/anim1.asm create mode 100644 gfx/pokemon/crobat/back.2bpp.lz.30850b2e create mode 100644 gfx/pokemon/crobat/back.png create mode 100644 gfx/pokemon/crobat/front.animated.2bpp.lz.dc386ff0 create mode 100644 gfx/pokemon/crobat/front.png create mode 100644 gfx/pokemon/crobat/shiny.pal create mode 100644 gfx/pokemon/croconaw/anim0.asm create mode 100644 gfx/pokemon/croconaw/anim1.asm create mode 100644 gfx/pokemon/croconaw/back.2bpp.lz.a605c82f create mode 100644 gfx/pokemon/croconaw/back.png create mode 100644 gfx/pokemon/croconaw/front.animated.2bpp.lz.a797986d create mode 100644 gfx/pokemon/croconaw/front.png create mode 100644 gfx/pokemon/croconaw/shiny.pal create mode 100644 gfx/pokemon/cubone/anim0.asm create mode 100644 gfx/pokemon/cubone/anim1.asm create mode 100644 gfx/pokemon/cubone/back.2bpp.lz.bd849dfb create mode 100644 gfx/pokemon/cubone/back.png create mode 100644 gfx/pokemon/cubone/front.animated.2bpp.lz.0d63a3a4 create mode 100644 gfx/pokemon/cubone/front.png create mode 100644 gfx/pokemon/cubone/shiny.pal create mode 100644 gfx/pokemon/cyndaquil/anim0.asm create mode 100644 gfx/pokemon/cyndaquil/anim1.asm create mode 100644 gfx/pokemon/cyndaquil/back.2bpp.lz.68baeeeb create mode 100644 gfx/pokemon/cyndaquil/back.png create mode 100644 gfx/pokemon/cyndaquil/front.animated.2bpp.lz.0d5dce8d create mode 100644 gfx/pokemon/cyndaquil/front.png create mode 100644 gfx/pokemon/cyndaquil/shiny.pal create mode 100644 gfx/pokemon/delibird/anim0.asm create mode 100644 gfx/pokemon/delibird/anim1.asm create mode 100644 gfx/pokemon/delibird/back.2bpp.lz.11463d76 create mode 100644 gfx/pokemon/delibird/back.png create mode 100644 gfx/pokemon/delibird/front.animated.2bpp.lz.a3126c48 create mode 100644 gfx/pokemon/delibird/front.png create mode 100644 gfx/pokemon/delibird/shiny.pal create mode 100644 gfx/pokemon/dewgong/anim0.asm create mode 100644 gfx/pokemon/dewgong/anim1.asm create mode 100644 gfx/pokemon/dewgong/back.2bpp.lz.4e1fef76 create mode 100644 gfx/pokemon/dewgong/back.png create mode 100644 gfx/pokemon/dewgong/front.animated.2bpp.lz.cc53359c create mode 100644 gfx/pokemon/dewgong/front.png create mode 100644 gfx/pokemon/dewgong/shiny.pal create mode 100644 gfx/pokemon/diglett/anim0.asm create mode 100644 gfx/pokemon/diglett/anim1.asm create mode 100644 gfx/pokemon/diglett/back.2bpp.lz.31d8cacc create mode 100644 gfx/pokemon/diglett/back.png create mode 100644 gfx/pokemon/diglett/front.animated.2bpp.lz.52b0361e create mode 100644 gfx/pokemon/diglett/front.png create mode 100644 gfx/pokemon/diglett/shiny.pal create mode 100644 gfx/pokemon/ditto/anim0.asm create mode 100644 gfx/pokemon/ditto/anim1.asm create mode 100644 gfx/pokemon/ditto/back.2bpp.lz.b01a9d91 create mode 100644 gfx/pokemon/ditto/back.png create mode 100644 gfx/pokemon/ditto/front.animated.2bpp.lz.344c90fd create mode 100644 gfx/pokemon/ditto/front.png create mode 100644 gfx/pokemon/ditto/shiny.pal create mode 100644 gfx/pokemon/dodrio/anim0.asm create mode 100644 gfx/pokemon/dodrio/anim1.asm create mode 100644 gfx/pokemon/dodrio/back.2bpp.lz.a5480e88 create mode 100644 gfx/pokemon/dodrio/back.png create mode 100644 gfx/pokemon/dodrio/front.animated.2bpp.lz.2aaff569 create mode 100644 gfx/pokemon/dodrio/front.png create mode 100644 gfx/pokemon/dodrio/shiny.pal create mode 100644 gfx/pokemon/doduo/anim0.asm create mode 100644 gfx/pokemon/doduo/anim1.asm create mode 100644 gfx/pokemon/doduo/back.2bpp.lz.05a57563 create mode 100644 gfx/pokemon/doduo/back.png create mode 100644 gfx/pokemon/doduo/front.animated.2bpp.lz.89c4acbd create mode 100644 gfx/pokemon/doduo/front.png create mode 100644 gfx/pokemon/doduo/shiny.pal create mode 100644 gfx/pokemon/donphan/anim0.asm create mode 100644 gfx/pokemon/donphan/anim1.asm create mode 100644 gfx/pokemon/donphan/back.2bpp.lz.5067b370 create mode 100644 gfx/pokemon/donphan/back.png create mode 100644 gfx/pokemon/donphan/front.animated.2bpp.lz.9e1b7048 create mode 100644 gfx/pokemon/donphan/front.png create mode 100644 gfx/pokemon/donphan/shiny.pal create mode 100644 gfx/pokemon/dragonair/anim0.asm create mode 100644 gfx/pokemon/dragonair/anim1.asm create mode 100644 gfx/pokemon/dragonair/back.2bpp.lz.9b6fda5b create mode 100644 gfx/pokemon/dragonair/back.png create mode 100644 gfx/pokemon/dragonair/front.animated.2bpp.lz.bb9ee373 create mode 100644 gfx/pokemon/dragonair/front.png create mode 100644 gfx/pokemon/dragonair/shiny.pal create mode 100644 gfx/pokemon/dragonite/anim0.asm create mode 100644 gfx/pokemon/dragonite/anim1.asm create mode 100644 gfx/pokemon/dragonite/back.2bpp.lz.c408806f create mode 100644 gfx/pokemon/dragonite/back.png create mode 100644 gfx/pokemon/dragonite/front.animated.2bpp.lz.b914dfd9 create mode 100644 gfx/pokemon/dragonite/front.png create mode 100644 gfx/pokemon/dragonite/shiny.pal create mode 100644 gfx/pokemon/dratini/anim0.asm create mode 100644 gfx/pokemon/dratini/anim1.asm create mode 100644 gfx/pokemon/dratini/back.2bpp.lz.be4d6a2a create mode 100644 gfx/pokemon/dratini/back.png create mode 100644 gfx/pokemon/dratini/front.animated.2bpp.lz.838e4248 create mode 100644 gfx/pokemon/dratini/front.png create mode 100644 gfx/pokemon/dratini/shiny.pal create mode 100644 gfx/pokemon/drowzee/anim0.asm create mode 100644 gfx/pokemon/drowzee/anim1.asm create mode 100644 gfx/pokemon/drowzee/back.2bpp.lz.55367f5a create mode 100644 gfx/pokemon/drowzee/back.png create mode 100644 gfx/pokemon/drowzee/front.animated.2bpp.lz.1f23711a create mode 100644 gfx/pokemon/drowzee/front.png create mode 100644 gfx/pokemon/drowzee/shiny.pal create mode 100644 gfx/pokemon/dugtrio/anim0.asm create mode 100644 gfx/pokemon/dugtrio/anim1.asm create mode 100644 gfx/pokemon/dugtrio/back.2bpp.lz.e821a89c create mode 100644 gfx/pokemon/dugtrio/back.png create mode 100644 gfx/pokemon/dugtrio/front.animated.2bpp.lz.5c9e668c create mode 100644 gfx/pokemon/dugtrio/front.png create mode 100644 gfx/pokemon/dugtrio/shiny.pal create mode 100644 gfx/pokemon/dunsparce/anim0.asm create mode 100644 gfx/pokemon/dunsparce/anim1.asm create mode 100644 gfx/pokemon/dunsparce/back.2bpp.lz.aee69114 create mode 100644 gfx/pokemon/dunsparce/back.png create mode 100644 gfx/pokemon/dunsparce/front.animated.2bpp.lz.04ea863c create mode 100644 gfx/pokemon/dunsparce/front.png create mode 100644 gfx/pokemon/dunsparce/shiny.pal create mode 100644 gfx/pokemon/eevee/anim0.asm create mode 100644 gfx/pokemon/eevee/anim1.asm create mode 100644 gfx/pokemon/eevee/back.2bpp.lz.bc34ce62 create mode 100644 gfx/pokemon/eevee/back.png create mode 100644 gfx/pokemon/eevee/front.animated.2bpp.lz.04e72b48 create mode 100644 gfx/pokemon/eevee/front.png create mode 100644 gfx/pokemon/eevee/shiny.pal create mode 100644 gfx/pokemon/egg/anim0.asm create mode 100644 gfx/pokemon/egg/anim1.asm create mode 100644 gfx/pokemon/egg/front.animated.2bpp.lz.7b468eff create mode 100644 gfx/pokemon/egg/front.png create mode 100644 gfx/pokemon/ekans/anim0.asm create mode 100644 gfx/pokemon/ekans/anim1.asm create mode 100644 gfx/pokemon/ekans/back.2bpp.lz.671d14d9 create mode 100644 gfx/pokemon/ekans/back.png create mode 100644 gfx/pokemon/ekans/front.animated.2bpp.lz.018a1c72 create mode 100644 gfx/pokemon/ekans/front.png create mode 100644 gfx/pokemon/ekans/shiny.pal create mode 100644 gfx/pokemon/electabuzz/anim0.asm create mode 100644 gfx/pokemon/electabuzz/anim1.asm create mode 100644 gfx/pokemon/electabuzz/back.2bpp.lz.e97330fe create mode 100644 gfx/pokemon/electabuzz/back.png create mode 100644 gfx/pokemon/electabuzz/front.animated.2bpp.lz.381e1c6e create mode 100644 gfx/pokemon/electabuzz/front.png create mode 100644 gfx/pokemon/electabuzz/shiny.pal create mode 100644 gfx/pokemon/electrode/anim0.asm create mode 100644 gfx/pokemon/electrode/anim1.asm create mode 100644 gfx/pokemon/electrode/back.2bpp.lz.874e1f1c create mode 100644 gfx/pokemon/electrode/back.png create mode 100644 gfx/pokemon/electrode/front.animated.2bpp.lz.d7943ad8 create mode 100644 gfx/pokemon/electrode/front.png create mode 100644 gfx/pokemon/electrode/shiny.pal create mode 100644 gfx/pokemon/elekid/anim0.asm create mode 100644 gfx/pokemon/elekid/anim1.asm create mode 100644 gfx/pokemon/elekid/back.2bpp.lz.227a1b23 create mode 100644 gfx/pokemon/elekid/back.png create mode 100644 gfx/pokemon/elekid/front.animated.2bpp.lz.3bbb6b61 create mode 100644 gfx/pokemon/elekid/front.png create mode 100644 gfx/pokemon/elekid/shiny.pal create mode 100644 gfx/pokemon/entei/anim0.asm create mode 100644 gfx/pokemon/entei/anim1.asm create mode 100644 gfx/pokemon/entei/back.2bpp.lz.d1e1986a create mode 100644 gfx/pokemon/entei/back.png create mode 100644 gfx/pokemon/entei/front.animated.2bpp.lz.ebaf8024 create mode 100644 gfx/pokemon/entei/front.png create mode 100644 gfx/pokemon/entei/shiny.pal create mode 100644 gfx/pokemon/espeon/anim0.asm create mode 100644 gfx/pokemon/espeon/anim1.asm create mode 100644 gfx/pokemon/espeon/back.2bpp.lz.0e77f26e create mode 100644 gfx/pokemon/espeon/back.png create mode 100644 gfx/pokemon/espeon/front.animated.2bpp.lz.069f57ec create mode 100644 gfx/pokemon/espeon/front.png create mode 100644 gfx/pokemon/espeon/shiny.pal create mode 100644 gfx/pokemon/exeggcute/anim0.asm create mode 100644 gfx/pokemon/exeggcute/anim1.asm create mode 100644 gfx/pokemon/exeggcute/back.2bpp.lz.060c38b0 create mode 100644 gfx/pokemon/exeggcute/back.png create mode 100644 gfx/pokemon/exeggcute/front.animated.2bpp.lz.578a4722 create mode 100644 gfx/pokemon/exeggcute/front.png create mode 100644 gfx/pokemon/exeggcute/shiny.pal create mode 100644 gfx/pokemon/exeggutor/anim0.asm create mode 100644 gfx/pokemon/exeggutor/anim1.asm create mode 100644 gfx/pokemon/exeggutor/back.2bpp.lz.e012643e create mode 100644 gfx/pokemon/exeggutor/back.png create mode 100644 gfx/pokemon/exeggutor/front.animated.2bpp.lz.3915d572 create mode 100644 gfx/pokemon/exeggutor/front.png create mode 100644 gfx/pokemon/exeggutor/shiny.pal create mode 100644 gfx/pokemon/extra_pointers.asm create mode 100644 gfx/pokemon/extras.asm create mode 100644 gfx/pokemon/farfetch_d/anim0.asm create mode 100644 gfx/pokemon/farfetch_d/anim1.asm create mode 100644 gfx/pokemon/farfetch_d/back.2bpp.lz.6f28ebc4 create mode 100644 gfx/pokemon/farfetch_d/back.png create mode 100644 gfx/pokemon/farfetch_d/front.animated.2bpp.lz.a4ae9393 create mode 100644 gfx/pokemon/farfetch_d/front.png create mode 100644 gfx/pokemon/farfetch_d/shiny.pal create mode 100644 gfx/pokemon/fearow/anim0.asm create mode 100644 gfx/pokemon/fearow/anim1.asm create mode 100644 gfx/pokemon/fearow/back.2bpp.lz.a7a39118 create mode 100644 gfx/pokemon/fearow/back.png create mode 100644 gfx/pokemon/fearow/front.animated.2bpp.lz.393b11d6 create mode 100644 gfx/pokemon/fearow/front.png create mode 100644 gfx/pokemon/fearow/shiny.pal create mode 100644 gfx/pokemon/feraligatr/anim0.asm create mode 100644 gfx/pokemon/feraligatr/anim1.asm create mode 100644 gfx/pokemon/feraligatr/back.2bpp.lz.f95abe99 create mode 100644 gfx/pokemon/feraligatr/back.png create mode 100644 gfx/pokemon/feraligatr/front.animated.2bpp.lz.fade72cc create mode 100644 gfx/pokemon/feraligatr/front.png create mode 100644 gfx/pokemon/feraligatr/shiny.pal create mode 100644 gfx/pokemon/flaaffy/anim0.asm create mode 100644 gfx/pokemon/flaaffy/anim1.asm create mode 100644 gfx/pokemon/flaaffy/back.2bpp.lz.461855e4 create mode 100644 gfx/pokemon/flaaffy/back.png create mode 100644 gfx/pokemon/flaaffy/front.animated.2bpp.lz.6a27aac3 create mode 100644 gfx/pokemon/flaaffy/front.png create mode 100644 gfx/pokemon/flaaffy/shiny.pal create mode 100644 gfx/pokemon/flareon/anim0.asm create mode 100644 gfx/pokemon/flareon/anim1.asm create mode 100644 gfx/pokemon/flareon/back.2bpp.lz.d58af0e5 create mode 100644 gfx/pokemon/flareon/back.png create mode 100644 gfx/pokemon/flareon/front.animated.2bpp.lz.7b68c716 create mode 100644 gfx/pokemon/flareon/front.png create mode 100644 gfx/pokemon/flareon/shiny.pal create mode 100644 gfx/pokemon/forretress/anim0.asm create mode 100644 gfx/pokemon/forretress/anim1.asm create mode 100644 gfx/pokemon/forretress/back.2bpp.lz.2b8e5f48 create mode 100644 gfx/pokemon/forretress/back.png create mode 100644 gfx/pokemon/forretress/front.animated.2bpp.lz.761b9f80 create mode 100644 gfx/pokemon/forretress/front.png create mode 100644 gfx/pokemon/forretress/shiny.pal create mode 100644 gfx/pokemon/frame_pointers.asm create mode 100644 gfx/pokemon/furret/anim0.asm create mode 100644 gfx/pokemon/furret/anim1.asm create mode 100644 gfx/pokemon/furret/back.2bpp.lz.24792550 create mode 100644 gfx/pokemon/furret/back.png create mode 100644 gfx/pokemon/furret/front.animated.2bpp.lz.f72a2758 create mode 100644 gfx/pokemon/furret/front.png create mode 100644 gfx/pokemon/furret/shiny.pal create mode 100644 gfx/pokemon/gastly/anim0.asm create mode 100644 gfx/pokemon/gastly/anim1.asm create mode 100644 gfx/pokemon/gastly/back.2bpp.lz.4078fa56 create mode 100644 gfx/pokemon/gastly/back.png create mode 100644 gfx/pokemon/gastly/front.animated.2bpp.lz.84148c1e create mode 100644 gfx/pokemon/gastly/front.png create mode 100644 gfx/pokemon/gastly/shiny.pal create mode 100644 gfx/pokemon/gengar/anim0.asm create mode 100644 gfx/pokemon/gengar/anim1.asm create mode 100644 gfx/pokemon/gengar/back.2bpp.lz.5237ee63 create mode 100644 gfx/pokemon/gengar/back.png create mode 100644 gfx/pokemon/gengar/front.animated.2bpp.lz.65ddc6f5 create mode 100644 gfx/pokemon/gengar/front.png create mode 100644 gfx/pokemon/gengar/shiny.pal create mode 100644 gfx/pokemon/geodude/anim0.asm create mode 100644 gfx/pokemon/geodude/anim1.asm create mode 100644 gfx/pokemon/geodude/back.2bpp.lz.d5aa5e9f create mode 100644 gfx/pokemon/geodude/back.png create mode 100644 gfx/pokemon/geodude/front.animated.2bpp.lz.d743f2c9 create mode 100644 gfx/pokemon/geodude/front.png create mode 100644 gfx/pokemon/geodude/shiny.pal create mode 100644 gfx/pokemon/girafarig/anim0.asm create mode 100644 gfx/pokemon/girafarig/anim1.asm create mode 100644 gfx/pokemon/girafarig/back.2bpp.lz.5dd68457 create mode 100644 gfx/pokemon/girafarig/back.png create mode 100644 gfx/pokemon/girafarig/front.animated.2bpp.lz.76d809c4 create mode 100644 gfx/pokemon/girafarig/front.png create mode 100644 gfx/pokemon/girafarig/shiny.pal create mode 100644 gfx/pokemon/gligar/anim0.asm create mode 100644 gfx/pokemon/gligar/anim1.asm create mode 100644 gfx/pokemon/gligar/back.2bpp.lz.ee922122 create mode 100644 gfx/pokemon/gligar/back.png create mode 100644 gfx/pokemon/gligar/front.animated.2bpp.lz.4dcc41b3 create mode 100644 gfx/pokemon/gligar/front.png create mode 100644 gfx/pokemon/gligar/shiny.pal create mode 100644 gfx/pokemon/gloom/anim0.asm create mode 100644 gfx/pokemon/gloom/anim1.asm create mode 100644 gfx/pokemon/gloom/back.2bpp.lz.9a321f63 create mode 100644 gfx/pokemon/gloom/back.png create mode 100644 gfx/pokemon/gloom/front.animated.2bpp.lz.c6ef04a5 create mode 100644 gfx/pokemon/gloom/front.png create mode 100644 gfx/pokemon/gloom/shiny.pal create mode 100644 gfx/pokemon/golbat/anim0.asm create mode 100644 gfx/pokemon/golbat/anim1.asm create mode 100644 gfx/pokemon/golbat/back.2bpp.lz.e277e260 create mode 100644 gfx/pokemon/golbat/back.png create mode 100644 gfx/pokemon/golbat/front.animated.2bpp.lz.c35ffe9b create mode 100644 gfx/pokemon/golbat/front.png create mode 100644 gfx/pokemon/golbat/shiny.pal create mode 100644 gfx/pokemon/goldeen/anim0.asm create mode 100644 gfx/pokemon/goldeen/anim1.asm create mode 100644 gfx/pokemon/goldeen/back.2bpp.lz.d0e5751e create mode 100644 gfx/pokemon/goldeen/back.png create mode 100644 gfx/pokemon/goldeen/front.animated.2bpp.lz.c451a8c4 create mode 100644 gfx/pokemon/goldeen/front.png create mode 100644 gfx/pokemon/goldeen/shiny.pal create mode 100644 gfx/pokemon/golduck/anim0.asm create mode 100644 gfx/pokemon/golduck/anim1.asm create mode 100644 gfx/pokemon/golduck/back.2bpp.lz.2d022642 create mode 100644 gfx/pokemon/golduck/back.png create mode 100644 gfx/pokemon/golduck/front.animated.2bpp.lz.09e97414 create mode 100644 gfx/pokemon/golduck/front.png create mode 100644 gfx/pokemon/golduck/shiny.pal create mode 100644 gfx/pokemon/golem/anim0.asm create mode 100644 gfx/pokemon/golem/anim1.asm create mode 100644 gfx/pokemon/golem/back.2bpp.lz.ae903dee create mode 100644 gfx/pokemon/golem/back.png create mode 100644 gfx/pokemon/golem/front.animated.2bpp.lz.a16f21c8 create mode 100644 gfx/pokemon/golem/front.png create mode 100644 gfx/pokemon/golem/shiny.pal create mode 100644 gfx/pokemon/granbull/anim0.asm create mode 100644 gfx/pokemon/granbull/anim1.asm create mode 100644 gfx/pokemon/granbull/back.2bpp.lz.7f1208ed create mode 100644 gfx/pokemon/granbull/back.png create mode 100644 gfx/pokemon/granbull/front.animated.2bpp.lz.4504768b create mode 100644 gfx/pokemon/granbull/front.png create mode 100644 gfx/pokemon/granbull/shiny.pal create mode 100644 gfx/pokemon/graveler/anim0.asm create mode 100644 gfx/pokemon/graveler/anim1.asm create mode 100644 gfx/pokemon/graveler/back.2bpp.lz.c7867de7 create mode 100644 gfx/pokemon/graveler/back.png create mode 100644 gfx/pokemon/graveler/front.animated.2bpp.lz.68d07c61 create mode 100644 gfx/pokemon/graveler/front.png create mode 100644 gfx/pokemon/graveler/shiny.pal create mode 100644 gfx/pokemon/grimer/anim0.asm create mode 100644 gfx/pokemon/grimer/anim1.asm create mode 100644 gfx/pokemon/grimer/back.2bpp.lz.833bd626 create mode 100644 gfx/pokemon/grimer/back.png create mode 100644 gfx/pokemon/grimer/front.animated.2bpp.lz.dfe40e91 create mode 100644 gfx/pokemon/grimer/front.png create mode 100644 gfx/pokemon/grimer/shiny.pal create mode 100644 gfx/pokemon/growlithe/anim0.asm create mode 100644 gfx/pokemon/growlithe/anim1.asm create mode 100644 gfx/pokemon/growlithe/back.2bpp.lz.7f5831f6 create mode 100644 gfx/pokemon/growlithe/back.png create mode 100644 gfx/pokemon/growlithe/front.animated.2bpp.lz.f7b376fa create mode 100644 gfx/pokemon/growlithe/front.png create mode 100644 gfx/pokemon/growlithe/shiny.pal create mode 100644 gfx/pokemon/gyarados/anim0.asm create mode 100644 gfx/pokemon/gyarados/anim1.asm create mode 100644 gfx/pokemon/gyarados/back.2bpp.lz.fc577f9e create mode 100644 gfx/pokemon/gyarados/back.png create mode 100644 gfx/pokemon/gyarados/front.animated.2bpp.lz.1b498e2b create mode 100644 gfx/pokemon/gyarados/front.png create mode 100644 gfx/pokemon/gyarados/shiny.pal create mode 100644 gfx/pokemon/haunter/anim0.asm create mode 100644 gfx/pokemon/haunter/anim1.asm create mode 100644 gfx/pokemon/haunter/back.2bpp.lz.8a5dc2c1 create mode 100644 gfx/pokemon/haunter/back.png create mode 100644 gfx/pokemon/haunter/front.animated.2bpp.lz.aeed5f7e create mode 100644 gfx/pokemon/haunter/front.png create mode 100644 gfx/pokemon/haunter/shiny.pal create mode 100644 gfx/pokemon/heracross/anim0.asm create mode 100644 gfx/pokemon/heracross/anim1.asm create mode 100644 gfx/pokemon/heracross/back.2bpp.lz.ba09608b create mode 100644 gfx/pokemon/heracross/back.png create mode 100644 gfx/pokemon/heracross/front.animated.2bpp.lz.0742fe2b create mode 100644 gfx/pokemon/heracross/front.png create mode 100644 gfx/pokemon/heracross/shiny.pal create mode 100644 gfx/pokemon/hitmonchan/anim0.asm create mode 100644 gfx/pokemon/hitmonchan/anim1.asm create mode 100644 gfx/pokemon/hitmonchan/back.2bpp.lz.68e28b98 create mode 100644 gfx/pokemon/hitmonchan/back.png create mode 100644 gfx/pokemon/hitmonchan/front.animated.2bpp.lz.61836c4c create mode 100644 gfx/pokemon/hitmonchan/front.png create mode 100644 gfx/pokemon/hitmonchan/shiny.pal create mode 100644 gfx/pokemon/hitmonlee/anim0.asm create mode 100644 gfx/pokemon/hitmonlee/anim1.asm create mode 100644 gfx/pokemon/hitmonlee/back.2bpp.lz.374e3caa create mode 100644 gfx/pokemon/hitmonlee/back.png create mode 100644 gfx/pokemon/hitmonlee/front.animated.2bpp.lz.d174eba1 create mode 100644 gfx/pokemon/hitmonlee/front.png create mode 100644 gfx/pokemon/hitmonlee/shiny.pal create mode 100644 gfx/pokemon/hitmontop/anim0.asm create mode 100644 gfx/pokemon/hitmontop/anim1.asm create mode 100644 gfx/pokemon/hitmontop/back.2bpp.lz.ea3f1576 create mode 100644 gfx/pokemon/hitmontop/back.png create mode 100644 gfx/pokemon/hitmontop/front.animated.2bpp.lz.1b3e96fc create mode 100644 gfx/pokemon/hitmontop/front.png create mode 100644 gfx/pokemon/hitmontop/shiny.pal create mode 100644 gfx/pokemon/ho_oh/anim0.asm create mode 100644 gfx/pokemon/ho_oh/anim1.asm create mode 100644 gfx/pokemon/ho_oh/back.2bpp.lz.1412f260 create mode 100644 gfx/pokemon/ho_oh/back.png create mode 100644 gfx/pokemon/ho_oh/front.animated.2bpp.lz.db80b5eb create mode 100644 gfx/pokemon/ho_oh/front.png create mode 100644 gfx/pokemon/ho_oh/shiny.pal create mode 100644 gfx/pokemon/hoothoot/anim0.asm create mode 100644 gfx/pokemon/hoothoot/anim1.asm create mode 100644 gfx/pokemon/hoothoot/back.2bpp.lz.7ebb0b29 create mode 100644 gfx/pokemon/hoothoot/back.png create mode 100644 gfx/pokemon/hoothoot/front.animated.2bpp.lz.752ab202 create mode 100644 gfx/pokemon/hoothoot/front.png create mode 100644 gfx/pokemon/hoothoot/shiny.pal create mode 100644 gfx/pokemon/hoppip/anim0.asm create mode 100644 gfx/pokemon/hoppip/anim1.asm create mode 100644 gfx/pokemon/hoppip/back.2bpp.lz.5684c023 create mode 100644 gfx/pokemon/hoppip/back.png create mode 100644 gfx/pokemon/hoppip/front.animated.2bpp.lz.a03efe74 create mode 100644 gfx/pokemon/hoppip/front.png create mode 100644 gfx/pokemon/hoppip/shiny.pal create mode 100644 gfx/pokemon/horsea/anim0.asm create mode 100644 gfx/pokemon/horsea/anim1.asm create mode 100644 gfx/pokemon/horsea/back.2bpp.lz.50b6afb9 create mode 100644 gfx/pokemon/horsea/back.png create mode 100644 gfx/pokemon/horsea/front.animated.2bpp.lz.8b84f98e create mode 100644 gfx/pokemon/horsea/front.png create mode 100644 gfx/pokemon/horsea/shiny.pal create mode 100644 gfx/pokemon/houndoom/anim0.asm create mode 100644 gfx/pokemon/houndoom/anim1.asm create mode 100644 gfx/pokemon/houndoom/back.2bpp.lz.5fa55a47 create mode 100644 gfx/pokemon/houndoom/back.png create mode 100644 gfx/pokemon/houndoom/front.animated.2bpp.lz.2d450e90 create mode 100644 gfx/pokemon/houndoom/front.png create mode 100644 gfx/pokemon/houndoom/shiny.pal create mode 100644 gfx/pokemon/houndour/anim0.asm create mode 100644 gfx/pokemon/houndour/anim1.asm create mode 100644 gfx/pokemon/houndour/back.2bpp.lz.ae5f2dc9 create mode 100644 gfx/pokemon/houndour/back.png create mode 100644 gfx/pokemon/houndour/front.animated.2bpp.lz.f847f4f6 create mode 100644 gfx/pokemon/houndour/front.png create mode 100644 gfx/pokemon/houndour/shiny.pal create mode 100644 gfx/pokemon/hypno/anim0.asm create mode 100644 gfx/pokemon/hypno/anim1.asm create mode 100644 gfx/pokemon/hypno/back.2bpp.lz.c091ce88 create mode 100644 gfx/pokemon/hypno/back.png create mode 100644 gfx/pokemon/hypno/front.animated.2bpp.lz.638333a3 create mode 100644 gfx/pokemon/hypno/front.png create mode 100644 gfx/pokemon/hypno/shiny.pal create mode 100644 gfx/pokemon/igglybuff/anim0.asm create mode 100644 gfx/pokemon/igglybuff/anim1.asm create mode 100644 gfx/pokemon/igglybuff/back.2bpp.lz.c0c17dcb create mode 100644 gfx/pokemon/igglybuff/back.png create mode 100644 gfx/pokemon/igglybuff/front.animated.2bpp.lz.1e00afc3 create mode 100644 gfx/pokemon/igglybuff/front.png create mode 100644 gfx/pokemon/igglybuff/shiny.pal create mode 100644 gfx/pokemon/ivysaur/anim0.asm create mode 100644 gfx/pokemon/ivysaur/anim1.asm create mode 100644 gfx/pokemon/ivysaur/back.2bpp.lz.bed1ff58 create mode 100644 gfx/pokemon/ivysaur/back.png create mode 100644 gfx/pokemon/ivysaur/front.animated.2bpp.lz.3abed0fa create mode 100644 gfx/pokemon/ivysaur/front.png create mode 100644 gfx/pokemon/ivysaur/shiny.pal create mode 100644 gfx/pokemon/jigglypuff/anim0.asm create mode 100644 gfx/pokemon/jigglypuff/anim1.asm create mode 100644 gfx/pokemon/jigglypuff/back.2bpp.lz.87d5730b create mode 100644 gfx/pokemon/jigglypuff/back.png create mode 100644 gfx/pokemon/jigglypuff/front.animated.2bpp.lz.9fd159f4 create mode 100644 gfx/pokemon/jigglypuff/front.png create mode 100644 gfx/pokemon/jigglypuff/shiny.pal create mode 100644 gfx/pokemon/johto_frames.asm create mode 100644 gfx/pokemon/jolteon/anim0.asm create mode 100644 gfx/pokemon/jolteon/anim1.asm create mode 100644 gfx/pokemon/jolteon/back.2bpp.lz.f248aac4 create mode 100644 gfx/pokemon/jolteon/back.png create mode 100644 gfx/pokemon/jolteon/front.animated.2bpp.lz.b2b07d79 create mode 100644 gfx/pokemon/jolteon/front.png create mode 100644 gfx/pokemon/jolteon/shiny.pal create mode 100644 gfx/pokemon/jumpluff/anim0.asm create mode 100644 gfx/pokemon/jumpluff/anim1.asm create mode 100644 gfx/pokemon/jumpluff/back.2bpp.lz.b258a699 create mode 100644 gfx/pokemon/jumpluff/back.png create mode 100644 gfx/pokemon/jumpluff/front.animated.2bpp.lz.6d1d8175 create mode 100644 gfx/pokemon/jumpluff/front.png create mode 100644 gfx/pokemon/jumpluff/shiny.pal create mode 100644 gfx/pokemon/jynx/anim0.asm create mode 100644 gfx/pokemon/jynx/anim1.asm create mode 100644 gfx/pokemon/jynx/back.2bpp.lz.1eef1c1b create mode 100644 gfx/pokemon/jynx/back.png create mode 100644 gfx/pokemon/jynx/front.animated.2bpp.lz.6aaf67b0 create mode 100644 gfx/pokemon/jynx/front.png create mode 100644 gfx/pokemon/jynx/shiny.pal create mode 100644 gfx/pokemon/kabuto/anim0.asm create mode 100644 gfx/pokemon/kabuto/anim1.asm create mode 100644 gfx/pokemon/kabuto/back.2bpp.lz.0717a29b create mode 100644 gfx/pokemon/kabuto/back.png create mode 100644 gfx/pokemon/kabuto/front.animated.2bpp.lz.afe4e2dc create mode 100644 gfx/pokemon/kabuto/front.png create mode 100644 gfx/pokemon/kabuto/shiny.pal create mode 100644 gfx/pokemon/kabutops/anim0.asm create mode 100644 gfx/pokemon/kabutops/anim1.asm create mode 100644 gfx/pokemon/kabutops/back.2bpp.lz.98a1dfc4 create mode 100644 gfx/pokemon/kabutops/back.png create mode 100644 gfx/pokemon/kabutops/front.animated.2bpp.lz.d5e4bfeb create mode 100644 gfx/pokemon/kabutops/front.png create mode 100644 gfx/pokemon/kabutops/shiny.pal create mode 100644 gfx/pokemon/kadabra/anim0.asm create mode 100644 gfx/pokemon/kadabra/anim1.asm create mode 100644 gfx/pokemon/kadabra/back.2bpp.lz.6b26c1a0 create mode 100644 gfx/pokemon/kadabra/back.png create mode 100644 gfx/pokemon/kadabra/front.animated.2bpp.lz.bc78f9cf create mode 100644 gfx/pokemon/kadabra/front.png create mode 100644 gfx/pokemon/kadabra/shiny.pal create mode 100644 gfx/pokemon/kakuna/anim0.asm create mode 100644 gfx/pokemon/kakuna/anim1.asm create mode 100644 gfx/pokemon/kakuna/back.2bpp.lz.3bffa4c3 create mode 100644 gfx/pokemon/kakuna/back.png create mode 100644 gfx/pokemon/kakuna/front.animated.2bpp.lz.c7425e72 create mode 100644 gfx/pokemon/kakuna/front.png create mode 100644 gfx/pokemon/kakuna/shiny.pal create mode 100644 gfx/pokemon/kangaskhan/anim0.asm create mode 100644 gfx/pokemon/kangaskhan/anim1.asm create mode 100644 gfx/pokemon/kangaskhan/back.2bpp.lz.0d7cc337 create mode 100644 gfx/pokemon/kangaskhan/back.png create mode 100644 gfx/pokemon/kangaskhan/front.animated.2bpp.lz.09c81009 create mode 100644 gfx/pokemon/kangaskhan/front.png create mode 100644 gfx/pokemon/kangaskhan/shiny.pal create mode 100644 gfx/pokemon/kanto_frames.asm create mode 100644 gfx/pokemon/kingdra/anim0.asm create mode 100644 gfx/pokemon/kingdra/anim1.asm create mode 100644 gfx/pokemon/kingdra/back.2bpp.lz.e48ecb3f create mode 100644 gfx/pokemon/kingdra/back.png create mode 100644 gfx/pokemon/kingdra/front.animated.2bpp.lz.668c0516 create mode 100644 gfx/pokemon/kingdra/front.png create mode 100644 gfx/pokemon/kingdra/shiny.pal create mode 100644 gfx/pokemon/kingler/anim0.asm create mode 100644 gfx/pokemon/kingler/anim1.asm create mode 100644 gfx/pokemon/kingler/back.2bpp.lz.88e96d65 create mode 100644 gfx/pokemon/kingler/back.png create mode 100644 gfx/pokemon/kingler/front.animated.2bpp.lz.35305199 create mode 100644 gfx/pokemon/kingler/front.png create mode 100644 gfx/pokemon/kingler/shiny.pal create mode 100644 gfx/pokemon/koffing/anim0.asm create mode 100644 gfx/pokemon/koffing/anim1.asm create mode 100644 gfx/pokemon/koffing/back.2bpp.lz.8c0a2526 create mode 100644 gfx/pokemon/koffing/back.png create mode 100644 gfx/pokemon/koffing/front.animated.2bpp.lz.00044b3f create mode 100644 gfx/pokemon/koffing/front.png create mode 100644 gfx/pokemon/koffing/shiny.pal create mode 100644 gfx/pokemon/krabby/anim0.asm create mode 100644 gfx/pokemon/krabby/anim1.asm create mode 100644 gfx/pokemon/krabby/back.2bpp.lz.2bc2487b create mode 100644 gfx/pokemon/krabby/back.png create mode 100644 gfx/pokemon/krabby/front.animated.2bpp.lz.39592514 create mode 100644 gfx/pokemon/krabby/front.png create mode 100644 gfx/pokemon/krabby/shiny.pal create mode 100644 gfx/pokemon/lanturn/anim0.asm create mode 100644 gfx/pokemon/lanturn/anim1.asm create mode 100644 gfx/pokemon/lanturn/back.2bpp.lz.8e9c7c1a create mode 100644 gfx/pokemon/lanturn/back.png create mode 100644 gfx/pokemon/lanturn/front.animated.2bpp.lz.1bfac161 create mode 100644 gfx/pokemon/lanturn/front.png create mode 100644 gfx/pokemon/lanturn/shiny.pal create mode 100644 gfx/pokemon/lapras/anim0.asm create mode 100644 gfx/pokemon/lapras/anim1.asm create mode 100644 gfx/pokemon/lapras/back.2bpp.lz.d09351a1 create mode 100644 gfx/pokemon/lapras/back.png create mode 100644 gfx/pokemon/lapras/front.animated.2bpp.lz.8290ef8e create mode 100644 gfx/pokemon/lapras/front.png create mode 100644 gfx/pokemon/lapras/shiny.pal create mode 100644 gfx/pokemon/larvitar/anim0.asm create mode 100644 gfx/pokemon/larvitar/anim1.asm create mode 100644 gfx/pokemon/larvitar/back.2bpp.lz.4b2ac395 create mode 100644 gfx/pokemon/larvitar/back.png create mode 100644 gfx/pokemon/larvitar/front.animated.2bpp.lz.83859c57 create mode 100644 gfx/pokemon/larvitar/front.png create mode 100644 gfx/pokemon/larvitar/shiny.pal create mode 100644 gfx/pokemon/ledian/anim0.asm create mode 100644 gfx/pokemon/ledian/anim1.asm create mode 100644 gfx/pokemon/ledian/back.2bpp.lz.48657bbb create mode 100644 gfx/pokemon/ledian/back.png create mode 100644 gfx/pokemon/ledian/front.animated.2bpp.lz.83e819c3 create mode 100644 gfx/pokemon/ledian/front.png create mode 100644 gfx/pokemon/ledian/shiny.pal create mode 100644 gfx/pokemon/ledyba/anim0.asm create mode 100644 gfx/pokemon/ledyba/anim1.asm create mode 100644 gfx/pokemon/ledyba/back.2bpp.lz.d50e8860 create mode 100644 gfx/pokemon/ledyba/back.png create mode 100644 gfx/pokemon/ledyba/front.animated.2bpp.lz.1700dc27 create mode 100644 gfx/pokemon/ledyba/front.png create mode 100644 gfx/pokemon/ledyba/shiny.pal create mode 100644 gfx/pokemon/lickitung/anim0.asm create mode 100644 gfx/pokemon/lickitung/anim1.asm create mode 100644 gfx/pokemon/lickitung/back.2bpp.lz.a127e40b create mode 100644 gfx/pokemon/lickitung/back.png create mode 100644 gfx/pokemon/lickitung/front.animated.2bpp.lz.328a7c53 create mode 100644 gfx/pokemon/lickitung/front.png create mode 100644 gfx/pokemon/lickitung/shiny.pal create mode 100644 gfx/pokemon/lugia/anim0.asm create mode 100644 gfx/pokemon/lugia/anim1.asm create mode 100644 gfx/pokemon/lugia/back.2bpp.lz.ad953eb5 create mode 100644 gfx/pokemon/lugia/back.png create mode 100644 gfx/pokemon/lugia/front.animated.2bpp.lz.7293eddc create mode 100644 gfx/pokemon/lugia/front.png create mode 100644 gfx/pokemon/lugia/shiny.pal create mode 100644 gfx/pokemon/machamp/anim0.asm create mode 100644 gfx/pokemon/machamp/anim1.asm create mode 100644 gfx/pokemon/machamp/back.2bpp.lz.757f4c29 create mode 100644 gfx/pokemon/machamp/back.png create mode 100644 gfx/pokemon/machamp/front.animated.2bpp.lz.2d408542 create mode 100644 gfx/pokemon/machamp/front.png create mode 100644 gfx/pokemon/machamp/shiny.pal create mode 100644 gfx/pokemon/machoke/anim0.asm create mode 100644 gfx/pokemon/machoke/anim1.asm create mode 100644 gfx/pokemon/machoke/back.2bpp.lz.2634245e create mode 100644 gfx/pokemon/machoke/back.png create mode 100644 gfx/pokemon/machoke/front.animated.2bpp.lz.f38b95a7 create mode 100644 gfx/pokemon/machoke/front.png create mode 100644 gfx/pokemon/machoke/shiny.pal create mode 100644 gfx/pokemon/machop/anim0.asm create mode 100644 gfx/pokemon/machop/anim1.asm create mode 100644 gfx/pokemon/machop/back.2bpp.lz.bc17b50a create mode 100644 gfx/pokemon/machop/back.png create mode 100644 gfx/pokemon/machop/front.animated.2bpp.lz.0fd8735f create mode 100644 gfx/pokemon/machop/front.png create mode 100644 gfx/pokemon/machop/shiny.pal create mode 100644 gfx/pokemon/magby/anim0.asm create mode 100644 gfx/pokemon/magby/anim1.asm create mode 100644 gfx/pokemon/magby/back.2bpp.lz.e50ccadb create mode 100644 gfx/pokemon/magby/back.png create mode 100644 gfx/pokemon/magby/front.animated.2bpp.lz.172d0807 create mode 100644 gfx/pokemon/magby/front.png create mode 100644 gfx/pokemon/magby/shiny.pal create mode 100644 gfx/pokemon/magcargo/anim0.asm create mode 100644 gfx/pokemon/magcargo/anim1.asm create mode 100644 gfx/pokemon/magcargo/back.2bpp.lz.56b096bc create mode 100644 gfx/pokemon/magcargo/back.png create mode 100644 gfx/pokemon/magcargo/front.animated.2bpp.lz.53a425f4 create mode 100644 gfx/pokemon/magcargo/front.png create mode 100644 gfx/pokemon/magcargo/shiny.pal create mode 100644 gfx/pokemon/magikarp/anim0.asm create mode 100644 gfx/pokemon/magikarp/anim1.asm create mode 100644 gfx/pokemon/magikarp/back.2bpp.lz.7f25810a create mode 100644 gfx/pokemon/magikarp/back.png create mode 100644 gfx/pokemon/magikarp/front.animated.2bpp.lz.031ee449 create mode 100644 gfx/pokemon/magikarp/front.png create mode 100644 gfx/pokemon/magikarp/shiny.pal create mode 100644 gfx/pokemon/magmar/anim0.asm create mode 100644 gfx/pokemon/magmar/anim1.asm create mode 100644 gfx/pokemon/magmar/back.2bpp.lz.6916c87b create mode 100644 gfx/pokemon/magmar/back.png create mode 100644 gfx/pokemon/magmar/front.animated.2bpp.lz.0048e21c create mode 100644 gfx/pokemon/magmar/front.png create mode 100644 gfx/pokemon/magmar/shiny.pal create mode 100644 gfx/pokemon/magnemite/anim0.asm create mode 100644 gfx/pokemon/magnemite/anim1.asm create mode 100644 gfx/pokemon/magnemite/back.2bpp.lz.e00bd515 create mode 100644 gfx/pokemon/magnemite/back.png create mode 100644 gfx/pokemon/magnemite/front.animated.2bpp.lz.e4b07135 create mode 100644 gfx/pokemon/magnemite/front.png create mode 100644 gfx/pokemon/magnemite/shiny.pal create mode 100644 gfx/pokemon/magneton/anim0.asm create mode 100644 gfx/pokemon/magneton/anim1.asm create mode 100644 gfx/pokemon/magneton/back.2bpp.lz.f7a7089b create mode 100644 gfx/pokemon/magneton/back.png create mode 100644 gfx/pokemon/magneton/front.animated.2bpp.lz.cd3b65a6 create mode 100644 gfx/pokemon/magneton/front.png create mode 100644 gfx/pokemon/magneton/shiny.pal create mode 100644 gfx/pokemon/mankey/anim0.asm create mode 100644 gfx/pokemon/mankey/anim1.asm create mode 100644 gfx/pokemon/mankey/back.2bpp.lz.42cb1b61 create mode 100644 gfx/pokemon/mankey/back.png create mode 100644 gfx/pokemon/mankey/front.animated.2bpp.lz.48eac19a create mode 100644 gfx/pokemon/mankey/front.png create mode 100644 gfx/pokemon/mankey/shiny.pal create mode 100644 gfx/pokemon/mantine/anim0.asm create mode 100644 gfx/pokemon/mantine/anim1.asm create mode 100644 gfx/pokemon/mantine/back.2bpp.lz.1320b7f3 create mode 100644 gfx/pokemon/mantine/back.png create mode 100644 gfx/pokemon/mantine/front.animated.2bpp.lz.9eb40d04 create mode 100644 gfx/pokemon/mantine/front.png create mode 100644 gfx/pokemon/mantine/shiny.pal create mode 100644 gfx/pokemon/mareep/anim0.asm create mode 100644 gfx/pokemon/mareep/anim1.asm create mode 100644 gfx/pokemon/mareep/back.2bpp.lz.b9bdc89c create mode 100644 gfx/pokemon/mareep/back.png create mode 100644 gfx/pokemon/mareep/front.animated.2bpp.lz.f660483d create mode 100644 gfx/pokemon/mareep/front.png create mode 100644 gfx/pokemon/mareep/shiny.pal create mode 100644 gfx/pokemon/marill/anim0.asm create mode 100644 gfx/pokemon/marill/anim1.asm create mode 100644 gfx/pokemon/marill/back.2bpp.lz.87e2be16 create mode 100644 gfx/pokemon/marill/back.png create mode 100644 gfx/pokemon/marill/front.animated.2bpp.lz.7f742686 create mode 100644 gfx/pokemon/marill/front.png create mode 100644 gfx/pokemon/marill/shiny.pal create mode 100644 gfx/pokemon/marowak/anim0.asm create mode 100644 gfx/pokemon/marowak/anim1.asm create mode 100644 gfx/pokemon/marowak/back.2bpp.lz.055ba40e create mode 100644 gfx/pokemon/marowak/back.png create mode 100644 gfx/pokemon/marowak/front.animated.2bpp.lz.ef1553a0 create mode 100644 gfx/pokemon/marowak/front.png create mode 100644 gfx/pokemon/marowak/shiny.pal create mode 100644 gfx/pokemon/meganium/anim0.asm create mode 100644 gfx/pokemon/meganium/anim1.asm create mode 100644 gfx/pokemon/meganium/back.2bpp.lz.d25a5edb create mode 100644 gfx/pokemon/meganium/back.png create mode 100644 gfx/pokemon/meganium/front.animated.2bpp.lz.fe0b9df4 create mode 100644 gfx/pokemon/meganium/front.png create mode 100644 gfx/pokemon/meganium/shiny.pal create mode 100644 gfx/pokemon/meowth/anim0.asm create mode 100644 gfx/pokemon/meowth/anim1.asm create mode 100644 gfx/pokemon/meowth/back.2bpp.lz.4196bd91 create mode 100644 gfx/pokemon/meowth/back.png create mode 100644 gfx/pokemon/meowth/front.animated.2bpp.lz.144f12f0 create mode 100644 gfx/pokemon/meowth/front.png create mode 100644 gfx/pokemon/meowth/shiny.pal create mode 100644 gfx/pokemon/metapod/anim0.asm create mode 100644 gfx/pokemon/metapod/anim1.asm create mode 100644 gfx/pokemon/metapod/back.2bpp.lz.b580afc8 create mode 100644 gfx/pokemon/metapod/back.png create mode 100644 gfx/pokemon/metapod/front.animated.2bpp.lz.5025baa2 create mode 100644 gfx/pokemon/metapod/front.png create mode 100644 gfx/pokemon/metapod/shiny.pal create mode 100644 gfx/pokemon/mew/anim0.asm create mode 100644 gfx/pokemon/mew/anim1.asm create mode 100644 gfx/pokemon/mew/back.2bpp.lz.9947d6eb create mode 100644 gfx/pokemon/mew/back.png create mode 100644 gfx/pokemon/mew/front.animated.2bpp.lz.b6da9713 create mode 100644 gfx/pokemon/mew/front.png create mode 100644 gfx/pokemon/mew/shiny.pal create mode 100644 gfx/pokemon/mewtwo/anim0.asm create mode 100644 gfx/pokemon/mewtwo/anim1.asm create mode 100644 gfx/pokemon/mewtwo/back.2bpp.lz.a7d2c077 create mode 100644 gfx/pokemon/mewtwo/back.png create mode 100644 gfx/pokemon/mewtwo/front.animated.2bpp.lz.45e8b40d create mode 100644 gfx/pokemon/mewtwo/front.png create mode 100644 gfx/pokemon/mewtwo/shiny.pal create mode 100644 gfx/pokemon/miltank/anim0.asm create mode 100644 gfx/pokemon/miltank/anim1.asm create mode 100644 gfx/pokemon/miltank/back.2bpp.lz.b7787e72 create mode 100644 gfx/pokemon/miltank/back.png create mode 100644 gfx/pokemon/miltank/front.animated.2bpp.lz.91da7c3b create mode 100644 gfx/pokemon/miltank/front.png create mode 100644 gfx/pokemon/miltank/shiny.pal create mode 100644 gfx/pokemon/misdreavus/anim0.asm create mode 100644 gfx/pokemon/misdreavus/anim1.asm create mode 100644 gfx/pokemon/misdreavus/back.2bpp.lz.8bdebfce create mode 100644 gfx/pokemon/misdreavus/back.png create mode 100644 gfx/pokemon/misdreavus/front.animated.2bpp.lz.5f73baa2 create mode 100644 gfx/pokemon/misdreavus/front.png create mode 100644 gfx/pokemon/misdreavus/shiny.pal create mode 100644 gfx/pokemon/moltres/anim0.asm create mode 100644 gfx/pokemon/moltres/anim1.asm create mode 100644 gfx/pokemon/moltres/back.2bpp.lz.356242c8 create mode 100644 gfx/pokemon/moltres/back.png create mode 100644 gfx/pokemon/moltres/front.animated.2bpp.lz.281bc0ec create mode 100644 gfx/pokemon/moltres/front.png create mode 100644 gfx/pokemon/moltres/shiny.pal create mode 100644 gfx/pokemon/mr__mime/anim0.asm create mode 100644 gfx/pokemon/mr__mime/anim1.asm create mode 100644 gfx/pokemon/mr__mime/back.2bpp.lz.0fb88006 create mode 100644 gfx/pokemon/mr__mime/back.png create mode 100644 gfx/pokemon/mr__mime/front.animated.2bpp.lz.f948d1b8 create mode 100644 gfx/pokemon/mr__mime/front.png create mode 100644 gfx/pokemon/mr__mime/shiny.pal create mode 100644 gfx/pokemon/muk/anim0.asm create mode 100644 gfx/pokemon/muk/anim1.asm create mode 100644 gfx/pokemon/muk/back.2bpp.lz.a1f2f370 create mode 100644 gfx/pokemon/muk/back.png create mode 100644 gfx/pokemon/muk/front.animated.2bpp.lz.530363b2 create mode 100644 gfx/pokemon/muk/front.png create mode 100644 gfx/pokemon/muk/shiny.pal create mode 100644 gfx/pokemon/murkrow/anim0.asm create mode 100644 gfx/pokemon/murkrow/anim1.asm create mode 100644 gfx/pokemon/murkrow/back.2bpp.lz.0c347b5b create mode 100644 gfx/pokemon/murkrow/back.png create mode 100644 gfx/pokemon/murkrow/front.animated.2bpp.lz.5d2805e8 create mode 100644 gfx/pokemon/murkrow/front.png create mode 100644 gfx/pokemon/murkrow/shiny.pal create mode 100644 gfx/pokemon/natu/anim0.asm create mode 100644 gfx/pokemon/natu/anim1.asm create mode 100644 gfx/pokemon/natu/back.2bpp.lz.c8339fb4 create mode 100644 gfx/pokemon/natu/back.png create mode 100644 gfx/pokemon/natu/front.animated.2bpp.lz.997efaf6 create mode 100644 gfx/pokemon/natu/front.png create mode 100644 gfx/pokemon/natu/shiny.pal create mode 100644 gfx/pokemon/nidoking/anim0.asm create mode 100644 gfx/pokemon/nidoking/anim1.asm create mode 100644 gfx/pokemon/nidoking/back.2bpp.lz.93211604 create mode 100644 gfx/pokemon/nidoking/back.png create mode 100644 gfx/pokemon/nidoking/front.animated.2bpp.lz.bd38fa1e create mode 100644 gfx/pokemon/nidoking/front.png create mode 100644 gfx/pokemon/nidoking/shiny.pal create mode 100644 gfx/pokemon/nidoqueen/anim0.asm create mode 100644 gfx/pokemon/nidoqueen/anim1.asm create mode 100644 gfx/pokemon/nidoqueen/back.2bpp.lz.f1eb0f0c create mode 100644 gfx/pokemon/nidoqueen/back.png create mode 100644 gfx/pokemon/nidoqueen/front.animated.2bpp.lz.0bf11b0a create mode 100644 gfx/pokemon/nidoqueen/front.png create mode 100644 gfx/pokemon/nidoqueen/shiny.pal create mode 100644 gfx/pokemon/nidoran_f/anim0.asm create mode 100644 gfx/pokemon/nidoran_f/anim1.asm create mode 100644 gfx/pokemon/nidoran_f/back.2bpp.lz.9b6990f1 create mode 100644 gfx/pokemon/nidoran_f/back.png create mode 100644 gfx/pokemon/nidoran_f/front.animated.2bpp.lz.0a4602e7 create mode 100644 gfx/pokemon/nidoran_f/front.png create mode 100644 gfx/pokemon/nidoran_f/shiny.pal create mode 100644 gfx/pokemon/nidoran_m/anim0.asm create mode 100644 gfx/pokemon/nidoran_m/anim1.asm create mode 100644 gfx/pokemon/nidoran_m/back.2bpp.lz.c9e54720 create mode 100644 gfx/pokemon/nidoran_m/back.png create mode 100644 gfx/pokemon/nidoran_m/front.animated.2bpp.lz.b121beaa create mode 100644 gfx/pokemon/nidoran_m/front.png create mode 100644 gfx/pokemon/nidoran_m/shiny.pal create mode 100644 gfx/pokemon/nidorina/anim0.asm create mode 100644 gfx/pokemon/nidorina/anim1.asm create mode 100644 gfx/pokemon/nidorina/back.2bpp.lz.a00ecf4a create mode 100644 gfx/pokemon/nidorina/back.png create mode 100644 gfx/pokemon/nidorina/front.animated.2bpp.lz.51532540 create mode 100644 gfx/pokemon/nidorina/front.png create mode 100644 gfx/pokemon/nidorina/shiny.pal create mode 100644 gfx/pokemon/nidorino/anim0.asm create mode 100644 gfx/pokemon/nidorino/anim1.asm create mode 100644 gfx/pokemon/nidorino/back.2bpp.lz.8504fdd1 create mode 100644 gfx/pokemon/nidorino/back.png create mode 100644 gfx/pokemon/nidorino/front.animated.2bpp.lz.ba11ef23 create mode 100644 gfx/pokemon/nidorino/front.png create mode 100644 gfx/pokemon/nidorino/shiny.pal create mode 100644 gfx/pokemon/ninetales/anim0.asm create mode 100644 gfx/pokemon/ninetales/anim1.asm create mode 100644 gfx/pokemon/ninetales/back.2bpp.lz.999b3894 create mode 100644 gfx/pokemon/ninetales/back.png create mode 100644 gfx/pokemon/ninetales/front.animated.2bpp.lz.eef934ff create mode 100644 gfx/pokemon/ninetales/front.png create mode 100644 gfx/pokemon/ninetales/shiny.pal create mode 100644 gfx/pokemon/noctowl/anim0.asm create mode 100644 gfx/pokemon/noctowl/anim1.asm create mode 100644 gfx/pokemon/noctowl/back.2bpp.lz.9c8ac57f create mode 100644 gfx/pokemon/noctowl/back.png create mode 100644 gfx/pokemon/noctowl/front.animated.2bpp.lz.7d6594fe create mode 100644 gfx/pokemon/noctowl/front.png create mode 100644 gfx/pokemon/noctowl/shiny.pal create mode 100644 gfx/pokemon/octillery/anim0.asm create mode 100644 gfx/pokemon/octillery/anim1.asm create mode 100644 gfx/pokemon/octillery/back.2bpp.lz.48b6e47d create mode 100644 gfx/pokemon/octillery/back.png create mode 100644 gfx/pokemon/octillery/front.animated.2bpp.lz.de99954b create mode 100644 gfx/pokemon/octillery/front.png create mode 100644 gfx/pokemon/octillery/shiny.pal create mode 100644 gfx/pokemon/oddish/anim0.asm create mode 100644 gfx/pokemon/oddish/anim1.asm create mode 100644 gfx/pokemon/oddish/back.2bpp.lz.4f9ec682 create mode 100644 gfx/pokemon/oddish/back.png create mode 100644 gfx/pokemon/oddish/front.animated.2bpp.lz.ea2e0dcd create mode 100644 gfx/pokemon/oddish/front.png create mode 100644 gfx/pokemon/oddish/shiny.pal create mode 100644 gfx/pokemon/omanyte/anim0.asm create mode 100644 gfx/pokemon/omanyte/anim1.asm create mode 100644 gfx/pokemon/omanyte/back.2bpp.lz.f442a670 create mode 100644 gfx/pokemon/omanyte/back.png create mode 100644 gfx/pokemon/omanyte/front.animated.2bpp.lz.15b343dc create mode 100644 gfx/pokemon/omanyte/front.png create mode 100644 gfx/pokemon/omanyte/shiny.pal create mode 100644 gfx/pokemon/omastar/anim0.asm create mode 100644 gfx/pokemon/omastar/anim1.asm create mode 100644 gfx/pokemon/omastar/back.2bpp.lz.c75932db create mode 100644 gfx/pokemon/omastar/back.png create mode 100644 gfx/pokemon/omastar/front.animated.2bpp.lz.b3f6c3dc create mode 100644 gfx/pokemon/omastar/front.png create mode 100644 gfx/pokemon/omastar/shiny.pal create mode 100644 gfx/pokemon/onix/anim0.asm create mode 100644 gfx/pokemon/onix/anim1.asm create mode 100644 gfx/pokemon/onix/back.2bpp.lz.cb580eb9 create mode 100644 gfx/pokemon/onix/back.png create mode 100644 gfx/pokemon/onix/front.animated.2bpp.lz.84b7e9ef create mode 100644 gfx/pokemon/onix/front.png create mode 100644 gfx/pokemon/onix/shiny.pal create mode 100644 gfx/pokemon/palette_pointers.asm create mode 100644 gfx/pokemon/paras/anim0.asm create mode 100644 gfx/pokemon/paras/anim1.asm create mode 100644 gfx/pokemon/paras/back.2bpp.lz.b5a4d1e2 create mode 100644 gfx/pokemon/paras/back.png create mode 100644 gfx/pokemon/paras/front.animated.2bpp.lz.37a2c2f8 create mode 100644 gfx/pokemon/paras/front.png create mode 100644 gfx/pokemon/paras/shiny.pal create mode 100644 gfx/pokemon/parasect/anim0.asm create mode 100644 gfx/pokemon/parasect/anim1.asm create mode 100644 gfx/pokemon/parasect/back.2bpp.lz.ed08ef08 create mode 100644 gfx/pokemon/parasect/back.png create mode 100644 gfx/pokemon/parasect/front.animated.2bpp.lz.f78f9f36 create mode 100644 gfx/pokemon/parasect/front.png create mode 100644 gfx/pokemon/parasect/shiny.pal create mode 100644 gfx/pokemon/persian/anim0.asm create mode 100644 gfx/pokemon/persian/anim1.asm create mode 100644 gfx/pokemon/persian/back.2bpp.lz.0e1c1c9a create mode 100644 gfx/pokemon/persian/back.png create mode 100644 gfx/pokemon/persian/front.animated.2bpp.lz.0e6a2521 create mode 100644 gfx/pokemon/persian/front.png create mode 100644 gfx/pokemon/persian/shiny.pal create mode 100644 gfx/pokemon/phanpy/anim0.asm create mode 100644 gfx/pokemon/phanpy/anim1.asm create mode 100644 gfx/pokemon/phanpy/back.2bpp.lz.a5c509b8 create mode 100644 gfx/pokemon/phanpy/back.png create mode 100644 gfx/pokemon/phanpy/front.animated.2bpp.lz.53b49445 create mode 100644 gfx/pokemon/phanpy/front.png create mode 100644 gfx/pokemon/phanpy/shiny.pal create mode 100644 gfx/pokemon/pic_pointers.asm create mode 100644 gfx/pokemon/pichu/anim0.asm create mode 100644 gfx/pokemon/pichu/anim1.asm create mode 100644 gfx/pokemon/pichu/back.2bpp.lz.c5580983 create mode 100644 gfx/pokemon/pichu/back.png create mode 100644 gfx/pokemon/pichu/front.animated.2bpp.lz.9c1c3bef create mode 100644 gfx/pokemon/pichu/front.png create mode 100644 gfx/pokemon/pichu/shiny.pal create mode 100644 gfx/pokemon/pidgeot/anim0.asm create mode 100644 gfx/pokemon/pidgeot/anim1.asm create mode 100644 gfx/pokemon/pidgeot/back.2bpp.lz.7d9e44a5 create mode 100644 gfx/pokemon/pidgeot/back.png create mode 100644 gfx/pokemon/pidgeot/front.animated.2bpp.lz.c161ad71 create mode 100644 gfx/pokemon/pidgeot/front.png create mode 100644 gfx/pokemon/pidgeot/shiny.pal create mode 100644 gfx/pokemon/pidgeotto/anim0.asm create mode 100644 gfx/pokemon/pidgeotto/anim1.asm create mode 100644 gfx/pokemon/pidgeotto/back.2bpp.lz.8a0dd470 create mode 100644 gfx/pokemon/pidgeotto/back.png create mode 100644 gfx/pokemon/pidgeotto/front.animated.2bpp.lz.8ce78b51 create mode 100644 gfx/pokemon/pidgeotto/front.png create mode 100644 gfx/pokemon/pidgeotto/shiny.pal create mode 100644 gfx/pokemon/pidgey/anim0.asm create mode 100644 gfx/pokemon/pidgey/anim1.asm create mode 100644 gfx/pokemon/pidgey/back.2bpp.lz.027129e8 create mode 100644 gfx/pokemon/pidgey/back.png create mode 100644 gfx/pokemon/pidgey/front.animated.2bpp.lz.9acd46ca create mode 100644 gfx/pokemon/pidgey/front.png create mode 100644 gfx/pokemon/pidgey/shiny.pal create mode 100644 gfx/pokemon/pikachu/anim0.asm create mode 100644 gfx/pokemon/pikachu/anim1.asm create mode 100644 gfx/pokemon/pikachu/back.2bpp.lz.98998807 create mode 100644 gfx/pokemon/pikachu/back.png create mode 100644 gfx/pokemon/pikachu/front.animated.2bpp.lz.9c100565 create mode 100644 gfx/pokemon/pikachu/front.png create mode 100644 gfx/pokemon/pikachu/shiny.pal create mode 100644 gfx/pokemon/piloswine/anim0.asm create mode 100644 gfx/pokemon/piloswine/anim1.asm create mode 100644 gfx/pokemon/piloswine/back.2bpp.lz.6fe7da21 create mode 100644 gfx/pokemon/piloswine/back.png create mode 100644 gfx/pokemon/piloswine/front.animated.2bpp.lz.f6f37ed2 create mode 100644 gfx/pokemon/piloswine/front.png create mode 100644 gfx/pokemon/piloswine/shiny.pal create mode 100644 gfx/pokemon/pineco/anim0.asm create mode 100644 gfx/pokemon/pineco/anim1.asm create mode 100644 gfx/pokemon/pineco/back.2bpp.lz.70df8ca3 create mode 100644 gfx/pokemon/pineco/back.png create mode 100644 gfx/pokemon/pineco/front.animated.2bpp.lz.82d91497 create mode 100644 gfx/pokemon/pineco/front.png create mode 100644 gfx/pokemon/pineco/shiny.pal create mode 100644 gfx/pokemon/pinsir/anim0.asm create mode 100644 gfx/pokemon/pinsir/anim1.asm create mode 100644 gfx/pokemon/pinsir/back.2bpp.lz.09ac7dd4 create mode 100644 gfx/pokemon/pinsir/back.png create mode 100644 gfx/pokemon/pinsir/front.animated.2bpp.lz.1e3839f2 create mode 100644 gfx/pokemon/pinsir/front.png create mode 100644 gfx/pokemon/pinsir/shiny.pal create mode 100644 gfx/pokemon/politoed/anim0.asm create mode 100644 gfx/pokemon/politoed/anim1.asm create mode 100644 gfx/pokemon/politoed/back.2bpp.lz.7873e52f create mode 100644 gfx/pokemon/politoed/back.png create mode 100644 gfx/pokemon/politoed/front.animated.2bpp.lz.408a9c1a create mode 100644 gfx/pokemon/politoed/front.png create mode 100644 gfx/pokemon/politoed/shiny.pal create mode 100644 gfx/pokemon/poliwag/anim0.asm create mode 100644 gfx/pokemon/poliwag/anim1.asm create mode 100644 gfx/pokemon/poliwag/back.2bpp.lz.35b9ee20 create mode 100644 gfx/pokemon/poliwag/back.png create mode 100644 gfx/pokemon/poliwag/front.animated.2bpp.lz.c7d26488 create mode 100644 gfx/pokemon/poliwag/front.png create mode 100644 gfx/pokemon/poliwag/shiny.pal create mode 100644 gfx/pokemon/poliwhirl/anim0.asm create mode 100644 gfx/pokemon/poliwhirl/anim1.asm create mode 100644 gfx/pokemon/poliwhirl/back.2bpp.lz.76564593 create mode 100644 gfx/pokemon/poliwhirl/back.png create mode 100644 gfx/pokemon/poliwhirl/front.animated.2bpp.lz.9a36033f create mode 100644 gfx/pokemon/poliwhirl/front.png create mode 100644 gfx/pokemon/poliwhirl/shiny.pal create mode 100644 gfx/pokemon/poliwrath/anim0.asm create mode 100644 gfx/pokemon/poliwrath/anim1.asm create mode 100644 gfx/pokemon/poliwrath/back.2bpp.lz.240e911e create mode 100644 gfx/pokemon/poliwrath/back.png create mode 100644 gfx/pokemon/poliwrath/front.animated.2bpp.lz.fb1157ec create mode 100644 gfx/pokemon/poliwrath/front.png create mode 100644 gfx/pokemon/poliwrath/shiny.pal create mode 100644 gfx/pokemon/ponyta/anim0.asm create mode 100644 gfx/pokemon/ponyta/anim1.asm create mode 100644 gfx/pokemon/ponyta/back.2bpp.lz.10ddc7ea create mode 100644 gfx/pokemon/ponyta/back.png create mode 100644 gfx/pokemon/ponyta/front.animated.2bpp.lz.2c8708d6 create mode 100644 gfx/pokemon/ponyta/front.png create mode 100644 gfx/pokemon/ponyta/shiny.pal create mode 100644 gfx/pokemon/porygon/anim0.asm create mode 100644 gfx/pokemon/porygon/anim1.asm create mode 100644 gfx/pokemon/porygon/back.2bpp.lz.b3d71350 create mode 100644 gfx/pokemon/porygon/back.png create mode 100644 gfx/pokemon/porygon/front.animated.2bpp.lz.70fc1333 create mode 100644 gfx/pokemon/porygon/front.png create mode 100644 gfx/pokemon/porygon/shiny.pal create mode 100644 gfx/pokemon/porygon2/anim0.asm create mode 100644 gfx/pokemon/porygon2/anim1.asm create mode 100644 gfx/pokemon/porygon2/back.2bpp.lz.5bba6e40 create mode 100644 gfx/pokemon/porygon2/back.png create mode 100644 gfx/pokemon/porygon2/front.animated.2bpp.lz.a6410e75 create mode 100644 gfx/pokemon/porygon2/front.png create mode 100644 gfx/pokemon/porygon2/shiny.pal create mode 100644 gfx/pokemon/primeape/anim0.asm create mode 100644 gfx/pokemon/primeape/anim1.asm create mode 100644 gfx/pokemon/primeape/back.2bpp.lz.690e407d create mode 100644 gfx/pokemon/primeape/back.png create mode 100644 gfx/pokemon/primeape/front.animated.2bpp.lz.218352ec create mode 100644 gfx/pokemon/primeape/front.png create mode 100644 gfx/pokemon/primeape/shiny.pal create mode 100644 gfx/pokemon/psyduck/anim0.asm create mode 100644 gfx/pokemon/psyduck/anim1.asm create mode 100644 gfx/pokemon/psyduck/back.2bpp.lz.d68cddb2 create mode 100644 gfx/pokemon/psyduck/back.png create mode 100644 gfx/pokemon/psyduck/front.animated.2bpp.lz.e4efd065 create mode 100644 gfx/pokemon/psyduck/front.png create mode 100644 gfx/pokemon/psyduck/shiny.pal create mode 100644 gfx/pokemon/pupitar/anim0.asm create mode 100644 gfx/pokemon/pupitar/anim1.asm create mode 100644 gfx/pokemon/pupitar/back.2bpp.lz.100020c1 create mode 100644 gfx/pokemon/pupitar/back.png create mode 100644 gfx/pokemon/pupitar/front.animated.2bpp.lz.418c0962 create mode 100644 gfx/pokemon/pupitar/front.png create mode 100644 gfx/pokemon/pupitar/shiny.pal create mode 100644 gfx/pokemon/quagsire/anim0.asm create mode 100644 gfx/pokemon/quagsire/anim1.asm create mode 100644 gfx/pokemon/quagsire/back.2bpp.lz.64b2ec05 create mode 100644 gfx/pokemon/quagsire/back.png create mode 100644 gfx/pokemon/quagsire/front.animated.2bpp.lz.bd292a94 create mode 100644 gfx/pokemon/quagsire/front.png create mode 100644 gfx/pokemon/quagsire/shiny.pal create mode 100644 gfx/pokemon/questionmark/front.2bpp.lz.14c284f5 create mode 100644 gfx/pokemon/questionmark/front.png create mode 100644 gfx/pokemon/quilava/anim0.asm create mode 100644 gfx/pokemon/quilava/anim1.asm create mode 100644 gfx/pokemon/quilava/back.2bpp.lz.500906e1 create mode 100644 gfx/pokemon/quilava/back.png create mode 100644 gfx/pokemon/quilava/front.animated.2bpp.lz.f42f4c67 create mode 100644 gfx/pokemon/quilava/front.png create mode 100644 gfx/pokemon/quilava/shiny.pal create mode 100644 gfx/pokemon/qwilfish/anim0.asm create mode 100644 gfx/pokemon/qwilfish/anim1.asm create mode 100644 gfx/pokemon/qwilfish/back.2bpp.lz.b2bb83c6 create mode 100644 gfx/pokemon/qwilfish/back.png create mode 100644 gfx/pokemon/qwilfish/front.animated.2bpp.lz.9e79c033 create mode 100644 gfx/pokemon/qwilfish/front.png create mode 100644 gfx/pokemon/qwilfish/shiny.pal create mode 100644 gfx/pokemon/raichu/anim0.asm create mode 100644 gfx/pokemon/raichu/anim1.asm create mode 100644 gfx/pokemon/raichu/back.2bpp.lz.fa4c7423 create mode 100644 gfx/pokemon/raichu/back.png create mode 100644 gfx/pokemon/raichu/front.animated.2bpp.lz.25f943cb create mode 100644 gfx/pokemon/raichu/front.png create mode 100644 gfx/pokemon/raichu/shiny.pal create mode 100644 gfx/pokemon/raikou/anim0.asm create mode 100644 gfx/pokemon/raikou/anim1.asm create mode 100644 gfx/pokemon/raikou/back.2bpp.lz.657ddfaf create mode 100644 gfx/pokemon/raikou/back.png create mode 100644 gfx/pokemon/raikou/front.animated.2bpp.lz.464b6fd7 create mode 100644 gfx/pokemon/raikou/front.png create mode 100644 gfx/pokemon/raikou/shiny.pal create mode 100644 gfx/pokemon/rapidash/anim0.asm create mode 100644 gfx/pokemon/rapidash/anim1.asm create mode 100644 gfx/pokemon/rapidash/back.2bpp.lz.fdd1946c create mode 100644 gfx/pokemon/rapidash/back.png create mode 100644 gfx/pokemon/rapidash/front.animated.2bpp.lz.d5ac5a96 create mode 100644 gfx/pokemon/rapidash/front.png create mode 100644 gfx/pokemon/rapidash/shiny.pal create mode 100644 gfx/pokemon/raticate/anim0.asm create mode 100644 gfx/pokemon/raticate/anim1.asm create mode 100644 gfx/pokemon/raticate/back.2bpp.lz.b2a77d02 create mode 100644 gfx/pokemon/raticate/back.png create mode 100644 gfx/pokemon/raticate/front.animated.2bpp.lz.ef1a4689 create mode 100644 gfx/pokemon/raticate/front.png create mode 100644 gfx/pokemon/raticate/shiny.pal create mode 100644 gfx/pokemon/rattata/anim0.asm create mode 100644 gfx/pokemon/rattata/anim1.asm create mode 100644 gfx/pokemon/rattata/back.2bpp.lz.86979cd5 create mode 100644 gfx/pokemon/rattata/back.png create mode 100644 gfx/pokemon/rattata/front.animated.2bpp.lz.5bdaea2b create mode 100644 gfx/pokemon/rattata/front.png create mode 100644 gfx/pokemon/rattata/shiny.pal create mode 100644 gfx/pokemon/remoraid/anim0.asm create mode 100644 gfx/pokemon/remoraid/anim1.asm create mode 100644 gfx/pokemon/remoraid/back.2bpp.lz.8a6e4f29 create mode 100644 gfx/pokemon/remoraid/back.png create mode 100644 gfx/pokemon/remoraid/front.animated.2bpp.lz.4eaf1230 create mode 100644 gfx/pokemon/remoraid/front.png create mode 100644 gfx/pokemon/remoraid/shiny.pal create mode 100644 gfx/pokemon/rhydon/anim0.asm create mode 100644 gfx/pokemon/rhydon/anim1.asm create mode 100644 gfx/pokemon/rhydon/back.2bpp.lz.4a3ea4af create mode 100644 gfx/pokemon/rhydon/back.png create mode 100644 gfx/pokemon/rhydon/front.animated.2bpp.lz.7257fc4f create mode 100644 gfx/pokemon/rhydon/front.png create mode 100644 gfx/pokemon/rhydon/shiny.pal create mode 100644 gfx/pokemon/rhyhorn/anim0.asm create mode 100644 gfx/pokemon/rhyhorn/anim1.asm create mode 100644 gfx/pokemon/rhyhorn/back.2bpp.lz.b9a8e755 create mode 100644 gfx/pokemon/rhyhorn/back.png create mode 100644 gfx/pokemon/rhyhorn/front.animated.2bpp.lz.bdfdf7dc create mode 100644 gfx/pokemon/rhyhorn/front.png create mode 100644 gfx/pokemon/rhyhorn/shiny.pal create mode 100644 gfx/pokemon/sandshrew/anim0.asm create mode 100644 gfx/pokemon/sandshrew/anim1.asm create mode 100644 gfx/pokemon/sandshrew/back.2bpp.lz.7655193f create mode 100644 gfx/pokemon/sandshrew/back.png create mode 100644 gfx/pokemon/sandshrew/front.animated.2bpp.lz.758def3d create mode 100644 gfx/pokemon/sandshrew/front.png create mode 100644 gfx/pokemon/sandshrew/shiny.pal create mode 100644 gfx/pokemon/sandslash/anim0.asm create mode 100644 gfx/pokemon/sandslash/anim1.asm create mode 100644 gfx/pokemon/sandslash/back.2bpp.lz.2999f4c6 create mode 100644 gfx/pokemon/sandslash/back.png create mode 100644 gfx/pokemon/sandslash/front.animated.2bpp.lz.d6498722 create mode 100644 gfx/pokemon/sandslash/front.png create mode 100644 gfx/pokemon/sandslash/shiny.pal create mode 100644 gfx/pokemon/scizor/anim0.asm create mode 100644 gfx/pokemon/scizor/anim1.asm create mode 100644 gfx/pokemon/scizor/back.2bpp.lz.85149f27 create mode 100644 gfx/pokemon/scizor/back.png create mode 100644 gfx/pokemon/scizor/front.animated.2bpp.lz.afd0131a create mode 100644 gfx/pokemon/scizor/front.png create mode 100644 gfx/pokemon/scizor/shiny.pal create mode 100644 gfx/pokemon/scyther/anim0.asm create mode 100644 gfx/pokemon/scyther/anim1.asm create mode 100644 gfx/pokemon/scyther/back.2bpp.lz.1d7f8a87 create mode 100644 gfx/pokemon/scyther/back.png create mode 100644 gfx/pokemon/scyther/front.animated.2bpp.lz.86d1a281 create mode 100644 gfx/pokemon/scyther/front.png create mode 100644 gfx/pokemon/scyther/shiny.pal create mode 100644 gfx/pokemon/seadra/anim0.asm create mode 100644 gfx/pokemon/seadra/anim1.asm create mode 100644 gfx/pokemon/seadra/back.2bpp.lz.354a02e4 create mode 100644 gfx/pokemon/seadra/back.png create mode 100644 gfx/pokemon/seadra/front.animated.2bpp.lz.efa9c88c create mode 100644 gfx/pokemon/seadra/front.png create mode 100644 gfx/pokemon/seadra/shiny.pal create mode 100644 gfx/pokemon/seaking/anim0.asm create mode 100644 gfx/pokemon/seaking/anim1.asm create mode 100644 gfx/pokemon/seaking/back.2bpp.lz.3e699249 create mode 100644 gfx/pokemon/seaking/back.png create mode 100644 gfx/pokemon/seaking/front.animated.2bpp.lz.fb4eb288 create mode 100644 gfx/pokemon/seaking/front.png create mode 100644 gfx/pokemon/seaking/shiny.pal create mode 100644 gfx/pokemon/seel/anim0.asm create mode 100644 gfx/pokemon/seel/anim1.asm create mode 100644 gfx/pokemon/seel/back.2bpp.lz.518a4d40 create mode 100644 gfx/pokemon/seel/back.png create mode 100644 gfx/pokemon/seel/front.animated.2bpp.lz.2dc48023 create mode 100644 gfx/pokemon/seel/front.png create mode 100644 gfx/pokemon/seel/shiny.pal create mode 100644 gfx/pokemon/sentret/anim0.asm create mode 100644 gfx/pokemon/sentret/anim1.asm create mode 100644 gfx/pokemon/sentret/back.2bpp.lz.c19b7f3b create mode 100644 gfx/pokemon/sentret/back.png create mode 100644 gfx/pokemon/sentret/front.animated.2bpp.lz.07c594c0 create mode 100644 gfx/pokemon/sentret/front.png create mode 100644 gfx/pokemon/sentret/shiny.pal create mode 100644 gfx/pokemon/shellder/anim0.asm create mode 100644 gfx/pokemon/shellder/anim1.asm create mode 100644 gfx/pokemon/shellder/back.2bpp.lz.61e27953 create mode 100644 gfx/pokemon/shellder/back.png create mode 100644 gfx/pokemon/shellder/front.animated.2bpp.lz.df57d475 create mode 100644 gfx/pokemon/shellder/front.png create mode 100644 gfx/pokemon/shellder/shiny.pal create mode 100644 gfx/pokemon/shuckle/anim0.asm create mode 100644 gfx/pokemon/shuckle/anim1.asm create mode 100644 gfx/pokemon/shuckle/back.2bpp.lz.8d66899b create mode 100644 gfx/pokemon/shuckle/back.png create mode 100644 gfx/pokemon/shuckle/front.animated.2bpp.lz.dee153d4 create mode 100644 gfx/pokemon/shuckle/front.png create mode 100644 gfx/pokemon/shuckle/shiny.pal create mode 100644 gfx/pokemon/skarmory/anim0.asm create mode 100644 gfx/pokemon/skarmory/anim1.asm create mode 100644 gfx/pokemon/skarmory/back.2bpp.lz.f5e2e2e4 create mode 100644 gfx/pokemon/skarmory/back.png create mode 100644 gfx/pokemon/skarmory/front.animated.2bpp.lz.7de4675e create mode 100644 gfx/pokemon/skarmory/front.png create mode 100644 gfx/pokemon/skarmory/shiny.pal create mode 100644 gfx/pokemon/skiploom/anim0.asm create mode 100644 gfx/pokemon/skiploom/anim1.asm create mode 100644 gfx/pokemon/skiploom/back.2bpp.lz.54e87a0c create mode 100644 gfx/pokemon/skiploom/back.png create mode 100644 gfx/pokemon/skiploom/front.animated.2bpp.lz.6436d556 create mode 100644 gfx/pokemon/skiploom/front.png create mode 100644 gfx/pokemon/skiploom/shiny.pal create mode 100644 gfx/pokemon/slowbro/anim0.asm create mode 100644 gfx/pokemon/slowbro/anim1.asm create mode 100644 gfx/pokemon/slowbro/back.2bpp.lz.3676b1f1 create mode 100644 gfx/pokemon/slowbro/back.png create mode 100644 gfx/pokemon/slowbro/front.animated.2bpp.lz.257e2e84 create mode 100644 gfx/pokemon/slowbro/front.png create mode 100644 gfx/pokemon/slowbro/shiny.pal create mode 100644 gfx/pokemon/slowking/anim0.asm create mode 100644 gfx/pokemon/slowking/anim1.asm create mode 100644 gfx/pokemon/slowking/back.2bpp.lz.a90de69e create mode 100644 gfx/pokemon/slowking/back.png create mode 100644 gfx/pokemon/slowking/front.animated.2bpp.lz.4c2f7140 create mode 100644 gfx/pokemon/slowking/front.png create mode 100644 gfx/pokemon/slowking/shiny.pal create mode 100644 gfx/pokemon/slowpoke/anim0.asm create mode 100644 gfx/pokemon/slowpoke/anim1.asm create mode 100644 gfx/pokemon/slowpoke/back.2bpp.lz.f2d1bb5c create mode 100644 gfx/pokemon/slowpoke/back.png create mode 100644 gfx/pokemon/slowpoke/front.animated.2bpp.lz.42347014 create mode 100644 gfx/pokemon/slowpoke/front.png create mode 100644 gfx/pokemon/slowpoke/shiny.pal create mode 100644 gfx/pokemon/slugma/anim0.asm create mode 100644 gfx/pokemon/slugma/anim1.asm create mode 100644 gfx/pokemon/slugma/back.2bpp.lz.dc25c77a create mode 100644 gfx/pokemon/slugma/back.png create mode 100644 gfx/pokemon/slugma/front.animated.2bpp.lz.c1a44906 create mode 100644 gfx/pokemon/slugma/front.png create mode 100644 gfx/pokemon/slugma/shiny.pal create mode 100644 gfx/pokemon/smeargle/anim0.asm create mode 100644 gfx/pokemon/smeargle/anim1.asm create mode 100644 gfx/pokemon/smeargle/back.2bpp.lz.2de2de8c create mode 100644 gfx/pokemon/smeargle/back.png create mode 100644 gfx/pokemon/smeargle/front.animated.2bpp.lz.82ec0f51 create mode 100644 gfx/pokemon/smeargle/front.png create mode 100644 gfx/pokemon/smeargle/shiny.pal create mode 100644 gfx/pokemon/smoochum/anim0.asm create mode 100644 gfx/pokemon/smoochum/anim1.asm create mode 100644 gfx/pokemon/smoochum/back.2bpp.lz.af01f906 create mode 100644 gfx/pokemon/smoochum/back.png create mode 100644 gfx/pokemon/smoochum/front.animated.2bpp.lz.5977720b create mode 100644 gfx/pokemon/smoochum/front.png create mode 100644 gfx/pokemon/smoochum/shiny.pal create mode 100644 gfx/pokemon/sneasel/anim0.asm create mode 100644 gfx/pokemon/sneasel/anim1.asm create mode 100644 gfx/pokemon/sneasel/back.2bpp.lz.5298828d create mode 100644 gfx/pokemon/sneasel/back.png create mode 100644 gfx/pokemon/sneasel/front.animated.2bpp.lz.8f7db3e9 create mode 100644 gfx/pokemon/sneasel/front.png create mode 100644 gfx/pokemon/sneasel/shiny.pal create mode 100644 gfx/pokemon/snorlax/anim0.asm create mode 100644 gfx/pokemon/snorlax/anim1.asm create mode 100644 gfx/pokemon/snorlax/back.2bpp.lz.90570272 create mode 100644 gfx/pokemon/snorlax/back.png create mode 100644 gfx/pokemon/snorlax/front.animated.2bpp.lz.8253357b create mode 100644 gfx/pokemon/snorlax/front.png create mode 100644 gfx/pokemon/snorlax/shiny.pal create mode 100644 gfx/pokemon/snubbull/anim0.asm create mode 100644 gfx/pokemon/snubbull/anim1.asm create mode 100644 gfx/pokemon/snubbull/back.2bpp.lz.26eaaa5d create mode 100644 gfx/pokemon/snubbull/back.png create mode 100644 gfx/pokemon/snubbull/front.animated.2bpp.lz.a1b4eb88 create mode 100644 gfx/pokemon/snubbull/front.png create mode 100644 gfx/pokemon/snubbull/shiny.pal create mode 100644 gfx/pokemon/spearow/anim0.asm create mode 100644 gfx/pokemon/spearow/anim1.asm create mode 100644 gfx/pokemon/spearow/back.2bpp.lz.b8e760aa create mode 100644 gfx/pokemon/spearow/back.png create mode 100644 gfx/pokemon/spearow/front.animated.2bpp.lz.59d61986 create mode 100644 gfx/pokemon/spearow/front.png create mode 100644 gfx/pokemon/spearow/shiny.pal create mode 100644 gfx/pokemon/spinarak/anim0.asm create mode 100644 gfx/pokemon/spinarak/anim1.asm create mode 100644 gfx/pokemon/spinarak/back.2bpp.lz.14002836 create mode 100644 gfx/pokemon/spinarak/back.png create mode 100644 gfx/pokemon/spinarak/front.animated.2bpp.lz.31ab6868 create mode 100644 gfx/pokemon/spinarak/front.png create mode 100644 gfx/pokemon/spinarak/shiny.pal create mode 100644 gfx/pokemon/squirtle/anim0.asm create mode 100644 gfx/pokemon/squirtle/anim1.asm create mode 100644 gfx/pokemon/squirtle/back.2bpp.lz.76295ae8 create mode 100644 gfx/pokemon/squirtle/back.png create mode 100644 gfx/pokemon/squirtle/front.animated.2bpp.lz.9b6f9ec9 create mode 100644 gfx/pokemon/squirtle/front.png create mode 100644 gfx/pokemon/squirtle/shiny.pal create mode 100644 gfx/pokemon/stantler/anim0.asm create mode 100644 gfx/pokemon/stantler/anim1.asm create mode 100644 gfx/pokemon/stantler/back.2bpp.lz.16502aac create mode 100644 gfx/pokemon/stantler/back.png create mode 100644 gfx/pokemon/stantler/front.animated.2bpp.lz.46b7dd06 create mode 100644 gfx/pokemon/stantler/front.png create mode 100644 gfx/pokemon/stantler/shiny.pal create mode 100644 gfx/pokemon/starmie/anim0.asm create mode 100644 gfx/pokemon/starmie/anim1.asm create mode 100644 gfx/pokemon/starmie/back.2bpp.lz.a8923741 create mode 100644 gfx/pokemon/starmie/back.png create mode 100644 gfx/pokemon/starmie/front.animated.2bpp.lz.522b6699 create mode 100644 gfx/pokemon/starmie/front.png create mode 100644 gfx/pokemon/starmie/shiny.pal create mode 100644 gfx/pokemon/staryu/anim0.asm create mode 100644 gfx/pokemon/staryu/anim1.asm create mode 100644 gfx/pokemon/staryu/back.2bpp.lz.79ea9d00 create mode 100644 gfx/pokemon/staryu/back.png create mode 100644 gfx/pokemon/staryu/front.animated.2bpp.lz.22f1d06b create mode 100644 gfx/pokemon/staryu/front.png create mode 100644 gfx/pokemon/staryu/shiny.pal create mode 100644 gfx/pokemon/steelix/anim0.asm create mode 100644 gfx/pokemon/steelix/anim1.asm create mode 100644 gfx/pokemon/steelix/back.2bpp.lz.f3c03e61 create mode 100644 gfx/pokemon/steelix/back.png create mode 100644 gfx/pokemon/steelix/front.animated.2bpp.lz.42f3f8d1 create mode 100644 gfx/pokemon/steelix/front.png create mode 100644 gfx/pokemon/steelix/shiny.pal create mode 100644 gfx/pokemon/sudowoodo/anim0.asm create mode 100644 gfx/pokemon/sudowoodo/anim1.asm create mode 100644 gfx/pokemon/sudowoodo/back.2bpp.lz.728036c6 create mode 100644 gfx/pokemon/sudowoodo/back.png create mode 100644 gfx/pokemon/sudowoodo/front.animated.2bpp.lz.b0f04991 create mode 100644 gfx/pokemon/sudowoodo/front.png create mode 100644 gfx/pokemon/sudowoodo/shiny.pal create mode 100644 gfx/pokemon/suicune/anim0.asm create mode 100644 gfx/pokemon/suicune/anim1.asm create mode 100644 gfx/pokemon/suicune/back.2bpp.lz.5c49d112 create mode 100644 gfx/pokemon/suicune/back.png create mode 100644 gfx/pokemon/suicune/front.animated.2bpp.lz.64698c0a create mode 100644 gfx/pokemon/suicune/front.png create mode 100644 gfx/pokemon/suicune/shiny.pal create mode 100644 gfx/pokemon/sunflora/anim0.asm create mode 100644 gfx/pokemon/sunflora/anim1.asm create mode 100644 gfx/pokemon/sunflora/back.2bpp.lz.9d0684f0 create mode 100644 gfx/pokemon/sunflora/back.png create mode 100644 gfx/pokemon/sunflora/front.animated.2bpp.lz.258c3e67 create mode 100644 gfx/pokemon/sunflora/front.png create mode 100644 gfx/pokemon/sunflora/shiny.pal create mode 100644 gfx/pokemon/sunkern/anim0.asm create mode 100644 gfx/pokemon/sunkern/anim1.asm create mode 100644 gfx/pokemon/sunkern/back.2bpp.lz.d28f6303 create mode 100644 gfx/pokemon/sunkern/back.png create mode 100644 gfx/pokemon/sunkern/front.animated.2bpp.lz.316c5261 create mode 100644 gfx/pokemon/sunkern/front.png create mode 100644 gfx/pokemon/sunkern/shiny.pal create mode 100644 gfx/pokemon/swinub/anim0.asm create mode 100644 gfx/pokemon/swinub/anim1.asm create mode 100644 gfx/pokemon/swinub/back.2bpp.lz.1ebbfabf create mode 100644 gfx/pokemon/swinub/back.png create mode 100644 gfx/pokemon/swinub/front.animated.2bpp.lz.228147a5 create mode 100644 gfx/pokemon/swinub/front.png create mode 100644 gfx/pokemon/swinub/shiny.pal create mode 100644 gfx/pokemon/tangela/anim0.asm create mode 100644 gfx/pokemon/tangela/anim1.asm create mode 100644 gfx/pokemon/tangela/back.2bpp.lz.435194a6 create mode 100644 gfx/pokemon/tangela/back.png create mode 100644 gfx/pokemon/tangela/front.animated.2bpp.lz.7cb3fed8 create mode 100644 gfx/pokemon/tangela/front.png create mode 100644 gfx/pokemon/tangela/shiny.pal create mode 100644 gfx/pokemon/tauros/anim0.asm create mode 100644 gfx/pokemon/tauros/anim1.asm create mode 100644 gfx/pokemon/tauros/back.2bpp.lz.f487c586 create mode 100644 gfx/pokemon/tauros/back.png create mode 100644 gfx/pokemon/tauros/front.animated.2bpp.lz.982dd0db create mode 100644 gfx/pokemon/tauros/front.png create mode 100644 gfx/pokemon/tauros/shiny.pal create mode 100644 gfx/pokemon/teddiursa/anim0.asm create mode 100644 gfx/pokemon/teddiursa/anim1.asm create mode 100644 gfx/pokemon/teddiursa/back.2bpp.lz.53f6e34e create mode 100644 gfx/pokemon/teddiursa/back.png create mode 100644 gfx/pokemon/teddiursa/front.animated.2bpp.lz.5f9648c7 create mode 100644 gfx/pokemon/teddiursa/front.png create mode 100644 gfx/pokemon/teddiursa/shiny.pal create mode 100644 gfx/pokemon/tentacool/anim0.asm create mode 100644 gfx/pokemon/tentacool/anim1.asm create mode 100644 gfx/pokemon/tentacool/back.2bpp.lz.ae7b2102 create mode 100644 gfx/pokemon/tentacool/back.png create mode 100644 gfx/pokemon/tentacool/front.animated.2bpp.lz.7a86457c create mode 100644 gfx/pokemon/tentacool/front.png create mode 100644 gfx/pokemon/tentacool/shiny.pal create mode 100644 gfx/pokemon/tentacruel/anim0.asm create mode 100644 gfx/pokemon/tentacruel/anim1.asm create mode 100644 gfx/pokemon/tentacruel/back.2bpp.lz.0e344f19 create mode 100644 gfx/pokemon/tentacruel/back.png create mode 100644 gfx/pokemon/tentacruel/front.animated.2bpp.lz.f13e5904 create mode 100644 gfx/pokemon/tentacruel/front.png create mode 100644 gfx/pokemon/tentacruel/shiny.pal create mode 100644 gfx/pokemon/togepi/anim0.asm create mode 100644 gfx/pokemon/togepi/anim1.asm create mode 100644 gfx/pokemon/togepi/back.2bpp.lz.0e22cc02 create mode 100644 gfx/pokemon/togepi/back.png create mode 100644 gfx/pokemon/togepi/front.animated.2bpp.lz.0cf7ba07 create mode 100644 gfx/pokemon/togepi/front.png create mode 100644 gfx/pokemon/togepi/shiny.pal create mode 100644 gfx/pokemon/togetic/anim0.asm create mode 100644 gfx/pokemon/togetic/anim1.asm create mode 100644 gfx/pokemon/togetic/back.2bpp.lz.62cbb330 create mode 100644 gfx/pokemon/togetic/back.png create mode 100644 gfx/pokemon/togetic/front.animated.2bpp.lz.5797583e create mode 100644 gfx/pokemon/togetic/front.png create mode 100644 gfx/pokemon/togetic/shiny.pal create mode 100644 gfx/pokemon/totodile/anim0.asm create mode 100644 gfx/pokemon/totodile/anim1.asm create mode 100644 gfx/pokemon/totodile/back.2bpp.lz.ab6bc2a1 create mode 100644 gfx/pokemon/totodile/back.png create mode 100644 gfx/pokemon/totodile/front.animated.2bpp.lz.afce8cd0 create mode 100644 gfx/pokemon/totodile/front.png create mode 100644 gfx/pokemon/totodile/shiny.pal create mode 100644 gfx/pokemon/typhlosion/anim0.asm create mode 100644 gfx/pokemon/typhlosion/anim1.asm create mode 100644 gfx/pokemon/typhlosion/back.2bpp.lz.83be0292 create mode 100644 gfx/pokemon/typhlosion/back.png create mode 100644 gfx/pokemon/typhlosion/front.animated.2bpp.lz.65adc1e1 create mode 100644 gfx/pokemon/typhlosion/front.png create mode 100644 gfx/pokemon/typhlosion/shiny.pal create mode 100644 gfx/pokemon/tyranitar/anim0.asm create mode 100644 gfx/pokemon/tyranitar/anim1.asm create mode 100644 gfx/pokemon/tyranitar/back.2bpp.lz.05b022c9 create mode 100644 gfx/pokemon/tyranitar/back.png create mode 100644 gfx/pokemon/tyranitar/front.animated.2bpp.lz.e0e9187e create mode 100644 gfx/pokemon/tyranitar/front.png create mode 100644 gfx/pokemon/tyranitar/shiny.pal create mode 100644 gfx/pokemon/tyrogue/anim0.asm create mode 100644 gfx/pokemon/tyrogue/anim1.asm create mode 100644 gfx/pokemon/tyrogue/back.2bpp.lz.5d84cef1 create mode 100644 gfx/pokemon/tyrogue/back.png create mode 100644 gfx/pokemon/tyrogue/front.animated.2bpp.lz.a3790421 create mode 100644 gfx/pokemon/tyrogue/front.png create mode 100644 gfx/pokemon/tyrogue/shiny.pal create mode 100644 gfx/pokemon/umbreon/anim0.asm create mode 100644 gfx/pokemon/umbreon/anim1.asm create mode 100644 gfx/pokemon/umbreon/back.2bpp.lz.55e50b8c create mode 100644 gfx/pokemon/umbreon/back.png create mode 100644 gfx/pokemon/umbreon/front.animated.2bpp.lz.b484be57 create mode 100644 gfx/pokemon/umbreon/front.png create mode 100644 gfx/pokemon/umbreon/shiny.pal create mode 100644 gfx/pokemon/unown/anim0.asm create mode 100644 gfx/pokemon/unown/anim1.asm create mode 100644 gfx/pokemon/unown/bitmask.asm create mode 100644 gfx/pokemon/unown/frames.asm create mode 100644 gfx/pokemon/unown/normal.pal create mode 100644 gfx/pokemon/unown/shiny.pal create mode 100644 gfx/pokemon/unown_a/anim0.asm create mode 100644 gfx/pokemon/unown_a/anim1.asm create mode 100644 gfx/pokemon/unown_a/back.2bpp.lz.b8389572 create mode 100644 gfx/pokemon/unown_a/back.png create mode 100644 gfx/pokemon/unown_a/front.animated.2bpp.lz.47e16756 create mode 100644 gfx/pokemon/unown_a/front.png create mode 100644 gfx/pokemon/unown_anim_pointers.asm create mode 100644 gfx/pokemon/unown_anims.asm create mode 100644 gfx/pokemon/unown_b/anim0.asm create mode 100644 gfx/pokemon/unown_b/anim1.asm create mode 100644 gfx/pokemon/unown_b/back.2bpp.lz.72a0840f create mode 100644 gfx/pokemon/unown_b/back.png create mode 100644 gfx/pokemon/unown_b/front.animated.2bpp.lz.5742d494 create mode 100644 gfx/pokemon/unown_b/front.png create mode 100644 gfx/pokemon/unown_bitmask_pointers.asm create mode 100644 gfx/pokemon/unown_bitmasks.asm create mode 100644 gfx/pokemon/unown_c/anim0.asm create mode 100644 gfx/pokemon/unown_c/anim1.asm create mode 100644 gfx/pokemon/unown_c/back.2bpp.lz.f92b665a create mode 100644 gfx/pokemon/unown_c/back.png create mode 100644 gfx/pokemon/unown_c/front.animated.2bpp.lz.5fef639b create mode 100644 gfx/pokemon/unown_c/front.png create mode 100644 gfx/pokemon/unown_d/anim0.asm create mode 100644 gfx/pokemon/unown_d/anim1.asm create mode 100644 gfx/pokemon/unown_d/back.2bpp.lz.c8213d32 create mode 100644 gfx/pokemon/unown_d/back.png create mode 100644 gfx/pokemon/unown_d/front.animated.2bpp.lz.7810a57f create mode 100644 gfx/pokemon/unown_d/front.png create mode 100644 gfx/pokemon/unown_e/anim0.asm create mode 100644 gfx/pokemon/unown_e/anim1.asm create mode 100644 gfx/pokemon/unown_e/back.2bpp.lz.777a8ecd create mode 100644 gfx/pokemon/unown_e/back.png create mode 100644 gfx/pokemon/unown_e/front.animated.2bpp.lz.83f43ff7 create mode 100644 gfx/pokemon/unown_e/front.png create mode 100644 gfx/pokemon/unown_extra_pointers.asm create mode 100644 gfx/pokemon/unown_extras.asm create mode 100644 gfx/pokemon/unown_f/anim0.asm create mode 100644 gfx/pokemon/unown_f/anim1.asm create mode 100644 gfx/pokemon/unown_f/back.2bpp.lz.3fe1c85a create mode 100644 gfx/pokemon/unown_f/back.png create mode 100644 gfx/pokemon/unown_f/front.animated.2bpp.lz.ec888954 create mode 100644 gfx/pokemon/unown_f/front.png create mode 100644 gfx/pokemon/unown_frame_pointers.asm create mode 100644 gfx/pokemon/unown_frames.asm create mode 100644 gfx/pokemon/unown_g/anim0.asm create mode 100644 gfx/pokemon/unown_g/anim1.asm create mode 100644 gfx/pokemon/unown_g/back.2bpp.lz.91650439 create mode 100644 gfx/pokemon/unown_g/back.png create mode 100644 gfx/pokemon/unown_g/front.animated.2bpp.lz.c0b74162 create mode 100644 gfx/pokemon/unown_g/front.png create mode 100644 gfx/pokemon/unown_h/anim0.asm create mode 100644 gfx/pokemon/unown_h/anim1.asm create mode 100644 gfx/pokemon/unown_h/back.2bpp.lz.78421e5b create mode 100644 gfx/pokemon/unown_h/back.png create mode 100644 gfx/pokemon/unown_h/front.animated.2bpp.lz.9a6afeb9 create mode 100644 gfx/pokemon/unown_h/front.png create mode 100644 gfx/pokemon/unown_i/anim0.asm create mode 100644 gfx/pokemon/unown_i/anim1.asm create mode 100644 gfx/pokemon/unown_i/back.2bpp.lz.7feb4b30 create mode 100644 gfx/pokemon/unown_i/back.png create mode 100644 gfx/pokemon/unown_i/front.animated.2bpp.lz.f5e7f816 create mode 100644 gfx/pokemon/unown_i/front.png create mode 100644 gfx/pokemon/unown_j/anim0.asm create mode 100644 gfx/pokemon/unown_j/anim1.asm create mode 100644 gfx/pokemon/unown_j/back.2bpp.lz.b0f3bec2 create mode 100644 gfx/pokemon/unown_j/back.png create mode 100644 gfx/pokemon/unown_j/front.animated.2bpp.lz.d8bf9223 create mode 100644 gfx/pokemon/unown_j/front.png create mode 100644 gfx/pokemon/unown_k/anim0.asm create mode 100644 gfx/pokemon/unown_k/anim1.asm create mode 100644 gfx/pokemon/unown_k/back.2bpp.lz.745fda48 create mode 100644 gfx/pokemon/unown_k/back.png create mode 100644 gfx/pokemon/unown_k/front.animated.2bpp.lz.fb25b385 create mode 100644 gfx/pokemon/unown_k/front.png create mode 100644 gfx/pokemon/unown_l/anim0.asm create mode 100644 gfx/pokemon/unown_l/anim1.asm create mode 100644 gfx/pokemon/unown_l/back.2bpp.lz.e38e0d57 create mode 100644 gfx/pokemon/unown_l/back.png create mode 100644 gfx/pokemon/unown_l/front.animated.2bpp.lz.26195a59 create mode 100644 gfx/pokemon/unown_l/front.png create mode 100644 gfx/pokemon/unown_m/anim0.asm create mode 100644 gfx/pokemon/unown_m/anim1.asm create mode 100644 gfx/pokemon/unown_m/back.2bpp.lz.38d93bc8 create mode 100644 gfx/pokemon/unown_m/back.png create mode 100644 gfx/pokemon/unown_m/front.animated.2bpp.lz.2659315e create mode 100644 gfx/pokemon/unown_m/front.png create mode 100644 gfx/pokemon/unown_n/anim0.asm create mode 100644 gfx/pokemon/unown_n/anim1.asm create mode 100644 gfx/pokemon/unown_n/back.2bpp.lz.c8b7d3a4 create mode 100644 gfx/pokemon/unown_n/back.png create mode 100644 gfx/pokemon/unown_n/front.animated.2bpp.lz.96ce7c62 create mode 100644 gfx/pokemon/unown_n/front.png create mode 100644 gfx/pokemon/unown_o/anim0.asm create mode 100644 gfx/pokemon/unown_o/anim1.asm create mode 100644 gfx/pokemon/unown_o/back.2bpp.lz.89ba693c create mode 100644 gfx/pokemon/unown_o/back.png create mode 100644 gfx/pokemon/unown_o/front.animated.2bpp.lz.a9151b66 create mode 100644 gfx/pokemon/unown_o/front.png create mode 100644 gfx/pokemon/unown_p/anim0.asm create mode 100644 gfx/pokemon/unown_p/anim1.asm create mode 100644 gfx/pokemon/unown_p/back.2bpp.lz.09c618c4 create mode 100644 gfx/pokemon/unown_p/back.png create mode 100644 gfx/pokemon/unown_p/front.animated.2bpp.lz.83a096fc create mode 100644 gfx/pokemon/unown_p/front.png create mode 100644 gfx/pokemon/unown_pic_pointers.asm create mode 100644 gfx/pokemon/unown_q/anim0.asm create mode 100644 gfx/pokemon/unown_q/anim1.asm create mode 100644 gfx/pokemon/unown_q/back.2bpp.lz.e32430b4 create mode 100644 gfx/pokemon/unown_q/back.png create mode 100644 gfx/pokemon/unown_q/front.animated.2bpp.lz.44dad60c create mode 100644 gfx/pokemon/unown_q/front.png create mode 100644 gfx/pokemon/unown_r/anim0.asm create mode 100644 gfx/pokemon/unown_r/anim1.asm create mode 100644 gfx/pokemon/unown_r/back.2bpp.lz.5df8287c create mode 100644 gfx/pokemon/unown_r/back.png create mode 100644 gfx/pokemon/unown_r/front.animated.2bpp.lz.8e67e3fc create mode 100644 gfx/pokemon/unown_r/front.png create mode 100644 gfx/pokemon/unown_s/anim0.asm create mode 100644 gfx/pokemon/unown_s/anim1.asm create mode 100644 gfx/pokemon/unown_s/back.2bpp.lz.abd4ad58 create mode 100644 gfx/pokemon/unown_s/back.png create mode 100644 gfx/pokemon/unown_s/front.animated.2bpp.lz.f3db4e89 create mode 100644 gfx/pokemon/unown_s/front.png create mode 100644 gfx/pokemon/unown_t/anim0.asm create mode 100644 gfx/pokemon/unown_t/anim1.asm create mode 100644 gfx/pokemon/unown_t/back.2bpp.lz.87d48ca0 create mode 100644 gfx/pokemon/unown_t/back.png create mode 100644 gfx/pokemon/unown_t/front.animated.2bpp.lz.8bdc40ae create mode 100644 gfx/pokemon/unown_t/front.png create mode 100644 gfx/pokemon/unown_u/anim0.asm create mode 100644 gfx/pokemon/unown_u/anim1.asm create mode 100644 gfx/pokemon/unown_u/back.2bpp.lz.40b63dfb create mode 100644 gfx/pokemon/unown_u/back.png create mode 100644 gfx/pokemon/unown_u/front.animated.2bpp.lz.2690db54 create mode 100644 gfx/pokemon/unown_u/front.png create mode 100644 gfx/pokemon/unown_v/anim0.asm create mode 100644 gfx/pokemon/unown_v/anim1.asm create mode 100644 gfx/pokemon/unown_v/back.2bpp.lz.5b1a6acc create mode 100644 gfx/pokemon/unown_v/back.png create mode 100644 gfx/pokemon/unown_v/front.animated.2bpp.lz.d196c60e create mode 100644 gfx/pokemon/unown_v/front.png create mode 100644 gfx/pokemon/unown_w/anim0.asm create mode 100644 gfx/pokemon/unown_w/anim1.asm create mode 100644 gfx/pokemon/unown_w/back.2bpp.lz.a55282bf create mode 100644 gfx/pokemon/unown_w/back.png create mode 100644 gfx/pokemon/unown_w/front.animated.2bpp.lz.5b45fa3d create mode 100644 gfx/pokemon/unown_w/front.png create mode 100644 gfx/pokemon/unown_x/anim0.asm create mode 100644 gfx/pokemon/unown_x/anim1.asm create mode 100644 gfx/pokemon/unown_x/back.2bpp.lz.0001a198 create mode 100644 gfx/pokemon/unown_x/back.png create mode 100644 gfx/pokemon/unown_x/front.animated.2bpp.lz.3362c680 create mode 100644 gfx/pokemon/unown_x/front.png create mode 100644 gfx/pokemon/unown_y/anim0.asm create mode 100644 gfx/pokemon/unown_y/anim1.asm create mode 100644 gfx/pokemon/unown_y/back.2bpp.lz.292d9ff2 create mode 100644 gfx/pokemon/unown_y/back.png create mode 100644 gfx/pokemon/unown_y/front.animated.2bpp.lz.8cd89db4 create mode 100644 gfx/pokemon/unown_y/front.png create mode 100644 gfx/pokemon/unown_z/anim0.asm create mode 100644 gfx/pokemon/unown_z/anim1.asm create mode 100644 gfx/pokemon/unown_z/back.2bpp.lz.a41240a1 create mode 100644 gfx/pokemon/unown_z/back.png create mode 100644 gfx/pokemon/unown_z/front.animated.2bpp.lz.2d4170a0 create mode 100644 gfx/pokemon/unown_z/front.png create mode 100644 gfx/pokemon/ursaring/anim0.asm create mode 100644 gfx/pokemon/ursaring/anim1.asm create mode 100644 gfx/pokemon/ursaring/back.2bpp.lz.0966cee1 create mode 100644 gfx/pokemon/ursaring/back.png create mode 100644 gfx/pokemon/ursaring/front.animated.2bpp.lz.5bcb8114 create mode 100644 gfx/pokemon/ursaring/front.png create mode 100644 gfx/pokemon/ursaring/shiny.pal create mode 100644 gfx/pokemon/vaporeon/anim0.asm create mode 100644 gfx/pokemon/vaporeon/anim1.asm create mode 100644 gfx/pokemon/vaporeon/back.2bpp.lz.aafe2ea4 create mode 100644 gfx/pokemon/vaporeon/back.png create mode 100644 gfx/pokemon/vaporeon/front.animated.2bpp.lz.6e1ee993 create mode 100644 gfx/pokemon/vaporeon/front.png create mode 100644 gfx/pokemon/vaporeon/shiny.pal create mode 100644 gfx/pokemon/venomoth/anim0.asm create mode 100644 gfx/pokemon/venomoth/anim1.asm create mode 100644 gfx/pokemon/venomoth/back.2bpp.lz.ba3cccb7 create mode 100644 gfx/pokemon/venomoth/back.png create mode 100644 gfx/pokemon/venomoth/front.animated.2bpp.lz.6c0096ec create mode 100644 gfx/pokemon/venomoth/front.png create mode 100644 gfx/pokemon/venomoth/shiny.pal create mode 100644 gfx/pokemon/venonat/anim0.asm create mode 100644 gfx/pokemon/venonat/anim1.asm create mode 100644 gfx/pokemon/venonat/back.2bpp.lz.63b1017a create mode 100644 gfx/pokemon/venonat/back.png create mode 100644 gfx/pokemon/venonat/front.animated.2bpp.lz.02a36f08 create mode 100644 gfx/pokemon/venonat/front.png create mode 100644 gfx/pokemon/venonat/shiny.pal create mode 100644 gfx/pokemon/venusaur/anim0.asm create mode 100644 gfx/pokemon/venusaur/anim1.asm create mode 100644 gfx/pokemon/venusaur/back.2bpp.lz.1d5b9ebe create mode 100644 gfx/pokemon/venusaur/back.png create mode 100644 gfx/pokemon/venusaur/front.animated.2bpp.lz.48d131f4 create mode 100644 gfx/pokemon/venusaur/front.png create mode 100644 gfx/pokemon/venusaur/shiny.pal create mode 100644 gfx/pokemon/victreebel/anim0.asm create mode 100644 gfx/pokemon/victreebel/anim1.asm create mode 100644 gfx/pokemon/victreebel/back.2bpp.lz.a80b1dc4 create mode 100644 gfx/pokemon/victreebel/back.png create mode 100644 gfx/pokemon/victreebel/front.animated.2bpp.lz.d5d535c1 create mode 100644 gfx/pokemon/victreebel/front.png create mode 100644 gfx/pokemon/victreebel/shiny.pal create mode 100644 gfx/pokemon/vileplume/anim0.asm create mode 100644 gfx/pokemon/vileplume/anim1.asm create mode 100644 gfx/pokemon/vileplume/back.2bpp.lz.9f944092 create mode 100644 gfx/pokemon/vileplume/back.png create mode 100644 gfx/pokemon/vileplume/front.animated.2bpp.lz.db2287e6 create mode 100644 gfx/pokemon/vileplume/front.png create mode 100644 gfx/pokemon/vileplume/shiny.pal create mode 100644 gfx/pokemon/voltorb/anim0.asm create mode 100644 gfx/pokemon/voltorb/anim1.asm create mode 100644 gfx/pokemon/voltorb/back.2bpp.lz.f19cefe9 create mode 100644 gfx/pokemon/voltorb/back.png create mode 100644 gfx/pokemon/voltorb/front.animated.2bpp.lz.64051f97 create mode 100644 gfx/pokemon/voltorb/front.png create mode 100644 gfx/pokemon/voltorb/shiny.pal create mode 100644 gfx/pokemon/vulpix/anim0.asm create mode 100644 gfx/pokemon/vulpix/anim1.asm create mode 100644 gfx/pokemon/vulpix/back.2bpp.lz.0c7852c8 create mode 100644 gfx/pokemon/vulpix/back.png create mode 100644 gfx/pokemon/vulpix/front.animated.2bpp.lz.df94d884 create mode 100644 gfx/pokemon/vulpix/front.png create mode 100644 gfx/pokemon/vulpix/shiny.pal create mode 100644 gfx/pokemon/wartortle/anim0.asm create mode 100644 gfx/pokemon/wartortle/anim1.asm create mode 100644 gfx/pokemon/wartortle/back.2bpp.lz.f2338cb4 create mode 100644 gfx/pokemon/wartortle/back.png create mode 100644 gfx/pokemon/wartortle/front.animated.2bpp.lz.f50d25f5 create mode 100644 gfx/pokemon/wartortle/front.png create mode 100644 gfx/pokemon/wartortle/shiny.pal create mode 100644 gfx/pokemon/weedle/anim0.asm create mode 100644 gfx/pokemon/weedle/anim1.asm create mode 100644 gfx/pokemon/weedle/back.2bpp.lz.f26ac339 create mode 100644 gfx/pokemon/weedle/back.png create mode 100644 gfx/pokemon/weedle/front.animated.2bpp.lz.9e1dedbd create mode 100644 gfx/pokemon/weedle/front.png create mode 100644 gfx/pokemon/weedle/shiny.pal create mode 100644 gfx/pokemon/weepinbell/anim0.asm create mode 100644 gfx/pokemon/weepinbell/anim1.asm create mode 100644 gfx/pokemon/weepinbell/back.2bpp.lz.f84a5fe6 create mode 100644 gfx/pokemon/weepinbell/back.png create mode 100644 gfx/pokemon/weepinbell/front.animated.2bpp.lz.7b06c092 create mode 100644 gfx/pokemon/weepinbell/front.png create mode 100644 gfx/pokemon/weepinbell/shiny.pal create mode 100644 gfx/pokemon/weezing/anim0.asm create mode 100644 gfx/pokemon/weezing/anim1.asm create mode 100644 gfx/pokemon/weezing/back.2bpp.lz.5ac5b672 create mode 100644 gfx/pokemon/weezing/back.png create mode 100644 gfx/pokemon/weezing/front.animated.2bpp.lz.75928bd0 create mode 100644 gfx/pokemon/weezing/front.png create mode 100644 gfx/pokemon/weezing/shiny.pal create mode 100644 gfx/pokemon/wigglytuff/anim0.asm create mode 100644 gfx/pokemon/wigglytuff/anim1.asm create mode 100644 gfx/pokemon/wigglytuff/back.2bpp.lz.fee674ac create mode 100644 gfx/pokemon/wigglytuff/back.png create mode 100644 gfx/pokemon/wigglytuff/front.animated.2bpp.lz.49311d0b create mode 100644 gfx/pokemon/wigglytuff/front.png create mode 100644 gfx/pokemon/wigglytuff/shiny.pal create mode 100644 gfx/pokemon/wobbuffet/anim0.asm create mode 100644 gfx/pokemon/wobbuffet/anim1.asm create mode 100644 gfx/pokemon/wobbuffet/back.2bpp.lz.a862192a create mode 100644 gfx/pokemon/wobbuffet/back.png create mode 100644 gfx/pokemon/wobbuffet/front.animated.2bpp.lz.f1f4687d create mode 100644 gfx/pokemon/wobbuffet/front.png create mode 100644 gfx/pokemon/wobbuffet/shiny.pal create mode 100644 gfx/pokemon/wooper/anim0.asm create mode 100644 gfx/pokemon/wooper/anim1.asm create mode 100644 gfx/pokemon/wooper/back.2bpp.lz.4f4b7917 create mode 100644 gfx/pokemon/wooper/back.png create mode 100644 gfx/pokemon/wooper/front.animated.2bpp.lz.4e440469 create mode 100644 gfx/pokemon/wooper/front.png create mode 100644 gfx/pokemon/wooper/shiny.pal create mode 100644 gfx/pokemon/xatu/anim0.asm create mode 100644 gfx/pokemon/xatu/anim1.asm create mode 100644 gfx/pokemon/xatu/back.2bpp.lz.4de765ff create mode 100644 gfx/pokemon/xatu/back.png create mode 100644 gfx/pokemon/xatu/front.animated.2bpp.lz.4f452e43 create mode 100644 gfx/pokemon/xatu/front.png create mode 100644 gfx/pokemon/xatu/shiny.pal create mode 100644 gfx/pokemon/yanma/anim0.asm create mode 100644 gfx/pokemon/yanma/anim1.asm create mode 100644 gfx/pokemon/yanma/back.2bpp.lz.2ca27ab3 create mode 100644 gfx/pokemon/yanma/back.png create mode 100644 gfx/pokemon/yanma/front.animated.2bpp.lz.25f91adf create mode 100644 gfx/pokemon/yanma/front.png create mode 100644 gfx/pokemon/yanma/shiny.pal create mode 100644 gfx/pokemon/zapdos/anim0.asm create mode 100644 gfx/pokemon/zapdos/anim1.asm create mode 100644 gfx/pokemon/zapdos/back.2bpp.lz.a44c7524 create mode 100644 gfx/pokemon/zapdos/back.png create mode 100644 gfx/pokemon/zapdos/front.animated.2bpp.lz.05cb214a create mode 100644 gfx/pokemon/zapdos/front.png create mode 100644 gfx/pokemon/zapdos/shiny.pal create mode 100644 gfx/pokemon/zubat/anim0.asm create mode 100644 gfx/pokemon/zubat/anim1.asm create mode 100644 gfx/pokemon/zubat/back.2bpp.lz.aa77eb62 create mode 100644 gfx/pokemon/zubat/back.png create mode 100644 gfx/pokemon/zubat/front.animated.2bpp.lz.f12e6581 create mode 100644 gfx/pokemon/zubat/front.png create mode 100644 gfx/pokemon/zubat/shiny.pal diff --git a/.gitignore b/.gitignore index 85a07e345..d3dfbf82b 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,6 @@ pokecrystal.txt *.lz *.pal *.animated.tilemap -gfx/pics/*/bitmask.asm -gfx/pics/*/frames.asm -!gfx/pics/*/shiny.pal +gfx/pokemon/*/bitmask.asm +gfx/pokemon/*/frames.asm +!gfx/pokemon/*/shiny.pal diff --git a/constants/animation_constants.asm b/constants/animation_constants.asm index 857673849..c8df4e3be 100644 --- a/constants/animation_constants.asm +++ b/constants/animation_constants.asm @@ -763,7 +763,7 @@ const_value SET 1 const ANIM_BG_WOBBLE_MON const ANIM_BG_35 -; PokeAnims indexes (see gfx/pics/animation.asm) +; PokeAnims indexes (see gfx/pokemon/animation.asm) const_def const ANIM_MON_SLOW const ANIM_MON_NORMAL diff --git a/constants/pokemon_constants.asm b/constants/pokemon_constants.asm index 344ba66c1..f6d85f929 100644 --- a/constants/pokemon_constants.asm +++ b/constants/pokemon_constants.asm @@ -6,12 +6,12 @@ ; - EvosAttacksPointers (see data/pokemon/evos_attacks_pointers.asm) ; - PokemonNames (see data/pokemon/pokemon_names.asm) ; - PokedexDataPointerTable (see data/pokemon/dex_entry_pointers.asm) -; - AnimationPointers (see gfx/pics/anim_pointers.asm) -; - BitmasksPointers (see gfx/pics/bitmask_pointers.asm) -; - AnimationExtraPointers (see gfx/pics/extra_pointers.asm) -; - FramesPointers (see gfx/pics/frame_pointers.asm) -; - PokemonPalettes (see gfx/pics/palette_pointers.asm) -; - PicPointers (see gfx/pics/pic_pointers.asm) +; - AnimationPointers (see gfx/pokemon/anim_pointers.asm) +; - BitmasksPointers (see gfx/pokemon/bitmask_pointers.asm) +; - AnimationExtraPointers (see gfx/pokemon/extra_pointers.asm) +; - FramesPointers (see gfx/pokemon/frame_pointers.asm) +; - PokemonPalettes (see gfx/pokemon/palette_pointers.asm) +; - PicPointers (see gfx/pokemon/pic_pointers.asm) ; - AlphabeticalPokedexOrder (see data/pokemon/dex_order_alpha.asm) ; - NewPokedexOrder (see data/pokemon/dex_order_new.asm) ; - MonMenuIcons (see data/pokemon/menu_icons.asm) diff --git a/data/pokemon/base_stats/abra.asm b/data/pokemon/base_stats/abra.asm index 5167eb5cc..d7824f196 100644 --- a/data/pokemon/base_stats/abra.asm +++ b/data/pokemon/base_stats/abra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/abra/front.dimensions" + INCBIN "gfx/pokemon/abra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/aerodactyl.asm b/data/pokemon/base_stats/aerodactyl.asm index 897311399..26eac4ded 100644 --- a/data/pokemon/base_stats/aerodactyl.asm +++ b/data/pokemon/base_stats/aerodactyl.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/aerodactyl/front.dimensions" + INCBIN "gfx/pokemon/aerodactyl/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/aipom.asm b/data/pokemon/base_stats/aipom.asm index 839bff358..0bd6954f4 100644 --- a/data/pokemon/base_stats/aipom.asm +++ b/data/pokemon/base_stats/aipom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/aipom/front.dimensions" + INCBIN "gfx/pokemon/aipom/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/alakazam.asm b/data/pokemon/base_stats/alakazam.asm index 594d6241d..35ebdf9af 100644 --- a/data/pokemon/base_stats/alakazam.asm +++ b/data/pokemon/base_stats/alakazam.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/alakazam/front.dimensions" + INCBIN "gfx/pokemon/alakazam/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/ampharos.asm b/data/pokemon/base_stats/ampharos.asm index ec361a08d..b391238d3 100644 --- a/data/pokemon/base_stats/ampharos.asm +++ b/data/pokemon/base_stats/ampharos.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ampharos/front.dimensions" + INCBIN "gfx/pokemon/ampharos/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/arbok.asm b/data/pokemon/base_stats/arbok.asm index ed84e5dc8..52341c37d 100644 --- a/data/pokemon/base_stats/arbok.asm +++ b/data/pokemon/base_stats/arbok.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/arbok/front.dimensions" + INCBIN "gfx/pokemon/arbok/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/arcanine.asm b/data/pokemon/base_stats/arcanine.asm index d543bb8da..299086c9d 100644 --- a/data/pokemon/base_stats/arcanine.asm +++ b/data/pokemon/base_stats/arcanine.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/arcanine/front.dimensions" + INCBIN "gfx/pokemon/arcanine/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ariados.asm b/data/pokemon/base_stats/ariados.asm index 7b77b1afd..78697127c 100644 --- a/data/pokemon/base_stats/ariados.asm +++ b/data/pokemon/base_stats/ariados.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ariados/front.dimensions" + INCBIN "gfx/pokemon/ariados/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/articuno.asm b/data/pokemon/base_stats/articuno.asm index ddf85599b..e637c47f4 100644 --- a/data/pokemon/base_stats/articuno.asm +++ b/data/pokemon/base_stats/articuno.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/articuno/front.dimensions" + INCBIN "gfx/pokemon/articuno/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/azumarill.asm b/data/pokemon/base_stats/azumarill.asm index c4286ad5d..1681d3be2 100644 --- a/data/pokemon/base_stats/azumarill.asm +++ b/data/pokemon/base_stats/azumarill.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/azumarill/front.dimensions" + INCBIN "gfx/pokemon/azumarill/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/bayleef.asm b/data/pokemon/base_stats/bayleef.asm index 82caf4ae7..50ee3044c 100644 --- a/data/pokemon/base_stats/bayleef.asm +++ b/data/pokemon/base_stats/bayleef.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bayleef/front.dimensions" + INCBIN "gfx/pokemon/bayleef/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/beedrill.asm b/data/pokemon/base_stats/beedrill.asm index c76accff8..3fa11d8eb 100644 --- a/data/pokemon/base_stats/beedrill.asm +++ b/data/pokemon/base_stats/beedrill.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/beedrill/front.dimensions" + INCBIN "gfx/pokemon/beedrill/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/bellossom.asm b/data/pokemon/base_stats/bellossom.asm index 9131b2b38..3f3f06870 100644 --- a/data/pokemon/base_stats/bellossom.asm +++ b/data/pokemon/base_stats/bellossom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bellossom/front.dimensions" + INCBIN "gfx/pokemon/bellossom/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/bellsprout.asm b/data/pokemon/base_stats/bellsprout.asm index 94a8ded6b..5e75e6e89 100644 --- a/data/pokemon/base_stats/bellsprout.asm +++ b/data/pokemon/base_stats/bellsprout.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bellsprout/front.dimensions" + INCBIN "gfx/pokemon/bellsprout/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/blastoise.asm b/data/pokemon/base_stats/blastoise.asm index 7bb267d72..7e2f1697e 100644 --- a/data/pokemon/base_stats/blastoise.asm +++ b/data/pokemon/base_stats/blastoise.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/blastoise/front.dimensions" + INCBIN "gfx/pokemon/blastoise/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/blissey.asm b/data/pokemon/base_stats/blissey.asm index d1da5ea85..789649a40 100644 --- a/data/pokemon/base_stats/blissey.asm +++ b/data/pokemon/base_stats/blissey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/blissey/front.dimensions" + INCBIN "gfx/pokemon/blissey/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/bulbasaur.asm b/data/pokemon/base_stats/bulbasaur.asm index bc843bcd3..2795d8035 100644 --- a/data/pokemon/base_stats/bulbasaur.asm +++ b/data/pokemon/base_stats/bulbasaur.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/bulbasaur/front.dimensions" + INCBIN "gfx/pokemon/bulbasaur/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/butterfree.asm b/data/pokemon/base_stats/butterfree.asm index 2392f4139..1feee4f58 100644 --- a/data/pokemon/base_stats/butterfree.asm +++ b/data/pokemon/base_stats/butterfree.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/butterfree/front.dimensions" + INCBIN "gfx/pokemon/butterfree/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/caterpie.asm b/data/pokemon/base_stats/caterpie.asm index cdac5bf26..a10790541 100644 --- a/data/pokemon/base_stats/caterpie.asm +++ b/data/pokemon/base_stats/caterpie.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/caterpie/front.dimensions" + INCBIN "gfx/pokemon/caterpie/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/celebi.asm b/data/pokemon/base_stats/celebi.asm index 986ebcc83..aabadba4f 100644 --- a/data/pokemon/base_stats/celebi.asm +++ b/data/pokemon/base_stats/celebi.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/celebi/front.dimensions" + INCBIN "gfx/pokemon/celebi/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/chansey.asm b/data/pokemon/base_stats/chansey.asm index aeb4aa1d5..d51f67d4f 100644 --- a/data/pokemon/base_stats/chansey.asm +++ b/data/pokemon/base_stats/chansey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/chansey/front.dimensions" + INCBIN "gfx/pokemon/chansey/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/charizard.asm b/data/pokemon/base_stats/charizard.asm index 8d32f3f91..d978c6ad5 100644 --- a/data/pokemon/base_stats/charizard.asm +++ b/data/pokemon/base_stats/charizard.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/charizard/front.dimensions" + INCBIN "gfx/pokemon/charizard/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/charmander.asm b/data/pokemon/base_stats/charmander.asm index 98383865c..2fa9b9526 100644 --- a/data/pokemon/base_stats/charmander.asm +++ b/data/pokemon/base_stats/charmander.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/charmander/front.dimensions" + INCBIN "gfx/pokemon/charmander/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/charmeleon.asm b/data/pokemon/base_stats/charmeleon.asm index 9f7f32b51..5d86b975b 100644 --- a/data/pokemon/base_stats/charmeleon.asm +++ b/data/pokemon/base_stats/charmeleon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/charmeleon/front.dimensions" + INCBIN "gfx/pokemon/charmeleon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/chikorita.asm b/data/pokemon/base_stats/chikorita.asm index fdf120402..0476ba558 100644 --- a/data/pokemon/base_stats/chikorita.asm +++ b/data/pokemon/base_stats/chikorita.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/chikorita/front.dimensions" + INCBIN "gfx/pokemon/chikorita/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/chinchou.asm b/data/pokemon/base_stats/chinchou.asm index caa5d06e1..a5b3ded3a 100644 --- a/data/pokemon/base_stats/chinchou.asm +++ b/data/pokemon/base_stats/chinchou.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/chinchou/front.dimensions" + INCBIN "gfx/pokemon/chinchou/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/clefable.asm b/data/pokemon/base_stats/clefable.asm index 6e72b9614..4da3c73df 100644 --- a/data/pokemon/base_stats/clefable.asm +++ b/data/pokemon/base_stats/clefable.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/clefable/front.dimensions" + INCBIN "gfx/pokemon/clefable/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/clefairy.asm b/data/pokemon/base_stats/clefairy.asm index 53688a158..5e4def0ca 100644 --- a/data/pokemon/base_stats/clefairy.asm +++ b/data/pokemon/base_stats/clefairy.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/clefairy/front.dimensions" + INCBIN "gfx/pokemon/clefairy/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/cleffa.asm b/data/pokemon/base_stats/cleffa.asm index c431ae2bf..89fa91a45 100644 --- a/data/pokemon/base_stats/cleffa.asm +++ b/data/pokemon/base_stats/cleffa.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cleffa/front.dimensions" + INCBIN "gfx/pokemon/cleffa/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/cloyster.asm b/data/pokemon/base_stats/cloyster.asm index 4119dbec2..3f3c13b6a 100644 --- a/data/pokemon/base_stats/cloyster.asm +++ b/data/pokemon/base_stats/cloyster.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cloyster/front.dimensions" + INCBIN "gfx/pokemon/cloyster/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/corsola.asm b/data/pokemon/base_stats/corsola.asm index 5c559c64b..8f1e836ff 100644 --- a/data/pokemon/base_stats/corsola.asm +++ b/data/pokemon/base_stats/corsola.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/corsola/front.dimensions" + INCBIN "gfx/pokemon/corsola/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/crobat.asm b/data/pokemon/base_stats/crobat.asm index 71c012079..34d7d10c5 100644 --- a/data/pokemon/base_stats/crobat.asm +++ b/data/pokemon/base_stats/crobat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/crobat/front.dimensions" + INCBIN "gfx/pokemon/crobat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/croconaw.asm b/data/pokemon/base_stats/croconaw.asm index 8dbd57632..6c76b19b1 100644 --- a/data/pokemon/base_stats/croconaw.asm +++ b/data/pokemon/base_stats/croconaw.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/croconaw/front.dimensions" + INCBIN "gfx/pokemon/croconaw/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/cubone.asm b/data/pokemon/base_stats/cubone.asm index dc15c8773..451f52133 100644 --- a/data/pokemon/base_stats/cubone.asm +++ b/data/pokemon/base_stats/cubone.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cubone/front.dimensions" + INCBIN "gfx/pokemon/cubone/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/cyndaquil.asm b/data/pokemon/base_stats/cyndaquil.asm index 137e8c78d..a1b07cb91 100644 --- a/data/pokemon/base_stats/cyndaquil.asm +++ b/data/pokemon/base_stats/cyndaquil.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/cyndaquil/front.dimensions" + INCBIN "gfx/pokemon/cyndaquil/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/delibird.asm b/data/pokemon/base_stats/delibird.asm index 8ddb23e7c..0b38e8b97 100644 --- a/data/pokemon/base_stats/delibird.asm +++ b/data/pokemon/base_stats/delibird.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/delibird/front.dimensions" + INCBIN "gfx/pokemon/delibird/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/dewgong.asm b/data/pokemon/base_stats/dewgong.asm index 951a1e87e..ae6aa1941 100644 --- a/data/pokemon/base_stats/dewgong.asm +++ b/data/pokemon/base_stats/dewgong.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dewgong/front.dimensions" + INCBIN "gfx/pokemon/dewgong/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/diglett.asm b/data/pokemon/base_stats/diglett.asm index b93947622..1153cbcac 100644 --- a/data/pokemon/base_stats/diglett.asm +++ b/data/pokemon/base_stats/diglett.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/diglett/front.dimensions" + INCBIN "gfx/pokemon/diglett/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ditto.asm b/data/pokemon/base_stats/ditto.asm index b88780bed..89d92ab7a 100644 --- a/data/pokemon/base_stats/ditto.asm +++ b/data/pokemon/base_stats/ditto.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ditto/front.dimensions" + INCBIN "gfx/pokemon/ditto/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn LADIES_MAN, LADIES_MAN ; egg groups diff --git a/data/pokemon/base_stats/dodrio.asm b/data/pokemon/base_stats/dodrio.asm index 6f8463663..9065dcbde 100644 --- a/data/pokemon/base_stats/dodrio.asm +++ b/data/pokemon/base_stats/dodrio.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dodrio/front.dimensions" + INCBIN "gfx/pokemon/dodrio/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/doduo.asm b/data/pokemon/base_stats/doduo.asm index 1ef229455..f844ccb07 100644 --- a/data/pokemon/base_stats/doduo.asm +++ b/data/pokemon/base_stats/doduo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/doduo/front.dimensions" + INCBIN "gfx/pokemon/doduo/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/donphan.asm b/data/pokemon/base_stats/donphan.asm index ee0418de0..a5995c3fb 100644 --- a/data/pokemon/base_stats/donphan.asm +++ b/data/pokemon/base_stats/donphan.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/donphan/front.dimensions" + INCBIN "gfx/pokemon/donphan/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/dragonair.asm b/data/pokemon/base_stats/dragonair.asm index e0ca4b8e9..0478bd6a1 100644 --- a/data/pokemon/base_stats/dragonair.asm +++ b/data/pokemon/base_stats/dragonair.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dragonair/front.dimensions" + INCBIN "gfx/pokemon/dragonair/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/dragonite.asm b/data/pokemon/base_stats/dragonite.asm index 8ca777e96..d8ae9add9 100644 --- a/data/pokemon/base_stats/dragonite.asm +++ b/data/pokemon/base_stats/dragonite.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dragonite/front.dimensions" + INCBIN "gfx/pokemon/dragonite/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/dratini.asm b/data/pokemon/base_stats/dratini.asm index c1c173c86..0d5ccd5fd 100644 --- a/data/pokemon/base_stats/dratini.asm +++ b/data/pokemon/base_stats/dratini.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dratini/front.dimensions" + INCBIN "gfx/pokemon/dratini/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/drowzee.asm b/data/pokemon/base_stats/drowzee.asm index 0a456e8b8..7dd4855a3 100644 --- a/data/pokemon/base_stats/drowzee.asm +++ b/data/pokemon/base_stats/drowzee.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/drowzee/front.dimensions" + INCBIN "gfx/pokemon/drowzee/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/dugtrio.asm b/data/pokemon/base_stats/dugtrio.asm index e245f8320..9430a6669 100644 --- a/data/pokemon/base_stats/dugtrio.asm +++ b/data/pokemon/base_stats/dugtrio.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dugtrio/front.dimensions" + INCBIN "gfx/pokemon/dugtrio/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/dunsparce.asm b/data/pokemon/base_stats/dunsparce.asm index 5cbdb5807..8eef16241 100644 --- a/data/pokemon/base_stats/dunsparce.asm +++ b/data/pokemon/base_stats/dunsparce.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/dunsparce/front.dimensions" + INCBIN "gfx/pokemon/dunsparce/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/eevee.asm b/data/pokemon/base_stats/eevee.asm index 79bbafbcf..95f67cf2b 100644 --- a/data/pokemon/base_stats/eevee.asm +++ b/data/pokemon/base_stats/eevee.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/eevee/front.dimensions" + INCBIN "gfx/pokemon/eevee/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ekans.asm b/data/pokemon/base_stats/ekans.asm index 0aa84fde2..feed64b34 100644 --- a/data/pokemon/base_stats/ekans.asm +++ b/data/pokemon/base_stats/ekans.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ekans/front.dimensions" + INCBIN "gfx/pokemon/ekans/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/electabuzz.asm b/data/pokemon/base_stats/electabuzz.asm index a787adcb2..472e4487c 100644 --- a/data/pokemon/base_stats/electabuzz.asm +++ b/data/pokemon/base_stats/electabuzz.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/electabuzz/front.dimensions" + INCBIN "gfx/pokemon/electabuzz/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/electrode.asm b/data/pokemon/base_stats/electrode.asm index 44d92de66..72bc666e9 100644 --- a/data/pokemon/base_stats/electrode.asm +++ b/data/pokemon/base_stats/electrode.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/electrode/front.dimensions" + INCBIN "gfx/pokemon/electrode/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/elekid.asm b/data/pokemon/base_stats/elekid.asm index 999a85103..e53dcc23c 100644 --- a/data/pokemon/base_stats/elekid.asm +++ b/data/pokemon/base_stats/elekid.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/elekid/front.dimensions" + INCBIN "gfx/pokemon/elekid/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/entei.asm b/data/pokemon/base_stats/entei.asm index 63f5f0af6..4e4b7b3f8 100644 --- a/data/pokemon/base_stats/entei.asm +++ b/data/pokemon/base_stats/entei.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/entei/front.dimensions" + INCBIN "gfx/pokemon/entei/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/espeon.asm b/data/pokemon/base_stats/espeon.asm index 626b5bdd9..0bc50fb6d 100644 --- a/data/pokemon/base_stats/espeon.asm +++ b/data/pokemon/base_stats/espeon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/espeon/front.dimensions" + INCBIN "gfx/pokemon/espeon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/exeggcute.asm b/data/pokemon/base_stats/exeggcute.asm index 8c9cadc43..0547333ad 100644 --- a/data/pokemon/base_stats/exeggcute.asm +++ b/data/pokemon/base_stats/exeggcute.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/exeggcute/front.dimensions" + INCBIN "gfx/pokemon/exeggcute/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/exeggutor.asm b/data/pokemon/base_stats/exeggutor.asm index 259a1014e..409eb8a1d 100644 --- a/data/pokemon/base_stats/exeggutor.asm +++ b/data/pokemon/base_stats/exeggutor.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/exeggutor/front.dimensions" + INCBIN "gfx/pokemon/exeggutor/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/farfetch_d.asm b/data/pokemon/base_stats/farfetch_d.asm index 8da2b08a4..35d76b0a9 100644 --- a/data/pokemon/base_stats/farfetch_d.asm +++ b/data/pokemon/base_stats/farfetch_d.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/farfetch_d/front.dimensions" + INCBIN "gfx/pokemon/farfetch_d/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/fearow.asm b/data/pokemon/base_stats/fearow.asm index 2ce86b1bf..7ef9936d8 100644 --- a/data/pokemon/base_stats/fearow.asm +++ b/data/pokemon/base_stats/fearow.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/fearow/front.dimensions" + INCBIN "gfx/pokemon/fearow/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/feraligatr.asm b/data/pokemon/base_stats/feraligatr.asm index c59ca6ffb..41efb2edd 100644 --- a/data/pokemon/base_stats/feraligatr.asm +++ b/data/pokemon/base_stats/feraligatr.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/feraligatr/front.dimensions" + INCBIN "gfx/pokemon/feraligatr/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/flaaffy.asm b/data/pokemon/base_stats/flaaffy.asm index 2cf5e15bc..b20dc4774 100644 --- a/data/pokemon/base_stats/flaaffy.asm +++ b/data/pokemon/base_stats/flaaffy.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/flaaffy/front.dimensions" + INCBIN "gfx/pokemon/flaaffy/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/flareon.asm b/data/pokemon/base_stats/flareon.asm index 00faecec6..f1d4c8a69 100644 --- a/data/pokemon/base_stats/flareon.asm +++ b/data/pokemon/base_stats/flareon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/flareon/front.dimensions" + INCBIN "gfx/pokemon/flareon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/forretress.asm b/data/pokemon/base_stats/forretress.asm index 08fec2745..9c5a885aa 100644 --- a/data/pokemon/base_stats/forretress.asm +++ b/data/pokemon/base_stats/forretress.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/forretress/front.dimensions" + INCBIN "gfx/pokemon/forretress/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/furret.asm b/data/pokemon/base_stats/furret.asm index 3e3b7a656..b26a82e2e 100644 --- a/data/pokemon/base_stats/furret.asm +++ b/data/pokemon/base_stats/furret.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/furret/front.dimensions" + INCBIN "gfx/pokemon/furret/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/gastly.asm b/data/pokemon/base_stats/gastly.asm index 8b0547b6a..7e46be055 100644 --- a/data/pokemon/base_stats/gastly.asm +++ b/data/pokemon/base_stats/gastly.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gastly/front.dimensions" + INCBIN "gfx/pokemon/gastly/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/gengar.asm b/data/pokemon/base_stats/gengar.asm index a152f7e43..4176aa330 100644 --- a/data/pokemon/base_stats/gengar.asm +++ b/data/pokemon/base_stats/gengar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gengar/front.dimensions" + INCBIN "gfx/pokemon/gengar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/geodude.asm b/data/pokemon/base_stats/geodude.asm index 86b627107..35e5d22a7 100644 --- a/data/pokemon/base_stats/geodude.asm +++ b/data/pokemon/base_stats/geodude.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/geodude/front.dimensions" + INCBIN "gfx/pokemon/geodude/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/girafarig.asm b/data/pokemon/base_stats/girafarig.asm index f832b2c28..7e67b19a6 100644 --- a/data/pokemon/base_stats/girafarig.asm +++ b/data/pokemon/base_stats/girafarig.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/girafarig/front.dimensions" + INCBIN "gfx/pokemon/girafarig/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/gligar.asm b/data/pokemon/base_stats/gligar.asm index 5bb7fdca8..e16bf7043 100644 --- a/data/pokemon/base_stats/gligar.asm +++ b/data/pokemon/base_stats/gligar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gligar/front.dimensions" + INCBIN "gfx/pokemon/gligar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/gloom.asm b/data/pokemon/base_stats/gloom.asm index 33cea01f2..128b1fe81 100644 --- a/data/pokemon/base_stats/gloom.asm +++ b/data/pokemon/base_stats/gloom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gloom/front.dimensions" + INCBIN "gfx/pokemon/gloom/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/golbat.asm b/data/pokemon/base_stats/golbat.asm index 06769b880..2de7278ca 100644 --- a/data/pokemon/base_stats/golbat.asm +++ b/data/pokemon/base_stats/golbat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/golbat/front.dimensions" + INCBIN "gfx/pokemon/golbat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/goldeen.asm b/data/pokemon/base_stats/goldeen.asm index 314852a3e..bc165c7a5 100644 --- a/data/pokemon/base_stats/goldeen.asm +++ b/data/pokemon/base_stats/goldeen.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/goldeen/front.dimensions" + INCBIN "gfx/pokemon/goldeen/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/golduck.asm b/data/pokemon/base_stats/golduck.asm index 9c4dbb5f5..e3e5ea1aa 100644 --- a/data/pokemon/base_stats/golduck.asm +++ b/data/pokemon/base_stats/golduck.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/golduck/front.dimensions" + INCBIN "gfx/pokemon/golduck/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/golem.asm b/data/pokemon/base_stats/golem.asm index 9a9f04451..bda102404 100644 --- a/data/pokemon/base_stats/golem.asm +++ b/data/pokemon/base_stats/golem.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/golem/front.dimensions" + INCBIN "gfx/pokemon/golem/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/granbull.asm b/data/pokemon/base_stats/granbull.asm index 088e17dd8..9c572cf7b 100644 --- a/data/pokemon/base_stats/granbull.asm +++ b/data/pokemon/base_stats/granbull.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/granbull/front.dimensions" + INCBIN "gfx/pokemon/granbull/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/graveler.asm b/data/pokemon/base_stats/graveler.asm index dfbeb770c..b6be8cb5c 100644 --- a/data/pokemon/base_stats/graveler.asm +++ b/data/pokemon/base_stats/graveler.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/graveler/front.dimensions" + INCBIN "gfx/pokemon/graveler/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/grimer.asm b/data/pokemon/base_stats/grimer.asm index 86dacd1e6..b1536bb3c 100644 --- a/data/pokemon/base_stats/grimer.asm +++ b/data/pokemon/base_stats/grimer.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/grimer/front.dimensions" + INCBIN "gfx/pokemon/grimer/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/growlithe.asm b/data/pokemon/base_stats/growlithe.asm index ef5cc53b3..e3cfa7faa 100644 --- a/data/pokemon/base_stats/growlithe.asm +++ b/data/pokemon/base_stats/growlithe.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/growlithe/front.dimensions" + INCBIN "gfx/pokemon/growlithe/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/gyarados.asm b/data/pokemon/base_stats/gyarados.asm index 1bdceff88..eb4f51f08 100644 --- a/data/pokemon/base_stats/gyarados.asm +++ b/data/pokemon/base_stats/gyarados.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 5 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/gyarados/front.dimensions" + INCBIN "gfx/pokemon/gyarados/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/haunter.asm b/data/pokemon/base_stats/haunter.asm index c0a192d67..5c31fd2a9 100644 --- a/data/pokemon/base_stats/haunter.asm +++ b/data/pokemon/base_stats/haunter.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/haunter/front.dimensions" + INCBIN "gfx/pokemon/haunter/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/heracross.asm b/data/pokemon/base_stats/heracross.asm index 1f81d9c7b..f27efbe0d 100644 --- a/data/pokemon/base_stats/heracross.asm +++ b/data/pokemon/base_stats/heracross.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/heracross/front.dimensions" + INCBIN "gfx/pokemon/heracross/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/hitmonchan.asm b/data/pokemon/base_stats/hitmonchan.asm index 3eeb23dd4..b8e7da73b 100644 --- a/data/pokemon/base_stats/hitmonchan.asm +++ b/data/pokemon/base_stats/hitmonchan.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hitmonchan/front.dimensions" + INCBIN "gfx/pokemon/hitmonchan/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/hitmonlee.asm b/data/pokemon/base_stats/hitmonlee.asm index a31352209..a5759f92d 100644 --- a/data/pokemon/base_stats/hitmonlee.asm +++ b/data/pokemon/base_stats/hitmonlee.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hitmonlee/front.dimensions" + INCBIN "gfx/pokemon/hitmonlee/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/hitmontop.asm b/data/pokemon/base_stats/hitmontop.asm index 532b8a6d8..a36b7fc58 100644 --- a/data/pokemon/base_stats/hitmontop.asm +++ b/data/pokemon/base_stats/hitmontop.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hitmontop/front.dimensions" + INCBIN "gfx/pokemon/hitmontop/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/ho_oh.asm b/data/pokemon/base_stats/ho_oh.asm index f0792d427..910ea5a9f 100644 --- a/data/pokemon/base_stats/ho_oh.asm +++ b/data/pokemon/base_stats/ho_oh.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ho_oh/front.dimensions" + INCBIN "gfx/pokemon/ho_oh/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/hoothoot.asm b/data/pokemon/base_stats/hoothoot.asm index 0442fe414..b52e929e9 100644 --- a/data/pokemon/base_stats/hoothoot.asm +++ b/data/pokemon/base_stats/hoothoot.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hoothoot/front.dimensions" + INCBIN "gfx/pokemon/hoothoot/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/hoppip.asm b/data/pokemon/base_stats/hoppip.asm index b1918d699..c6e1a86dc 100644 --- a/data/pokemon/base_stats/hoppip.asm +++ b/data/pokemon/base_stats/hoppip.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hoppip/front.dimensions" + INCBIN "gfx/pokemon/hoppip/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FAIRY, PLANT ; egg groups diff --git a/data/pokemon/base_stats/horsea.asm b/data/pokemon/base_stats/horsea.asm index 3296f52af..c3d75a927 100644 --- a/data/pokemon/base_stats/horsea.asm +++ b/data/pokemon/base_stats/horsea.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/horsea/front.dimensions" + INCBIN "gfx/pokemon/horsea/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/houndoom.asm b/data/pokemon/base_stats/houndoom.asm index 234832675..1f3b4f903 100644 --- a/data/pokemon/base_stats/houndoom.asm +++ b/data/pokemon/base_stats/houndoom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/houndoom/front.dimensions" + INCBIN "gfx/pokemon/houndoom/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/houndour.asm b/data/pokemon/base_stats/houndour.asm index f743cd81e..b064b3e0d 100644 --- a/data/pokemon/base_stats/houndour.asm +++ b/data/pokemon/base_stats/houndour.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/houndour/front.dimensions" + INCBIN "gfx/pokemon/houndour/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/hypno.asm b/data/pokemon/base_stats/hypno.asm index 25aea318a..83aab91c8 100644 --- a/data/pokemon/base_stats/hypno.asm +++ b/data/pokemon/base_stats/hypno.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/hypno/front.dimensions" + INCBIN "gfx/pokemon/hypno/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/igglybuff.asm b/data/pokemon/base_stats/igglybuff.asm index c8c7ca7bf..8745ecafb 100644 --- a/data/pokemon/base_stats/igglybuff.asm +++ b/data/pokemon/base_stats/igglybuff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/igglybuff/front.dimensions" + INCBIN "gfx/pokemon/igglybuff/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/ivysaur.asm b/data/pokemon/base_stats/ivysaur.asm index 7d98b4b6d..8e7c7c9c4 100644 --- a/data/pokemon/base_stats/ivysaur.asm +++ b/data/pokemon/base_stats/ivysaur.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ivysaur/front.dimensions" + INCBIN "gfx/pokemon/ivysaur/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/jigglypuff.asm b/data/pokemon/base_stats/jigglypuff.asm index 09b3a7dbb..f785f0228 100644 --- a/data/pokemon/base_stats/jigglypuff.asm +++ b/data/pokemon/base_stats/jigglypuff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jigglypuff/front.dimensions" + INCBIN "gfx/pokemon/jigglypuff/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/jolteon.asm b/data/pokemon/base_stats/jolteon.asm index 665a40d1d..a6636ebba 100644 --- a/data/pokemon/base_stats/jolteon.asm +++ b/data/pokemon/base_stats/jolteon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jolteon/front.dimensions" + INCBIN "gfx/pokemon/jolteon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/jumpluff.asm b/data/pokemon/base_stats/jumpluff.asm index 623fbe82d..c40d2c559 100644 --- a/data/pokemon/base_stats/jumpluff.asm +++ b/data/pokemon/base_stats/jumpluff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jumpluff/front.dimensions" + INCBIN "gfx/pokemon/jumpluff/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FAIRY, PLANT ; egg groups diff --git a/data/pokemon/base_stats/jynx.asm b/data/pokemon/base_stats/jynx.asm index 3018dfa8e..5696b83ee 100644 --- a/data/pokemon/base_stats/jynx.asm +++ b/data/pokemon/base_stats/jynx.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/jynx/front.dimensions" + INCBIN "gfx/pokemon/jynx/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/kabuto.asm b/data/pokemon/base_stats/kabuto.asm index 9a38cbcba..60022586f 100644 --- a/data/pokemon/base_stats/kabuto.asm +++ b/data/pokemon/base_stats/kabuto.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kabuto/front.dimensions" + INCBIN "gfx/pokemon/kabuto/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/kabutops.asm b/data/pokemon/base_stats/kabutops.asm index b8de99fa1..b56cb1db8 100644 --- a/data/pokemon/base_stats/kabutops.asm +++ b/data/pokemon/base_stats/kabutops.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kabutops/front.dimensions" + INCBIN "gfx/pokemon/kabutops/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/kadabra.asm b/data/pokemon/base_stats/kadabra.asm index a32a0c5a9..e3ce05321 100644 --- a/data/pokemon/base_stats/kadabra.asm +++ b/data/pokemon/base_stats/kadabra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kadabra/front.dimensions" + INCBIN "gfx/pokemon/kadabra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/kakuna.asm b/data/pokemon/base_stats/kakuna.asm index 83241fbcd..4c8304dd2 100644 --- a/data/pokemon/base_stats/kakuna.asm +++ b/data/pokemon/base_stats/kakuna.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kakuna/front.dimensions" + INCBIN "gfx/pokemon/kakuna/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/kangaskhan.asm b/data/pokemon/base_stats/kangaskhan.asm index 21af227f0..3724e29eb 100644 --- a/data/pokemon/base_stats/kangaskhan.asm +++ b/data/pokemon/base_stats/kangaskhan.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kangaskhan/front.dimensions" + INCBIN "gfx/pokemon/kangaskhan/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/kingdra.asm b/data/pokemon/base_stats/kingdra.asm index e62d0f23e..d217fa612 100644 --- a/data/pokemon/base_stats/kingdra.asm +++ b/data/pokemon/base_stats/kingdra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kingdra/front.dimensions" + INCBIN "gfx/pokemon/kingdra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/kingler.asm b/data/pokemon/base_stats/kingler.asm index 01ac23a99..82549ca88 100644 --- a/data/pokemon/base_stats/kingler.asm +++ b/data/pokemon/base_stats/kingler.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/kingler/front.dimensions" + INCBIN "gfx/pokemon/kingler/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/koffing.asm b/data/pokemon/base_stats/koffing.asm index 70e8bd114..8408f4ad8 100644 --- a/data/pokemon/base_stats/koffing.asm +++ b/data/pokemon/base_stats/koffing.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/koffing/front.dimensions" + INCBIN "gfx/pokemon/koffing/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/krabby.asm b/data/pokemon/base_stats/krabby.asm index 60ce4c7f4..f4d78962a 100644 --- a/data/pokemon/base_stats/krabby.asm +++ b/data/pokemon/base_stats/krabby.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/krabby/front.dimensions" + INCBIN "gfx/pokemon/krabby/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/lanturn.asm b/data/pokemon/base_stats/lanturn.asm index f5b747fad..ea97a9722 100644 --- a/data/pokemon/base_stats/lanturn.asm +++ b/data/pokemon/base_stats/lanturn.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lanturn/front.dimensions" + INCBIN "gfx/pokemon/lanturn/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/lapras.asm b/data/pokemon/base_stats/lapras.asm index e6ccec359..4ba001dfd 100644 --- a/data/pokemon/base_stats/lapras.asm +++ b/data/pokemon/base_stats/lapras.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lapras/front.dimensions" + INCBIN "gfx/pokemon/lapras/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/larvitar.asm b/data/pokemon/base_stats/larvitar.asm index 7de66ca7f..d9c18d1bc 100644 --- a/data/pokemon/base_stats/larvitar.asm +++ b/data/pokemon/base_stats/larvitar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/larvitar/front.dimensions" + INCBIN "gfx/pokemon/larvitar/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/ledian.asm b/data/pokemon/base_stats/ledian.asm index 84a06c092..1f0cb4fd9 100644 --- a/data/pokemon/base_stats/ledian.asm +++ b/data/pokemon/base_stats/ledian.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ledian/front.dimensions" + INCBIN "gfx/pokemon/ledian/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/ledyba.asm b/data/pokemon/base_stats/ledyba.asm index 68a20d1ea..e78d4efe4 100644 --- a/data/pokemon/base_stats/ledyba.asm +++ b/data/pokemon/base_stats/ledyba.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ledyba/front.dimensions" + INCBIN "gfx/pokemon/ledyba/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/lickitung.asm b/data/pokemon/base_stats/lickitung.asm index 0f8f351da..43d60ec6c 100644 --- a/data/pokemon/base_stats/lickitung.asm +++ b/data/pokemon/base_stats/lickitung.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lickitung/front.dimensions" + INCBIN "gfx/pokemon/lickitung/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/lugia.asm b/data/pokemon/base_stats/lugia.asm index 6649c9954..7ad2f23a1 100644 --- a/data/pokemon/base_stats/lugia.asm +++ b/data/pokemon/base_stats/lugia.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/lugia/front.dimensions" + INCBIN "gfx/pokemon/lugia/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/machamp.asm b/data/pokemon/base_stats/machamp.asm index bb716cf25..41b168234 100644 --- a/data/pokemon/base_stats/machamp.asm +++ b/data/pokemon/base_stats/machamp.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/machamp/front.dimensions" + INCBIN "gfx/pokemon/machamp/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/machoke.asm b/data/pokemon/base_stats/machoke.asm index 79caf8c70..8b98ea1de 100644 --- a/data/pokemon/base_stats/machoke.asm +++ b/data/pokemon/base_stats/machoke.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/machoke/front.dimensions" + INCBIN "gfx/pokemon/machoke/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/machop.asm b/data/pokemon/base_stats/machop.asm index 6b0cbaab7..cb1b2f7c5 100644 --- a/data/pokemon/base_stats/machop.asm +++ b/data/pokemon/base_stats/machop.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/machop/front.dimensions" + INCBIN "gfx/pokemon/machop/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/magby.asm b/data/pokemon/base_stats/magby.asm index d593d0272..132387f32 100644 --- a/data/pokemon/base_stats/magby.asm +++ b/data/pokemon/base_stats/magby.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magby/front.dimensions" + INCBIN "gfx/pokemon/magby/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/magcargo.asm b/data/pokemon/base_stats/magcargo.asm index 45493135b..aa2008cd1 100644 --- a/data/pokemon/base_stats/magcargo.asm +++ b/data/pokemon/base_stats/magcargo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magcargo/front.dimensions" + INCBIN "gfx/pokemon/magcargo/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/magikarp.asm b/data/pokemon/base_stats/magikarp.asm index 2519b475b..e5524543f 100644 --- a/data/pokemon/base_stats/magikarp.asm +++ b/data/pokemon/base_stats/magikarp.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 5 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magikarp/front.dimensions" + INCBIN "gfx/pokemon/magikarp/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FISH, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/magmar.asm b/data/pokemon/base_stats/magmar.asm index 899b3f39f..595df7ab7 100644 --- a/data/pokemon/base_stats/magmar.asm +++ b/data/pokemon/base_stats/magmar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magmar/front.dimensions" + INCBIN "gfx/pokemon/magmar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/magnemite.asm b/data/pokemon/base_stats/magnemite.asm index 19a85a9a1..42bdc18a7 100644 --- a/data/pokemon/base_stats/magnemite.asm +++ b/data/pokemon/base_stats/magnemite.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magnemite/front.dimensions" + INCBIN "gfx/pokemon/magnemite/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/magneton.asm b/data/pokemon/base_stats/magneton.asm index 5fdbe68f4..5cac867be 100644 --- a/data/pokemon/base_stats/magneton.asm +++ b/data/pokemon/base_stats/magneton.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/magneton/front.dimensions" + INCBIN "gfx/pokemon/magneton/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/mankey.asm b/data/pokemon/base_stats/mankey.asm index 77cc260d4..41aaac8a9 100644 --- a/data/pokemon/base_stats/mankey.asm +++ b/data/pokemon/base_stats/mankey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mankey/front.dimensions" + INCBIN "gfx/pokemon/mankey/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/mantine.asm b/data/pokemon/base_stats/mantine.asm index bfe113428..bec060cb6 100644 --- a/data/pokemon/base_stats/mantine.asm +++ b/data/pokemon/base_stats/mantine.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mantine/front.dimensions" + INCBIN "gfx/pokemon/mantine/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/mareep.asm b/data/pokemon/base_stats/mareep.asm index cc190b664..8388d7f8c 100644 --- a/data/pokemon/base_stats/mareep.asm +++ b/data/pokemon/base_stats/mareep.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mareep/front.dimensions" + INCBIN "gfx/pokemon/mareep/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/marill.asm b/data/pokemon/base_stats/marill.asm index 73708d1df..b6fcc62e5 100644 --- a/data/pokemon/base_stats/marill.asm +++ b/data/pokemon/base_stats/marill.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/marill/front.dimensions" + INCBIN "gfx/pokemon/marill/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMPHIBIAN, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/marowak.asm b/data/pokemon/base_stats/marowak.asm index 3e04b9697..cc03dc697 100644 --- a/data/pokemon/base_stats/marowak.asm +++ b/data/pokemon/base_stats/marowak.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/marowak/front.dimensions" + INCBIN "gfx/pokemon/marowak/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/meganium.asm b/data/pokemon/base_stats/meganium.asm index cf1125003..eaca626d4 100644 --- a/data/pokemon/base_stats/meganium.asm +++ b/data/pokemon/base_stats/meganium.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/meganium/front.dimensions" + INCBIN "gfx/pokemon/meganium/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/meowth.asm b/data/pokemon/base_stats/meowth.asm index f177f0efd..114f76899 100644 --- a/data/pokemon/base_stats/meowth.asm +++ b/data/pokemon/base_stats/meowth.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/meowth/front.dimensions" + INCBIN "gfx/pokemon/meowth/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/metapod.asm b/data/pokemon/base_stats/metapod.asm index e26e31fc5..f2b33f831 100644 --- a/data/pokemon/base_stats/metapod.asm +++ b/data/pokemon/base_stats/metapod.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/metapod/front.dimensions" + INCBIN "gfx/pokemon/metapod/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/mew.asm b/data/pokemon/base_stats/mew.asm index 1961cef4e..4d70413d0 100644 --- a/data/pokemon/base_stats/mew.asm +++ b/data/pokemon/base_stats/mew.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mew/front.dimensions" + INCBIN "gfx/pokemon/mew/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/mewtwo.asm b/data/pokemon/base_stats/mewtwo.asm index 748a1c3fb..0e9636223 100644 --- a/data/pokemon/base_stats/mewtwo.asm +++ b/data/pokemon/base_stats/mewtwo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 120 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mewtwo/front.dimensions" + INCBIN "gfx/pokemon/mewtwo/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/miltank.asm b/data/pokemon/base_stats/miltank.asm index 63ed422bc..c751a2f9c 100644 --- a/data/pokemon/base_stats/miltank.asm +++ b/data/pokemon/base_stats/miltank.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/miltank/front.dimensions" + INCBIN "gfx/pokemon/miltank/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/misdreavus.asm b/data/pokemon/base_stats/misdreavus.asm index 11c5f239d..d1824eaa2 100644 --- a/data/pokemon/base_stats/misdreavus.asm +++ b/data/pokemon/base_stats/misdreavus.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/misdreavus/front.dimensions" + INCBIN "gfx/pokemon/misdreavus/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/moltres.asm b/data/pokemon/base_stats/moltres.asm index bf70c2821..22157c073 100644 --- a/data/pokemon/base_stats/moltres.asm +++ b/data/pokemon/base_stats/moltres.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/moltres/front.dimensions" + INCBIN "gfx/pokemon/moltres/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/mr__mime.asm b/data/pokemon/base_stats/mr__mime.asm index 9728c296f..1abc9995f 100644 --- a/data/pokemon/base_stats/mr__mime.asm +++ b/data/pokemon/base_stats/mr__mime.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/mr__mime/front.dimensions" + INCBIN "gfx/pokemon/mr__mime/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn HUMANSHAPE, HUMANSHAPE ; egg groups diff --git a/data/pokemon/base_stats/muk.asm b/data/pokemon/base_stats/muk.asm index 30c6414fd..a25d85605 100644 --- a/data/pokemon/base_stats/muk.asm +++ b/data/pokemon/base_stats/muk.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/muk/front.dimensions" + INCBIN "gfx/pokemon/muk/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/murkrow.asm b/data/pokemon/base_stats/murkrow.asm index 7f459e8aa..2fada2697 100644 --- a/data/pokemon/base_stats/murkrow.asm +++ b/data/pokemon/base_stats/murkrow.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/murkrow/front.dimensions" + INCBIN "gfx/pokemon/murkrow/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/natu.asm b/data/pokemon/base_stats/natu.asm index 54ef8af58..b9bde658a 100644 --- a/data/pokemon/base_stats/natu.asm +++ b/data/pokemon/base_stats/natu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/natu/front.dimensions" + INCBIN "gfx/pokemon/natu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/nidoking.asm b/data/pokemon/base_stats/nidoking.asm index 316f71e87..3d7205af5 100644 --- a/data/pokemon/base_stats/nidoking.asm +++ b/data/pokemon/base_stats/nidoking.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoking/front.dimensions" + INCBIN "gfx/pokemon/nidoking/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/nidoqueen.asm b/data/pokemon/base_stats/nidoqueen.asm index e9d2ae611..4c5ca110e 100644 --- a/data/pokemon/base_stats/nidoqueen.asm +++ b/data/pokemon/base_stats/nidoqueen.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoqueen/front.dimensions" + INCBIN "gfx/pokemon/nidoqueen/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/nidoran_f.asm b/data/pokemon/base_stats/nidoran_f.asm index 1cd53b17a..77925f1df 100644 --- a/data/pokemon/base_stats/nidoran_f.asm +++ b/data/pokemon/base_stats/nidoran_f.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoran_f/front.dimensions" + INCBIN "gfx/pokemon/nidoran_f/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/nidoran_m.asm b/data/pokemon/base_stats/nidoran_m.asm index cf0c1e1b2..0f25712dd 100644 --- a/data/pokemon/base_stats/nidoran_m.asm +++ b/data/pokemon/base_stats/nidoran_m.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidoran_m/front.dimensions" + INCBIN "gfx/pokemon/nidoran_m/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/nidorina.asm b/data/pokemon/base_stats/nidorina.asm index 42b3aebf8..2385f82ec 100644 --- a/data/pokemon/base_stats/nidorina.asm +++ b/data/pokemon/base_stats/nidorina.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidorina/front.dimensions" + INCBIN "gfx/pokemon/nidorina/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/nidorino.asm b/data/pokemon/base_stats/nidorino.asm index f31e8df3d..9c94ea824 100644 --- a/data/pokemon/base_stats/nidorino.asm +++ b/data/pokemon/base_stats/nidorino.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/nidorino/front.dimensions" + INCBIN "gfx/pokemon/nidorino/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/ninetales.asm b/data/pokemon/base_stats/ninetales.asm index 5fd84b886..f23d2e384 100644 --- a/data/pokemon/base_stats/ninetales.asm +++ b/data/pokemon/base_stats/ninetales.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ninetales/front.dimensions" + INCBIN "gfx/pokemon/ninetales/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/noctowl.asm b/data/pokemon/base_stats/noctowl.asm index e2c8565bd..030dec08e 100644 --- a/data/pokemon/base_stats/noctowl.asm +++ b/data/pokemon/base_stats/noctowl.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/noctowl/front.dimensions" + INCBIN "gfx/pokemon/noctowl/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/octillery.asm b/data/pokemon/base_stats/octillery.asm index 80b5ad97a..6bc2f7d46 100644 --- a/data/pokemon/base_stats/octillery.asm +++ b/data/pokemon/base_stats/octillery.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/octillery/front.dimensions" + INCBIN "gfx/pokemon/octillery/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FISH ; egg groups diff --git a/data/pokemon/base_stats/oddish.asm b/data/pokemon/base_stats/oddish.asm index df75f6485..98f8c96f9 100644 --- a/data/pokemon/base_stats/oddish.asm +++ b/data/pokemon/base_stats/oddish.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/oddish/front.dimensions" + INCBIN "gfx/pokemon/oddish/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/omanyte.asm b/data/pokemon/base_stats/omanyte.asm index 6278f4e3c..70b88df38 100644 --- a/data/pokemon/base_stats/omanyte.asm +++ b/data/pokemon/base_stats/omanyte.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/omanyte/front.dimensions" + INCBIN "gfx/pokemon/omanyte/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/omastar.asm b/data/pokemon/base_stats/omastar.asm index d3f3b15e1..659ecc825 100644 --- a/data/pokemon/base_stats/omastar.asm +++ b/data/pokemon/base_stats/omastar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 30 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/omastar/front.dimensions" + INCBIN "gfx/pokemon/omastar/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/onix.asm b/data/pokemon/base_stats/onix.asm index 2fc5bd175..befd53abf 100644 --- a/data/pokemon/base_stats/onix.asm +++ b/data/pokemon/base_stats/onix.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/onix/front.dimensions" + INCBIN "gfx/pokemon/onix/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/paras.asm b/data/pokemon/base_stats/paras.asm index d86a51765..46687f928 100644 --- a/data/pokemon/base_stats/paras.asm +++ b/data/pokemon/base_stats/paras.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/paras/front.dimensions" + INCBIN "gfx/pokemon/paras/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/parasect.asm b/data/pokemon/base_stats/parasect.asm index 5c4320fd3..d40dd4fd9 100644 --- a/data/pokemon/base_stats/parasect.asm +++ b/data/pokemon/base_stats/parasect.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/parasect/front.dimensions" + INCBIN "gfx/pokemon/parasect/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/persian.asm b/data/pokemon/base_stats/persian.asm index fd2677e16..bbfd9beec 100644 --- a/data/pokemon/base_stats/persian.asm +++ b/data/pokemon/base_stats/persian.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/persian/front.dimensions" + INCBIN "gfx/pokemon/persian/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/phanpy.asm b/data/pokemon/base_stats/phanpy.asm index 93a26d43c..27794e0b5 100644 --- a/data/pokemon/base_stats/phanpy.asm +++ b/data/pokemon/base_stats/phanpy.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/phanpy/front.dimensions" + INCBIN "gfx/pokemon/phanpy/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/pichu.asm b/data/pokemon/base_stats/pichu.asm index da497bdf8..35d6a105a 100644 --- a/data/pokemon/base_stats/pichu.asm +++ b/data/pokemon/base_stats/pichu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pichu/front.dimensions" + INCBIN "gfx/pokemon/pichu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/pidgeot.asm b/data/pokemon/base_stats/pidgeot.asm index 35222d2be..2d117b955 100644 --- a/data/pokemon/base_stats/pidgeot.asm +++ b/data/pokemon/base_stats/pidgeot.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pidgeot/front.dimensions" + INCBIN "gfx/pokemon/pidgeot/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/pidgeotto.asm b/data/pokemon/base_stats/pidgeotto.asm index 13b2d8e0c..8e263c4b3 100644 --- a/data/pokemon/base_stats/pidgeotto.asm +++ b/data/pokemon/base_stats/pidgeotto.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pidgeotto/front.dimensions" + INCBIN "gfx/pokemon/pidgeotto/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/pidgey.asm b/data/pokemon/base_stats/pidgey.asm index 0290f1717..123b95d7d 100644 --- a/data/pokemon/base_stats/pidgey.asm +++ b/data/pokemon/base_stats/pidgey.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pidgey/front.dimensions" + INCBIN "gfx/pokemon/pidgey/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/pikachu.asm b/data/pokemon/base_stats/pikachu.asm index cd998aead..78204ff78 100644 --- a/data/pokemon/base_stats/pikachu.asm +++ b/data/pokemon/base_stats/pikachu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pikachu/front.dimensions" + INCBIN "gfx/pokemon/pikachu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/piloswine.asm b/data/pokemon/base_stats/piloswine.asm index dd8bf950b..3e48aa4c9 100644 --- a/data/pokemon/base_stats/piloswine.asm +++ b/data/pokemon/base_stats/piloswine.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/piloswine/front.dimensions" + INCBIN "gfx/pokemon/piloswine/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/pineco.asm b/data/pokemon/base_stats/pineco.asm index 2c27a9913..5754c49a2 100644 --- a/data/pokemon/base_stats/pineco.asm +++ b/data/pokemon/base_stats/pineco.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pineco/front.dimensions" + INCBIN "gfx/pokemon/pineco/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/pinsir.asm b/data/pokemon/base_stats/pinsir.asm index 697bba44c..55927c918 100644 --- a/data/pokemon/base_stats/pinsir.asm +++ b/data/pokemon/base_stats/pinsir.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pinsir/front.dimensions" + INCBIN "gfx/pokemon/pinsir/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/politoed.asm b/data/pokemon/base_stats/politoed.asm index b3dc1e98a..6ad959406 100644 --- a/data/pokemon/base_stats/politoed.asm +++ b/data/pokemon/base_stats/politoed.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/politoed/front.dimensions" + INCBIN "gfx/pokemon/politoed/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/poliwag.asm b/data/pokemon/base_stats/poliwag.asm index 00e328990..3a4d8c051 100644 --- a/data/pokemon/base_stats/poliwag.asm +++ b/data/pokemon/base_stats/poliwag.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/poliwag/front.dimensions" + INCBIN "gfx/pokemon/poliwag/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/poliwhirl.asm b/data/pokemon/base_stats/poliwhirl.asm index f62849cc9..d28964ebd 100644 --- a/data/pokemon/base_stats/poliwhirl.asm +++ b/data/pokemon/base_stats/poliwhirl.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/poliwhirl/front.dimensions" + INCBIN "gfx/pokemon/poliwhirl/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/poliwrath.asm b/data/pokemon/base_stats/poliwrath.asm index 04f74c42a..3b142e061 100644 --- a/data/pokemon/base_stats/poliwrath.asm +++ b/data/pokemon/base_stats/poliwrath.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/poliwrath/front.dimensions" + INCBIN "gfx/pokemon/poliwrath/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn AMPHIBIAN, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/ponyta.asm b/data/pokemon/base_stats/ponyta.asm index 5c1f77c98..2c3c3f9cf 100644 --- a/data/pokemon/base_stats/ponyta.asm +++ b/data/pokemon/base_stats/ponyta.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ponyta/front.dimensions" + INCBIN "gfx/pokemon/ponyta/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/porygon.asm b/data/pokemon/base_stats/porygon.asm index ecec59045..c034acdfb 100644 --- a/data/pokemon/base_stats/porygon.asm +++ b/data/pokemon/base_stats/porygon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/porygon/front.dimensions" + INCBIN "gfx/pokemon/porygon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/porygon2.asm b/data/pokemon/base_stats/porygon2.asm index 6bd464d3c..1e9625509 100644 --- a/data/pokemon/base_stats/porygon2.asm +++ b/data/pokemon/base_stats/porygon2.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/porygon2/front.dimensions" + INCBIN "gfx/pokemon/porygon2/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/primeape.asm b/data/pokemon/base_stats/primeape.asm index 249f9bee4..a7d1ee74a 100644 --- a/data/pokemon/base_stats/primeape.asm +++ b/data/pokemon/base_stats/primeape.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/primeape/front.dimensions" + INCBIN "gfx/pokemon/primeape/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/psyduck.asm b/data/pokemon/base_stats/psyduck.asm index 261fdde99..d2901750b 100644 --- a/data/pokemon/base_stats/psyduck.asm +++ b/data/pokemon/base_stats/psyduck.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/psyduck/front.dimensions" + INCBIN "gfx/pokemon/psyduck/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/pupitar.asm b/data/pokemon/base_stats/pupitar.asm index 63c0a41a7..7ff381195 100644 --- a/data/pokemon/base_stats/pupitar.asm +++ b/data/pokemon/base_stats/pupitar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/pupitar/front.dimensions" + INCBIN "gfx/pokemon/pupitar/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/quagsire.asm b/data/pokemon/base_stats/quagsire.asm index 0f49866e7..75a1d24be 100644 --- a/data/pokemon/base_stats/quagsire.asm +++ b/data/pokemon/base_stats/quagsire.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/quagsire/front.dimensions" + INCBIN "gfx/pokemon/quagsire/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/quilava.asm b/data/pokemon/base_stats/quilava.asm index efadeda06..4cb388301 100644 --- a/data/pokemon/base_stats/quilava.asm +++ b/data/pokemon/base_stats/quilava.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/quilava/front.dimensions" + INCBIN "gfx/pokemon/quilava/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/qwilfish.asm b/data/pokemon/base_stats/qwilfish.asm index 70648e5fd..0cfe4e2d8 100644 --- a/data/pokemon/base_stats/qwilfish.asm +++ b/data/pokemon/base_stats/qwilfish.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/qwilfish/front.dimensions" + INCBIN "gfx/pokemon/qwilfish/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/raichu.asm b/data/pokemon/base_stats/raichu.asm index cdc5193cd..b6723ac0f 100644 --- a/data/pokemon/base_stats/raichu.asm +++ b/data/pokemon/base_stats/raichu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/raichu/front.dimensions" + INCBIN "gfx/pokemon/raichu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/raikou.asm b/data/pokemon/base_stats/raikou.asm index a68f16181..47f4f9da3 100644 --- a/data/pokemon/base_stats/raikou.asm +++ b/data/pokemon/base_stats/raikou.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/raikou/front.dimensions" + INCBIN "gfx/pokemon/raikou/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/rapidash.asm b/data/pokemon/base_stats/rapidash.asm index 0167e7439..291b129f2 100644 --- a/data/pokemon/base_stats/rapidash.asm +++ b/data/pokemon/base_stats/rapidash.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rapidash/front.dimensions" + INCBIN "gfx/pokemon/rapidash/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/raticate.asm b/data/pokemon/base_stats/raticate.asm index 1cfc65906..1424f3ffb 100644 --- a/data/pokemon/base_stats/raticate.asm +++ b/data/pokemon/base_stats/raticate.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/raticate/front.dimensions" + INCBIN "gfx/pokemon/raticate/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/rattata.asm b/data/pokemon/base_stats/rattata.asm index 13c21e889..71498aeac 100644 --- a/data/pokemon/base_stats/rattata.asm +++ b/data/pokemon/base_stats/rattata.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rattata/front.dimensions" + INCBIN "gfx/pokemon/rattata/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/remoraid.asm b/data/pokemon/base_stats/remoraid.asm index 10ae15479..8dabbb0a4 100644 --- a/data/pokemon/base_stats/remoraid.asm +++ b/data/pokemon/base_stats/remoraid.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/remoraid/front.dimensions" + INCBIN "gfx/pokemon/remoraid/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FISH ; egg groups diff --git a/data/pokemon/base_stats/rhydon.asm b/data/pokemon/base_stats/rhydon.asm index cdcfb4cad..e885edd75 100644 --- a/data/pokemon/base_stats/rhydon.asm +++ b/data/pokemon/base_stats/rhydon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rhydon/front.dimensions" + INCBIN "gfx/pokemon/rhydon/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/rhyhorn.asm b/data/pokemon/base_stats/rhyhorn.asm index 67d438751..f15f73719 100644 --- a/data/pokemon/base_stats/rhyhorn.asm +++ b/data/pokemon/base_stats/rhyhorn.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/rhyhorn/front.dimensions" + INCBIN "gfx/pokemon/rhyhorn/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, FIELD ; egg groups diff --git a/data/pokemon/base_stats/sandshrew.asm b/data/pokemon/base_stats/sandshrew.asm index cc0a4c492..7b172a120 100644 --- a/data/pokemon/base_stats/sandshrew.asm +++ b/data/pokemon/base_stats/sandshrew.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sandshrew/front.dimensions" + INCBIN "gfx/pokemon/sandshrew/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/sandslash.asm b/data/pokemon/base_stats/sandslash.asm index 75f66b363..d850c9697 100644 --- a/data/pokemon/base_stats/sandslash.asm +++ b/data/pokemon/base_stats/sandslash.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sandslash/front.dimensions" + INCBIN "gfx/pokemon/sandslash/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/scizor.asm b/data/pokemon/base_stats/scizor.asm index 127110c7a..c841c6301 100644 --- a/data/pokemon/base_stats/scizor.asm +++ b/data/pokemon/base_stats/scizor.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/scizor/front.dimensions" + INCBIN "gfx/pokemon/scizor/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/scyther.asm b/data/pokemon/base_stats/scyther.asm index 4c4779f0f..ea7c7cd33 100644 --- a/data/pokemon/base_stats/scyther.asm +++ b/data/pokemon/base_stats/scyther.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/scyther/front.dimensions" + INCBIN "gfx/pokemon/scyther/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/seadra.asm b/data/pokemon/base_stats/seadra.asm index b4dc47c20..3ba5687ce 100644 --- a/data/pokemon/base_stats/seadra.asm +++ b/data/pokemon/base_stats/seadra.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/seadra/front.dimensions" + INCBIN "gfx/pokemon/seadra/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, REPTILE ; egg groups diff --git a/data/pokemon/base_stats/seaking.asm b/data/pokemon/base_stats/seaking.asm index 4d6d2f91e..70bee646a 100644 --- a/data/pokemon/base_stats/seaking.asm +++ b/data/pokemon/base_stats/seaking.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/seaking/front.dimensions" + INCBIN "gfx/pokemon/seaking/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FISH, FISH ; egg groups diff --git a/data/pokemon/base_stats/seel.asm b/data/pokemon/base_stats/seel.asm index 39b44fad8..13edf89bc 100644 --- a/data/pokemon/base_stats/seel.asm +++ b/data/pokemon/base_stats/seel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/seel/front.dimensions" + INCBIN "gfx/pokemon/seel/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/sentret.asm b/data/pokemon/base_stats/sentret.asm index 12e120087..c3802fa63 100644 --- a/data/pokemon/base_stats/sentret.asm +++ b/data/pokemon/base_stats/sentret.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sentret/front.dimensions" + INCBIN "gfx/pokemon/sentret/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/shellder.asm b/data/pokemon/base_stats/shellder.asm index fb60ff262..9ca88a03d 100644 --- a/data/pokemon/base_stats/shellder.asm +++ b/data/pokemon/base_stats/shellder.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/shellder/front.dimensions" + INCBIN "gfx/pokemon/shellder/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/shuckle.asm b/data/pokemon/base_stats/shuckle.asm index 7cd31ad79..ec3a3b410 100644 --- a/data/pokemon/base_stats/shuckle.asm +++ b/data/pokemon/base_stats/shuckle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/shuckle/front.dimensions" + INCBIN "gfx/pokemon/shuckle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/skarmory.asm b/data/pokemon/base_stats/skarmory.asm index cf271b39f..4d0b5f3de 100644 --- a/data/pokemon/base_stats/skarmory.asm +++ b/data/pokemon/base_stats/skarmory.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/skarmory/front.dimensions" + INCBIN "gfx/pokemon/skarmory/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/skiploom.asm b/data/pokemon/base_stats/skiploom.asm index 46bbc8a8c..29a7be748 100644 --- a/data/pokemon/base_stats/skiploom.asm +++ b/data/pokemon/base_stats/skiploom.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/skiploom/front.dimensions" + INCBIN "gfx/pokemon/skiploom/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FAIRY, PLANT ; egg groups diff --git a/data/pokemon/base_stats/slowbro.asm b/data/pokemon/base_stats/slowbro.asm index a6b3a47b3..a9fc61e3a 100644 --- a/data/pokemon/base_stats/slowbro.asm +++ b/data/pokemon/base_stats/slowbro.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slowbro/front.dimensions" + INCBIN "gfx/pokemon/slowbro/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/slowking.asm b/data/pokemon/base_stats/slowking.asm index e60da7fd6..59d6c83e4 100644 --- a/data/pokemon/base_stats/slowking.asm +++ b/data/pokemon/base_stats/slowking.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slowking/front.dimensions" + INCBIN "gfx/pokemon/slowking/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/slowpoke.asm b/data/pokemon/base_stats/slowpoke.asm index a987d9bfa..cb9bc813b 100644 --- a/data/pokemon/base_stats/slowpoke.asm +++ b/data/pokemon/base_stats/slowpoke.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slowpoke/front.dimensions" + INCBIN "gfx/pokemon/slowpoke/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/slugma.asm b/data/pokemon/base_stats/slugma.asm index a760dd40e..234e844b9 100644 --- a/data/pokemon/base_stats/slugma.asm +++ b/data/pokemon/base_stats/slugma.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/slugma/front.dimensions" + INCBIN "gfx/pokemon/slugma/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/smeargle.asm b/data/pokemon/base_stats/smeargle.asm index d80443acf..2373cb0f0 100644 --- a/data/pokemon/base_stats/smeargle.asm +++ b/data/pokemon/base_stats/smeargle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/smeargle/front.dimensions" + INCBIN "gfx/pokemon/smeargle/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/smoochum.asm b/data/pokemon/base_stats/smoochum.asm index b3c6fdda0..f8f5e22f6 100644 --- a/data/pokemon/base_stats/smoochum.asm +++ b/data/pokemon/base_stats/smoochum.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/smoochum/front.dimensions" + INCBIN "gfx/pokemon/smoochum/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/sneasel.asm b/data/pokemon/base_stats/sneasel.asm index 3abea4b7a..4e24a8ada 100644 --- a/data/pokemon/base_stats/sneasel.asm +++ b/data/pokemon/base_stats/sneasel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sneasel/front.dimensions" + INCBIN "gfx/pokemon/sneasel/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/snorlax.asm b/data/pokemon/base_stats/snorlax.asm index 0d5a4c813..9a9e426e9 100644 --- a/data/pokemon/base_stats/snorlax.asm +++ b/data/pokemon/base_stats/snorlax.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/snorlax/front.dimensions" + INCBIN "gfx/pokemon/snorlax/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/snubbull.asm b/data/pokemon/base_stats/snubbull.asm index 00d94a3cb..6dbca375e 100644 --- a/data/pokemon/base_stats/snubbull.asm +++ b/data/pokemon/base_stats/snubbull.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/snubbull/front.dimensions" + INCBIN "gfx/pokemon/snubbull/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FIELD, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/spearow.asm b/data/pokemon/base_stats/spearow.asm index b94e3559c..a55e8a17c 100644 --- a/data/pokemon/base_stats/spearow.asm +++ b/data/pokemon/base_stats/spearow.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/spearow/front.dimensions" + INCBIN "gfx/pokemon/spearow/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/spinarak.asm b/data/pokemon/base_stats/spinarak.asm index 5a19ec797..fb2fbb7f3 100644 --- a/data/pokemon/base_stats/spinarak.asm +++ b/data/pokemon/base_stats/spinarak.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/spinarak/front.dimensions" + INCBIN "gfx/pokemon/spinarak/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/squirtle.asm b/data/pokemon/base_stats/squirtle.asm index 1d9faa25d..6582f88a8 100644 --- a/data/pokemon/base_stats/squirtle.asm +++ b/data/pokemon/base_stats/squirtle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/squirtle/front.dimensions" + INCBIN "gfx/pokemon/squirtle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/stantler.asm b/data/pokemon/base_stats/stantler.asm index 762b2f26b..a8537a1e0 100644 --- a/data/pokemon/base_stats/stantler.asm +++ b/data/pokemon/base_stats/stantler.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/stantler/front.dimensions" + INCBIN "gfx/pokemon/stantler/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/starmie.asm b/data/pokemon/base_stats/starmie.asm index 55b6ed63c..55c5fcc99 100644 --- a/data/pokemon/base_stats/starmie.asm +++ b/data/pokemon/base_stats/starmie.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/starmie/front.dimensions" + INCBIN "gfx/pokemon/starmie/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/staryu.asm b/data/pokemon/base_stats/staryu.asm index 40700a47e..d702faaf2 100644 --- a/data/pokemon/base_stats/staryu.asm +++ b/data/pokemon/base_stats/staryu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/staryu/front.dimensions" + INCBIN "gfx/pokemon/staryu/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/steelix.asm b/data/pokemon/base_stats/steelix.asm index df5d8940c..6931418c8 100644 --- a/data/pokemon/base_stats/steelix.asm +++ b/data/pokemon/base_stats/steelix.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/steelix/front.dimensions" + INCBIN "gfx/pokemon/steelix/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/sudowoodo.asm b/data/pokemon/base_stats/sudowoodo.asm index 1c6c33984..40726999d 100644 --- a/data/pokemon/base_stats/sudowoodo.asm +++ b/data/pokemon/base_stats/sudowoodo.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sudowoodo/front.dimensions" + INCBIN "gfx/pokemon/sudowoodo/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/suicune.asm b/data/pokemon/base_stats/suicune.asm index 04ece5516..b199eddd7 100644 --- a/data/pokemon/base_stats/suicune.asm +++ b/data/pokemon/base_stats/suicune.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/suicune/front.dimensions" + INCBIN "gfx/pokemon/suicune/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/sunflora.asm b/data/pokemon/base_stats/sunflora.asm index 97974939c..ec39d0932 100644 --- a/data/pokemon/base_stats/sunflora.asm +++ b/data/pokemon/base_stats/sunflora.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sunflora/front.dimensions" + INCBIN "gfx/pokemon/sunflora/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/sunkern.asm b/data/pokemon/base_stats/sunkern.asm index 054625425..7e502900c 100644 --- a/data/pokemon/base_stats/sunkern.asm +++ b/data/pokemon/base_stats/sunkern.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/sunkern/front.dimensions" + INCBIN "gfx/pokemon/sunkern/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/swinub.asm b/data/pokemon/base_stats/swinub.asm index 37f1dd67d..ee6bd783a 100644 --- a/data/pokemon/base_stats/swinub.asm +++ b/data/pokemon/base_stats/swinub.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/swinub/front.dimensions" + INCBIN "gfx/pokemon/swinub/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/tangela.asm b/data/pokemon/base_stats/tangela.asm index 9bb27ffca..a2b5b06a0 100644 --- a/data/pokemon/base_stats/tangela.asm +++ b/data/pokemon/base_stats/tangela.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tangela/front.dimensions" + INCBIN "gfx/pokemon/tangela/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/tauros.asm b/data/pokemon/base_stats/tauros.asm index 553458e83..936d60a4d 100644 --- a/data/pokemon/base_stats/tauros.asm +++ b/data/pokemon/base_stats/tauros.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tauros/front.dimensions" + INCBIN "gfx/pokemon/tauros/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/teddiursa.asm b/data/pokemon/base_stats/teddiursa.asm index d636aed87..18c4ede7a 100644 --- a/data/pokemon/base_stats/teddiursa.asm +++ b/data/pokemon/base_stats/teddiursa.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/teddiursa/front.dimensions" + INCBIN "gfx/pokemon/teddiursa/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/tentacool.asm b/data/pokemon/base_stats/tentacool.asm index b13879b47..94dcb42b0 100644 --- a/data/pokemon/base_stats/tentacool.asm +++ b/data/pokemon/base_stats/tentacool.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tentacool/front.dimensions" + INCBIN "gfx/pokemon/tentacool/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/tentacruel.asm b/data/pokemon/base_stats/tentacruel.asm index a678d13a8..e922c5938 100644 --- a/data/pokemon/base_stats/tentacruel.asm +++ b/data/pokemon/base_stats/tentacruel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tentacruel/front.dimensions" + INCBIN "gfx/pokemon/tentacruel/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn INVERTEBRATE, INVERTEBRATE ; egg groups diff --git a/data/pokemon/base_stats/togepi.asm b/data/pokemon/base_stats/togepi.asm index 82f549e9a..0f22863e5 100644 --- a/data/pokemon/base_stats/togepi.asm +++ b/data/pokemon/base_stats/togepi.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/togepi/front.dimensions" + INCBIN "gfx/pokemon/togepi/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/togetic.asm b/data/pokemon/base_stats/togetic.asm index cec61edb3..ef2f94305 100644 --- a/data/pokemon/base_stats/togetic.asm +++ b/data/pokemon/base_stats/togetic.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/togetic/front.dimensions" + INCBIN "gfx/pokemon/togetic/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn AVIAN, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/totodile.asm b/data/pokemon/base_stats/totodile.asm index 1753d5af0..49c7603f6 100644 --- a/data/pokemon/base_stats/totodile.asm +++ b/data/pokemon/base_stats/totodile.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/totodile/front.dimensions" + INCBIN "gfx/pokemon/totodile/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/typhlosion.asm b/data/pokemon/base_stats/typhlosion.asm index 698a4e0a0..ed6fcf198 100644 --- a/data/pokemon/base_stats/typhlosion.asm +++ b/data/pokemon/base_stats/typhlosion.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/typhlosion/front.dimensions" + INCBIN "gfx/pokemon/typhlosion/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/tyranitar.asm b/data/pokemon/base_stats/tyranitar.asm index b695007f1..b6ed98dd7 100644 --- a/data/pokemon/base_stats/tyranitar.asm +++ b/data/pokemon/base_stats/tyranitar.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tyranitar/front.dimensions" + INCBIN "gfx/pokemon/tyranitar/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn MONSTER, MONSTER ; egg groups diff --git a/data/pokemon/base_stats/tyrogue.asm b/data/pokemon/base_stats/tyrogue.asm index 4e5e7ee43..026aab404 100644 --- a/data/pokemon/base_stats/tyrogue.asm +++ b/data/pokemon/base_stats/tyrogue.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 25 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/tyrogue/front.dimensions" + INCBIN "gfx/pokemon/tyrogue/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/umbreon.asm b/data/pokemon/base_stats/umbreon.asm index 75e3700da..0382e69e2 100644 --- a/data/pokemon/base_stats/umbreon.asm +++ b/data/pokemon/base_stats/umbreon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/umbreon/front.dimensions" + INCBIN "gfx/pokemon/umbreon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/unown.asm b/data/pokemon/base_stats/unown.asm index 0b13f3eca..ef67b1ce1 100644 --- a/data/pokemon/base_stats/unown.asm +++ b/data/pokemon/base_stats/unown.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 40 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/unown_a/front.dimensions" + INCBIN "gfx/pokemon/unown_a/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/ursaring.asm b/data/pokemon/base_stats/ursaring.asm index 7aa8a4265..8f2031c77 100644 --- a/data/pokemon/base_stats/ursaring.asm +++ b/data/pokemon/base_stats/ursaring.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/ursaring/front.dimensions" + INCBIN "gfx/pokemon/ursaring/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/vaporeon.asm b/data/pokemon/base_stats/vaporeon.asm index 0e55a1946..083a67499 100644 --- a/data/pokemon/base_stats/vaporeon.asm +++ b/data/pokemon/base_stats/vaporeon.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 35 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/vaporeon/front.dimensions" + INCBIN "gfx/pokemon/vaporeon/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/venomoth.asm b/data/pokemon/base_stats/venomoth.asm index b34581360..c92c7fbff 100644 --- a/data/pokemon/base_stats/venomoth.asm +++ b/data/pokemon/base_stats/venomoth.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/venomoth/front.dimensions" + INCBIN "gfx/pokemon/venomoth/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/venonat.asm b/data/pokemon/base_stats/venonat.asm index 4a6a568f3..40a9639b8 100644 --- a/data/pokemon/base_stats/venonat.asm +++ b/data/pokemon/base_stats/venonat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/venonat/front.dimensions" + INCBIN "gfx/pokemon/venonat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/venusaur.asm b/data/pokemon/base_stats/venusaur.asm index f5d6a3a33..465b3d0fc 100644 --- a/data/pokemon/base_stats/venusaur.asm +++ b/data/pokemon/base_stats/venusaur.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/venusaur/front.dimensions" + INCBIN "gfx/pokemon/venusaur/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, PLANT ; egg groups diff --git a/data/pokemon/base_stats/victreebel.asm b/data/pokemon/base_stats/victreebel.asm index 0efade3ad..e4e1a24e5 100644 --- a/data/pokemon/base_stats/victreebel.asm +++ b/data/pokemon/base_stats/victreebel.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/victreebel/front.dimensions" + INCBIN "gfx/pokemon/victreebel/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/vileplume.asm b/data/pokemon/base_stats/vileplume.asm index 12170e167..3f0d0b996 100644 --- a/data/pokemon/base_stats/vileplume.asm +++ b/data/pokemon/base_stats/vileplume.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/vileplume/front.dimensions" + INCBIN "gfx/pokemon/vileplume/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/voltorb.asm b/data/pokemon/base_stats/voltorb.asm index 7c2255729..2767568fa 100644 --- a/data/pokemon/base_stats/voltorb.asm +++ b/data/pokemon/base_stats/voltorb.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/voltorb/front.dimensions" + INCBIN "gfx/pokemon/voltorb/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INANIMATE, INANIMATE ; egg groups diff --git a/data/pokemon/base_stats/vulpix.asm b/data/pokemon/base_stats/vulpix.asm index 9cea11f93..e012402a0 100644 --- a/data/pokemon/base_stats/vulpix.asm +++ b/data/pokemon/base_stats/vulpix.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/vulpix/front.dimensions" + INCBIN "gfx/pokemon/vulpix/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn FIELD, FIELD ; egg groups diff --git a/data/pokemon/base_stats/wartortle.asm b/data/pokemon/base_stats/wartortle.asm index 437342a8b..7df729f3f 100644 --- a/data/pokemon/base_stats/wartortle.asm +++ b/data/pokemon/base_stats/wartortle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wartortle/front.dimensions" + INCBIN "gfx/pokemon/wartortle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn MONSTER, AMPHIBIAN ; egg groups diff --git a/data/pokemon/base_stats/weedle.asm b/data/pokemon/base_stats/weedle.asm index b47a720ec..520109245 100644 --- a/data/pokemon/base_stats/weedle.asm +++ b/data/pokemon/base_stats/weedle.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/weedle/front.dimensions" + INCBIN "gfx/pokemon/weedle/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/weepinbell.asm b/data/pokemon/base_stats/weepinbell.asm index 4a70c5bb2..3dbd2595e 100644 --- a/data/pokemon/base_stats/weepinbell.asm +++ b/data/pokemon/base_stats/weepinbell.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/weepinbell/front.dimensions" + INCBIN "gfx/pokemon/weepinbell/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_SLOW ; growth rate dn PLANT, PLANT ; egg groups diff --git a/data/pokemon/base_stats/weezing.asm b/data/pokemon/base_stats/weezing.asm index 49161c69b..41c1d4f5d 100644 --- a/data/pokemon/base_stats/weezing.asm +++ b/data/pokemon/base_stats/weezing.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/weezing/front.dimensions" + INCBIN "gfx/pokemon/weezing/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/wigglytuff.asm b/data/pokemon/base_stats/wigglytuff.asm index b94bb3482..e2d3bd7e6 100644 --- a/data/pokemon/base_stats/wigglytuff.asm +++ b/data/pokemon/base_stats/wigglytuff.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 10 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wigglytuff/front.dimensions" + INCBIN "gfx/pokemon/wigglytuff/front.dimensions" db 0, 0, 0, 0 ; padding db FAST ; growth rate dn FAIRY, FAIRY ; egg groups diff --git a/data/pokemon/base_stats/wobbuffet.asm b/data/pokemon/base_stats/wobbuffet.asm index c476dd828..393655150 100644 --- a/data/pokemon/base_stats/wobbuffet.asm +++ b/data/pokemon/base_stats/wobbuffet.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wobbuffet/front.dimensions" + INCBIN "gfx/pokemon/wobbuffet/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMORPHOUS, AMORPHOUS ; egg groups diff --git a/data/pokemon/base_stats/wooper.asm b/data/pokemon/base_stats/wooper.asm index 6e621fe4b..db3f7f90a 100644 --- a/data/pokemon/base_stats/wooper.asm +++ b/data/pokemon/base_stats/wooper.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/wooper/front.dimensions" + INCBIN "gfx/pokemon/wooper/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AMPHIBIAN, FIELD ; egg groups diff --git a/data/pokemon/base_stats/xatu.asm b/data/pokemon/base_stats/xatu.asm index f2966ddb4..a5941421e 100644 --- a/data/pokemon/base_stats/xatu.asm +++ b/data/pokemon/base_stats/xatu.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/xatu/front.dimensions" + INCBIN "gfx/pokemon/xatu/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/data/pokemon/base_stats/yanma.asm b/data/pokemon/base_stats/yanma.asm index 98449c720..0bff5157a 100644 --- a/data/pokemon/base_stats/yanma.asm +++ b/data/pokemon/base_stats/yanma.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 20 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/yanma/front.dimensions" + INCBIN "gfx/pokemon/yanma/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn INSECT, INSECT ; egg groups diff --git a/data/pokemon/base_stats/zapdos.asm b/data/pokemon/base_stats/zapdos.asm index 44c1a8e82..35b557404 100644 --- a/data/pokemon/base_stats/zapdos.asm +++ b/data/pokemon/base_stats/zapdos.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 80 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/zapdos/front.dimensions" + INCBIN "gfx/pokemon/zapdos/front.dimensions" db 0, 0, 0, 0 ; padding db SLOW ; growth rate dn NO_EGGS, NO_EGGS ; egg groups diff --git a/data/pokemon/base_stats/zubat.asm b/data/pokemon/base_stats/zubat.asm index e8fd33ea2..5da4ceeba 100644 --- a/data/pokemon/base_stats/zubat.asm +++ b/data/pokemon/base_stats/zubat.asm @@ -12,7 +12,7 @@ db 100 ; unknown db 15 ; step cycles to hatch db 5 ; unknown - INCBIN "gfx/pics/zubat/front.dimensions" + INCBIN "gfx/pokemon/zubat/front.dimensions" db 0, 0, 0, 0 ; padding db MEDIUM_FAST ; growth rate dn AVIAN, AVIAN ; egg groups diff --git a/engine/color.asm b/engine/color.asm index 23f953ebe..53c727eef 100644 --- a/engine/color.asm +++ b/engine/color.asm @@ -1218,7 +1218,7 @@ INCLUDE "data/palettes/hp_bar.pal" ExpBarPalette: INCLUDE "data/palettes/exp_bar.pal" -INCLUDE "gfx/pics/palette_pointers.asm" +INCLUDE "gfx/pokemon/palette_pointers.asm" INCLUDE "gfx/trainer_palettes.asm" LoadMapPals: diff --git a/engine/pokedex_3.asm b/engine/pokedex_3.asm index 3414252c1..6ec2ce9fd 100644 --- a/engine/pokedex_3.asm +++ b/engine/pokedex_3.asm @@ -21,7 +21,7 @@ LoadQuestionMarkPic: ; 1de0d7 ret .QuestionMarkLZ: ; 1de0e1 -INCBIN "gfx/pics/questionmark/front.2bpp.lz" +INCBIN "gfx/pokemon/questionmark/front.2bpp.lz" DrawPokedexListWindow: ; 1de171 (77:6171) ld a, $32 diff --git a/gfx/pics.asm b/gfx/pics.asm index 026be8142..f14bfa42c 100644 --- a/gfx/pics.asm +++ b/gfx/pics.asm @@ -6,12 +6,12 @@ INCLUDE "includes.asm" SECTION "Pic Pointers", ROMX -INCLUDE "gfx/pics/pic_pointers.asm" +INCLUDE "gfx/pokemon/pic_pointers.asm" SECTION "Unown Pic Pointers", ROMX -INCLUDE "gfx/pics/unown_pic_pointers.asm" +INCLUDE "gfx/pokemon/unown_pic_pointers.asm" SECTION "Trainer Pic Pointers", ROMX @@ -22,711 +22,711 @@ INCLUDE "gfx/trainer_pic_pointers.asm" SECTION "Pics 1", ROMX Pics_1:: -HoOhFrontpic: INCBIN "gfx/pics/ho_oh/front.animated.2bpp.lz" -MachampFrontpic: INCBIN "gfx/pics/machamp/front.animated.2bpp.lz" -NinetalesFrontpic: INCBIN "gfx/pics/ninetales/front.animated.2bpp.lz" -FeraligatrFrontpic: INCBIN "gfx/pics/feraligatr/front.animated.2bpp.lz" -NidokingFrontpic: INCBIN "gfx/pics/nidoking/front.animated.2bpp.lz" -RaikouFrontpic: INCBIN "gfx/pics/raikou/front.animated.2bpp.lz" -LugiaFrontpic: INCBIN "gfx/pics/lugia/front.animated.2bpp.lz" -ArticunoFrontpic: INCBIN "gfx/pics/articuno/front.animated.2bpp.lz" -TaurosFrontpic: INCBIN "gfx/pics/tauros/front.animated.2bpp.lz" -VenusaurFrontpic: INCBIN "gfx/pics/venusaur/front.animated.2bpp.lz" -EnteiFrontpic: INCBIN "gfx/pics/entei/front.animated.2bpp.lz" -SuicuneFrontpic: INCBIN "gfx/pics/suicune/front.animated.2bpp.lz" -TyphlosionFrontpic: INCBIN "gfx/pics/typhlosion/front.animated.2bpp.lz" +HoOhFrontpic: INCBIN "gfx/pokemon/ho_oh/front.animated.2bpp.lz" +MachampFrontpic: INCBIN "gfx/pokemon/machamp/front.animated.2bpp.lz" +NinetalesFrontpic: INCBIN "gfx/pokemon/ninetales/front.animated.2bpp.lz" +FeraligatrFrontpic: INCBIN "gfx/pokemon/feraligatr/front.animated.2bpp.lz" +NidokingFrontpic: INCBIN "gfx/pokemon/nidoking/front.animated.2bpp.lz" +RaikouFrontpic: INCBIN "gfx/pokemon/raikou/front.animated.2bpp.lz" +LugiaFrontpic: INCBIN "gfx/pokemon/lugia/front.animated.2bpp.lz" +ArticunoFrontpic: INCBIN "gfx/pokemon/articuno/front.animated.2bpp.lz" +TaurosFrontpic: INCBIN "gfx/pokemon/tauros/front.animated.2bpp.lz" +VenusaurFrontpic: INCBIN "gfx/pokemon/venusaur/front.animated.2bpp.lz" +EnteiFrontpic: INCBIN "gfx/pokemon/entei/front.animated.2bpp.lz" +SuicuneFrontpic: INCBIN "gfx/pokemon/suicune/front.animated.2bpp.lz" +TyphlosionFrontpic: INCBIN "gfx/pokemon/typhlosion/front.animated.2bpp.lz" ; 123ffa SECTION "Pics 2", ROMX -BlastoiseFrontpic: INCBIN "gfx/pics/blastoise/front.animated.2bpp.lz" -RapidashFrontpic: INCBIN "gfx/pics/rapidash/front.animated.2bpp.lz" -MeganiumFrontpic: INCBIN "gfx/pics/meganium/front.animated.2bpp.lz" -NidoqueenFrontpic: INCBIN "gfx/pics/nidoqueen/front.animated.2bpp.lz" -HitmonleeFrontpic: INCBIN "gfx/pics/hitmonlee/front.animated.2bpp.lz" -ScizorFrontpic: INCBIN "gfx/pics/scizor/front.animated.2bpp.lz" -BeedrillFrontpic: INCBIN "gfx/pics/beedrill/front.animated.2bpp.lz" -ArcanineFrontpic: INCBIN "gfx/pics/arcanine/front.animated.2bpp.lz" -TyranitarFrontpic: INCBIN "gfx/pics/tyranitar/front.animated.2bpp.lz" -MoltresFrontpic: INCBIN "gfx/pics/moltres/front.animated.2bpp.lz" -ZapdosFrontpic: INCBIN "gfx/pics/zapdos/front.animated.2bpp.lz" -ArbokFrontpic: INCBIN "gfx/pics/arbok/front.animated.2bpp.lz" -MewtwoFrontpic: INCBIN "gfx/pics/mewtwo/front.animated.2bpp.lz" -FearowFrontpic: INCBIN "gfx/pics/fearow/front.animated.2bpp.lz" -CharizardFrontpic: INCBIN "gfx/pics/charizard/front.animated.2bpp.lz" -QuilavaFrontpic: INCBIN "gfx/pics/quilava/front.animated.2bpp.lz" +BlastoiseFrontpic: INCBIN "gfx/pokemon/blastoise/front.animated.2bpp.lz" +RapidashFrontpic: INCBIN "gfx/pokemon/rapidash/front.animated.2bpp.lz" +MeganiumFrontpic: INCBIN "gfx/pokemon/meganium/front.animated.2bpp.lz" +NidoqueenFrontpic: INCBIN "gfx/pokemon/nidoqueen/front.animated.2bpp.lz" +HitmonleeFrontpic: INCBIN "gfx/pokemon/hitmonlee/front.animated.2bpp.lz" +ScizorFrontpic: INCBIN "gfx/pokemon/scizor/front.animated.2bpp.lz" +BeedrillFrontpic: INCBIN "gfx/pokemon/beedrill/front.animated.2bpp.lz" +ArcanineFrontpic: INCBIN "gfx/pokemon/arcanine/front.animated.2bpp.lz" +TyranitarFrontpic: INCBIN "gfx/pokemon/tyranitar/front.animated.2bpp.lz" +MoltresFrontpic: INCBIN "gfx/pokemon/moltres/front.animated.2bpp.lz" +ZapdosFrontpic: INCBIN "gfx/pokemon/zapdos/front.animated.2bpp.lz" +ArbokFrontpic: INCBIN "gfx/pokemon/arbok/front.animated.2bpp.lz" +MewtwoFrontpic: INCBIN "gfx/pokemon/mewtwo/front.animated.2bpp.lz" +FearowFrontpic: INCBIN "gfx/pokemon/fearow/front.animated.2bpp.lz" +CharizardFrontpic: INCBIN "gfx/pokemon/charizard/front.animated.2bpp.lz" +QuilavaFrontpic: INCBIN "gfx/pokemon/quilava/front.animated.2bpp.lz" ; 127ffe SECTION "Pics 3", ROMX -SteelixFrontpic: INCBIN "gfx/pics/steelix/front.animated.2bpp.lz" -AlakazamFrontpic: INCBIN "gfx/pics/alakazam/front.animated.2bpp.lz" -GyaradosFrontpic: INCBIN "gfx/pics/gyarados/front.animated.2bpp.lz" -KangaskhanFrontpic: INCBIN "gfx/pics/kangaskhan/front.animated.2bpp.lz" -RhydonFrontpic: INCBIN "gfx/pics/rhydon/front.animated.2bpp.lz" -GolduckFrontpic: INCBIN "gfx/pics/golduck/front.animated.2bpp.lz" -RhyhornFrontpic: INCBIN "gfx/pics/rhyhorn/front.animated.2bpp.lz" -PidgeotFrontpic: INCBIN "gfx/pics/pidgeot/front.animated.2bpp.lz" -SlowbroFrontpic: INCBIN "gfx/pics/slowbro/front.animated.2bpp.lz" -ButterfreeFrontpic: INCBIN "gfx/pics/butterfree/front.animated.2bpp.lz" -WeezingFrontpic: INCBIN "gfx/pics/weezing/front.animated.2bpp.lz" -CloysterFrontpic: INCBIN "gfx/pics/cloyster/front.animated.2bpp.lz" -SkarmoryFrontpic: INCBIN "gfx/pics/skarmory/front.animated.2bpp.lz" -DewgongFrontpic: INCBIN "gfx/pics/dewgong/front.animated.2bpp.lz" -VictreebelFrontpic: INCBIN "gfx/pics/victreebel/front.animated.2bpp.lz" -RaichuFrontpic: INCBIN "gfx/pics/raichu/front.animated.2bpp.lz" -PrimeapeFrontpic: INCBIN "gfx/pics/primeape/front.animated.2bpp.lz" -OmastarBackpic: INCBIN "gfx/pics/omastar/back.2bpp.lz" +SteelixFrontpic: INCBIN "gfx/pokemon/steelix/front.animated.2bpp.lz" +AlakazamFrontpic: INCBIN "gfx/pokemon/alakazam/front.animated.2bpp.lz" +GyaradosFrontpic: INCBIN "gfx/pokemon/gyarados/front.animated.2bpp.lz" +KangaskhanFrontpic: INCBIN "gfx/pokemon/kangaskhan/front.animated.2bpp.lz" +RhydonFrontpic: INCBIN "gfx/pokemon/rhydon/front.animated.2bpp.lz" +GolduckFrontpic: INCBIN "gfx/pokemon/golduck/front.animated.2bpp.lz" +RhyhornFrontpic: INCBIN "gfx/pokemon/rhyhorn/front.animated.2bpp.lz" +PidgeotFrontpic: INCBIN "gfx/pokemon/pidgeot/front.animated.2bpp.lz" +SlowbroFrontpic: INCBIN "gfx/pokemon/slowbro/front.animated.2bpp.lz" +ButterfreeFrontpic: INCBIN "gfx/pokemon/butterfree/front.animated.2bpp.lz" +WeezingFrontpic: INCBIN "gfx/pokemon/weezing/front.animated.2bpp.lz" +CloysterFrontpic: INCBIN "gfx/pokemon/cloyster/front.animated.2bpp.lz" +SkarmoryFrontpic: INCBIN "gfx/pokemon/skarmory/front.animated.2bpp.lz" +DewgongFrontpic: INCBIN "gfx/pokemon/dewgong/front.animated.2bpp.lz" +VictreebelFrontpic: INCBIN "gfx/pokemon/victreebel/front.animated.2bpp.lz" +RaichuFrontpic: INCBIN "gfx/pokemon/raichu/front.animated.2bpp.lz" +PrimeapeFrontpic: INCBIN "gfx/pokemon/primeape/front.animated.2bpp.lz" +OmastarBackpic: INCBIN "gfx/pokemon/omastar/back.2bpp.lz" ; 12bffe SECTION "Pics 4", ROMX -DodrioFrontpic: INCBIN "gfx/pics/dodrio/front.animated.2bpp.lz" -SlowkingFrontpic: INCBIN "gfx/pics/slowking/front.animated.2bpp.lz" -HitmontopFrontpic: INCBIN "gfx/pics/hitmontop/front.animated.2bpp.lz" -OnixFrontpic: INCBIN "gfx/pics/onix/front.animated.2bpp.lz" -BlisseyFrontpic: INCBIN "gfx/pics/blissey/front.animated.2bpp.lz" -MachokeFrontpic: INCBIN "gfx/pics/machoke/front.animated.2bpp.lz" -DragoniteFrontpic: INCBIN "gfx/pics/dragonite/front.animated.2bpp.lz" -PoliwrathFrontpic: INCBIN "gfx/pics/poliwrath/front.animated.2bpp.lz" -ScytherFrontpic: INCBIN "gfx/pics/scyther/front.animated.2bpp.lz" -AerodactylFrontpic: INCBIN "gfx/pics/aerodactyl/front.animated.2bpp.lz" -SeakingFrontpic: INCBIN "gfx/pics/seaking/front.animated.2bpp.lz" -MukFrontpic: INCBIN "gfx/pics/muk/front.animated.2bpp.lz" -CroconawFrontpic: INCBIN "gfx/pics/croconaw/front.animated.2bpp.lz" -HypnoFrontpic: INCBIN "gfx/pics/hypno/front.animated.2bpp.lz" -NidorinoFrontpic: INCBIN "gfx/pics/nidorino/front.animated.2bpp.lz" -SandslashFrontpic: INCBIN "gfx/pics/sandslash/front.animated.2bpp.lz" -JolteonFrontpic: INCBIN "gfx/pics/jolteon/front.animated.2bpp.lz" -DonphanFrontpic: INCBIN "gfx/pics/donphan/front.animated.2bpp.lz" -PinsirFrontpic: INCBIN "gfx/pics/pinsir/front.animated.2bpp.lz" -UnownEFrontpic: INCBIN "gfx/pics/unown_e/front.animated.2bpp.lz" +DodrioFrontpic: INCBIN "gfx/pokemon/dodrio/front.animated.2bpp.lz" +SlowkingFrontpic: INCBIN "gfx/pokemon/slowking/front.animated.2bpp.lz" +HitmontopFrontpic: INCBIN "gfx/pokemon/hitmontop/front.animated.2bpp.lz" +OnixFrontpic: INCBIN "gfx/pokemon/onix/front.animated.2bpp.lz" +BlisseyFrontpic: INCBIN "gfx/pokemon/blissey/front.animated.2bpp.lz" +MachokeFrontpic: INCBIN "gfx/pokemon/machoke/front.animated.2bpp.lz" +DragoniteFrontpic: INCBIN "gfx/pokemon/dragonite/front.animated.2bpp.lz" +PoliwrathFrontpic: INCBIN "gfx/pokemon/poliwrath/front.animated.2bpp.lz" +ScytherFrontpic: INCBIN "gfx/pokemon/scyther/front.animated.2bpp.lz" +AerodactylFrontpic: INCBIN "gfx/pokemon/aerodactyl/front.animated.2bpp.lz" +SeakingFrontpic: INCBIN "gfx/pokemon/seaking/front.animated.2bpp.lz" +MukFrontpic: INCBIN "gfx/pokemon/muk/front.animated.2bpp.lz" +CroconawFrontpic: INCBIN "gfx/pokemon/croconaw/front.animated.2bpp.lz" +HypnoFrontpic: INCBIN "gfx/pokemon/hypno/front.animated.2bpp.lz" +NidorinoFrontpic: INCBIN "gfx/pokemon/nidorino/front.animated.2bpp.lz" +SandslashFrontpic: INCBIN "gfx/pokemon/sandslash/front.animated.2bpp.lz" +JolteonFrontpic: INCBIN "gfx/pokemon/jolteon/front.animated.2bpp.lz" +DonphanFrontpic: INCBIN "gfx/pokemon/donphan/front.animated.2bpp.lz" +PinsirFrontpic: INCBIN "gfx/pokemon/pinsir/front.animated.2bpp.lz" +UnownEFrontpic: INCBIN "gfx/pokemon/unown_e/front.animated.2bpp.lz" ; 130000 SECTION "Pics 5", ROMX -GolbatFrontpic: INCBIN "gfx/pics/golbat/front.animated.2bpp.lz" -KinglerFrontpic: INCBIN "gfx/pics/kingler/front.animated.2bpp.lz" -ExeggcuteFrontpic: INCBIN "gfx/pics/exeggcute/front.animated.2bpp.lz" -MagcargoFrontpic: INCBIN "gfx/pics/magcargo/front.animated.2bpp.lz" -PersianFrontpic: INCBIN "gfx/pics/persian/front.animated.2bpp.lz" -StantlerFrontpic: INCBIN "gfx/pics/stantler/front.animated.2bpp.lz" -RaticateFrontpic: INCBIN "gfx/pics/raticate/front.animated.2bpp.lz" -VenomothFrontpic: INCBIN "gfx/pics/venomoth/front.animated.2bpp.lz" -PolitoedFrontpic: INCBIN "gfx/pics/politoed/front.animated.2bpp.lz" -ElectabuzzFrontpic: INCBIN "gfx/pics/electabuzz/front.animated.2bpp.lz" -MantineFrontpic: INCBIN "gfx/pics/mantine/front.animated.2bpp.lz" -LickitungFrontpic: INCBIN "gfx/pics/lickitung/front.animated.2bpp.lz" -KingdraFrontpic: INCBIN "gfx/pics/kingdra/front.animated.2bpp.lz" -CharmeleonFrontpic: INCBIN "gfx/pics/charmeleon/front.animated.2bpp.lz" -KadabraFrontpic: INCBIN "gfx/pics/kadabra/front.animated.2bpp.lz" -ExeggutorFrontpic: INCBIN "gfx/pics/exeggutor/front.animated.2bpp.lz" -GastlyFrontpic: INCBIN "gfx/pics/gastly/front.animated.2bpp.lz" -AzumarillFrontpic: INCBIN "gfx/pics/azumarill/front.animated.2bpp.lz" -ParasectFrontpic: INCBIN "gfx/pics/parasect/front.animated.2bpp.lz" -MrMimeFrontpic: INCBIN "gfx/pics/mr__mime/front.animated.2bpp.lz" -HeracrossFrontpic: INCBIN "gfx/pics/heracross/front.animated.2bpp.lz" +GolbatFrontpic: INCBIN "gfx/pokemon/golbat/front.animated.2bpp.lz" +KinglerFrontpic: INCBIN "gfx/pokemon/kingler/front.animated.2bpp.lz" +ExeggcuteFrontpic: INCBIN "gfx/pokemon/exeggcute/front.animated.2bpp.lz" +MagcargoFrontpic: INCBIN "gfx/pokemon/magcargo/front.animated.2bpp.lz" +PersianFrontpic: INCBIN "gfx/pokemon/persian/front.animated.2bpp.lz" +StantlerFrontpic: INCBIN "gfx/pokemon/stantler/front.animated.2bpp.lz" +RaticateFrontpic: INCBIN "gfx/pokemon/raticate/front.animated.2bpp.lz" +VenomothFrontpic: INCBIN "gfx/pokemon/venomoth/front.animated.2bpp.lz" +PolitoedFrontpic: INCBIN "gfx/pokemon/politoed/front.animated.2bpp.lz" +ElectabuzzFrontpic: INCBIN "gfx/pokemon/electabuzz/front.animated.2bpp.lz" +MantineFrontpic: INCBIN "gfx/pokemon/mantine/front.animated.2bpp.lz" +LickitungFrontpic: INCBIN "gfx/pokemon/lickitung/front.animated.2bpp.lz" +KingdraFrontpic: INCBIN "gfx/pokemon/kingdra/front.animated.2bpp.lz" +CharmeleonFrontpic: INCBIN "gfx/pokemon/charmeleon/front.animated.2bpp.lz" +KadabraFrontpic: INCBIN "gfx/pokemon/kadabra/front.animated.2bpp.lz" +ExeggutorFrontpic: INCBIN "gfx/pokemon/exeggutor/front.animated.2bpp.lz" +GastlyFrontpic: INCBIN "gfx/pokemon/gastly/front.animated.2bpp.lz" +AzumarillFrontpic: INCBIN "gfx/pokemon/azumarill/front.animated.2bpp.lz" +ParasectFrontpic: INCBIN "gfx/pokemon/parasect/front.animated.2bpp.lz" +MrMimeFrontpic: INCBIN "gfx/pokemon/mr__mime/front.animated.2bpp.lz" +HeracrossFrontpic: INCBIN "gfx/pokemon/heracross/front.animated.2bpp.lz" ; 133fff SECTION "Pics 6", ROMX -AriadosFrontpic: INCBIN "gfx/pics/ariados/front.animated.2bpp.lz" -NoctowlFrontpic: INCBIN "gfx/pics/noctowl/front.animated.2bpp.lz" -WartortleFrontpic: INCBIN "gfx/pics/wartortle/front.animated.2bpp.lz" -LaprasFrontpic: INCBIN "gfx/pics/lapras/front.animated.2bpp.lz" -GolemFrontpic: INCBIN "gfx/pics/golem/front.animated.2bpp.lz" -PoliwhirlFrontpic: INCBIN "gfx/pics/poliwhirl/front.animated.2bpp.lz" -UrsaringFrontpic: INCBIN "gfx/pics/ursaring/front.animated.2bpp.lz" -HoundoomFrontpic: INCBIN "gfx/pics/houndoom/front.animated.2bpp.lz" -KabutopsFrontpic: INCBIN "gfx/pics/kabutops/front.animated.2bpp.lz" -AmpharosFrontpic: INCBIN "gfx/pics/ampharos/front.animated.2bpp.lz" -NidorinaFrontpic: INCBIN "gfx/pics/nidorina/front.animated.2bpp.lz" -FlareonFrontpic: INCBIN "gfx/pics/flareon/front.animated.2bpp.lz" -FarfetchDFrontpic: INCBIN "gfx/pics/farfetch_d/front.animated.2bpp.lz" -VileplumeFrontpic: INCBIN "gfx/pics/vileplume/front.animated.2bpp.lz" -BayleefFrontpic: INCBIN "gfx/pics/bayleef/front.animated.2bpp.lz" -MagmarFrontpic: INCBIN "gfx/pics/magmar/front.animated.2bpp.lz" -TentacruelFrontpic: INCBIN "gfx/pics/tentacruel/front.animated.2bpp.lz" -ElekidFrontpic: INCBIN "gfx/pics/elekid/front.animated.2bpp.lz" -JumpluffFrontpic: INCBIN "gfx/pics/jumpluff/front.animated.2bpp.lz" -MarowakFrontpic: INCBIN "gfx/pics/marowak/front.animated.2bpp.lz" -VulpixFrontpic: INCBIN "gfx/pics/vulpix/front.animated.2bpp.lz" -GligarFrontpic: INCBIN "gfx/pics/gligar/front.animated.2bpp.lz" -DunsparceFrontpic: INCBIN "gfx/pics/dunsparce/front.animated.2bpp.lz" +AriadosFrontpic: INCBIN "gfx/pokemon/ariados/front.animated.2bpp.lz" +NoctowlFrontpic: INCBIN "gfx/pokemon/noctowl/front.animated.2bpp.lz" +WartortleFrontpic: INCBIN "gfx/pokemon/wartortle/front.animated.2bpp.lz" +LaprasFrontpic: INCBIN "gfx/pokemon/lapras/front.animated.2bpp.lz" +GolemFrontpic: INCBIN "gfx/pokemon/golem/front.animated.2bpp.lz" +PoliwhirlFrontpic: INCBIN "gfx/pokemon/poliwhirl/front.animated.2bpp.lz" +UrsaringFrontpic: INCBIN "gfx/pokemon/ursaring/front.animated.2bpp.lz" +HoundoomFrontpic: INCBIN "gfx/pokemon/houndoom/front.animated.2bpp.lz" +KabutopsFrontpic: INCBIN "gfx/pokemon/kabutops/front.animated.2bpp.lz" +AmpharosFrontpic: INCBIN "gfx/pokemon/ampharos/front.animated.2bpp.lz" +NidorinaFrontpic: INCBIN "gfx/pokemon/nidorina/front.animated.2bpp.lz" +FlareonFrontpic: INCBIN "gfx/pokemon/flareon/front.animated.2bpp.lz" +FarfetchDFrontpic: INCBIN "gfx/pokemon/farfetch_d/front.animated.2bpp.lz" +VileplumeFrontpic: INCBIN "gfx/pokemon/vileplume/front.animated.2bpp.lz" +BayleefFrontpic: INCBIN "gfx/pokemon/bayleef/front.animated.2bpp.lz" +MagmarFrontpic: INCBIN "gfx/pokemon/magmar/front.animated.2bpp.lz" +TentacruelFrontpic: INCBIN "gfx/pokemon/tentacruel/front.animated.2bpp.lz" +ElekidFrontpic: INCBIN "gfx/pokemon/elekid/front.animated.2bpp.lz" +JumpluffFrontpic: INCBIN "gfx/pokemon/jumpluff/front.animated.2bpp.lz" +MarowakFrontpic: INCBIN "gfx/pokemon/marowak/front.animated.2bpp.lz" +VulpixFrontpic: INCBIN "gfx/pokemon/vulpix/front.animated.2bpp.lz" +GligarFrontpic: INCBIN "gfx/pokemon/gligar/front.animated.2bpp.lz" +DunsparceFrontpic: INCBIN "gfx/pokemon/dunsparce/front.animated.2bpp.lz" ; 137fff SECTION "Pics 7", ROMX -VaporeonFrontpic: INCBIN "gfx/pics/vaporeon/front.animated.2bpp.lz" -GirafarigFrontpic: INCBIN "gfx/pics/girafarig/front.animated.2bpp.lz" -DrowzeeFrontpic: INCBIN "gfx/pics/drowzee/front.animated.2bpp.lz" -SneaselFrontpic: INCBIN "gfx/pics/sneasel/front.animated.2bpp.lz" -BellossomFrontpic: INCBIN "gfx/pics/bellossom/front.animated.2bpp.lz" -SnorlaxFrontpic: INCBIN "gfx/pics/snorlax/front.animated.2bpp.lz" -WigglytuffFrontpic: INCBIN "gfx/pics/wigglytuff/front.animated.2bpp.lz" -YanmaFrontpic: INCBIN "gfx/pics/yanma/front.animated.2bpp.lz" -SmeargleFrontpic: INCBIN "gfx/pics/smeargle/front.animated.2bpp.lz" -ClefableFrontpic: INCBIN "gfx/pics/clefable/front.animated.2bpp.lz" -PonytaFrontpic: INCBIN "gfx/pics/ponyta/front.animated.2bpp.lz" -MurkrowFrontpic: INCBIN "gfx/pics/murkrow/front.animated.2bpp.lz" -GravelerFrontpic: INCBIN "gfx/pics/graveler/front.animated.2bpp.lz" -StarmieFrontpic: INCBIN "gfx/pics/starmie/front.animated.2bpp.lz" -PidgeottoFrontpic: INCBIN "gfx/pics/pidgeotto/front.animated.2bpp.lz" -LedybaFrontpic: INCBIN "gfx/pics/ledyba/front.animated.2bpp.lz" -GengarFrontpic: INCBIN "gfx/pics/gengar/front.animated.2bpp.lz" -OmastarFrontpic: INCBIN "gfx/pics/omastar/front.animated.2bpp.lz" -PiloswineFrontpic: INCBIN "gfx/pics/piloswine/front.animated.2bpp.lz" -DugtrioFrontpic: INCBIN "gfx/pics/dugtrio/front.animated.2bpp.lz" -MagnetonFrontpic: INCBIN "gfx/pics/magneton/front.animated.2bpp.lz" -DragonairFrontpic: INCBIN "gfx/pics/dragonair/front.animated.2bpp.lz" -ForretressFrontpic: INCBIN "gfx/pics/forretress/front.animated.2bpp.lz" -TogeticFrontpic: INCBIN "gfx/pics/togetic/front.animated.2bpp.lz" -KangaskhanBackpic: INCBIN "gfx/pics/kangaskhan/back.2bpp.lz" +VaporeonFrontpic: INCBIN "gfx/pokemon/vaporeon/front.animated.2bpp.lz" +GirafarigFrontpic: INCBIN "gfx/pokemon/girafarig/front.animated.2bpp.lz" +DrowzeeFrontpic: INCBIN "gfx/pokemon/drowzee/front.animated.2bpp.lz" +SneaselFrontpic: INCBIN "gfx/pokemon/sneasel/front.animated.2bpp.lz" +BellossomFrontpic: INCBIN "gfx/pokemon/bellossom/front.animated.2bpp.lz" +SnorlaxFrontpic: INCBIN "gfx/pokemon/snorlax/front.animated.2bpp.lz" +WigglytuffFrontpic: INCBIN "gfx/pokemon/wigglytuff/front.animated.2bpp.lz" +YanmaFrontpic: INCBIN "gfx/pokemon/yanma/front.animated.2bpp.lz" +SmeargleFrontpic: INCBIN "gfx/pokemon/smeargle/front.animated.2bpp.lz" +ClefableFrontpic: INCBIN "gfx/pokemon/clefable/front.animated.2bpp.lz" +PonytaFrontpic: INCBIN "gfx/pokemon/ponyta/front.animated.2bpp.lz" +MurkrowFrontpic: INCBIN "gfx/pokemon/murkrow/front.animated.2bpp.lz" +GravelerFrontpic: INCBIN "gfx/pokemon/graveler/front.animated.2bpp.lz" +StarmieFrontpic: INCBIN "gfx/pokemon/starmie/front.animated.2bpp.lz" +PidgeottoFrontpic: INCBIN "gfx/pokemon/pidgeotto/front.animated.2bpp.lz" +LedybaFrontpic: INCBIN "gfx/pokemon/ledyba/front.animated.2bpp.lz" +GengarFrontpic: INCBIN "gfx/pokemon/gengar/front.animated.2bpp.lz" +OmastarFrontpic: INCBIN "gfx/pokemon/omastar/front.animated.2bpp.lz" +PiloswineFrontpic: INCBIN "gfx/pokemon/piloswine/front.animated.2bpp.lz" +DugtrioFrontpic: INCBIN "gfx/pokemon/dugtrio/front.animated.2bpp.lz" +MagnetonFrontpic: INCBIN "gfx/pokemon/magneton/front.animated.2bpp.lz" +DragonairFrontpic: INCBIN "gfx/pokemon/dragonair/front.animated.2bpp.lz" +ForretressFrontpic: INCBIN "gfx/pokemon/forretress/front.animated.2bpp.lz" +TogeticFrontpic: INCBIN "gfx/pokemon/togetic/front.animated.2bpp.lz" +KangaskhanBackpic: INCBIN "gfx/pokemon/kangaskhan/back.2bpp.lz" ; 13c000 SECTION "Pics 8", ROMX -SeelFrontpic: INCBIN "gfx/pics/seel/front.animated.2bpp.lz" -CrobatFrontpic: INCBIN "gfx/pics/crobat/front.animated.2bpp.lz" -ChanseyFrontpic: INCBIN "gfx/pics/chansey/front.animated.2bpp.lz" -TangelaFrontpic: INCBIN "gfx/pics/tangela/front.animated.2bpp.lz" -SnubbullFrontpic: INCBIN "gfx/pics/snubbull/front.animated.2bpp.lz" -GranbullFrontpic: INCBIN "gfx/pics/granbull/front.animated.2bpp.lz" -MiltankFrontpic: INCBIN "gfx/pics/miltank/front.animated.2bpp.lz" -HaunterFrontpic: INCBIN "gfx/pics/haunter/front.animated.2bpp.lz" -SunfloraFrontpic: INCBIN "gfx/pics/sunflora/front.animated.2bpp.lz" -UmbreonFrontpic: INCBIN "gfx/pics/umbreon/front.animated.2bpp.lz" -ChikoritaFrontpic: INCBIN "gfx/pics/chikorita/front.animated.2bpp.lz" -GoldeenFrontpic: INCBIN "gfx/pics/goldeen/front.animated.2bpp.lz" -EspeonFrontpic: INCBIN "gfx/pics/espeon/front.animated.2bpp.lz" -XatuFrontpic: INCBIN "gfx/pics/xatu/front.animated.2bpp.lz" -MewFrontpic: INCBIN "gfx/pics/mew/front.animated.2bpp.lz" -OctilleryFrontpic: INCBIN "gfx/pics/octillery/front.animated.2bpp.lz" -JynxFrontpic: INCBIN "gfx/pics/jynx/front.animated.2bpp.lz" -WobbuffetFrontpic: INCBIN "gfx/pics/wobbuffet/front.animated.2bpp.lz" -DelibirdFrontpic: INCBIN "gfx/pics/delibird/front.animated.2bpp.lz" -LedianFrontpic: INCBIN "gfx/pics/ledian/front.animated.2bpp.lz" -GloomFrontpic: INCBIN "gfx/pics/gloom/front.animated.2bpp.lz" -FlaaffyFrontpic: INCBIN "gfx/pics/flaaffy/front.animated.2bpp.lz" -IvysaurFrontpic: INCBIN "gfx/pics/ivysaur/front.animated.2bpp.lz" -FurretFrontpic: INCBIN "gfx/pics/furret/front.animated.2bpp.lz" -CyndaquilFrontpic: INCBIN "gfx/pics/cyndaquil/front.animated.2bpp.lz" -HitmonchanFrontpic: INCBIN "gfx/pics/hitmonchan/front.animated.2bpp.lz" -QuagsireFrontpic: INCBIN "gfx/pics/quagsire/front.animated.2bpp.lz" +SeelFrontpic: INCBIN "gfx/pokemon/seel/front.animated.2bpp.lz" +CrobatFrontpic: INCBIN "gfx/pokemon/crobat/front.animated.2bpp.lz" +ChanseyFrontpic: INCBIN "gfx/pokemon/chansey/front.animated.2bpp.lz" +TangelaFrontpic: INCBIN "gfx/pokemon/tangela/front.animated.2bpp.lz" +SnubbullFrontpic: INCBIN "gfx/pokemon/snubbull/front.animated.2bpp.lz" +GranbullFrontpic: INCBIN "gfx/pokemon/granbull/front.animated.2bpp.lz" +MiltankFrontpic: INCBIN "gfx/pokemon/miltank/front.animated.2bpp.lz" +HaunterFrontpic: INCBIN "gfx/pokemon/haunter/front.animated.2bpp.lz" +SunfloraFrontpic: INCBIN "gfx/pokemon/sunflora/front.animated.2bpp.lz" +UmbreonFrontpic: INCBIN "gfx/pokemon/umbreon/front.animated.2bpp.lz" +ChikoritaFrontpic: INCBIN "gfx/pokemon/chikorita/front.animated.2bpp.lz" +GoldeenFrontpic: INCBIN "gfx/pokemon/goldeen/front.animated.2bpp.lz" +EspeonFrontpic: INCBIN "gfx/pokemon/espeon/front.animated.2bpp.lz" +XatuFrontpic: INCBIN "gfx/pokemon/xatu/front.animated.2bpp.lz" +MewFrontpic: INCBIN "gfx/pokemon/mew/front.animated.2bpp.lz" +OctilleryFrontpic: INCBIN "gfx/pokemon/octillery/front.animated.2bpp.lz" +JynxFrontpic: INCBIN "gfx/pokemon/jynx/front.animated.2bpp.lz" +WobbuffetFrontpic: INCBIN "gfx/pokemon/wobbuffet/front.animated.2bpp.lz" +DelibirdFrontpic: INCBIN "gfx/pokemon/delibird/front.animated.2bpp.lz" +LedianFrontpic: INCBIN "gfx/pokemon/ledian/front.animated.2bpp.lz" +GloomFrontpic: INCBIN "gfx/pokemon/gloom/front.animated.2bpp.lz" +FlaaffyFrontpic: INCBIN "gfx/pokemon/flaaffy/front.animated.2bpp.lz" +IvysaurFrontpic: INCBIN "gfx/pokemon/ivysaur/front.animated.2bpp.lz" +FurretFrontpic: INCBIN "gfx/pokemon/furret/front.animated.2bpp.lz" +CyndaquilFrontpic: INCBIN "gfx/pokemon/cyndaquil/front.animated.2bpp.lz" +HitmonchanFrontpic: INCBIN "gfx/pokemon/hitmonchan/front.animated.2bpp.lz" +QuagsireFrontpic: INCBIN "gfx/pokemon/quagsire/front.animated.2bpp.lz" ; 13fff7 SECTION "Pics 9", ROMX -EkansFrontpic: INCBIN "gfx/pics/ekans/front.animated.2bpp.lz" -SudowoodoFrontpic: INCBIN "gfx/pics/sudowoodo/front.animated.2bpp.lz" -PikachuFrontpic: INCBIN "gfx/pics/pikachu/front.animated.2bpp.lz" -SeadraFrontpic: INCBIN "gfx/pics/seadra/front.animated.2bpp.lz" -MagbyFrontpic: INCBIN "gfx/pics/magby/front.animated.2bpp.lz" -WeepinbellFrontpic: INCBIN "gfx/pics/weepinbell/front.animated.2bpp.lz" -TotodileFrontpic: INCBIN "gfx/pics/totodile/front.animated.2bpp.lz" -CorsolaFrontpic: INCBIN "gfx/pics/corsola/front.animated.2bpp.lz" +EkansFrontpic: INCBIN "gfx/pokemon/ekans/front.animated.2bpp.lz" +SudowoodoFrontpic: INCBIN "gfx/pokemon/sudowoodo/front.animated.2bpp.lz" +PikachuFrontpic: INCBIN "gfx/pokemon/pikachu/front.animated.2bpp.lz" +SeadraFrontpic: INCBIN "gfx/pokemon/seadra/front.animated.2bpp.lz" +MagbyFrontpic: INCBIN "gfx/pokemon/magby/front.animated.2bpp.lz" +WeepinbellFrontpic: INCBIN "gfx/pokemon/weepinbell/front.animated.2bpp.lz" +TotodileFrontpic: INCBIN "gfx/pokemon/totodile/front.animated.2bpp.lz" +CorsolaFrontpic: INCBIN "gfx/pokemon/corsola/front.animated.2bpp.lz" FirebreatherPic: INCBIN "gfx/trainers/firebreather.2bpp.lz" -MachopFrontpic: INCBIN "gfx/pics/machop/front.animated.2bpp.lz" -ChinchouFrontpic: INCBIN "gfx/pics/chinchou/front.animated.2bpp.lz" -RattataFrontpic: INCBIN "gfx/pics/rattata/front.animated.2bpp.lz" +MachopFrontpic: INCBIN "gfx/pokemon/machop/front.animated.2bpp.lz" +ChinchouFrontpic: INCBIN "gfx/pokemon/chinchou/front.animated.2bpp.lz" +RattataFrontpic: INCBIN "gfx/pokemon/rattata/front.animated.2bpp.lz" ChampionPic: INCBIN "gfx/trainers/champion.2bpp.lz" -SpearowFrontpic: INCBIN "gfx/pics/spearow/front.animated.2bpp.lz" -MagikarpFrontpic: INCBIN "gfx/pics/magikarp/front.animated.2bpp.lz" -CharmanderFrontpic: INCBIN "gfx/pics/charmander/front.animated.2bpp.lz" -CuboneFrontpic: INCBIN "gfx/pics/cubone/front.animated.2bpp.lz" +SpearowFrontpic: INCBIN "gfx/pokemon/spearow/front.animated.2bpp.lz" +MagikarpFrontpic: INCBIN "gfx/pokemon/magikarp/front.animated.2bpp.lz" +CharmanderFrontpic: INCBIN "gfx/pokemon/charmander/front.animated.2bpp.lz" +CuboneFrontpic: INCBIN "gfx/pokemon/cubone/front.animated.2bpp.lz" BlackbeltTPic: INCBIN "gfx/trainers/blackbelt_t.2bpp.lz" BikerPic: INCBIN "gfx/trainers/biker.2bpp.lz" -NidoranMFrontpic: INCBIN "gfx/pics/nidoran_m/front.animated.2bpp.lz" -PorygonFrontpic: INCBIN "gfx/pics/porygon/front.animated.2bpp.lz" +NidoranMFrontpic: INCBIN "gfx/pokemon/nidoran_m/front.animated.2bpp.lz" +PorygonFrontpic: INCBIN "gfx/pokemon/porygon/front.animated.2bpp.lz" BrunoPic: INCBIN "gfx/trainers/bruno.2bpp.lz" -GrimerFrontpic: INCBIN "gfx/pics/grimer/front.animated.2bpp.lz" -StaryuFrontpic: INCBIN "gfx/pics/staryu/front.animated.2bpp.lz" +GrimerFrontpic: INCBIN "gfx/pokemon/grimer/front.animated.2bpp.lz" +StaryuFrontpic: INCBIN "gfx/pokemon/staryu/front.animated.2bpp.lz" HikerPic: INCBIN "gfx/trainers/hiker.2bpp.lz" -MeowthFrontpic: INCBIN "gfx/pics/meowth/front.animated.2bpp.lz" -Porygon2Frontpic: INCBIN "gfx/pics/porygon2/front.animated.2bpp.lz" -SandshrewFrontpic: INCBIN "gfx/pics/sandshrew/front.animated.2bpp.lz" -NidoranFFrontpic: INCBIN "gfx/pics/nidoran_f/front.animated.2bpp.lz" -PidgeyFrontpic: INCBIN "gfx/pics/pidgey/front.animated.2bpp.lz" -ParasectBackpic: INCBIN "gfx/pics/parasect/back.2bpp.lz" +MeowthFrontpic: INCBIN "gfx/pokemon/meowth/front.animated.2bpp.lz" +Porygon2Frontpic: INCBIN "gfx/pokemon/porygon2/front.animated.2bpp.lz" +SandshrewFrontpic: INCBIN "gfx/pokemon/sandshrew/front.animated.2bpp.lz" +NidoranFFrontpic: INCBIN "gfx/pokemon/nidoran_f/front.animated.2bpp.lz" +PidgeyFrontpic: INCBIN "gfx/pokemon/pidgey/front.animated.2bpp.lz" +ParasectBackpic: INCBIN "gfx/pokemon/parasect/back.2bpp.lz" ; 144000 SECTION "Pics 10", ROMX -MisdreavusFrontpic: INCBIN "gfx/pics/misdreavus/front.animated.2bpp.lz" -HoundourFrontpic: INCBIN "gfx/pics/houndour/front.animated.2bpp.lz" -MankeyFrontpic: INCBIN "gfx/pics/mankey/front.animated.2bpp.lz" -CelebiFrontpic: INCBIN "gfx/pics/celebi/front.animated.2bpp.lz" +MisdreavusFrontpic: INCBIN "gfx/pokemon/misdreavus/front.animated.2bpp.lz" +HoundourFrontpic: INCBIN "gfx/pokemon/houndour/front.animated.2bpp.lz" +MankeyFrontpic: INCBIN "gfx/pokemon/mankey/front.animated.2bpp.lz" +CelebiFrontpic: INCBIN "gfx/pokemon/celebi/front.animated.2bpp.lz" MediumPic: INCBIN "gfx/trainers/medium.2bpp.lz" -PinecoFrontpic: INCBIN "gfx/pics/pineco/front.animated.2bpp.lz" -KrabbyFrontpic: INCBIN "gfx/pics/krabby/front.animated.2bpp.lz" +PinecoFrontpic: INCBIN "gfx/pokemon/pineco/front.animated.2bpp.lz" +KrabbyFrontpic: INCBIN "gfx/pokemon/krabby/front.animated.2bpp.lz" FisherPic: INCBIN "gfx/trainers/fisher.2bpp.lz" -JigglypuffFrontpic: INCBIN "gfx/pics/jigglypuff/front.animated.2bpp.lz" -ParasFrontpic: INCBIN "gfx/pics/paras/front.animated.2bpp.lz" -NidokingBackpic: INCBIN "gfx/pics/nidoking/back.2bpp.lz" +JigglypuffFrontpic: INCBIN "gfx/pokemon/jigglypuff/front.animated.2bpp.lz" +ParasFrontpic: INCBIN "gfx/pokemon/paras/front.animated.2bpp.lz" +NidokingBackpic: INCBIN "gfx/pokemon/nidoking/back.2bpp.lz" PokefanmPic: INCBIN "gfx/trainers/pokefan_m.2bpp.lz" BoarderPic: INCBIN "gfx/trainers/boarder.2bpp.lz" -PsyduckFrontpic: INCBIN "gfx/pics/psyduck/front.animated.2bpp.lz" -SquirtleFrontpic: INCBIN "gfx/pics/squirtle/front.animated.2bpp.lz" -MachampBackpic: INCBIN "gfx/pics/machamp/back.2bpp.lz" -KoffingFrontpic: INCBIN "gfx/pics/koffing/front.animated.2bpp.lz" -VenonatFrontpic: INCBIN "gfx/pics/venonat/front.animated.2bpp.lz" -ExeggutorBackpic: INCBIN "gfx/pics/exeggutor/back.2bpp.lz" -LanturnFrontpic: INCBIN "gfx/pics/lanturn/front.animated.2bpp.lz" -TyrogueFrontpic: INCBIN "gfx/pics/tyrogue/front.animated.2bpp.lz" -SkiploomFrontpic: INCBIN "gfx/pics/skiploom/front.animated.2bpp.lz" -MareepFrontpic: INCBIN "gfx/pics/mareep/front.animated.2bpp.lz" +PsyduckFrontpic: INCBIN "gfx/pokemon/psyduck/front.animated.2bpp.lz" +SquirtleFrontpic: INCBIN "gfx/pokemon/squirtle/front.animated.2bpp.lz" +MachampBackpic: INCBIN "gfx/pokemon/machamp/back.2bpp.lz" +KoffingFrontpic: INCBIN "gfx/pokemon/koffing/front.animated.2bpp.lz" +VenonatFrontpic: INCBIN "gfx/pokemon/venonat/front.animated.2bpp.lz" +ExeggutorBackpic: INCBIN "gfx/pokemon/exeggutor/back.2bpp.lz" +LanturnFrontpic: INCBIN "gfx/pokemon/lanturn/front.animated.2bpp.lz" +TyrogueFrontpic: INCBIN "gfx/pokemon/tyrogue/front.animated.2bpp.lz" +SkiploomFrontpic: INCBIN "gfx/pokemon/skiploom/front.animated.2bpp.lz" +MareepFrontpic: INCBIN "gfx/pokemon/mareep/front.animated.2bpp.lz" ChuckPic: INCBIN "gfx/trainers/chuck.2bpp.lz" -EeveeFrontpic: INCBIN "gfx/pics/eevee/front.animated.2bpp.lz" -ButterfreeBackpic: INCBIN "gfx/pics/butterfree/back.2bpp.lz" -ZubatFrontpic: INCBIN "gfx/pics/zubat/front.animated.2bpp.lz" +EeveeFrontpic: INCBIN "gfx/pokemon/eevee/front.animated.2bpp.lz" +ButterfreeBackpic: INCBIN "gfx/pokemon/butterfree/back.2bpp.lz" +ZubatFrontpic: INCBIN "gfx/pokemon/zubat/front.animated.2bpp.lz" KimonoGirlPic: INCBIN "gfx/trainers/kimono_girl.2bpp.lz" -AlakazamBackpic: INCBIN "gfx/pics/alakazam/back.2bpp.lz" -AipomFrontpic: INCBIN "gfx/pics/aipom/front.animated.2bpp.lz" -AbraFrontpic: INCBIN "gfx/pics/abra/front.animated.2bpp.lz" -HitmontopBackpic: INCBIN "gfx/pics/hitmontop/back.2bpp.lz" -CloysterBackpic: INCBIN "gfx/pics/cloyster/back.2bpp.lz" -HoothootFrontpic: INCBIN "gfx/pics/hoothoot/front.animated.2bpp.lz" -UnownFBackpic: INCBIN "gfx/pics/unown_f/back.2bpp.lz" +AlakazamBackpic: INCBIN "gfx/pokemon/alakazam/back.2bpp.lz" +AipomFrontpic: INCBIN "gfx/pokemon/aipom/front.animated.2bpp.lz" +AbraFrontpic: INCBIN "gfx/pokemon/abra/front.animated.2bpp.lz" +HitmontopBackpic: INCBIN "gfx/pokemon/hitmontop/back.2bpp.lz" +CloysterBackpic: INCBIN "gfx/pokemon/cloyster/back.2bpp.lz" +HoothootFrontpic: INCBIN "gfx/pokemon/hoothoot/front.animated.2bpp.lz" +UnownFBackpic: INCBIN "gfx/pokemon/unown_f/back.2bpp.lz" ; 148000 SECTION "Pics 11", ROMX -DodrioBackpic: INCBIN "gfx/pics/dodrio/back.2bpp.lz" -ClefairyFrontpic: INCBIN "gfx/pics/clefairy/front.animated.2bpp.lz" -SlugmaFrontpic: INCBIN "gfx/pics/slugma/front.animated.2bpp.lz" -GrowlitheFrontpic: INCBIN "gfx/pics/growlithe/front.animated.2bpp.lz" -SlowpokeFrontpic: INCBIN "gfx/pics/slowpoke/front.animated.2bpp.lz" -SmoochumFrontpic: INCBIN "gfx/pics/smoochum/front.animated.2bpp.lz" +DodrioBackpic: INCBIN "gfx/pokemon/dodrio/back.2bpp.lz" +ClefairyFrontpic: INCBIN "gfx/pokemon/clefairy/front.animated.2bpp.lz" +SlugmaFrontpic: INCBIN "gfx/pokemon/slugma/front.animated.2bpp.lz" +GrowlitheFrontpic: INCBIN "gfx/pokemon/growlithe/front.animated.2bpp.lz" +SlowpokeFrontpic: INCBIN "gfx/pokemon/slowpoke/front.animated.2bpp.lz" +SmoochumFrontpic: INCBIN "gfx/pokemon/smoochum/front.animated.2bpp.lz" JugglerPic: INCBIN "gfx/trainers/juggler.2bpp.lz" -MarillFrontpic: INCBIN "gfx/pics/marill/front.animated.2bpp.lz" +MarillFrontpic: INCBIN "gfx/pokemon/marill/front.animated.2bpp.lz" GuitaristPic: INCBIN "gfx/trainers/guitarist.2bpp.lz" PokefanfPic: INCBIN "gfx/trainers/pokefan_f.2bpp.lz" -VenomothBackpic: INCBIN "gfx/pics/venomoth/back.2bpp.lz" +VenomothBackpic: INCBIN "gfx/pokemon/venomoth/back.2bpp.lz" ClairPic: INCBIN "gfx/trainers/clair.2bpp.lz" PokemaniacPic: INCBIN "gfx/trainers/pokemaniac.2bpp.lz" -OmanyteFrontpic: INCBIN "gfx/pics/omanyte/front.animated.2bpp.lz" +OmanyteFrontpic: INCBIN "gfx/pokemon/omanyte/front.animated.2bpp.lz" SkierPic: INCBIN "gfx/trainers/skier.2bpp.lz" -PupitarFrontpic: INCBIN "gfx/pics/pupitar/front.animated.2bpp.lz" -BellsproutFrontpic: INCBIN "gfx/pics/bellsprout/front.animated.2bpp.lz" -ShellderFrontpic: INCBIN "gfx/pics/shellder/front.animated.2bpp.lz" -TentacoolFrontpic: INCBIN "gfx/pics/tentacool/front.animated.2bpp.lz" -CleffaFrontpic: INCBIN "gfx/pics/cleffa/front.animated.2bpp.lz" -GyaradosBackpic: INCBIN "gfx/pics/gyarados/back.2bpp.lz" -NinetalesBackpic: INCBIN "gfx/pics/ninetales/back.2bpp.lz" -YanmaBackpic: INCBIN "gfx/pics/yanma/back.2bpp.lz" -PinsirBackpic: INCBIN "gfx/pics/pinsir/back.2bpp.lz" +PupitarFrontpic: INCBIN "gfx/pokemon/pupitar/front.animated.2bpp.lz" +BellsproutFrontpic: INCBIN "gfx/pokemon/bellsprout/front.animated.2bpp.lz" +ShellderFrontpic: INCBIN "gfx/pokemon/shellder/front.animated.2bpp.lz" +TentacoolFrontpic: INCBIN "gfx/pokemon/tentacool/front.animated.2bpp.lz" +CleffaFrontpic: INCBIN "gfx/pokemon/cleffa/front.animated.2bpp.lz" +GyaradosBackpic: INCBIN "gfx/pokemon/gyarados/back.2bpp.lz" +NinetalesBackpic: INCBIN "gfx/pokemon/ninetales/back.2bpp.lz" +YanmaBackpic: INCBIN "gfx/pokemon/yanma/back.2bpp.lz" +PinsirBackpic: INCBIN "gfx/pokemon/pinsir/back.2bpp.lz" LassPic: INCBIN "gfx/trainers/lass.2bpp.lz" -ClefableBackpic: INCBIN "gfx/pics/clefable/back.2bpp.lz" -DoduoFrontpic: INCBIN "gfx/pics/doduo/front.animated.2bpp.lz" -FeraligatrBackpic: INCBIN "gfx/pics/feraligatr/back.2bpp.lz" -DratiniFrontpic: INCBIN "gfx/pics/dratini/front.animated.2bpp.lz" -MagnetonBackpic: INCBIN "gfx/pics/magneton/back.2bpp.lz" -QwilfishFrontpic: INCBIN "gfx/pics/qwilfish/front.animated.2bpp.lz" -SuicuneBackpic: INCBIN "gfx/pics/suicune/back.2bpp.lz" -SlowkingBackpic: INCBIN "gfx/pics/slowking/back.2bpp.lz" -ElekidBackpic: INCBIN "gfx/pics/elekid/back.2bpp.lz" -CelebiBackpic: INCBIN "gfx/pics/celebi/back.2bpp.lz" -KrabbyBackpic: INCBIN "gfx/pics/krabby/back.2bpp.lz" +ClefableBackpic: INCBIN "gfx/pokemon/clefable/back.2bpp.lz" +DoduoFrontpic: INCBIN "gfx/pokemon/doduo/front.animated.2bpp.lz" +FeraligatrBackpic: INCBIN "gfx/pokemon/feraligatr/back.2bpp.lz" +DratiniFrontpic: INCBIN "gfx/pokemon/dratini/front.animated.2bpp.lz" +MagnetonBackpic: INCBIN "gfx/pokemon/magneton/back.2bpp.lz" +QwilfishFrontpic: INCBIN "gfx/pokemon/qwilfish/front.animated.2bpp.lz" +SuicuneBackpic: INCBIN "gfx/pokemon/suicune/back.2bpp.lz" +SlowkingBackpic: INCBIN "gfx/pokemon/slowking/back.2bpp.lz" +ElekidBackpic: INCBIN "gfx/pokemon/elekid/back.2bpp.lz" +CelebiBackpic: INCBIN "gfx/pokemon/celebi/back.2bpp.lz" +KrabbyBackpic: INCBIN "gfx/pokemon/krabby/back.2bpp.lz" BugCatcherPic: INCBIN "gfx/trainers/bug_catcher.2bpp.lz" -SnorlaxBackpic: INCBIN "gfx/pics/snorlax/back.2bpp.lz" +SnorlaxBackpic: INCBIN "gfx/pokemon/snorlax/back.2bpp.lz" ; 14bffb SECTION "Pics 12", ROMX -VenusaurBackpic: INCBIN "gfx/pics/venusaur/back.2bpp.lz" -MoltresBackpic: INCBIN "gfx/pics/moltres/back.2bpp.lz" -SunfloraBackpic: INCBIN "gfx/pics/sunflora/back.2bpp.lz" -PhanpyFrontpic: INCBIN "gfx/pics/phanpy/front.animated.2bpp.lz" -RhydonBackpic: INCBIN "gfx/pics/rhydon/back.2bpp.lz" -LarvitarFrontpic: INCBIN "gfx/pics/larvitar/front.animated.2bpp.lz" -TyranitarBackpic: INCBIN "gfx/pics/tyranitar/back.2bpp.lz" -SandslashBackpic: INCBIN "gfx/pics/sandslash/back.2bpp.lz" -SeadraBackpic: INCBIN "gfx/pics/seadra/back.2bpp.lz" +VenusaurBackpic: INCBIN "gfx/pokemon/venusaur/back.2bpp.lz" +MoltresBackpic: INCBIN "gfx/pokemon/moltres/back.2bpp.lz" +SunfloraBackpic: INCBIN "gfx/pokemon/sunflora/back.2bpp.lz" +PhanpyFrontpic: INCBIN "gfx/pokemon/phanpy/front.animated.2bpp.lz" +RhydonBackpic: INCBIN "gfx/pokemon/rhydon/back.2bpp.lz" +LarvitarFrontpic: INCBIN "gfx/pokemon/larvitar/front.animated.2bpp.lz" +TyranitarBackpic: INCBIN "gfx/pokemon/tyranitar/back.2bpp.lz" +SandslashBackpic: INCBIN "gfx/pokemon/sandslash/back.2bpp.lz" +SeadraBackpic: INCBIN "gfx/pokemon/seadra/back.2bpp.lz" TwinsPic: INCBIN "gfx/trainers/twins.2bpp.lz" -FarfetchDBackpic: INCBIN "gfx/pics/farfetch_d/back.2bpp.lz" -NidoranMBackpic: INCBIN "gfx/pics/nidoran_m/back.2bpp.lz" -LedybaBackpic: INCBIN "gfx/pics/ledyba/back.2bpp.lz" -CyndaquilBackpic: INCBIN "gfx/pics/cyndaquil/back.2bpp.lz" -BayleefBackpic: INCBIN "gfx/pics/bayleef/back.2bpp.lz" -OddishFrontpic: INCBIN "gfx/pics/oddish/front.animated.2bpp.lz" -RapidashBackpic: INCBIN "gfx/pics/rapidash/back.2bpp.lz" -DoduoBackpic: INCBIN "gfx/pics/doduo/back.2bpp.lz" -HoppipFrontpic: INCBIN "gfx/pics/hoppip/front.animated.2bpp.lz" -MankeyBackpic: INCBIN "gfx/pics/mankey/back.2bpp.lz" -MagmarBackpic: INCBIN "gfx/pics/magmar/back.2bpp.lz" -HypnoBackpic: INCBIN "gfx/pics/hypno/back.2bpp.lz" -QuilavaBackpic: INCBIN "gfx/pics/quilava/back.2bpp.lz" -CroconawBackpic: INCBIN "gfx/pics/croconaw/back.2bpp.lz" -SandshrewBackpic: INCBIN "gfx/pics/sandshrew/back.2bpp.lz" +FarfetchDBackpic: INCBIN "gfx/pokemon/farfetch_d/back.2bpp.lz" +NidoranMBackpic: INCBIN "gfx/pokemon/nidoran_m/back.2bpp.lz" +LedybaBackpic: INCBIN "gfx/pokemon/ledyba/back.2bpp.lz" +CyndaquilBackpic: INCBIN "gfx/pokemon/cyndaquil/back.2bpp.lz" +BayleefBackpic: INCBIN "gfx/pokemon/bayleef/back.2bpp.lz" +OddishFrontpic: INCBIN "gfx/pokemon/oddish/front.animated.2bpp.lz" +RapidashBackpic: INCBIN "gfx/pokemon/rapidash/back.2bpp.lz" +DoduoBackpic: INCBIN "gfx/pokemon/doduo/back.2bpp.lz" +HoppipFrontpic: INCBIN "gfx/pokemon/hoppip/front.animated.2bpp.lz" +MankeyBackpic: INCBIN "gfx/pokemon/mankey/back.2bpp.lz" +MagmarBackpic: INCBIN "gfx/pokemon/magmar/back.2bpp.lz" +HypnoBackpic: INCBIN "gfx/pokemon/hypno/back.2bpp.lz" +QuilavaBackpic: INCBIN "gfx/pokemon/quilava/back.2bpp.lz" +CroconawBackpic: INCBIN "gfx/pokemon/croconaw/back.2bpp.lz" +SandshrewBackpic: INCBIN "gfx/pokemon/sandshrew/back.2bpp.lz" SailorPic: INCBIN "gfx/trainers/sailor.2bpp.lz" BeautyPic: INCBIN "gfx/trainers/beauty.2bpp.lz" -ShellderBackpic: INCBIN "gfx/pics/shellder/back.2bpp.lz" -ZubatBackpic: INCBIN "gfx/pics/zubat/back.2bpp.lz" -TeddiursaFrontpic: INCBIN "gfx/pics/teddiursa/front.animated.2bpp.lz" -CuboneBackpic: INCBIN "gfx/pics/cubone/back.2bpp.lz" +ShellderBackpic: INCBIN "gfx/pokemon/shellder/back.2bpp.lz" +ZubatBackpic: INCBIN "gfx/pokemon/zubat/back.2bpp.lz" +TeddiursaFrontpic: INCBIN "gfx/pokemon/teddiursa/front.animated.2bpp.lz" +CuboneBackpic: INCBIN "gfx/pokemon/cubone/back.2bpp.lz" GruntmPic: INCBIN "gfx/trainers/grunt_m.2bpp.lz" -GloomBackpic: INCBIN "gfx/pics/gloom/back.2bpp.lz" -MagcargoBackpic: INCBIN "gfx/pics/magcargo/back.2bpp.lz" -KabutopsBackpic: INCBIN "gfx/pics/kabutops/back.2bpp.lz" -BeedrillBackpic: INCBIN "gfx/pics/beedrill/back.2bpp.lz" -ArcanineBackpic: INCBIN "gfx/pics/arcanine/back.2bpp.lz" -FlareonBackpic: INCBIN "gfx/pics/flareon/back.2bpp.lz" -GoldeenBackpic: INCBIN "gfx/pics/goldeen/back.2bpp.lz" -BulbasaurFrontpic: INCBIN "gfx/pics/bulbasaur/front.animated.2bpp.lz" -StarmieBackpic: INCBIN "gfx/pics/starmie/back.2bpp.lz" +GloomBackpic: INCBIN "gfx/pokemon/gloom/back.2bpp.lz" +MagcargoBackpic: INCBIN "gfx/pokemon/magcargo/back.2bpp.lz" +KabutopsBackpic: INCBIN "gfx/pokemon/kabutops/back.2bpp.lz" +BeedrillBackpic: INCBIN "gfx/pokemon/beedrill/back.2bpp.lz" +ArcanineBackpic: INCBIN "gfx/pokemon/arcanine/back.2bpp.lz" +FlareonBackpic: INCBIN "gfx/pokemon/flareon/back.2bpp.lz" +GoldeenBackpic: INCBIN "gfx/pokemon/goldeen/back.2bpp.lz" +BulbasaurFrontpic: INCBIN "gfx/pokemon/bulbasaur/front.animated.2bpp.lz" +StarmieBackpic: INCBIN "gfx/pokemon/starmie/back.2bpp.lz" ; 150000 SECTION "Pics 13", ROMX -OmanyteBackpic: INCBIN "gfx/pics/omanyte/back.2bpp.lz" -PidgeyBackpic: INCBIN "gfx/pics/pidgey/back.2bpp.lz" +OmanyteBackpic: INCBIN "gfx/pokemon/omanyte/back.2bpp.lz" +PidgeyBackpic: INCBIN "gfx/pokemon/pidgey/back.2bpp.lz" ScientistPic: INCBIN "gfx/trainers/scientist.2bpp.lz" -QwilfishBackpic: INCBIN "gfx/pics/qwilfish/back.2bpp.lz" -GligarBackpic: INCBIN "gfx/pics/gligar/back.2bpp.lz" -TyphlosionBackpic: INCBIN "gfx/pics/typhlosion/back.2bpp.lz" -CharmeleonBackpic: INCBIN "gfx/pics/charmeleon/back.2bpp.lz" -NidoqueenBackpic: INCBIN "gfx/pics/nidoqueen/back.2bpp.lz" -PichuFrontpic: INCBIN "gfx/pics/pichu/front.animated.2bpp.lz" -ElectabuzzBackpic: INCBIN "gfx/pics/electabuzz/back.2bpp.lz" -LedianBackpic: INCBIN "gfx/pics/ledian/back.2bpp.lz" -PupitarBackpic: INCBIN "gfx/pics/pupitar/back.2bpp.lz" -HeracrossBackpic: INCBIN "gfx/pics/heracross/back.2bpp.lz" -UnownDFrontpic: INCBIN "gfx/pics/unown_d/front.animated.2bpp.lz" -MiltankBackpic: INCBIN "gfx/pics/miltank/back.2bpp.lz" -SteelixBackpic: INCBIN "gfx/pics/steelix/back.2bpp.lz" -PersianBackpic: INCBIN "gfx/pics/persian/back.2bpp.lz" +QwilfishBackpic: INCBIN "gfx/pokemon/qwilfish/back.2bpp.lz" +GligarBackpic: INCBIN "gfx/pokemon/gligar/back.2bpp.lz" +TyphlosionBackpic: INCBIN "gfx/pokemon/typhlosion/back.2bpp.lz" +CharmeleonBackpic: INCBIN "gfx/pokemon/charmeleon/back.2bpp.lz" +NidoqueenBackpic: INCBIN "gfx/pokemon/nidoqueen/back.2bpp.lz" +PichuFrontpic: INCBIN "gfx/pokemon/pichu/front.animated.2bpp.lz" +ElectabuzzBackpic: INCBIN "gfx/pokemon/electabuzz/back.2bpp.lz" +LedianBackpic: INCBIN "gfx/pokemon/ledian/back.2bpp.lz" +PupitarBackpic: INCBIN "gfx/pokemon/pupitar/back.2bpp.lz" +HeracrossBackpic: INCBIN "gfx/pokemon/heracross/back.2bpp.lz" +UnownDFrontpic: INCBIN "gfx/pokemon/unown_d/front.animated.2bpp.lz" +MiltankBackpic: INCBIN "gfx/pokemon/miltank/back.2bpp.lz" +SteelixBackpic: INCBIN "gfx/pokemon/steelix/back.2bpp.lz" +PersianBackpic: INCBIN "gfx/pokemon/persian/back.2bpp.lz" LtSurgePic: INCBIN "gfx/trainers/lt_surge.2bpp.lz" TeacherPic: INCBIN "gfx/trainers/teacher.2bpp.lz" -EggPic: INCBIN "gfx/pics/egg/front.animated.2bpp.lz" -EeveeBackpic: INCBIN "gfx/pics/eevee/back.2bpp.lz" -ShuckleFrontpic: INCBIN "gfx/pics/shuckle/front.animated.2bpp.lz" -PonytaBackpic: INCBIN "gfx/pics/ponyta/back.2bpp.lz" -RemoraidFrontpic: INCBIN "gfx/pics/remoraid/front.animated.2bpp.lz" -PoliwagFrontpic: INCBIN "gfx/pics/poliwag/front.animated.2bpp.lz" -OnixBackpic: INCBIN "gfx/pics/onix/back.2bpp.lz" -KoffingBackpic: INCBIN "gfx/pics/koffing/back.2bpp.lz" +EggPic: INCBIN "gfx/pokemon/egg/front.animated.2bpp.lz" +EeveeBackpic: INCBIN "gfx/pokemon/eevee/back.2bpp.lz" +ShuckleFrontpic: INCBIN "gfx/pokemon/shuckle/front.animated.2bpp.lz" +PonytaBackpic: INCBIN "gfx/pokemon/ponyta/back.2bpp.lz" +RemoraidFrontpic: INCBIN "gfx/pokemon/remoraid/front.animated.2bpp.lz" +PoliwagFrontpic: INCBIN "gfx/pokemon/poliwag/front.animated.2bpp.lz" +OnixBackpic: INCBIN "gfx/pokemon/onix/back.2bpp.lz" +KoffingBackpic: INCBIN "gfx/pokemon/koffing/back.2bpp.lz" BirdKeeperPic: INCBIN "gfx/trainers/bird_keeper.2bpp.lz" FalknerPic: INCBIN "gfx/trainers/falkner.2bpp.lz" KarenPic: INCBIN "gfx/trainers/karen.2bpp.lz" -NidorinaBackpic: INCBIN "gfx/pics/nidorina/back.2bpp.lz" -TentacruelBackpic: INCBIN "gfx/pics/tentacruel/back.2bpp.lz" -GrowlitheBackpic: INCBIN "gfx/pics/growlithe/back.2bpp.lz" +NidorinaBackpic: INCBIN "gfx/pokemon/nidorina/back.2bpp.lz" +TentacruelBackpic: INCBIN "gfx/pokemon/tentacruel/back.2bpp.lz" +GrowlitheBackpic: INCBIN "gfx/pokemon/growlithe/back.2bpp.lz" KogaPic: INCBIN "gfx/trainers/koga.2bpp.lz" -MachokeBackpic: INCBIN "gfx/pics/machoke/back.2bpp.lz" -RaichuBackpic: INCBIN "gfx/pics/raichu/back.2bpp.lz" -PoliwrathBackpic: INCBIN "gfx/pics/poliwrath/back.2bpp.lz" +MachokeBackpic: INCBIN "gfx/pokemon/machoke/back.2bpp.lz" +RaichuBackpic: INCBIN "gfx/pokemon/raichu/back.2bpp.lz" +PoliwrathBackpic: INCBIN "gfx/pokemon/poliwrath/back.2bpp.lz" SwimmermPic: INCBIN "gfx/trainers/swimmer_m.2bpp.lz" -SunkernFrontpic: INCBIN "gfx/pics/sunkern/front.animated.2bpp.lz" -NidorinoBackpic: INCBIN "gfx/pics/nidorino/back.2bpp.lz" +SunkernFrontpic: INCBIN "gfx/pokemon/sunkern/front.animated.2bpp.lz" +NidorinoBackpic: INCBIN "gfx/pokemon/nidorino/back.2bpp.lz" MysticalmanPic: INCBIN "gfx/trainers/mysticalman.2bpp.lz" CooltrainerfPic: INCBIN "gfx/trainers/cooltrainer_f.2bpp.lz" -ElectrodeFrontpic: INCBIN "gfx/pics/electrode/front.animated.2bpp.lz" +ElectrodeFrontpic: INCBIN "gfx/pokemon/electrode/front.animated.2bpp.lz" ; 153fe3 SECTION "Pics 14", ROMX -SudowoodoBackpic: INCBIN "gfx/pics/sudowoodo/back.2bpp.lz" -FlaaffyBackpic: INCBIN "gfx/pics/flaaffy/back.2bpp.lz" -SentretFrontpic: INCBIN "gfx/pics/sentret/front.animated.2bpp.lz" -TogeticBackpic: INCBIN "gfx/pics/togetic/back.2bpp.lz" +SudowoodoBackpic: INCBIN "gfx/pokemon/sudowoodo/back.2bpp.lz" +FlaaffyBackpic: INCBIN "gfx/pokemon/flaaffy/back.2bpp.lz" +SentretFrontpic: INCBIN "gfx/pokemon/sentret/front.animated.2bpp.lz" +TogeticBackpic: INCBIN "gfx/pokemon/togetic/back.2bpp.lz" BugsyPic: INCBIN "gfx/trainers/bugsy.2bpp.lz" -MarowakBackpic: INCBIN "gfx/pics/marowak/back.2bpp.lz" -GeodudeBackpic: INCBIN "gfx/pics/geodude/back.2bpp.lz" -ScytherBackpic: INCBIN "gfx/pics/scyther/back.2bpp.lz" -VileplumeBackpic: INCBIN "gfx/pics/vileplume/back.2bpp.lz" -HitmonchanBackpic: INCBIN "gfx/pics/hitmonchan/back.2bpp.lz" -JumpluffBackpic: INCBIN "gfx/pics/jumpluff/back.2bpp.lz" +MarowakBackpic: INCBIN "gfx/pokemon/marowak/back.2bpp.lz" +GeodudeBackpic: INCBIN "gfx/pokemon/geodude/back.2bpp.lz" +ScytherBackpic: INCBIN "gfx/pokemon/scyther/back.2bpp.lz" +VileplumeBackpic: INCBIN "gfx/pokemon/vileplume/back.2bpp.lz" +HitmonchanBackpic: INCBIN "gfx/pokemon/hitmonchan/back.2bpp.lz" +JumpluffBackpic: INCBIN "gfx/pokemon/jumpluff/back.2bpp.lz" CooltrainermPic: INCBIN "gfx/trainers/cooltrainer_m.2bpp.lz" -BlastoiseBackpic: INCBIN "gfx/pics/blastoise/back.2bpp.lz" -MisdreavusBackpic: INCBIN "gfx/pics/misdreavus/back.2bpp.lz" -TyrogueBackpic: INCBIN "gfx/pics/tyrogue/back.2bpp.lz" -GeodudeFrontpic: INCBIN "gfx/pics/geodude/front.animated.2bpp.lz" -ScizorBackpic: INCBIN "gfx/pics/scizor/back.2bpp.lz" -GirafarigBackpic: INCBIN "gfx/pics/girafarig/back.2bpp.lz" -StantlerBackpic: INCBIN "gfx/pics/stantler/back.2bpp.lz" -SmeargleBackpic: INCBIN "gfx/pics/smeargle/back.2bpp.lz" -CharizardBackpic: INCBIN "gfx/pics/charizard/back.2bpp.lz" -KadabraBackpic: INCBIN "gfx/pics/kadabra/back.2bpp.lz" -PrimeapeBackpic: INCBIN "gfx/pics/primeape/back.2bpp.lz" -FurretBackpic: INCBIN "gfx/pics/furret/back.2bpp.lz" -WartortleBackpic: INCBIN "gfx/pics/wartortle/back.2bpp.lz" -ExeggcuteBackpic: INCBIN "gfx/pics/exeggcute/back.2bpp.lz" -IgglybuffFrontpic: INCBIN "gfx/pics/igglybuff/front.animated.2bpp.lz" -RaticateBackpic: INCBIN "gfx/pics/raticate/back.2bpp.lz" -VulpixBackpic: INCBIN "gfx/pics/vulpix/back.2bpp.lz" -EkansBackpic: INCBIN "gfx/pics/ekans/back.2bpp.lz" -SeakingBackpic: INCBIN "gfx/pics/seaking/back.2bpp.lz" +BlastoiseBackpic: INCBIN "gfx/pokemon/blastoise/back.2bpp.lz" +MisdreavusBackpic: INCBIN "gfx/pokemon/misdreavus/back.2bpp.lz" +TyrogueBackpic: INCBIN "gfx/pokemon/tyrogue/back.2bpp.lz" +GeodudeFrontpic: INCBIN "gfx/pokemon/geodude/front.animated.2bpp.lz" +ScizorBackpic: INCBIN "gfx/pokemon/scizor/back.2bpp.lz" +GirafarigBackpic: INCBIN "gfx/pokemon/girafarig/back.2bpp.lz" +StantlerBackpic: INCBIN "gfx/pokemon/stantler/back.2bpp.lz" +SmeargleBackpic: INCBIN "gfx/pokemon/smeargle/back.2bpp.lz" +CharizardBackpic: INCBIN "gfx/pokemon/charizard/back.2bpp.lz" +KadabraBackpic: INCBIN "gfx/pokemon/kadabra/back.2bpp.lz" +PrimeapeBackpic: INCBIN "gfx/pokemon/primeape/back.2bpp.lz" +FurretBackpic: INCBIN "gfx/pokemon/furret/back.2bpp.lz" +WartortleBackpic: INCBIN "gfx/pokemon/wartortle/back.2bpp.lz" +ExeggcuteBackpic: INCBIN "gfx/pokemon/exeggcute/back.2bpp.lz" +IgglybuffFrontpic: INCBIN "gfx/pokemon/igglybuff/front.animated.2bpp.lz" +RaticateBackpic: INCBIN "gfx/pokemon/raticate/back.2bpp.lz" +VulpixBackpic: INCBIN "gfx/pokemon/vulpix/back.2bpp.lz" +EkansBackpic: INCBIN "gfx/pokemon/ekans/back.2bpp.lz" +SeakingBackpic: INCBIN "gfx/pokemon/seaking/back.2bpp.lz" BurglarPic: INCBIN "gfx/trainers/burglar.2bpp.lz" -PsyduckBackpic: INCBIN "gfx/pics/psyduck/back.2bpp.lz" -PikachuBackpic: INCBIN "gfx/pics/pikachu/back.2bpp.lz" -KabutoFrontpic: INCBIN "gfx/pics/kabuto/front.animated.2bpp.lz" -MareepBackpic: INCBIN "gfx/pics/mareep/back.2bpp.lz" -RemoraidBackpic: INCBIN "gfx/pics/remoraid/back.2bpp.lz" -DittoFrontpic: INCBIN "gfx/pics/ditto/front.animated.2bpp.lz" -KingdraBackpic: INCBIN "gfx/pics/kingdra/back.2bpp.lz" +PsyduckBackpic: INCBIN "gfx/pokemon/psyduck/back.2bpp.lz" +PikachuBackpic: INCBIN "gfx/pokemon/pikachu/back.2bpp.lz" +KabutoFrontpic: INCBIN "gfx/pokemon/kabuto/front.animated.2bpp.lz" +MareepBackpic: INCBIN "gfx/pokemon/mareep/back.2bpp.lz" +RemoraidBackpic: INCBIN "gfx/pokemon/remoraid/back.2bpp.lz" +DittoFrontpic: INCBIN "gfx/pokemon/ditto/front.animated.2bpp.lz" +KingdraBackpic: INCBIN "gfx/pokemon/kingdra/back.2bpp.lz" CamperPic: INCBIN "gfx/trainers/camper.2bpp.lz" -WooperFrontpic: INCBIN "gfx/pics/wooper/front.animated.2bpp.lz" -ClefairyBackpic: INCBIN "gfx/pics/clefairy/back.2bpp.lz" -VenonatBackpic: INCBIN "gfx/pics/venonat/back.2bpp.lz" -BellossomBackpic: INCBIN "gfx/pics/bellossom/back.2bpp.lz" +WooperFrontpic: INCBIN "gfx/pokemon/wooper/front.animated.2bpp.lz" +ClefairyBackpic: INCBIN "gfx/pokemon/clefairy/back.2bpp.lz" +VenonatBackpic: INCBIN "gfx/pokemon/venonat/back.2bpp.lz" +BellossomBackpic: INCBIN "gfx/pokemon/bellossom/back.2bpp.lz" Rival1Pic: INCBIN "gfx/trainers/rival1.2bpp.lz" -SwinubBackpic: INCBIN "gfx/pics/swinub/back.2bpp.lz" +SwinubBackpic: INCBIN "gfx/pokemon/swinub/back.2bpp.lz" ; 158000 SECTION "Pics 15", ROMX -MewtwoBackpic: INCBIN "gfx/pics/mewtwo/back.2bpp.lz" +MewtwoBackpic: INCBIN "gfx/pokemon/mewtwo/back.2bpp.lz" PokemonProfPic: INCBIN "gfx/trainers/oak.2bpp.lz" CalPic: INCBIN "gfx/trainers/cal.2bpp.lz" SwimmerfPic: INCBIN "gfx/trainers/swimmer_f.2bpp.lz" -DiglettFrontpic: INCBIN "gfx/pics/diglett/front.animated.2bpp.lz" +DiglettFrontpic: INCBIN "gfx/pokemon/diglett/front.animated.2bpp.lz" OfficerPic: INCBIN "gfx/trainers/officer.2bpp.lz" -MukBackpic: INCBIN "gfx/pics/muk/back.2bpp.lz" -DelibirdBackpic: INCBIN "gfx/pics/delibird/back.2bpp.lz" +MukBackpic: INCBIN "gfx/pokemon/muk/back.2bpp.lz" +DelibirdBackpic: INCBIN "gfx/pokemon/delibird/back.2bpp.lz" SabrinaPic: INCBIN "gfx/trainers/sabrina.2bpp.lz" -MagikarpBackpic: INCBIN "gfx/pics/magikarp/back.2bpp.lz" -AriadosBackpic: INCBIN "gfx/pics/ariados/back.2bpp.lz" -SneaselBackpic: INCBIN "gfx/pics/sneasel/back.2bpp.lz" -UmbreonBackpic: INCBIN "gfx/pics/umbreon/back.2bpp.lz" -MurkrowBackpic: INCBIN "gfx/pics/murkrow/back.2bpp.lz" -IvysaurBackpic: INCBIN "gfx/pics/ivysaur/back.2bpp.lz" -SlowbroBackpic: INCBIN "gfx/pics/slowbro/back.2bpp.lz" +MagikarpBackpic: INCBIN "gfx/pokemon/magikarp/back.2bpp.lz" +AriadosBackpic: INCBIN "gfx/pokemon/ariados/back.2bpp.lz" +SneaselBackpic: INCBIN "gfx/pokemon/sneasel/back.2bpp.lz" +UmbreonBackpic: INCBIN "gfx/pokemon/umbreon/back.2bpp.lz" +MurkrowBackpic: INCBIN "gfx/pokemon/murkrow/back.2bpp.lz" +IvysaurBackpic: INCBIN "gfx/pokemon/ivysaur/back.2bpp.lz" +SlowbroBackpic: INCBIN "gfx/pokemon/slowbro/back.2bpp.lz" PsychicTPic: INCBIN "gfx/trainers/psychic_t.2bpp.lz" -GolduckBackpic: INCBIN "gfx/pics/golduck/back.2bpp.lz" -WeezingBackpic: INCBIN "gfx/pics/weezing/back.2bpp.lz" -EnteiBackpic: INCBIN "gfx/pics/entei/back.2bpp.lz" +GolduckBackpic: INCBIN "gfx/pokemon/golduck/back.2bpp.lz" +WeezingBackpic: INCBIN "gfx/pokemon/weezing/back.2bpp.lz" +EnteiBackpic: INCBIN "gfx/pokemon/entei/back.2bpp.lz" GruntfPic: INCBIN "gfx/trainers/grunt_f.2bpp.lz" -HorseaFrontpic: INCBIN "gfx/pics/horsea/front.animated.2bpp.lz" -PidgeotBackpic: INCBIN "gfx/pics/pidgeot/back.2bpp.lz" -HoOhBackpic: INCBIN "gfx/pics/ho_oh/back.2bpp.lz" -PoliwhirlBackpic: INCBIN "gfx/pics/poliwhirl/back.2bpp.lz" -MewBackpic: INCBIN "gfx/pics/mew/back.2bpp.lz" -MachopBackpic: INCBIN "gfx/pics/machop/back.2bpp.lz" -AbraBackpic: INCBIN "gfx/pics/abra/back.2bpp.lz" -AerodactylBackpic: INCBIN "gfx/pics/aerodactyl/back.2bpp.lz" -KakunaFrontpic: INCBIN "gfx/pics/kakuna/front.animated.2bpp.lz" -DugtrioBackpic: INCBIN "gfx/pics/dugtrio/back.2bpp.lz" -WeepinbellBackpic: INCBIN "gfx/pics/weepinbell/back.2bpp.lz" -NidoranFBackpic: INCBIN "gfx/pics/nidoran_f/back.2bpp.lz" -GravelerBackpic: INCBIN "gfx/pics/graveler/back.2bpp.lz" -AipomBackpic: INCBIN "gfx/pics/aipom/back.2bpp.lz" -EspeonBackpic: INCBIN "gfx/pics/espeon/back.2bpp.lz" -WeedleFrontpic: INCBIN "gfx/pics/weedle/front.animated.2bpp.lz" -TotodileBackpic: INCBIN "gfx/pics/totodile/back.2bpp.lz" -SnubbullBackpic: INCBIN "gfx/pics/snubbull/back.2bpp.lz" -KinglerBackpic: INCBIN "gfx/pics/kingler/back.2bpp.lz" -GengarBackpic: INCBIN "gfx/pics/gengar/back.2bpp.lz" -RattataBackpic: INCBIN "gfx/pics/rattata/back.2bpp.lz" +HorseaFrontpic: INCBIN "gfx/pokemon/horsea/front.animated.2bpp.lz" +PidgeotBackpic: INCBIN "gfx/pokemon/pidgeot/back.2bpp.lz" +HoOhBackpic: INCBIN "gfx/pokemon/ho_oh/back.2bpp.lz" +PoliwhirlBackpic: INCBIN "gfx/pokemon/poliwhirl/back.2bpp.lz" +MewBackpic: INCBIN "gfx/pokemon/mew/back.2bpp.lz" +MachopBackpic: INCBIN "gfx/pokemon/machop/back.2bpp.lz" +AbraBackpic: INCBIN "gfx/pokemon/abra/back.2bpp.lz" +AerodactylBackpic: INCBIN "gfx/pokemon/aerodactyl/back.2bpp.lz" +KakunaFrontpic: INCBIN "gfx/pokemon/kakuna/front.animated.2bpp.lz" +DugtrioBackpic: INCBIN "gfx/pokemon/dugtrio/back.2bpp.lz" +WeepinbellBackpic: INCBIN "gfx/pokemon/weepinbell/back.2bpp.lz" +NidoranFBackpic: INCBIN "gfx/pokemon/nidoran_f/back.2bpp.lz" +GravelerBackpic: INCBIN "gfx/pokemon/graveler/back.2bpp.lz" +AipomBackpic: INCBIN "gfx/pokemon/aipom/back.2bpp.lz" +EspeonBackpic: INCBIN "gfx/pokemon/espeon/back.2bpp.lz" +WeedleFrontpic: INCBIN "gfx/pokemon/weedle/front.animated.2bpp.lz" +TotodileBackpic: INCBIN "gfx/pokemon/totodile/back.2bpp.lz" +SnubbullBackpic: INCBIN "gfx/pokemon/snubbull/back.2bpp.lz" +KinglerBackpic: INCBIN "gfx/pokemon/kingler/back.2bpp.lz" +GengarBackpic: INCBIN "gfx/pokemon/gengar/back.2bpp.lz" +RattataBackpic: INCBIN "gfx/pokemon/rattata/back.2bpp.lz" YoungsterPic: INCBIN "gfx/trainers/youngster.2bpp.lz" WillPic: INCBIN "gfx/trainers/will.2bpp.lz" SchoolboyPic: INCBIN "gfx/trainers/schoolboy.2bpp.lz" -MagnemiteFrontpic: INCBIN "gfx/pics/magnemite/front.animated.2bpp.lz" +MagnemiteFrontpic: INCBIN "gfx/pokemon/magnemite/front.animated.2bpp.lz" ErikaPic: INCBIN "gfx/trainers/erika.2bpp.lz" JaninePic: INCBIN "gfx/trainers/janine.2bpp.lz" -MagnemiteBackpic: INCBIN "gfx/pics/magnemite/back.2bpp.lz" +MagnemiteBackpic: INCBIN "gfx/pokemon/magnemite/back.2bpp.lz" ; 15bffa SECTION "Pics 16", ROMX -HoothootBackpic: INCBIN "gfx/pics/hoothoot/back.2bpp.lz" -NoctowlBackpic: INCBIN "gfx/pics/noctowl/back.2bpp.lz" +HoothootBackpic: INCBIN "gfx/pokemon/hoothoot/back.2bpp.lz" +NoctowlBackpic: INCBIN "gfx/pokemon/noctowl/back.2bpp.lz" MortyPic: INCBIN "gfx/trainers/morty.2bpp.lz" -SlugmaBackpic: INCBIN "gfx/pics/slugma/back.2bpp.lz" -KabutoBackpic: INCBIN "gfx/pics/kabuto/back.2bpp.lz" -VictreebelBackpic: INCBIN "gfx/pics/victreebel/back.2bpp.lz" -MeowthBackpic: INCBIN "gfx/pics/meowth/back.2bpp.lz" -MeganiumBackpic: INCBIN "gfx/pics/meganium/back.2bpp.lz" +SlugmaBackpic: INCBIN "gfx/pokemon/slugma/back.2bpp.lz" +KabutoBackpic: INCBIN "gfx/pokemon/kabuto/back.2bpp.lz" +VictreebelBackpic: INCBIN "gfx/pokemon/victreebel/back.2bpp.lz" +MeowthBackpic: INCBIN "gfx/pokemon/meowth/back.2bpp.lz" +MeganiumBackpic: INCBIN "gfx/pokemon/meganium/back.2bpp.lz" PicnickerPic: INCBIN "gfx/trainers/picnicker.2bpp.lz" -LickitungBackpic: INCBIN "gfx/pics/lickitung/back.2bpp.lz" -TogepiFrontpic: INCBIN "gfx/pics/togepi/front.animated.2bpp.lz" +LickitungBackpic: INCBIN "gfx/pokemon/lickitung/back.2bpp.lz" +TogepiFrontpic: INCBIN "gfx/pokemon/togepi/front.animated.2bpp.lz" SuperNerdPic: INCBIN "gfx/trainers/super_nerd.2bpp.lz" -HaunterBackpic: INCBIN "gfx/pics/haunter/back.2bpp.lz" -XatuBackpic: INCBIN "gfx/pics/xatu/back.2bpp.lz" +HaunterBackpic: INCBIN "gfx/pokemon/haunter/back.2bpp.lz" +XatuBackpic: INCBIN "gfx/pokemon/xatu/back.2bpp.lz" RedPic: INCBIN "gfx/trainers/red.2bpp.lz" -Porygon2Backpic: INCBIN "gfx/pics/porygon2/back.2bpp.lz" +Porygon2Backpic: INCBIN "gfx/pokemon/porygon2/back.2bpp.lz" JasminePic: INCBIN "gfx/trainers/jasmine.2bpp.lz" -PinecoBackpic: INCBIN "gfx/pics/pineco/back.2bpp.lz" -MetapodFrontpic: INCBIN "gfx/pics/metapod/front.animated.2bpp.lz" -SeelBackpic: INCBIN "gfx/pics/seel/back.2bpp.lz" -QuagsireBackpic: INCBIN "gfx/pics/quagsire/back.2bpp.lz" +PinecoBackpic: INCBIN "gfx/pokemon/pineco/back.2bpp.lz" +MetapodFrontpic: INCBIN "gfx/pokemon/metapod/front.animated.2bpp.lz" +SeelBackpic: INCBIN "gfx/pokemon/seel/back.2bpp.lz" +QuagsireBackpic: INCBIN "gfx/pokemon/quagsire/back.2bpp.lz" WhitneyPic: INCBIN "gfx/trainers/whitney.2bpp.lz" -JolteonBackpic: INCBIN "gfx/pics/jolteon/back.2bpp.lz" -CaterpieFrontpic: INCBIN "gfx/pics/caterpie/front.animated.2bpp.lz" -HoppipBackpic: INCBIN "gfx/pics/hoppip/back.2bpp.lz" +JolteonBackpic: INCBIN "gfx/pokemon/jolteon/back.2bpp.lz" +CaterpieFrontpic: INCBIN "gfx/pokemon/caterpie/front.animated.2bpp.lz" +HoppipBackpic: INCBIN "gfx/pokemon/hoppip/back.2bpp.lz" BluePic: INCBIN "gfx/trainers/blue.2bpp.lz" -GranbullBackpic: INCBIN "gfx/pics/granbull/back.2bpp.lz" +GranbullBackpic: INCBIN "gfx/pokemon/granbull/back.2bpp.lz" GentlemanPic: INCBIN "gfx/trainers/gentleman.2bpp.lz" ExecutivemPic: INCBIN "gfx/trainers/executive_m.2bpp.lz" -SpearowBackpic: INCBIN "gfx/pics/spearow/back.2bpp.lz" -SunkernBackpic: INCBIN "gfx/pics/sunkern/back.2bpp.lz" -LaprasBackpic: INCBIN "gfx/pics/lapras/back.2bpp.lz" -MagbyBackpic: INCBIN "gfx/pics/magby/back.2bpp.lz" -DragonairBackpic: INCBIN "gfx/pics/dragonair/back.2bpp.lz" -ZapdosBackpic: INCBIN "gfx/pics/zapdos/back.2bpp.lz" -ChikoritaBackpic: INCBIN "gfx/pics/chikorita/back.2bpp.lz" -CorsolaBackpic: INCBIN "gfx/pics/corsola/back.2bpp.lz" -ChinchouBackpic: INCBIN "gfx/pics/chinchou/back.2bpp.lz" -ChanseyBackpic: INCBIN "gfx/pics/chansey/back.2bpp.lz" -SkiploomBackpic: INCBIN "gfx/pics/skiploom/back.2bpp.lz" -SpinarakFrontpic: INCBIN "gfx/pics/spinarak/front.animated.2bpp.lz" +SpearowBackpic: INCBIN "gfx/pokemon/spearow/back.2bpp.lz" +SunkernBackpic: INCBIN "gfx/pokemon/sunkern/back.2bpp.lz" +LaprasBackpic: INCBIN "gfx/pokemon/lapras/back.2bpp.lz" +MagbyBackpic: INCBIN "gfx/pokemon/magby/back.2bpp.lz" +DragonairBackpic: INCBIN "gfx/pokemon/dragonair/back.2bpp.lz" +ZapdosBackpic: INCBIN "gfx/pokemon/zapdos/back.2bpp.lz" +ChikoritaBackpic: INCBIN "gfx/pokemon/chikorita/back.2bpp.lz" +CorsolaBackpic: INCBIN "gfx/pokemon/corsola/back.2bpp.lz" +ChinchouBackpic: INCBIN "gfx/pokemon/chinchou/back.2bpp.lz" +ChanseyBackpic: INCBIN "gfx/pokemon/chansey/back.2bpp.lz" +SkiploomBackpic: INCBIN "gfx/pokemon/skiploom/back.2bpp.lz" +SpinarakFrontpic: INCBIN "gfx/pokemon/spinarak/front.animated.2bpp.lz" Rival2Pic: INCBIN "gfx/trainers/rival2.2bpp.lz" -UnownWFrontpic: INCBIN "gfx/pics/unown_w/front.animated.2bpp.lz" -CharmanderBackpic: INCBIN "gfx/pics/charmander/back.2bpp.lz" -RhyhornBackpic: INCBIN "gfx/pics/rhyhorn/back.2bpp.lz" -UnownCFrontpic: INCBIN "gfx/pics/unown_c/front.animated.2bpp.lz" +UnownWFrontpic: INCBIN "gfx/pokemon/unown_w/front.animated.2bpp.lz" +CharmanderBackpic: INCBIN "gfx/pokemon/charmander/back.2bpp.lz" +RhyhornBackpic: INCBIN "gfx/pokemon/rhyhorn/back.2bpp.lz" +UnownCFrontpic: INCBIN "gfx/pokemon/unown_c/front.animated.2bpp.lz" MistyPic: INCBIN "gfx/trainers/misty.2bpp.lz" BlainePic: INCBIN "gfx/trainers/blaine.2bpp.lz" -UnownZFrontpic: INCBIN "gfx/pics/unown_z/front.animated.2bpp.lz" -SwinubFrontpic: INCBIN "gfx/pics/swinub/front.animated.2bpp.lz" -LarvitarBackpic: INCBIN "gfx/pics/larvitar/back.2bpp.lz" -PorygonBackpic: INCBIN "gfx/pics/porygon/back.2bpp.lz" -UnownHBackpic: INCBIN "gfx/pics/unown_h/back.2bpp.lz" +UnownZFrontpic: INCBIN "gfx/pokemon/unown_z/front.animated.2bpp.lz" +SwinubFrontpic: INCBIN "gfx/pokemon/swinub/front.animated.2bpp.lz" +LarvitarBackpic: INCBIN "gfx/pokemon/larvitar/back.2bpp.lz" +PorygonBackpic: INCBIN "gfx/pokemon/porygon/back.2bpp.lz" +UnownHBackpic: INCBIN "gfx/pokemon/unown_h/back.2bpp.lz" ; 15ffff SECTION "Pics 17", ROMX -ParasBackpic: INCBIN "gfx/pics/paras/back.2bpp.lz" -VaporeonBackpic: INCBIN "gfx/pics/vaporeon/back.2bpp.lz" -TentacoolBackpic: INCBIN "gfx/pics/tentacool/back.2bpp.lz" +ParasBackpic: INCBIN "gfx/pokemon/paras/back.2bpp.lz" +VaporeonBackpic: INCBIN "gfx/pokemon/vaporeon/back.2bpp.lz" +TentacoolBackpic: INCBIN "gfx/pokemon/tentacool/back.2bpp.lz" ExecutivefPic: INCBIN "gfx/trainers/executive_f.2bpp.lz" -BulbasaurBackpic: INCBIN "gfx/pics/bulbasaur/back.2bpp.lz" -SmoochumBackpic: INCBIN "gfx/pics/smoochum/back.2bpp.lz" -PichuBackpic: INCBIN "gfx/pics/pichu/back.2bpp.lz" -HoundoomBackpic: INCBIN "gfx/pics/houndoom/back.2bpp.lz" -BellsproutBackpic: INCBIN "gfx/pics/bellsprout/back.2bpp.lz" -GrimerBackpic: INCBIN "gfx/pics/grimer/back.2bpp.lz" -LanturnBackpic: INCBIN "gfx/pics/lanturn/back.2bpp.lz" -PidgeottoBackpic: INCBIN "gfx/pics/pidgeotto/back.2bpp.lz" -StaryuBackpic: INCBIN "gfx/pics/staryu/back.2bpp.lz" -MrMimeBackpic: INCBIN "gfx/pics/mr__mime/back.2bpp.lz" -CaterpieBackpic: INCBIN "gfx/pics/caterpie/back.2bpp.lz" -VoltorbFrontpic: INCBIN "gfx/pics/voltorb/front.animated.2bpp.lz" -LugiaBackpic: INCBIN "gfx/pics/lugia/back.2bpp.lz" +BulbasaurBackpic: INCBIN "gfx/pokemon/bulbasaur/back.2bpp.lz" +SmoochumBackpic: INCBIN "gfx/pokemon/smoochum/back.2bpp.lz" +PichuBackpic: INCBIN "gfx/pokemon/pichu/back.2bpp.lz" +HoundoomBackpic: INCBIN "gfx/pokemon/houndoom/back.2bpp.lz" +BellsproutBackpic: INCBIN "gfx/pokemon/bellsprout/back.2bpp.lz" +GrimerBackpic: INCBIN "gfx/pokemon/grimer/back.2bpp.lz" +LanturnBackpic: INCBIN "gfx/pokemon/lanturn/back.2bpp.lz" +PidgeottoBackpic: INCBIN "gfx/pokemon/pidgeotto/back.2bpp.lz" +StaryuBackpic: INCBIN "gfx/pokemon/staryu/back.2bpp.lz" +MrMimeBackpic: INCBIN "gfx/pokemon/mr__mime/back.2bpp.lz" +CaterpieBackpic: INCBIN "gfx/pokemon/caterpie/back.2bpp.lz" +VoltorbFrontpic: INCBIN "gfx/pokemon/voltorb/front.animated.2bpp.lz" +LugiaBackpic: INCBIN "gfx/pokemon/lugia/back.2bpp.lz" PrycePic: INCBIN "gfx/trainers/pryce.2bpp.lz" BrockPic: INCBIN "gfx/trainers/brock.2bpp.lz" -UnownGFrontpic: INCBIN "gfx/pics/unown_g/front.animated.2bpp.lz" -ArbokBackpic: INCBIN "gfx/pics/arbok/back.2bpp.lz" -PolitoedBackpic: INCBIN "gfx/pics/politoed/back.2bpp.lz" -DragoniteBackpic: INCBIN "gfx/pics/dragonite/back.2bpp.lz" -HitmonleeBackpic: INCBIN "gfx/pics/hitmonlee/back.2bpp.lz" -NatuFrontpic: INCBIN "gfx/pics/natu/front.animated.2bpp.lz" -UrsaringBackpic: INCBIN "gfx/pics/ursaring/back.2bpp.lz" +UnownGFrontpic: INCBIN "gfx/pokemon/unown_g/front.animated.2bpp.lz" +ArbokBackpic: INCBIN "gfx/pokemon/arbok/back.2bpp.lz" +PolitoedBackpic: INCBIN "gfx/pokemon/politoed/back.2bpp.lz" +DragoniteBackpic: INCBIN "gfx/pokemon/dragonite/back.2bpp.lz" +HitmonleeBackpic: INCBIN "gfx/pokemon/hitmonlee/back.2bpp.lz" +NatuFrontpic: INCBIN "gfx/pokemon/natu/front.animated.2bpp.lz" +UrsaringBackpic: INCBIN "gfx/pokemon/ursaring/back.2bpp.lz" SagePic: INCBIN "gfx/trainers/sage.2bpp.lz" -TeddiursaBackpic: INCBIN "gfx/pics/teddiursa/back.2bpp.lz" -PhanpyBackpic: INCBIN "gfx/pics/phanpy/back.2bpp.lz" -UnownVFrontpic: INCBIN "gfx/pics/unown_v/front.animated.2bpp.lz" -KakunaBackpic: INCBIN "gfx/pics/kakuna/back.2bpp.lz" -WobbuffetBackpic: INCBIN "gfx/pics/wobbuffet/back.2bpp.lz" -TogepiBackpic: INCBIN "gfx/pics/togepi/back.2bpp.lz" -CrobatBackpic: INCBIN "gfx/pics/crobat/back.2bpp.lz" -BlisseyBackpic: INCBIN "gfx/pics/blissey/back.2bpp.lz" -AmpharosBackpic: INCBIN "gfx/pics/ampharos/back.2bpp.lz" -IgglybuffBackpic: INCBIN "gfx/pics/igglybuff/back.2bpp.lz" -AzumarillBackpic: INCBIN "gfx/pics/azumarill/back.2bpp.lz" -OctilleryBackpic: INCBIN "gfx/pics/octillery/back.2bpp.lz" -UnownSFrontpic: INCBIN "gfx/pics/unown_s/front.animated.2bpp.lz" -HorseaBackpic: INCBIN "gfx/pics/horsea/back.2bpp.lz" -SentretBackpic: INCBIN "gfx/pics/sentret/back.2bpp.lz" -UnownOFrontpic: INCBIN "gfx/pics/unown_o/front.animated.2bpp.lz" -UnownTFrontpic: INCBIN "gfx/pics/unown_t/front.animated.2bpp.lz" -WigglytuffBackpic: INCBIN "gfx/pics/wigglytuff/back.2bpp.lz" -ArticunoBackpic: INCBIN "gfx/pics/articuno/back.2bpp.lz" -DittoBackpic: INCBIN "gfx/pics/ditto/back.2bpp.lz" -WeedleBackpic: INCBIN "gfx/pics/weedle/back.2bpp.lz" -UnownHFrontpic: INCBIN "gfx/pics/unown_h/front.animated.2bpp.lz" -CleffaBackpic: INCBIN "gfx/pics/cleffa/back.2bpp.lz" -DrowzeeBackpic: INCBIN "gfx/pics/drowzee/back.2bpp.lz" -GastlyBackpic: INCBIN "gfx/pics/gastly/back.2bpp.lz" -FearowBackpic: INCBIN "gfx/pics/fearow/back.2bpp.lz" -MarillBackpic: INCBIN "gfx/pics/marill/back.2bpp.lz" -DratiniBackpic: INCBIN "gfx/pics/dratini/back.2bpp.lz" -ElectrodeBackpic: INCBIN "gfx/pics/electrode/back.2bpp.lz" -SkarmoryBackpic: INCBIN "gfx/pics/skarmory/back.2bpp.lz" -MetapodBackpic: INCBIN "gfx/pics/metapod/back.2bpp.lz" -JigglypuffBackpic: INCBIN "gfx/pics/jigglypuff/back.2bpp.lz" -OddishBackpic: INCBIN "gfx/pics/oddish/back.2bpp.lz" -UnownDBackpic: INCBIN "gfx/pics/unown_d/back.2bpp.lz" +TeddiursaBackpic: INCBIN "gfx/pokemon/teddiursa/back.2bpp.lz" +PhanpyBackpic: INCBIN "gfx/pokemon/phanpy/back.2bpp.lz" +UnownVFrontpic: INCBIN "gfx/pokemon/unown_v/front.animated.2bpp.lz" +KakunaBackpic: INCBIN "gfx/pokemon/kakuna/back.2bpp.lz" +WobbuffetBackpic: INCBIN "gfx/pokemon/wobbuffet/back.2bpp.lz" +TogepiBackpic: INCBIN "gfx/pokemon/togepi/back.2bpp.lz" +CrobatBackpic: INCBIN "gfx/pokemon/crobat/back.2bpp.lz" +BlisseyBackpic: INCBIN "gfx/pokemon/blissey/back.2bpp.lz" +AmpharosBackpic: INCBIN "gfx/pokemon/ampharos/back.2bpp.lz" +IgglybuffBackpic: INCBIN "gfx/pokemon/igglybuff/back.2bpp.lz" +AzumarillBackpic: INCBIN "gfx/pokemon/azumarill/back.2bpp.lz" +OctilleryBackpic: INCBIN "gfx/pokemon/octillery/back.2bpp.lz" +UnownSFrontpic: INCBIN "gfx/pokemon/unown_s/front.animated.2bpp.lz" +HorseaBackpic: INCBIN "gfx/pokemon/horsea/back.2bpp.lz" +SentretBackpic: INCBIN "gfx/pokemon/sentret/back.2bpp.lz" +UnownOFrontpic: INCBIN "gfx/pokemon/unown_o/front.animated.2bpp.lz" +UnownTFrontpic: INCBIN "gfx/pokemon/unown_t/front.animated.2bpp.lz" +WigglytuffBackpic: INCBIN "gfx/pokemon/wigglytuff/back.2bpp.lz" +ArticunoBackpic: INCBIN "gfx/pokemon/articuno/back.2bpp.lz" +DittoBackpic: INCBIN "gfx/pokemon/ditto/back.2bpp.lz" +WeedleBackpic: INCBIN "gfx/pokemon/weedle/back.2bpp.lz" +UnownHFrontpic: INCBIN "gfx/pokemon/unown_h/front.animated.2bpp.lz" +CleffaBackpic: INCBIN "gfx/pokemon/cleffa/back.2bpp.lz" +DrowzeeBackpic: INCBIN "gfx/pokemon/drowzee/back.2bpp.lz" +GastlyBackpic: INCBIN "gfx/pokemon/gastly/back.2bpp.lz" +FearowBackpic: INCBIN "gfx/pokemon/fearow/back.2bpp.lz" +MarillBackpic: INCBIN "gfx/pokemon/marill/back.2bpp.lz" +DratiniBackpic: INCBIN "gfx/pokemon/dratini/back.2bpp.lz" +ElectrodeBackpic: INCBIN "gfx/pokemon/electrode/back.2bpp.lz" +SkarmoryBackpic: INCBIN "gfx/pokemon/skarmory/back.2bpp.lz" +MetapodBackpic: INCBIN "gfx/pokemon/metapod/back.2bpp.lz" +JigglypuffBackpic: INCBIN "gfx/pokemon/jigglypuff/back.2bpp.lz" +OddishBackpic: INCBIN "gfx/pokemon/oddish/back.2bpp.lz" +UnownDBackpic: INCBIN "gfx/pokemon/unown_d/back.2bpp.lz" ; 163ffc SECTION "Pics 18", ROMX -SpinarakBackpic: INCBIN "gfx/pics/spinarak/back.2bpp.lz" -RaikouBackpic: INCBIN "gfx/pics/raikou/back.2bpp.lz" -UnownKFrontpic: INCBIN "gfx/pics/unown_k/front.animated.2bpp.lz" -HoundourBackpic: INCBIN "gfx/pics/houndour/back.2bpp.lz" -PoliwagBackpic: INCBIN "gfx/pics/poliwag/back.2bpp.lz" -SquirtleBackpic: INCBIN "gfx/pics/squirtle/back.2bpp.lz" -ShuckleBackpic: INCBIN "gfx/pics/shuckle/back.2bpp.lz" -DewgongBackpic: INCBIN "gfx/pics/dewgong/back.2bpp.lz" -UnownBFrontpic: INCBIN "gfx/pics/unown_b/front.animated.2bpp.lz" -SlowpokeBackpic: INCBIN "gfx/pics/slowpoke/back.2bpp.lz" -DunsparceBackpic: INCBIN "gfx/pics/dunsparce/back.2bpp.lz" -DonphanBackpic: INCBIN "gfx/pics/donphan/back.2bpp.lz" -WooperBackpic: INCBIN "gfx/pics/wooper/back.2bpp.lz" -TaurosBackpic: INCBIN "gfx/pics/tauros/back.2bpp.lz" -UnownXFrontpic: INCBIN "gfx/pics/unown_x/front.animated.2bpp.lz" -UnownNFrontpic: INCBIN "gfx/pics/unown_n/front.animated.2bpp.lz" -TangelaBackpic: INCBIN "gfx/pics/tangela/back.2bpp.lz" -VoltorbBackpic: INCBIN "gfx/pics/voltorb/back.2bpp.lz" -UnownJFrontpic: INCBIN "gfx/pics/unown_j/front.animated.2bpp.lz" -MantineBackpic: INCBIN "gfx/pics/mantine/back.2bpp.lz" -UnownLFrontpic: INCBIN "gfx/pics/unown_l/front.animated.2bpp.lz" -PiloswineBackpic: INCBIN "gfx/pics/piloswine/back.2bpp.lz" -UnownMFrontpic: INCBIN "gfx/pics/unown_m/front.animated.2bpp.lz" -UnownFFrontpic: INCBIN "gfx/pics/unown_f/front.animated.2bpp.lz" -NatuBackpic: INCBIN "gfx/pics/natu/back.2bpp.lz" -UnownAFrontpic: INCBIN "gfx/pics/unown_a/front.animated.2bpp.lz" -GolemBackpic: INCBIN "gfx/pics/golem/back.2bpp.lz" -UnownUFrontpic: INCBIN "gfx/pics/unown_u/front.animated.2bpp.lz" -DiglettBackpic: INCBIN "gfx/pics/diglett/back.2bpp.lz" -UnownQFrontpic: INCBIN "gfx/pics/unown_q/front.animated.2bpp.lz" -UnownPFrontpic: INCBIN "gfx/pics/unown_p/front.animated.2bpp.lz" -UnownCBackpic: INCBIN "gfx/pics/unown_c/back.2bpp.lz" -JynxBackpic: INCBIN "gfx/pics/jynx/back.2bpp.lz" -GolbatBackpic: INCBIN "gfx/pics/golbat/back.2bpp.lz" -UnownYFrontpic: INCBIN "gfx/pics/unown_y/front.animated.2bpp.lz" -UnownGBackpic: INCBIN "gfx/pics/unown_g/back.2bpp.lz" -UnownIFrontpic: INCBIN "gfx/pics/unown_i/front.animated.2bpp.lz" -UnownVBackpic: INCBIN "gfx/pics/unown_v/back.2bpp.lz" -ForretressBackpic: INCBIN "gfx/pics/forretress/back.2bpp.lz" -UnownSBackpic: INCBIN "gfx/pics/unown_s/back.2bpp.lz" -UnownRFrontpic: INCBIN "gfx/pics/unown_r/front.animated.2bpp.lz" -UnownEBackpic: INCBIN "gfx/pics/unown_e/back.2bpp.lz" -UnownJBackpic: INCBIN "gfx/pics/unown_j/back.2bpp.lz" -UnownBBackpic: INCBIN "gfx/pics/unown_b/back.2bpp.lz" -UnownOBackpic: INCBIN "gfx/pics/unown_o/back.2bpp.lz" -UnownZBackpic: INCBIN "gfx/pics/unown_z/back.2bpp.lz" -UnownWBackpic: INCBIN "gfx/pics/unown_w/back.2bpp.lz" -UnownNBackpic: INCBIN "gfx/pics/unown_n/back.2bpp.lz" -UnownABackpic: INCBIN "gfx/pics/unown_a/back.2bpp.lz" -UnownMBackpic: INCBIN "gfx/pics/unown_m/back.2bpp.lz" -UnownKBackpic: INCBIN "gfx/pics/unown_k/back.2bpp.lz" -UnownTBackpic: INCBIN "gfx/pics/unown_t/back.2bpp.lz" -UnownXBackpic: INCBIN "gfx/pics/unown_x/back.2bpp.lz" -UnownLBackpic: INCBIN "gfx/pics/unown_l/back.2bpp.lz" -UnownUBackpic: INCBIN "gfx/pics/unown_u/back.2bpp.lz" -UnownQBackpic: INCBIN "gfx/pics/unown_q/back.2bpp.lz" -UnownYBackpic: INCBIN "gfx/pics/unown_y/back.2bpp.lz" -UnownPBackpic: INCBIN "gfx/pics/unown_p/back.2bpp.lz" -UnownIBackpic: INCBIN "gfx/pics/unown_i/back.2bpp.lz" -UnownRBackpic: INCBIN "gfx/pics/unown_r/back.2bpp.lz" +SpinarakBackpic: INCBIN "gfx/pokemon/spinarak/back.2bpp.lz" +RaikouBackpic: INCBIN "gfx/pokemon/raikou/back.2bpp.lz" +UnownKFrontpic: INCBIN "gfx/pokemon/unown_k/front.animated.2bpp.lz" +HoundourBackpic: INCBIN "gfx/pokemon/houndour/back.2bpp.lz" +PoliwagBackpic: INCBIN "gfx/pokemon/poliwag/back.2bpp.lz" +SquirtleBackpic: INCBIN "gfx/pokemon/squirtle/back.2bpp.lz" +ShuckleBackpic: INCBIN "gfx/pokemon/shuckle/back.2bpp.lz" +DewgongBackpic: INCBIN "gfx/pokemon/dewgong/back.2bpp.lz" +UnownBFrontpic: INCBIN "gfx/pokemon/unown_b/front.animated.2bpp.lz" +SlowpokeBackpic: INCBIN "gfx/pokemon/slowpoke/back.2bpp.lz" +DunsparceBackpic: INCBIN "gfx/pokemon/dunsparce/back.2bpp.lz" +DonphanBackpic: INCBIN "gfx/pokemon/donphan/back.2bpp.lz" +WooperBackpic: INCBIN "gfx/pokemon/wooper/back.2bpp.lz" +TaurosBackpic: INCBIN "gfx/pokemon/tauros/back.2bpp.lz" +UnownXFrontpic: INCBIN "gfx/pokemon/unown_x/front.animated.2bpp.lz" +UnownNFrontpic: INCBIN "gfx/pokemon/unown_n/front.animated.2bpp.lz" +TangelaBackpic: INCBIN "gfx/pokemon/tangela/back.2bpp.lz" +VoltorbBackpic: INCBIN "gfx/pokemon/voltorb/back.2bpp.lz" +UnownJFrontpic: INCBIN "gfx/pokemon/unown_j/front.animated.2bpp.lz" +MantineBackpic: INCBIN "gfx/pokemon/mantine/back.2bpp.lz" +UnownLFrontpic: INCBIN "gfx/pokemon/unown_l/front.animated.2bpp.lz" +PiloswineBackpic: INCBIN "gfx/pokemon/piloswine/back.2bpp.lz" +UnownMFrontpic: INCBIN "gfx/pokemon/unown_m/front.animated.2bpp.lz" +UnownFFrontpic: INCBIN "gfx/pokemon/unown_f/front.animated.2bpp.lz" +NatuBackpic: INCBIN "gfx/pokemon/natu/back.2bpp.lz" +UnownAFrontpic: INCBIN "gfx/pokemon/unown_a/front.animated.2bpp.lz" +GolemBackpic: INCBIN "gfx/pokemon/golem/back.2bpp.lz" +UnownUFrontpic: INCBIN "gfx/pokemon/unown_u/front.animated.2bpp.lz" +DiglettBackpic: INCBIN "gfx/pokemon/diglett/back.2bpp.lz" +UnownQFrontpic: INCBIN "gfx/pokemon/unown_q/front.animated.2bpp.lz" +UnownPFrontpic: INCBIN "gfx/pokemon/unown_p/front.animated.2bpp.lz" +UnownCBackpic: INCBIN "gfx/pokemon/unown_c/back.2bpp.lz" +JynxBackpic: INCBIN "gfx/pokemon/jynx/back.2bpp.lz" +GolbatBackpic: INCBIN "gfx/pokemon/golbat/back.2bpp.lz" +UnownYFrontpic: INCBIN "gfx/pokemon/unown_y/front.animated.2bpp.lz" +UnownGBackpic: INCBIN "gfx/pokemon/unown_g/back.2bpp.lz" +UnownIFrontpic: INCBIN "gfx/pokemon/unown_i/front.animated.2bpp.lz" +UnownVBackpic: INCBIN "gfx/pokemon/unown_v/back.2bpp.lz" +ForretressBackpic: INCBIN "gfx/pokemon/forretress/back.2bpp.lz" +UnownSBackpic: INCBIN "gfx/pokemon/unown_s/back.2bpp.lz" +UnownRFrontpic: INCBIN "gfx/pokemon/unown_r/front.animated.2bpp.lz" +UnownEBackpic: INCBIN "gfx/pokemon/unown_e/back.2bpp.lz" +UnownJBackpic: INCBIN "gfx/pokemon/unown_j/back.2bpp.lz" +UnownBBackpic: INCBIN "gfx/pokemon/unown_b/back.2bpp.lz" +UnownOBackpic: INCBIN "gfx/pokemon/unown_o/back.2bpp.lz" +UnownZBackpic: INCBIN "gfx/pokemon/unown_z/back.2bpp.lz" +UnownWBackpic: INCBIN "gfx/pokemon/unown_w/back.2bpp.lz" +UnownNBackpic: INCBIN "gfx/pokemon/unown_n/back.2bpp.lz" +UnownABackpic: INCBIN "gfx/pokemon/unown_a/back.2bpp.lz" +UnownMBackpic: INCBIN "gfx/pokemon/unown_m/back.2bpp.lz" +UnownKBackpic: INCBIN "gfx/pokemon/unown_k/back.2bpp.lz" +UnownTBackpic: INCBIN "gfx/pokemon/unown_t/back.2bpp.lz" +UnownXBackpic: INCBIN "gfx/pokemon/unown_x/back.2bpp.lz" +UnownLBackpic: INCBIN "gfx/pokemon/unown_l/back.2bpp.lz" +UnownUBackpic: INCBIN "gfx/pokemon/unown_u/back.2bpp.lz" +UnownQBackpic: INCBIN "gfx/pokemon/unown_q/back.2bpp.lz" +UnownYBackpic: INCBIN "gfx/pokemon/unown_y/back.2bpp.lz" +UnownPBackpic: INCBIN "gfx/pokemon/unown_p/back.2bpp.lz" +UnownIBackpic: INCBIN "gfx/pokemon/unown_i/back.2bpp.lz" +UnownRBackpic: INCBIN "gfx/pokemon/unown_r/back.2bpp.lz" ; 1669d3 @@ -734,63 +734,63 @@ SECTION "Pics 19", ROMX ; Seems to be an accidental copy of the previous bank -INCBIN "gfx/pics/spinarak/back.2bpp.lz" -INCBIN "gfx/pics/raikou/back.2bpp.lz" -INCBIN "gfx/pics/unown_k/front.animated.2bpp.lz" -INCBIN "gfx/pics/houndour/back.2bpp.lz" -INCBIN "gfx/pics/poliwag/back.2bpp.lz" -INCBIN "gfx/pics/squirtle/back.2bpp.lz" -INCBIN "gfx/pics/shuckle/back.2bpp.lz" -INCBIN "gfx/pics/dewgong/back.2bpp.lz" -INCBIN "gfx/pics/unown_b/front.animated.2bpp.lz" -INCBIN "gfx/pics/slowpoke/back.2bpp.lz" -INCBIN "gfx/pics/dunsparce/back.2bpp.lz" -INCBIN "gfx/pics/donphan/back.2bpp.lz" -INCBIN "gfx/pics/wooper/back.2bpp.lz" -INCBIN "gfx/pics/tauros/back.2bpp.lz" -INCBIN "gfx/pics/unown_x/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_n/front.animated.2bpp.lz" -INCBIN "gfx/pics/tangela/back.2bpp.lz" -INCBIN "gfx/pics/voltorb/back.2bpp.lz" -INCBIN "gfx/pics/unown_j/front.animated.2bpp.lz" -INCBIN "gfx/pics/mantine/back.2bpp.lz" -INCBIN "gfx/pics/unown_l/front.animated.2bpp.lz" -INCBIN "gfx/pics/piloswine/back.2bpp.lz" -INCBIN "gfx/pics/unown_m/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_f/front.animated.2bpp.lz" -INCBIN "gfx/pics/natu/back.2bpp.lz" -INCBIN "gfx/pics/unown_a/front.animated.2bpp.lz" -INCBIN "gfx/pics/golem/back.2bpp.lz" -INCBIN "gfx/pics/unown_u/front.animated.2bpp.lz" -INCBIN "gfx/pics/diglett/back.2bpp.lz" -INCBIN "gfx/pics/unown_q/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_p/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_c/back.2bpp.lz" -INCBIN "gfx/pics/jynx/back.2bpp.lz" -INCBIN "gfx/pics/golbat/back.2bpp.lz" -INCBIN "gfx/pics/unown_y/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_g/back.2bpp.lz" -INCBIN "gfx/pics/unown_i/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_v/back.2bpp.lz" -INCBIN "gfx/pics/forretress/back.2bpp.lz" -INCBIN "gfx/pics/unown_s/back.2bpp.lz" -INCBIN "gfx/pics/unown_r/front.animated.2bpp.lz" -INCBIN "gfx/pics/unown_e/back.2bpp.lz" -INCBIN "gfx/pics/unown_j/back.2bpp.lz" -INCBIN "gfx/pics/unown_b/back.2bpp.lz" -INCBIN "gfx/pics/unown_o/back.2bpp.lz" -INCBIN "gfx/pics/unown_z/back.2bpp.lz" -INCBIN "gfx/pics/unown_w/back.2bpp.lz" -INCBIN "gfx/pics/unown_n/back.2bpp.lz" -INCBIN "gfx/pics/unown_a/back.2bpp.lz" -INCBIN "gfx/pics/unown_m/back.2bpp.lz" -INCBIN "gfx/pics/unown_k/back.2bpp.lz" -INCBIN "gfx/pics/unown_t/back.2bpp.lz" -INCBIN "gfx/pics/unown_x/back.2bpp.lz" -INCBIN "gfx/pics/unown_l/back.2bpp.lz" -INCBIN "gfx/pics/unown_u/back.2bpp.lz" -INCBIN "gfx/pics/unown_q/back.2bpp.lz" -INCBIN "gfx/pics/unown_y/back.2bpp.lz" -INCBIN "gfx/pics/unown_p/back.2bpp.lz" -INCBIN "gfx/pics/unown_i/back.2bpp.lz" -INCBIN "gfx/pics/unown_r/back.2bpp.lz" +INCBIN "gfx/pokemon/spinarak/back.2bpp.lz" +INCBIN "gfx/pokemon/raikou/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_k/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/houndour/back.2bpp.lz" +INCBIN "gfx/pokemon/poliwag/back.2bpp.lz" +INCBIN "gfx/pokemon/squirtle/back.2bpp.lz" +INCBIN "gfx/pokemon/shuckle/back.2bpp.lz" +INCBIN "gfx/pokemon/dewgong/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_b/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/slowpoke/back.2bpp.lz" +INCBIN "gfx/pokemon/dunsparce/back.2bpp.lz" +INCBIN "gfx/pokemon/donphan/back.2bpp.lz" +INCBIN "gfx/pokemon/wooper/back.2bpp.lz" +INCBIN "gfx/pokemon/tauros/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_x/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_n/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/tangela/back.2bpp.lz" +INCBIN "gfx/pokemon/voltorb/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_j/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/mantine/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_l/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/piloswine/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_m/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_f/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/natu/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_a/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/golem/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_u/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/diglett/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_q/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_p/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_c/back.2bpp.lz" +INCBIN "gfx/pokemon/jynx/back.2bpp.lz" +INCBIN "gfx/pokemon/golbat/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_y/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_g/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_i/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_v/back.2bpp.lz" +INCBIN "gfx/pokemon/forretress/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_s/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_r/front.animated.2bpp.lz" +INCBIN "gfx/pokemon/unown_e/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_j/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_b/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_o/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_z/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_w/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_n/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_a/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_m/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_k/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_t/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_x/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_l/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_u/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_q/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_y/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_p/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_i/back.2bpp.lz" +INCBIN "gfx/pokemon/unown_r/back.2bpp.lz" diff --git a/gfx/pics/abra/anim0.asm b/gfx/pics/abra/anim0.asm deleted file mode 100644 index 9d37567ac..000000000 --- a/gfx/pics/abra/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 3 - frame 0, 09 - frame 1, 10 - frame 2, 09 - dorepeat 1 - endanim -; 0xd0c5a diff --git a/gfx/pics/abra/anim1.asm b/gfx/pics/abra/anim1.asm deleted file mode 100644 index 796e57f88..000000000 --- a/gfx/pics/abra/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 3, 07 - dorepeat 1 - endanim -; 0xd1b38 diff --git a/gfx/pics/abra/back.2bpp.lz.9ac09a32 b/gfx/pics/abra/back.2bpp.lz.9ac09a32 deleted file mode 100644 index 2df351881..000000000 Binary files a/gfx/pics/abra/back.2bpp.lz.9ac09a32 and /dev/null differ diff --git a/gfx/pics/abra/back.png b/gfx/pics/abra/back.png deleted file mode 100644 index f3a681f04..000000000 Binary files a/gfx/pics/abra/back.png and /dev/null differ diff --git a/gfx/pics/abra/front.animated.2bpp.lz.12e14d9a b/gfx/pics/abra/front.animated.2bpp.lz.12e14d9a deleted file mode 100644 index 2b41c4263..000000000 Binary files a/gfx/pics/abra/front.animated.2bpp.lz.12e14d9a and /dev/null differ diff --git a/gfx/pics/abra/front.png b/gfx/pics/abra/front.png deleted file mode 100644 index cd3cbd704..000000000 Binary files a/gfx/pics/abra/front.png and /dev/null differ diff --git a/gfx/pics/abra/shiny.pal b/gfx/pics/abra/shiny.pal deleted file mode 100644 index 328319095..000000000 --- a/gfx/pics/abra/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 28, 24, 10 - RGB 20, 09, 19 - diff --git a/gfx/pics/aerodactyl/anim0.asm b/gfx/pics/aerodactyl/anim0.asm deleted file mode 100644 index 515cba043..000000000 --- a/gfx/pics/aerodactyl/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 2, 12 - frame 0, 12 - frame 2, 16 - setrepeat 3 - frame 0, 08 - frame 1, 08 - dorepeat 4 - endanim -; 0xd10a1 diff --git a/gfx/pics/aerodactyl/anim1.asm b/gfx/pics/aerodactyl/anim1.asm deleted file mode 100644 index 4394a8e0c..000000000 --- a/gfx/pics/aerodactyl/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1e2b diff --git a/gfx/pics/aerodactyl/back.2bpp.lz.e2da1f61 b/gfx/pics/aerodactyl/back.2bpp.lz.e2da1f61 deleted file mode 100644 index 05536351b..000000000 Binary files a/gfx/pics/aerodactyl/back.2bpp.lz.e2da1f61 and /dev/null differ diff --git a/gfx/pics/aerodactyl/back.png b/gfx/pics/aerodactyl/back.png deleted file mode 100644 index a88138069..000000000 Binary files a/gfx/pics/aerodactyl/back.png and /dev/null differ diff --git a/gfx/pics/aerodactyl/front.animated.2bpp.lz.3bceb33e b/gfx/pics/aerodactyl/front.animated.2bpp.lz.3bceb33e deleted file mode 100644 index ae8d9f8ab..000000000 Binary files a/gfx/pics/aerodactyl/front.animated.2bpp.lz.3bceb33e and /dev/null differ diff --git a/gfx/pics/aerodactyl/front.png b/gfx/pics/aerodactyl/front.png deleted file mode 100644 index 3fdf99f61..000000000 Binary files a/gfx/pics/aerodactyl/front.png and /dev/null differ diff --git a/gfx/pics/aerodactyl/shiny.pal b/gfx/pics/aerodactyl/shiny.pal deleted file mode 100644 index 6dade0490..000000000 --- a/gfx/pics/aerodactyl/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 09, 23 - RGB 12, 09, 21 - diff --git a/gfx/pics/aipom/anim0.asm b/gfx/pics/aipom/anim0.asm deleted file mode 100644 index 99556d958..000000000 --- a/gfx/pics/aipom/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 24 - setrepeat 2 - frame 0, 12 - frame 2, 12 - dorepeat 2 - endanim -; 0xd1369 diff --git a/gfx/pics/aipom/anim1.asm b/gfx/pics/aipom/anim1.asm deleted file mode 100644 index 9685b665d..000000000 --- a/gfx/pics/aipom/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd200b diff --git a/gfx/pics/aipom/back.2bpp.lz.597d4dda b/gfx/pics/aipom/back.2bpp.lz.597d4dda deleted file mode 100644 index d6d9fdbc1..000000000 Binary files a/gfx/pics/aipom/back.2bpp.lz.597d4dda and /dev/null differ diff --git a/gfx/pics/aipom/back.png b/gfx/pics/aipom/back.png deleted file mode 100644 index 0be9d9ed0..000000000 Binary files a/gfx/pics/aipom/back.png and /dev/null differ diff --git a/gfx/pics/aipom/front.animated.2bpp.lz.fba7c862 b/gfx/pics/aipom/front.animated.2bpp.lz.fba7c862 deleted file mode 100644 index 58800e5e4..000000000 Binary files a/gfx/pics/aipom/front.animated.2bpp.lz.fba7c862 and /dev/null differ diff --git a/gfx/pics/aipom/front.png b/gfx/pics/aipom/front.png deleted file mode 100644 index 72cc3b718..000000000 Binary files a/gfx/pics/aipom/front.png and /dev/null differ diff --git a/gfx/pics/aipom/shiny.pal b/gfx/pics/aipom/shiny.pal deleted file mode 100644 index a01f18d1a..000000000 --- a/gfx/pics/aipom/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 16, 18 - RGB 22, 03, 25 - diff --git a/gfx/pics/alakazam/anim0.asm b/gfx/pics/alakazam/anim0.asm deleted file mode 100644 index fb87afbfe..000000000 --- a/gfx/pics/alakazam/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 3, 10 - setrepeat 2 - frame 1, 12 - frame 2, 12 - frame 3, 12 - dorepeat 2 - frame 3, 07 - endanim -; 0xd0c76 diff --git a/gfx/pics/alakazam/anim1.asm b/gfx/pics/alakazam/anim1.asm deleted file mode 100644 index 52cf585fb..000000000 --- a/gfx/pics/alakazam/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 4, 15 - frame 5, 45 - frame 3, 10 - endanim -; 0xd1b48 diff --git a/gfx/pics/alakazam/back.2bpp.lz.75e7e1c6 b/gfx/pics/alakazam/back.2bpp.lz.75e7e1c6 deleted file mode 100644 index 65f1a2729..000000000 Binary files a/gfx/pics/alakazam/back.2bpp.lz.75e7e1c6 and /dev/null differ diff --git a/gfx/pics/alakazam/back.png b/gfx/pics/alakazam/back.png deleted file mode 100644 index 977c2974f..000000000 Binary files a/gfx/pics/alakazam/back.png and /dev/null differ diff --git a/gfx/pics/alakazam/front.animated.2bpp.lz.b246e050 b/gfx/pics/alakazam/front.animated.2bpp.lz.b246e050 deleted file mode 100644 index 6272553a7..000000000 Binary files a/gfx/pics/alakazam/front.animated.2bpp.lz.b246e050 and /dev/null differ diff --git a/gfx/pics/alakazam/front.png b/gfx/pics/alakazam/front.png deleted file mode 100644 index 958aa11ad..000000000 Binary files a/gfx/pics/alakazam/front.png and /dev/null differ diff --git a/gfx/pics/alakazam/shiny.pal b/gfx/pics/alakazam/shiny.pal deleted file mode 100644 index 2e52d97de..000000000 --- a/gfx/pics/alakazam/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 19, 03 - RGB 21, 02, 21 - diff --git a/gfx/pics/ampharos/anim0.asm b/gfx/pics/ampharos/anim0.asm deleted file mode 100644 index 5e3d6538e..000000000 --- a/gfx/pics/ampharos/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 10 - frame 2, 08 - setrepeat 7 - frame 2, 02 - frame 3, 02 - dorepeat 3 - frame 1, 06 - frame 4, 06 - endanim -; 0xd12fa diff --git a/gfx/pics/ampharos/anim1.asm b/gfx/pics/ampharos/anim1.asm deleted file mode 100644 index 6dcb40d61..000000000 --- a/gfx/pics/ampharos/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 4, 10 - setrepeat 2 - frame 5, 06 - frame 6, 06 - dorepeat 2 - endanim -; 0xd1fb6 diff --git a/gfx/pics/ampharos/back.2bpp.lz.06af98c8 b/gfx/pics/ampharos/back.2bpp.lz.06af98c8 deleted file mode 100644 index 8d3b42d9b..000000000 Binary files a/gfx/pics/ampharos/back.2bpp.lz.06af98c8 and /dev/null differ diff --git a/gfx/pics/ampharos/back.png b/gfx/pics/ampharos/back.png deleted file mode 100644 index 0e1075491..000000000 Binary files a/gfx/pics/ampharos/back.png and /dev/null differ diff --git a/gfx/pics/ampharos/front.animated.2bpp.lz.4b908a28 b/gfx/pics/ampharos/front.animated.2bpp.lz.4b908a28 deleted file mode 100644 index 84f43c105..000000000 Binary files a/gfx/pics/ampharos/front.animated.2bpp.lz.4b908a28 and /dev/null differ diff --git a/gfx/pics/ampharos/front.png b/gfx/pics/ampharos/front.png deleted file mode 100644 index 0cf155177..000000000 Binary files a/gfx/pics/ampharos/front.png and /dev/null differ diff --git a/gfx/pics/ampharos/shiny.pal b/gfx/pics/ampharos/shiny.pal deleted file mode 100644 index 67451112f..000000000 --- a/gfx/pics/ampharos/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 20, 21 - RGB 14, 05, 31 - diff --git a/gfx/pics/anim_pointers.asm b/gfx/pics/anim_pointers.asm deleted file mode 100644 index c14cf56ea..000000000 --- a/gfx/pics/anim_pointers.asm +++ /dev/null @@ -1,252 +0,0 @@ -AnimationPointers: - dw BulbasaurAnimation - dw IvysaurAnimation - dw VenusaurAnimation - dw CharmanderAnimation - dw CharmeleonAnimation - dw CharizardAnimation - dw SquirtleAnimation - dw WartortleAnimation - dw BlastoiseAnimation - dw CaterpieAnimation - dw MetapodAnimation - dw ButterfreeAnimation - dw WeedleAnimation - dw KakunaAnimation - dw BeedrillAnimation - dw PidgeyAnimation - dw PidgeottoAnimation - dw PidgeotAnimation - dw RattataAnimation - dw RaticateAnimation - dw SpearowAnimation - dw FearowAnimation - dw EkansAnimation - dw ArbokAnimation - dw PikachuAnimation - dw RaichuAnimation - dw SandshrewAnimation - dw SandslashAnimation - dw NidoranFAnimation - dw NidorinaAnimation - dw NidoqueenAnimation - dw NidoranMAnimation - dw NidorinoAnimation - dw NidokingAnimation - dw ClefairyAnimation - dw ClefableAnimation - dw VulpixAnimation - dw NinetalesAnimation - dw JigglypuffAnimation - dw WigglytuffAnimation - dw ZubatAnimation - dw GolbatAnimation - dw OddishAnimation - dw GloomAnimation - dw VileplumeAnimation - dw ParasAnimation - dw ParasectAnimation - dw VenonatAnimation - dw VenomothAnimation - dw DiglettAnimation - dw DugtrioAnimation - dw MeowthAnimation - dw PersianAnimation - dw PsyduckAnimation - dw GolduckAnimation - dw MankeyAnimation - dw PrimeapeAnimation - dw GrowlitheAnimation - dw ArcanineAnimation - dw PoliwagAnimation - dw PoliwhirlAnimation - dw PoliwrathAnimation - dw AbraAnimation - dw KadabraAnimation - dw AlakazamAnimation - dw MachopAnimation - dw MachokeAnimation - dw MachampAnimation - dw BellsproutAnimation - dw WeepinbellAnimation - dw VictreebelAnimation - dw TentacoolAnimation - dw TentacruelAnimation - dw GeodudeAnimation - dw GravelerAnimation - dw GolemAnimation - dw PonytaAnimation - dw RapidashAnimation - dw SlowpokeAnimation - dw SlowbroAnimation - dw MagnemiteAnimation - dw MagnetonAnimation - dw FarfetchDAnimation - dw DoduoAnimation - dw DodrioAnimation - dw SeelAnimation - dw DewgongAnimation - dw GrimerAnimation - dw MukAnimation - dw ShellderAnimation - dw CloysterAnimation - dw GastlyAnimation - dw HaunterAnimation - dw GengarAnimation - dw OnixAnimation - dw DrowzeeAnimation - dw HypnoAnimation - dw KrabbyAnimation - dw KinglerAnimation - dw VoltorbAnimation - dw ElectrodeAnimation - dw ExeggcuteAnimation - dw ExeggutorAnimation - dw CuboneAnimation - dw MarowakAnimation - dw HitmonleeAnimation - dw HitmonchanAnimation - dw LickitungAnimation - dw KoffingAnimation - dw WeezingAnimation - dw RhyhornAnimation - dw RhydonAnimation - dw ChanseyAnimation - dw TangelaAnimation - dw KangaskhanAnimation - dw HorseaAnimation - dw SeadraAnimation - dw GoldeenAnimation - dw SeakingAnimation - dw StaryuAnimation - dw StarmieAnimation - dw MrMimeAnimation - dw ScytherAnimation - dw JynxAnimation - dw ElectabuzzAnimation - dw MagmarAnimation - dw PinsirAnimation - dw TaurosAnimation - dw MagikarpAnimation - dw GyaradosAnimation - dw LaprasAnimation - dw DittoAnimation - dw EeveeAnimation - dw VaporeonAnimation - dw JolteonAnimation - dw FlareonAnimation - dw PorygonAnimation - dw OmanyteAnimation - dw OmastarAnimation - dw KabutoAnimation - dw KabutopsAnimation - dw AerodactylAnimation - dw SnorlaxAnimation - dw ArticunoAnimation - dw ZapdosAnimation - dw MoltresAnimation - dw DratiniAnimation - dw DragonairAnimation - dw DragoniteAnimation - dw MewtwoAnimation - dw MewAnimation - dw ChikoritaAnimation - dw BayleefAnimation - dw MeganiumAnimation - dw CyndaquilAnimation - dw QuilavaAnimation - dw TyphlosionAnimation - dw TotodileAnimation - dw CroconawAnimation - dw FeraligatrAnimation - dw SentretAnimation - dw FurretAnimation - dw HoothootAnimation - dw NoctowlAnimation - dw LedybaAnimation - dw LedianAnimation - dw SpinarakAnimation - dw AriadosAnimation - dw CrobatAnimation - dw ChinchouAnimation - dw LanturnAnimation - dw PichuAnimation - dw CleffaAnimation - dw IgglybuffAnimation - dw TogepiAnimation - dw TogeticAnimation - dw NatuAnimation - dw XatuAnimation - dw MareepAnimation - dw FlaaffyAnimation - dw AmpharosAnimation - dw BellossomAnimation - dw MarillAnimation - dw AzumarillAnimation - dw SudowoodoAnimation - dw PolitoedAnimation - dw HoppipAnimation - dw SkiploomAnimation - dw JumpluffAnimation - dw AipomAnimation - dw SunkernAnimation - dw SunfloraAnimation - dw YanmaAnimation - dw WooperAnimation - dw QuagsireAnimation - dw EspeonAnimation - dw UmbreonAnimation - dw MurkrowAnimation - dw SlowkingAnimation - dw MisdreavusAnimation - dw UnownAnimation - dw WobbuffetAnimation - dw GirafarigAnimation - dw PinecoAnimation - dw ForretressAnimation - dw DunsparceAnimation - dw GligarAnimation - dw SteelixAnimation - dw SnubbullAnimation - dw GranbullAnimation - dw QwilfishAnimation - dw ScizorAnimation - dw ShuckleAnimation - dw HeracrossAnimation - dw SneaselAnimation - dw TeddiursaAnimation - dw UrsaringAnimation - dw SlugmaAnimation - dw MagcargoAnimation - dw SwinubAnimation - dw PiloswineAnimation - dw CorsolaAnimation - dw RemoraidAnimation - dw OctilleryAnimation - dw DelibirdAnimation - dw MantineAnimation - dw SkarmoryAnimation - dw HoundourAnimation - dw HoundoomAnimation - dw KingdraAnimation - dw PhanpyAnimation - dw DonphanAnimation - dw Porygon2Animation - dw StantlerAnimation - dw SmeargleAnimation - dw TyrogueAnimation - dw HitmontopAnimation - dw SmoochumAnimation - dw ElekidAnimation - dw MagbyAnimation - dw MiltankAnimation - dw BlisseyAnimation - dw RaikouAnimation - dw EnteiAnimation - dw SuicuneAnimation - dw LarvitarAnimation - dw PupitarAnimation - dw TyranitarAnimation - dw LugiaAnimation - dw HoOhAnimation - dw CelebiAnimation diff --git a/gfx/pics/animation.asm b/gfx/pics/animation.asm deleted file mode 100644 index 2b93ef749..000000000 --- a/gfx/pics/animation.asm +++ /dev/null @@ -1,1140 +0,0 @@ -; Pic animation arrangement. - -AnimateMon_Slow_Normal: ; d0000 - hlcoord 12, 0 - ld a, [wBattleMode] - cp WILD_BATTLE - jr z, .wild - ld e, ANIM_MON_SLOW - ld d, $0 - call AnimateFrontpic - ret - -.wild - ld e, ANIM_MON_NORMAL - ld d, $0 - call AnimateFrontpic - ret -; d001a - -AnimateMon_Menu: ; d001a - ld e, ANIM_MON_MENU - ld d, $0 - call AnimateFrontpic - ret -; d0022 - -AnimateMon_Trade: ; d0022 - ld e, ANIM_MON_TRADE - ld d, $0 - call AnimateFrontpic - ret -; d002a - -AnimateMon_Evolve: ; d002a - ld e, ANIM_MON_EVOLVE - ld d, $0 - call AnimateFrontpic - ret -; d0032 - -AnimateMon_Hatch: ; d0032 - ld e, ANIM_MON_HATCH - ld d, $0 - call AnimateFrontpic - ret -; d003a - -AnimateMon_Unused: ; d003a - ld e, ANIM_MON_UNUSED - ld d, $0 - call AnimateFrontpic - ret -; d0042 - -pokeanim: MACRO - rept _NARG -; Workaround for a bug where macro args can't come after the start of a symbol -if !def(\1_POKEANIM) -\1_POKEANIM equs "PokeAnim_\1_" -endc - db (\1_POKEANIM - PokeAnim_SetupCommands) / 2 - shift - endr - db (PokeAnim_Finish_ - PokeAnim_SetupCommands) / 2 -ENDM - -PokeAnims: ; d0042 - dw .Slow - dw .Normal - dw .Menu - dw .Trade - dw .Evolve - dw .Hatch - dw .Unused ; same as .Menu - dw .Egg1 - dw .Egg2 - -.Slow: pokeanim StereoCry, Setup2, Play -.Normal: pokeanim StereoCry, Setup, Play -.Menu: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Extra, Play -.Trade: pokeanim Extra, Play2, Extra, Play, SetWait, Wait, Cry, Setup, Play -.Evolve: pokeanim Extra, Play, SetWait, Wait, CryNoWait, Setup, Play -.Hatch: pokeanim Extra, Play, CryNoWait, Setup, Play, SetWait, Wait, Extra, Play -.Unused: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Extra, Play -.Egg1: pokeanim Setup, Play -.Egg2: pokeanim Extra, Play - - -AnimateFrontpic: ; d008e - call AnimateMon_CheckIfPokemon - ret c - call LoadMonAnimation -.loop - call SetUpPokeAnim - push af - farcall HDMATransferTileMapToWRAMBank3 - pop af - jr nc, .loop - ret -; d00a3 - -LoadMonAnimation: ; d00a3 - push hl - ld c, e - ld b, 0 - ld hl, PokeAnims - add hl, bc - add hl, bc - ld a, [hli] - ld b, [hl] - ld c, a - pop hl - call PokeAnim_InitPicAttributes - ret -; d00b4 - -SetUpPokeAnim: ; d00b4 - ld a, [rSVBK] - push af - ld a, BANK(wPokeAnimSceneIndex) - ld [rSVBK], a - ld a, [wPokeAnimSceneIndex] - ld c, a - ld b, 0 - ld hl, wPokeAnimPointer - ld a, [hli] - ld h, [hl] - ld l, a - add hl, bc - ld a, [hl] - ld hl, PokeAnim_SetupCommands - rst JumpTable - ld a, [wPokeAnimSceneIndex] - ld c, a - pop af - ld [rSVBK], a - ld a, c - and $80 - ret z - scf - ret -; d00da - -PokeAnim_SetupCommands: ; d00da -setup_command: macro -\1_: dw \1 -endm - setup_command PokeAnim_Finish - setup_command PokeAnim_BasePic - setup_command PokeAnim_SetWait - setup_command PokeAnim_Wait - setup_command PokeAnim_Setup - setup_command PokeAnim_Setup2 - setup_command PokeAnim_Extra - setup_command PokeAnim_Play - setup_command PokeAnim_Play2 - setup_command PokeAnim_Cry - setup_command PokeAnim_CryNoWait - setup_command PokeAnim_StereoCry -; d00f2 - -PokeAnim_SetWait: ; d00f2 - ld a, 18 - ld [wPokeAnimWaitCounter], a - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - -PokeAnim_Wait: ; d00fe - ld hl, wPokeAnimWaitCounter - dec [hl] - ret nz - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d010b - -PokeAnim_Setup: ; d010b - ld c, FALSE - ld b, 0 - call PokeAnim_InitAnim - call PokeAnim_SetVBank1 - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d011d - -PokeAnim_Setup2: ; d011d - ld c, FALSE - ld b, 4 - call PokeAnim_InitAnim - call PokeAnim_SetVBank1 - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d012f - -PokeAnim_Extra: ; d012f - ld c, TRUE - ld b, 0 - call PokeAnim_InitAnim - call PokeAnim_SetVBank1 - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d0141 - -PokeAnim_Play: ; d0141 - call PokeAnim_DoAnimScript - ld a, [wPokeAnimJumptableIndex] - bit 7, a - ret z - call PokeAnim_PlaceGraphic - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d0155 - -PokeAnim_Play2: ; d0155 - call PokeAnim_DoAnimScript - ld a, [wPokeAnimJumptableIndex] - bit 7, a - ret z - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d0166 - -PokeAnim_BasePic: ; d0166 - call PokeAnim_DeinitFrames - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d0171 - -PokeAnim_Finish: ; d0171 - call PokeAnim_DeinitFrames - ld hl, wPokeAnimSceneIndex - set 7, [hl] - ret -; d017a - -PokeAnim_Cry: ; d017a - ld a, [wPokeAnimSpecies] - call _PlayCry - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d0188 - -PokeAnim_CryNoWait: ; d0188 - ld a, [wPokeAnimSpecies] - call PlayCry2 - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d0196 - -PokeAnim_StereoCry: ; d0196 - ld a, $f - ld [CryTracks], a - ld a, [wPokeAnimSpecies] - call PlayStereoCry2 - ld a, [wPokeAnimSceneIndex] - inc a - ld [wPokeAnimSceneIndex], a - ret -; d01a9 - -PokeAnim_DeinitFrames: ; d01a9 - ld a, [rSVBK] - push af - ld a, $2 - ld [rSVBK], a - call PokeAnim_PlaceGraphic - farcall HDMATransferTileMapToWRAMBank3 - call PokeAnim_SetVBank0 - farcall HDMATransferAttrMapToWRAMBank3 - pop af - ld [rSVBK], a - ret -; d01c6 - -AnimateMon_CheckIfPokemon: ; d01c6 - ld a, [CurPartySpecies] - cp EGG - jr z, .fail - call IsAPokemon - jr c, .fail - and a - ret - -.fail - scf - ret -; d01d6 - -PokeAnim_InitPicAttributes: ; d01d6 - ld a, [rSVBK] - push af - ld a, BANK(wPokeAnimSceneIndex) - ld [rSVBK], a - - push bc - push de - push hl - ld hl, wPokeAnimSceneIndex - ld bc, wPokeAnimStructEnd - wPokeAnimSceneIndex - xor a - call ByteFill - pop hl - pop de - pop bc - -; bc contains anim pointer - ld a, c - ld [wPokeAnimPointer], a - ld a, b - ld [wPokeAnimPointer + 1], a -; hl contains TileMap coords - ld a, l - ld [wPokeAnimCoord], a - ld a, h - ld [wPokeAnimCoord + 1], a -; d = start tile - ld a, d - ld [wPokeAnimGraphicStartTile], a - - ld a, $1 - ld hl, CurPartySpecies - call GetFarWRAMByte - ld [wPokeAnimSpecies], a - - ld a, $1 - ld hl, UnownLetter - call GetFarWRAMByte - ld [wPokeAnimUnownLetter], a - - call PokeAnim_GetSpeciesOrUnown - ld [wPokeAnimSpeciesOrUnown], a - - call PokeAnim_GetFrontpicDims - ld a, c - ld [wPokeAnimFrontpicHeight], a - - pop af - ld [rSVBK], a - ret -; d0228 - -PokeAnim_InitAnim: ; d0228 - ld a, [rSVBK] - push af - ld a, BANK(wPokeAnimExtraFlag) - ld [rSVBK], a - push bc - ld hl, wPokeAnimExtraFlag - ld bc, wPokeAnimStructEnd - wPokeAnimExtraFlag - xor a - call ByteFill - pop bc - ld a, b - ld [wPokeAnimSpeed], a - ld a, c - ld [wPokeAnimExtraFlag], a - call GetMonAnimPointer - call GetMonFramesPointer - call GetMonBitmaskPointer - pop af - ld [rSVBK], a - ret -; d0250 - -PokeAnim_DoAnimScript: ; d0250 - xor a - ld [hBGMapMode], a -.loop - ld a, [wPokeAnimJumptableIndex] - and $7f - ld hl, .Jumptable - rst JumpTable - ret -; d025d - -.Jumptable: ; d025d - dw .RunAnim - dw .WaitAnim -; d0261 - -.RunAnim: ; d0261 - call PokeAnim_GetPointer - ld a, [wPokeAnimCommand] - cp -1 - jr z, PokeAnim_End - cp -2 - jr z, .SetRepeat - cp -3 - jr z, .DoRepeat - call PokeAnim_GetFrame - ld a, [wPokeAnimParameter] - call PokeAnim_GetDuration - ld [wPokeAnimWaitCounter], a - call PokeAnim_StartWaitAnim -.WaitAnim: ; d0282 - ld a, [wPokeAnimWaitCounter] - dec a - ld [wPokeAnimWaitCounter], a - ret nz - call PokeAnim_StopWaitAnim - ret -; d028e - -.SetRepeat: ; d028e - ld a, [wPokeAnimParameter] - ld [wPokeAnimRepeatTimer], a - jr .loop -; d0296 - -.DoRepeat: ; d0296 - ld a, [wPokeAnimRepeatTimer] - and a - ret z - dec a - ld [wPokeAnimRepeatTimer], a - ret z - ld a, [wPokeAnimParameter] - ld [wPokeAnimFrame], a - jr .loop -; d02a8 - -PokeAnim_End: ; d02a8 - ld hl, wPokeAnimJumptableIndex - set 7, [hl] - ret -; d02ae - -PokeAnim_GetDuration: ; d02ae -; a * (1 + [wPokeAnimSpeed] / 16) - ld c, a - ld b, $0 - ld hl, 0 - ld a, [wPokeAnimSpeed] - call AddNTimes - ld a, h - swap a - and $f0 - ld h, a - ld a, l - swap a - and $f - or h - add c - ret -; d02c8 - -PokeAnim_GetFrame: ; d02c8 - call PokeAnim_PlaceGraphic - ld a, [wPokeAnimCommand] - and a - ret z - call PokeAnim_GetBitmaskIndex - push hl - call PokeAnim_CopyBitmaskToBuffer - pop hl - call PokeAnim_ConvertAndApplyBitmask - ret -; d02dc - -PokeAnim_StartWaitAnim: ; d02dc - ld a, [wPokeAnimJumptableIndex] - inc a - ld [wPokeAnimJumptableIndex], a - ret -; d02e4 - -PokeAnim_StopWaitAnim: ; d02e4 - ld a, [wPokeAnimJumptableIndex] - dec a - ld [wPokeAnimJumptableIndex], a - ret -; d02ec - -PokeAnim_IsUnown: ; d02ec - ld a, [wPokeAnimSpecies] - cp UNOWN - ret -; d02f2 - -PokeAnim_IsEgg: ; d02f2 - ld a, [wPokeAnimSpecies] - cp EGG - ret -; d02f8 - -PokeAnim_GetPointer: ; d02f8 - push hl - ld a, [wPokeAnimFrame] - ld e, a - ld d, $0 - ld hl, wPokeAnimPointerAddr - ld a, [hli] - ld h, [hl] - ld l, a - add hl, de - add hl, de - ld a, [wPokeAnimPointerBank] - call GetFarHalfword - ld a, l - ld [wPokeAnimCommand], a - ld a, h - ld [wPokeAnimParameter], a - ld hl, wPokeAnimFrame - inc [hl] - pop hl - ret -; d031b - -PokeAnim_GetBitmaskIndex: ; d031b - ld a, [wPokeAnimCommand] - dec a - ld c, a - ld b, $0 - ld hl, wPokeAnimFramesAddr - ld a, [hli] - ld h, [hl] - ld l, a - add hl, bc - add hl, bc - ld a, [wPokeAnimFramesBank] - call GetFarHalfword - ld a, [wPokeAnimFramesBank] - call GetFarByte - ld [wPokeAnimCurBitmask], a - inc hl - ret -; d033b - -PokeAnim_CopyBitmaskToBuffer: ; d033b - call .GetSize - push bc - ld hl, wPokeAnimBitmaskAddr - ld a, [hli] - ld h, [hl] - ld l, a - ld a, [wPokeAnimCurBitmask] - call AddNTimes - pop bc - ld de, wPokeAnimBitmaskBuffer - ld a, [wPokeAnimBitmaskBank] - call FarCopyBytes - ret -; d0356 - -.GetSize: ; d0356 - push hl - ld a, [wPokeAnimFrontpicHeight] - sub 5 ; to get a number 0, 1, or 2 - ld c, a - ld b, 0 - ld hl, .Sizes - add hl, bc - ld c, [hl] - ld b, 0 - pop hl - ret -; d0368 - -.Sizes: db 4, 5, 7 - -poke_anim_box: MACRO -y = 7 -rept \1 -x = 7 +- \1 -rept \1 - db x + y -x = x + 1 -endr -y = y + 7 -endr -endm - -PokeAnim_ConvertAndApplyBitmask: ; d036b - xor a - ld [wPokeAnimBitmaskCurBit], a - ld [wPokeAnimBitmaskCurRow], a - ld [wPokeAnimBitmaskCurCol], a -.loop - push hl - call .IsCurBitSet - pop hl - ld a, b - and a - jr z, .next - - ld a, [wPokeAnimFramesBank] - call GetFarByte - inc hl - push hl - call .ApplyFrame - pop hl - -.next - push hl - call .NextBit - pop hl - jr nc, .loop - ret -; d0392 - -.IsCurBitSet: ; d0392 -; which byte - ld a, [wPokeAnimBitmaskCurBit] - and $f8 - rrca - rrca - rrca - ld e, a - ld d, 0 - ld hl, wPokeAnimBitmaskBuffer - add hl, de - ld b, [hl] -; which bit - ld a, [wPokeAnimBitmaskCurBit] - and $7 - jr z, .skip - - ld c, a - ld a, b -.loop2 - rrca - dec c - jr nz, .loop2 - ld b, a - -.skip - xor a - bit 0, b - jr z, .finish - ld a, 1 - -.finish - ld b, a - ld hl, wPokeAnimBitmaskCurBit - inc [hl] - ret -; d03bd - -.ApplyFrame: ; d03bd - push af - call .GetCoord - pop af - push hl - call .GetTilemap - ld hl, wPokeAnimGraphicStartTile - add [hl] - pop hl - ld [hl], a - ret -; d03cd - -.GetCoord: ; d03cd - call .GetStartCoord - ld a, [wPokeAnimBitmaskCurRow] - ld bc, SCREEN_WIDTH - call AddNTimes - ld a, [wBoxAlignment] - and a - jr nz, .go - ld a, [wPokeAnimBitmaskCurCol] - ld e, a - ld d, 0 - add hl, de - jr .skip2 - -.go - ld a, [wPokeAnimBitmaskCurCol] - ld e, a - ld a, l - sub e - ld l, a - ld a, h - sbc 0 - ld h, a - -.skip2 - ret -; d03f4 - -; XXX - db 6, 5, 4 - -.GetTilemap: ; d03f7 - push af - ld a, [wPokeAnimFrontpicHeight] - cp 5 - jr z, .check_add_24 - cp 6 - jr z, .check_add_13 - pop af - ret - -.check_add_24 - pop af - cp 5 * 5 - jr nc, .add_24 - push hl - push de - ld hl, ._5by5 - ld e, a - ld d, 0 - add hl, de - ld a, [hl] - pop de - pop hl - ret - -.add_24 - add 24 - ret - -.check_add_13 - pop af - cp 6 * 6 - jr nc, .add_13 - push hl - push de - ld hl, ._6by6 - ld e, a - ld d, 0 - add hl, de - ld a, [hl] - pop de - pop hl - ret - -.add_13 - add 13 - ret -; d042f - -._5by5: - poke_anim_box 5 - ; db 9, 10, 11, 12, 13 - ; db 16, 17, 18, 19, 20 - ; db 23, 24, 25, 26, 27 - ; db 30, 31, 32, 33, 34 - ; db 37, 38, 39, 40, 41 - -._6by6: - poke_anim_box 6 - ; db 8, 9, 10, 11, 12, 13 - ; db 15, 16, 17, 18, 19, 20 - ; db 22, 23, 24, 25, 26, 27 - ; db 29, 30, 31, 32, 33, 34 - ; db 36, 37, 38, 39, 40, 41 - ; db 43, 44, 45, 46, 47, 48 - - -.GetStartCoord: ; d046c - ld hl, wPokeAnimCoord - ld a, [hli] - ld h, [hl] - ld l, a - - ld a, [wPokeAnimFrontpicHeight] - ld de, 0 - ld bc, 6 - cp 7 - jr z, .okay - ld de, SCREEN_WIDTH + 1 - ld bc, SCREEN_WIDTH + 5 - cp 6 - jr z, .okay - ld de, 2 * SCREEN_WIDTH + 1 - ld bc, 2 * SCREEN_WIDTH + 5 -.okay - - ld a, [wBoxAlignment] - and a - jr nz, .add_bc - add hl, de - ret - -.add_bc - add hl, bc - ret -; d0499 - -.NextBit: ; d0499 - ld a, [wPokeAnimBitmaskCurRow] - inc a - ld [wPokeAnimBitmaskCurRow], a - ld c, a - ld a, [wPokeAnimFrontpicHeight] - cp c - jr nz, .no_carry - xor a - ld [wPokeAnimBitmaskCurRow], a - ld a, [wPokeAnimBitmaskCurCol] - inc a - ld [wPokeAnimBitmaskCurCol], a - ld c, a - ld a, [wPokeAnimFrontpicHeight] - cp c - jr nz, .no_carry - scf - ret - -.no_carry - xor a - ret -; d04bd - -PokeAnim_PlaceGraphic: ; d04bd - call .ClearBox - ld a, [wBoxAlignment] - and a - jr nz, .flipped - ld de, 1 - ld bc, 0 - jr .okay - -.flipped - ld de, -1 - ld bc, 6 - -.okay - ld hl, wPokeAnimCoord - ld a, [hli] - ld h, [hl] - ld l, a - add hl, bc - ld c, 7 - ld b, 7 - ld a, [wPokeAnimGraphicStartTile] -.loop - push bc - push hl - push de - ld de, SCREEN_WIDTH -.loop2 - ld [hl], a - inc a - add hl, de - dec b - jr nz, .loop2 - pop de - pop hl - add hl, de - pop bc - dec c - jr nz, .loop - ret -; d04f6 - -.ClearBox: ; d04f6 - ld hl, wPokeAnimCoord - ld a, [hli] - ld h, [hl] - ld l, a - ld b, 7 - ld c, 7 - call ClearBox - ret -; d0504 - -PokeAnim_SetVBank1: ; d0504 - ld a, [rSVBK] - push af - ld a, $2 - ld [rSVBK], a - xor a - ld [hBGMapMode], a - call .SetFlag - farcall HDMATransferAttrMapToWRAMBank3 - pop af - ld [rSVBK], a - ret -; d051b - -.SetFlag: ; d051b - call PokeAnim_GetAttrMapCoord - ld b, 7 - ld c, 7 - ld de, SCREEN_WIDTH -.row - push bc - push hl -.col - ld a, [hl] - or 8 - ld [hl], a - add hl, de - dec c - jr nz, .col - pop hl - inc hl - pop bc - dec b - jr nz, .row - ret -; d0536 - -PokeAnim_SetVBank0: ; d0536 - call PokeAnim_GetAttrMapCoord - ld b, 7 - ld c, 7 - ld de, SCREEN_WIDTH -.row - push bc - push hl -.col - ld a, [hl] - and $f7 - ld [hl], a - add hl, de - dec c - jr nz, .col - pop hl - inc hl - pop bc - dec b - jr nz, .row - ret -; d0551 - -PokeAnim_GetAttrMapCoord: ; d0551 - ld hl, wPokeAnimCoord - ld a, [hli] - ld h, [hl] - ld l, a - ld de, AttrMap - TileMap - add hl, de - ret -; d055c - -GetMonAnimPointer: ; d055c - call PokeAnim_IsEgg - jr z, .egg - - ld c, BANK(UnownAnimations) - ld hl, UnownAnimationPointers - ld de, UnownAnimationExtraPointers - call PokeAnim_IsUnown - jr z, .unown - ld c, BANK(PicAnimations) - ld hl, AnimationPointers - ld de, AnimationExtraPointers -.unown - - ld a, [wPokeAnimExtraFlag] - and a - jr z, .extras - ld h, d - ld l, e -.extras - - ld a, [wPokeAnimSpeciesOrUnown] - dec a - ld e, a - ld d, 0 - add hl, de - add hl, de - ld a, c - ld [wPokeAnimPointerBank], a - call GetFarHalfword - ld a, l - ld [wPokeAnimPointerAddr], a - ld a, h - ld [wPokeAnimPointerAddr + 1], a - ret - -.egg - ld hl, EggAnimation - ld c, BANK(EggAnimation) - ld a, [wPokeAnimExtraFlag] - and a - jr z, .extras_egg - ld hl, EggAnimationExtra - ld c, BANK(EggAnimationExtra) -.extras_egg - - ld a, c - ld [wPokeAnimPointerBank], a - ld a, l - ld [wPokeAnimPointerAddr], a - ld a, h - ld [wPokeAnimPointerAddr + 1], a - ret -; d05b4 - -PokeAnim_GetFrontpicDims: ; d05b4 - ld a, [rSVBK] - push af - ld a, BANK(CurPartySpecies) - ld [rSVBK], a - ld a, [CurPartySpecies] - ld [CurSpecies], a - call GetBaseData - ld a, [BasePicSize] - and $f - ld c, a - pop af - ld [rSVBK], a - ret -; d05ce - -GetMonFramesPointer: ; d05ce - call PokeAnim_IsEgg - jr z, .egg - - call PokeAnim_IsUnown - ld b, BANK(UnownFramesPointers) - ld c, BANK(UnownsFrames) - ld hl, UnownFramesPointers - jr z, .got_frames - ld a, [wPokeAnimSpecies] - cp CHIKORITA - ld b, BANK(FramesPointers) - ld c, BANK(KantoFrames) - ld hl, FramesPointers - jr c, .got_frames - ld c, BANK(JohtoFrames) -.got_frames - ld a, c - ld [wPokeAnimFramesBank], a - - ld a, [wPokeAnimSpeciesOrUnown] - dec a - ld e, a - ld d, 0 - add hl, de - add hl, de - ld a, b - call GetFarHalfword - ld a, l - ld [wPokeAnimFramesAddr], a - ld a, h - ld [wPokeAnimFramesAddr + 1], a - ret - -.egg - ld hl, EggFrames - ld c, BANK(EggFrames) - ld a, c - ld [wPokeAnimFramesBank], a - ld a, l - ld [wPokeAnimFramesAddr], a - ld a, h - ld [wPokeAnimFramesAddr + 1], a - ret -; d061b - -GetMonBitmaskPointer: ; d061b - call PokeAnim_IsEgg - jr z, .egg - - call PokeAnim_IsUnown - ld a, BANK(UnownBitmasksPointers) - ld hl, UnownBitmasksPointers - jr z, .unown - ld a, BANK(BitmasksPointers) - ld hl, BitmasksPointers -.unown - ld [wPokeAnimBitmaskBank], a - - ld a, [wPokeAnimSpeciesOrUnown] - dec a - ld e, a - ld d, 0 - add hl, de - add hl, de - ld a, [wPokeAnimBitmaskBank] - call GetFarHalfword - ld a, l - ld [wPokeAnimBitmaskAddr], a - ld a, h - ld [wPokeAnimBitmaskAddr + 1], a - ret - -.egg - ld c, BANK(EggBitmasks) - ld hl, EggBitmasks - ld a, c - ld [wPokeAnimBitmaskBank], a - ld a, l - ld [wPokeAnimBitmaskAddr], a - ld a, h - ld [wPokeAnimBitmaskAddr + 1], a - ret -; d065c - -PokeAnim_GetSpeciesOrUnown: ; d065c - call PokeAnim_IsUnown - jr z, .unown - ld a, [wPokeAnimSpecies] - ret - -.unown - ld a, [wPokeAnimUnownLetter] - ret -; d0669 - -Predef48: ; d0669 Predef 48 - ld a, $1 - ld [wBoxAlignment], a -HOF_AnimateFrontpic: ; d066e Predef 49 - call AnimateMon_CheckIfPokemon - jr c, .fail - ld h, d - ld l, e - push bc - push hl - ld de, VTiles2 - predef GetAnimatedFrontpicPredef - pop hl - pop bc - ld d, 0 - ld e, c - call AnimateFrontpic - xor a - ld [wBoxAlignment], a - ret - -.fail - xor a - ld [wBoxAlignment], a - inc a - ld [CurPartySpecies], a - ret -; d0695 diff --git a/gfx/pics/anims.asm b/gfx/pics/anims.asm deleted file mode 100644 index 37d81777d..000000000 --- a/gfx/pics/anims.asm +++ /dev/null @@ -1,253 +0,0 @@ -PicAnimations: -BulbasaurAnimation: INCLUDE "gfx/pics/bulbasaur/anim0.asm" -IvysaurAnimation: INCLUDE "gfx/pics/ivysaur/anim0.asm" -VenusaurAnimation: INCLUDE "gfx/pics/venusaur/anim0.asm" -CharmanderAnimation: INCLUDE "gfx/pics/charmander/anim0.asm" -CharmeleonAnimation: INCLUDE "gfx/pics/charmeleon/anim0.asm" -CharizardAnimation: INCLUDE "gfx/pics/charizard/anim0.asm" -SquirtleAnimation: INCLUDE "gfx/pics/squirtle/anim0.asm" -WartortleAnimation: INCLUDE "gfx/pics/wartortle/anim0.asm" -BlastoiseAnimation: INCLUDE "gfx/pics/blastoise/anim0.asm" -CaterpieAnimation: INCLUDE "gfx/pics/caterpie/anim0.asm" -MetapodAnimation: INCLUDE "gfx/pics/metapod/anim0.asm" -ButterfreeAnimation: INCLUDE "gfx/pics/butterfree/anim0.asm" -WeedleAnimation: INCLUDE "gfx/pics/weedle/anim0.asm" -KakunaAnimation: INCLUDE "gfx/pics/kakuna/anim0.asm" -BeedrillAnimation: INCLUDE "gfx/pics/beedrill/anim0.asm" -PidgeyAnimation: INCLUDE "gfx/pics/pidgey/anim0.asm" -PidgeottoAnimation: INCLUDE "gfx/pics/pidgeotto/anim0.asm" -PidgeotAnimation: INCLUDE "gfx/pics/pidgeot/anim0.asm" -RattataAnimation: INCLUDE "gfx/pics/rattata/anim0.asm" -RaticateAnimation: INCLUDE "gfx/pics/raticate/anim0.asm" -SpearowAnimation: INCLUDE "gfx/pics/spearow/anim0.asm" -FearowAnimation: INCLUDE "gfx/pics/fearow/anim0.asm" -EkansAnimation: INCLUDE "gfx/pics/ekans/anim0.asm" -ArbokAnimation: INCLUDE "gfx/pics/arbok/anim0.asm" -PikachuAnimation: INCLUDE "gfx/pics/pikachu/anim0.asm" -RaichuAnimation: INCLUDE "gfx/pics/raichu/anim0.asm" -SandshrewAnimation: INCLUDE "gfx/pics/sandshrew/anim0.asm" -SandslashAnimation: INCLUDE "gfx/pics/sandslash/anim0.asm" -NidoranFAnimation: INCLUDE "gfx/pics/nidoran_f/anim0.asm" -NidorinaAnimation: INCLUDE "gfx/pics/nidorina/anim0.asm" -NidoqueenAnimation: INCLUDE "gfx/pics/nidoqueen/anim0.asm" -NidoranMAnimation: INCLUDE "gfx/pics/nidoran_m/anim0.asm" -NidorinoAnimation: INCLUDE "gfx/pics/nidorino/anim0.asm" -NidokingAnimation: INCLUDE "gfx/pics/nidoking/anim0.asm" -ClefairyAnimation: INCLUDE "gfx/pics/clefairy/anim0.asm" -ClefableAnimation: INCLUDE "gfx/pics/clefable/anim0.asm" -VulpixAnimation: INCLUDE "gfx/pics/vulpix/anim0.asm" -NinetalesAnimation: INCLUDE "gfx/pics/ninetales/anim0.asm" -JigglypuffAnimation: INCLUDE "gfx/pics/jigglypuff/anim0.asm" -WigglytuffAnimation: INCLUDE "gfx/pics/wigglytuff/anim0.asm" -ZubatAnimation: INCLUDE "gfx/pics/zubat/anim0.asm" -GolbatAnimation: INCLUDE "gfx/pics/golbat/anim0.asm" -OddishAnimation: INCLUDE "gfx/pics/oddish/anim0.asm" -GloomAnimation: INCLUDE "gfx/pics/gloom/anim0.asm" -VileplumeAnimation: INCLUDE "gfx/pics/vileplume/anim0.asm" -ParasAnimation: INCLUDE "gfx/pics/paras/anim0.asm" -ParasectAnimation: INCLUDE "gfx/pics/parasect/anim0.asm" -VenonatAnimation: INCLUDE "gfx/pics/venonat/anim0.asm" -VenomothAnimation: INCLUDE "gfx/pics/venomoth/anim0.asm" -DiglettAnimation: INCLUDE "gfx/pics/diglett/anim0.asm" -DugtrioAnimation: INCLUDE "gfx/pics/dugtrio/anim0.asm" -MeowthAnimation: INCLUDE "gfx/pics/meowth/anim0.asm" -PersianAnimation: INCLUDE "gfx/pics/persian/anim0.asm" -PsyduckAnimation: INCLUDE "gfx/pics/psyduck/anim0.asm" -GolduckAnimation: INCLUDE "gfx/pics/golduck/anim0.asm" -MankeyAnimation: INCLUDE "gfx/pics/mankey/anim0.asm" -PrimeapeAnimation: INCLUDE "gfx/pics/primeape/anim0.asm" -GrowlitheAnimation: INCLUDE "gfx/pics/growlithe/anim0.asm" -ArcanineAnimation: INCLUDE "gfx/pics/arcanine/anim0.asm" -PoliwagAnimation: INCLUDE "gfx/pics/poliwag/anim0.asm" -PoliwhirlAnimation: INCLUDE "gfx/pics/poliwhirl/anim0.asm" -PoliwrathAnimation: INCLUDE "gfx/pics/poliwrath/anim0.asm" -AbraAnimation: INCLUDE "gfx/pics/abra/anim0.asm" -KadabraAnimation: INCLUDE "gfx/pics/kadabra/anim0.asm" -AlakazamAnimation: INCLUDE "gfx/pics/alakazam/anim0.asm" -MachopAnimation: INCLUDE "gfx/pics/machop/anim0.asm" -MachokeAnimation: INCLUDE "gfx/pics/machoke/anim0.asm" -MachampAnimation: INCLUDE "gfx/pics/machamp/anim0.asm" -BellsproutAnimation: INCLUDE "gfx/pics/bellsprout/anim0.asm" -WeepinbellAnimation: INCLUDE "gfx/pics/weepinbell/anim0.asm" -VictreebelAnimation: INCLUDE "gfx/pics/victreebel/anim0.asm" -TentacoolAnimation: INCLUDE "gfx/pics/tentacool/anim0.asm" -TentacruelAnimation: INCLUDE "gfx/pics/tentacruel/anim0.asm" -GeodudeAnimation: INCLUDE "gfx/pics/geodude/anim0.asm" -GravelerAnimation: INCLUDE "gfx/pics/graveler/anim0.asm" -GolemAnimation: INCLUDE "gfx/pics/golem/anim0.asm" -PonytaAnimation: INCLUDE "gfx/pics/ponyta/anim0.asm" -RapidashAnimation: INCLUDE "gfx/pics/rapidash/anim0.asm" -SlowpokeAnimation: INCLUDE "gfx/pics/slowpoke/anim0.asm" -SlowbroAnimation: INCLUDE "gfx/pics/slowbro/anim0.asm" -MagnemiteAnimation: INCLUDE "gfx/pics/magnemite/anim0.asm" -MagnetonAnimation: INCLUDE "gfx/pics/magneton/anim0.asm" -FarfetchDAnimation: INCLUDE "gfx/pics/farfetch_d/anim0.asm" -DoduoAnimation: INCLUDE "gfx/pics/doduo/anim0.asm" -DodrioAnimation: INCLUDE "gfx/pics/dodrio/anim0.asm" -SeelAnimation: INCLUDE "gfx/pics/seel/anim0.asm" -DewgongAnimation: INCLUDE "gfx/pics/dewgong/anim0.asm" -GrimerAnimation: INCLUDE "gfx/pics/grimer/anim0.asm" -MukAnimation: INCLUDE "gfx/pics/muk/anim0.asm" -ShellderAnimation: INCLUDE "gfx/pics/shellder/anim0.asm" -CloysterAnimation: INCLUDE "gfx/pics/cloyster/anim0.asm" -GastlyAnimation: INCLUDE "gfx/pics/gastly/anim0.asm" -HaunterAnimation: INCLUDE "gfx/pics/haunter/anim0.asm" -GengarAnimation: INCLUDE "gfx/pics/gengar/anim0.asm" -OnixAnimation: INCLUDE "gfx/pics/onix/anim0.asm" -DrowzeeAnimation: INCLUDE "gfx/pics/drowzee/anim0.asm" -HypnoAnimation: INCLUDE "gfx/pics/hypno/anim0.asm" -KrabbyAnimation: INCLUDE "gfx/pics/krabby/anim0.asm" -KinglerAnimation: INCLUDE "gfx/pics/kingler/anim0.asm" -VoltorbAnimation: INCLUDE "gfx/pics/voltorb/anim0.asm" -ElectrodeAnimation: INCLUDE "gfx/pics/electrode/anim0.asm" -ExeggcuteAnimation: INCLUDE "gfx/pics/exeggcute/anim0.asm" -ExeggutorAnimation: INCLUDE "gfx/pics/exeggutor/anim0.asm" -CuboneAnimation: INCLUDE "gfx/pics/cubone/anim0.asm" -MarowakAnimation: INCLUDE "gfx/pics/marowak/anim0.asm" -HitmonleeAnimation: INCLUDE "gfx/pics/hitmonlee/anim0.asm" -HitmonchanAnimation: INCLUDE "gfx/pics/hitmonchan/anim0.asm" -LickitungAnimation: INCLUDE "gfx/pics/lickitung/anim0.asm" -KoffingAnimation: INCLUDE "gfx/pics/koffing/anim0.asm" -WeezingAnimation: INCLUDE "gfx/pics/weezing/anim0.asm" -RhyhornAnimation: INCLUDE "gfx/pics/rhyhorn/anim0.asm" -RhydonAnimation: INCLUDE "gfx/pics/rhydon/anim0.asm" -ChanseyAnimation: INCLUDE "gfx/pics/chansey/anim0.asm" -TangelaAnimation: INCLUDE "gfx/pics/tangela/anim0.asm" -KangaskhanAnimation: INCLUDE "gfx/pics/kangaskhan/anim0.asm" -HorseaAnimation: INCLUDE "gfx/pics/horsea/anim0.asm" -SeadraAnimation: INCLUDE "gfx/pics/seadra/anim0.asm" -GoldeenAnimation: INCLUDE "gfx/pics/goldeen/anim0.asm" -SeakingAnimation: INCLUDE "gfx/pics/seaking/anim0.asm" -StaryuAnimation: INCLUDE "gfx/pics/staryu/anim0.asm" -StarmieAnimation: INCLUDE "gfx/pics/starmie/anim0.asm" -MrMimeAnimation: INCLUDE "gfx/pics/mr__mime/anim0.asm" -ScytherAnimation: INCLUDE "gfx/pics/scyther/anim0.asm" -JynxAnimation: INCLUDE "gfx/pics/jynx/anim0.asm" -ElectabuzzAnimation: INCLUDE "gfx/pics/electabuzz/anim0.asm" -MagmarAnimation: INCLUDE "gfx/pics/magmar/anim0.asm" -PinsirAnimation: INCLUDE "gfx/pics/pinsir/anim0.asm" -TaurosAnimation: INCLUDE "gfx/pics/tauros/anim0.asm" -MagikarpAnimation: INCLUDE "gfx/pics/magikarp/anim0.asm" -GyaradosAnimation: INCLUDE "gfx/pics/gyarados/anim0.asm" -LaprasAnimation: INCLUDE "gfx/pics/lapras/anim0.asm" -DittoAnimation: INCLUDE "gfx/pics/ditto/anim0.asm" -EeveeAnimation: INCLUDE "gfx/pics/eevee/anim0.asm" -VaporeonAnimation: INCLUDE "gfx/pics/vaporeon/anim0.asm" -JolteonAnimation: INCLUDE "gfx/pics/jolteon/anim0.asm" -FlareonAnimation: INCLUDE "gfx/pics/flareon/anim0.asm" -PorygonAnimation: INCLUDE "gfx/pics/porygon/anim0.asm" -OmanyteAnimation: INCLUDE "gfx/pics/omanyte/anim0.asm" -OmastarAnimation: INCLUDE "gfx/pics/omastar/anim0.asm" -KabutoAnimation: INCLUDE "gfx/pics/kabuto/anim0.asm" -KabutopsAnimation: INCLUDE "gfx/pics/kabutops/anim0.asm" -AerodactylAnimation: INCLUDE "gfx/pics/aerodactyl/anim0.asm" -SnorlaxAnimation: INCLUDE "gfx/pics/snorlax/anim0.asm" -ArticunoAnimation: INCLUDE "gfx/pics/articuno/anim0.asm" -ZapdosAnimation: INCLUDE "gfx/pics/zapdos/anim0.asm" -MoltresAnimation: INCLUDE "gfx/pics/moltres/anim0.asm" -DratiniAnimation: INCLUDE "gfx/pics/dratini/anim0.asm" -DragonairAnimation: INCLUDE "gfx/pics/dragonair/anim0.asm" -DragoniteAnimation: INCLUDE "gfx/pics/dragonite/anim0.asm" -MewtwoAnimation: INCLUDE "gfx/pics/mewtwo/anim0.asm" -MewAnimation: INCLUDE "gfx/pics/mew/anim0.asm" -ChikoritaAnimation: INCLUDE "gfx/pics/chikorita/anim0.asm" -BayleefAnimation: INCLUDE "gfx/pics/bayleef/anim0.asm" -MeganiumAnimation: INCLUDE "gfx/pics/meganium/anim0.asm" -CyndaquilAnimation: INCLUDE "gfx/pics/cyndaquil/anim0.asm" -QuilavaAnimation: INCLUDE "gfx/pics/quilava/anim0.asm" -TyphlosionAnimation: INCLUDE "gfx/pics/typhlosion/anim0.asm" -TotodileAnimation: INCLUDE "gfx/pics/totodile/anim0.asm" -CroconawAnimation: INCLUDE "gfx/pics/croconaw/anim0.asm" -FeraligatrAnimation: INCLUDE "gfx/pics/feraligatr/anim0.asm" -SentretAnimation: INCLUDE "gfx/pics/sentret/anim0.asm" -FurretAnimation: INCLUDE "gfx/pics/furret/anim0.asm" -HoothootAnimation: INCLUDE "gfx/pics/hoothoot/anim0.asm" -NoctowlAnimation: INCLUDE "gfx/pics/noctowl/anim0.asm" -LedybaAnimation: INCLUDE "gfx/pics/ledyba/anim0.asm" -LedianAnimation: INCLUDE "gfx/pics/ledian/anim0.asm" -SpinarakAnimation: INCLUDE "gfx/pics/spinarak/anim0.asm" -AriadosAnimation: INCLUDE "gfx/pics/ariados/anim0.asm" -CrobatAnimation: INCLUDE "gfx/pics/crobat/anim0.asm" -ChinchouAnimation: INCLUDE "gfx/pics/chinchou/anim0.asm" -LanturnAnimation: INCLUDE "gfx/pics/lanturn/anim0.asm" -PichuAnimation: INCLUDE "gfx/pics/pichu/anim0.asm" -CleffaAnimation: INCLUDE "gfx/pics/cleffa/anim0.asm" -IgglybuffAnimation: INCLUDE "gfx/pics/igglybuff/anim0.asm" -TogepiAnimation: INCLUDE "gfx/pics/togepi/anim0.asm" -TogeticAnimation: INCLUDE "gfx/pics/togetic/anim0.asm" -NatuAnimation: INCLUDE "gfx/pics/natu/anim0.asm" -XatuAnimation: INCLUDE "gfx/pics/xatu/anim0.asm" -MareepAnimation: INCLUDE "gfx/pics/mareep/anim0.asm" -FlaaffyAnimation: INCLUDE "gfx/pics/flaaffy/anim0.asm" -AmpharosAnimation: INCLUDE "gfx/pics/ampharos/anim0.asm" -BellossomAnimation: INCLUDE "gfx/pics/bellossom/anim0.asm" -MarillAnimation: INCLUDE "gfx/pics/marill/anim0.asm" -AzumarillAnimation: INCLUDE "gfx/pics/azumarill/anim0.asm" -SudowoodoAnimation: INCLUDE "gfx/pics/sudowoodo/anim0.asm" -PolitoedAnimation: INCLUDE "gfx/pics/politoed/anim0.asm" -HoppipAnimation: INCLUDE "gfx/pics/hoppip/anim0.asm" -SkiploomAnimation: INCLUDE "gfx/pics/skiploom/anim0.asm" -JumpluffAnimation: INCLUDE "gfx/pics/jumpluff/anim0.asm" -AipomAnimation: INCLUDE "gfx/pics/aipom/anim0.asm" -SunkernAnimation: INCLUDE "gfx/pics/sunkern/anim0.asm" -SunfloraAnimation: INCLUDE "gfx/pics/sunflora/anim0.asm" -YanmaAnimation: INCLUDE "gfx/pics/yanma/anim0.asm" -WooperAnimation: INCLUDE "gfx/pics/wooper/anim0.asm" -QuagsireAnimation: INCLUDE "gfx/pics/quagsire/anim0.asm" -EspeonAnimation: INCLUDE "gfx/pics/espeon/anim0.asm" -UmbreonAnimation: INCLUDE "gfx/pics/umbreon/anim0.asm" -MurkrowAnimation: INCLUDE "gfx/pics/murkrow/anim0.asm" -SlowkingAnimation: INCLUDE "gfx/pics/slowking/anim0.asm" -MisdreavusAnimation: INCLUDE "gfx/pics/misdreavus/anim0.asm" -UnownAnimation: INCLUDE "gfx/pics/unown/anim0.asm" -WobbuffetAnimation: INCLUDE "gfx/pics/wobbuffet/anim0.asm" -GirafarigAnimation: INCLUDE "gfx/pics/girafarig/anim0.asm" -PinecoAnimation: INCLUDE "gfx/pics/pineco/anim0.asm" -ForretressAnimation: INCLUDE "gfx/pics/forretress/anim0.asm" -DunsparceAnimation: INCLUDE "gfx/pics/dunsparce/anim0.asm" -GligarAnimation: INCLUDE "gfx/pics/gligar/anim0.asm" -SteelixAnimation: INCLUDE "gfx/pics/steelix/anim0.asm" -SnubbullAnimation: INCLUDE "gfx/pics/snubbull/anim0.asm" -GranbullAnimation: INCLUDE "gfx/pics/granbull/anim0.asm" -QwilfishAnimation: INCLUDE "gfx/pics/qwilfish/anim0.asm" -ScizorAnimation: INCLUDE "gfx/pics/scizor/anim0.asm" -ShuckleAnimation: INCLUDE "gfx/pics/shuckle/anim0.asm" -HeracrossAnimation: INCLUDE "gfx/pics/heracross/anim0.asm" -SneaselAnimation: INCLUDE "gfx/pics/sneasel/anim0.asm" -TeddiursaAnimation: INCLUDE "gfx/pics/teddiursa/anim0.asm" -UrsaringAnimation: INCLUDE "gfx/pics/ursaring/anim0.asm" -SlugmaAnimation: INCLUDE "gfx/pics/slugma/anim0.asm" -MagcargoAnimation: INCLUDE "gfx/pics/magcargo/anim0.asm" -SwinubAnimation: INCLUDE "gfx/pics/swinub/anim0.asm" -PiloswineAnimation: INCLUDE "gfx/pics/piloswine/anim0.asm" -CorsolaAnimation: INCLUDE "gfx/pics/corsola/anim0.asm" -RemoraidAnimation: INCLUDE "gfx/pics/remoraid/anim0.asm" -OctilleryAnimation: INCLUDE "gfx/pics/octillery/anim0.asm" -DelibirdAnimation: INCLUDE "gfx/pics/delibird/anim0.asm" -MantineAnimation: INCLUDE "gfx/pics/mantine/anim0.asm" -SkarmoryAnimation: INCLUDE "gfx/pics/skarmory/anim0.asm" -HoundourAnimation: INCLUDE "gfx/pics/houndour/anim0.asm" -HoundoomAnimation: INCLUDE "gfx/pics/houndoom/anim0.asm" -KingdraAnimation: INCLUDE "gfx/pics/kingdra/anim0.asm" -PhanpyAnimation: INCLUDE "gfx/pics/phanpy/anim0.asm" -DonphanAnimation: INCLUDE "gfx/pics/donphan/anim0.asm" -Porygon2Animation: INCLUDE "gfx/pics/porygon2/anim0.asm" -StantlerAnimation: INCLUDE "gfx/pics/stantler/anim0.asm" -SmeargleAnimation: INCLUDE "gfx/pics/smeargle/anim0.asm" -TyrogueAnimation: INCLUDE "gfx/pics/tyrogue/anim0.asm" -HitmontopAnimation: INCLUDE "gfx/pics/hitmontop/anim0.asm" -SmoochumAnimation: INCLUDE "gfx/pics/smoochum/anim0.asm" -ElekidAnimation: INCLUDE "gfx/pics/elekid/anim0.asm" -MagbyAnimation: INCLUDE "gfx/pics/magby/anim0.asm" -MiltankAnimation: INCLUDE "gfx/pics/miltank/anim0.asm" -BlisseyAnimation: INCLUDE "gfx/pics/blissey/anim0.asm" -RaikouAnimation: INCLUDE "gfx/pics/raikou/anim0.asm" -EnteiAnimation: INCLUDE "gfx/pics/entei/anim0.asm" -SuicuneAnimation: INCLUDE "gfx/pics/suicune/anim0.asm" -LarvitarAnimation: INCLUDE "gfx/pics/larvitar/anim0.asm" -PupitarAnimation: INCLUDE "gfx/pics/pupitar/anim0.asm" -TyranitarAnimation: INCLUDE "gfx/pics/tyranitar/anim0.asm" -LugiaAnimation: INCLUDE "gfx/pics/lugia/anim0.asm" -HoOhAnimation: INCLUDE "gfx/pics/ho_oh/anim0.asm" -CelebiAnimation: INCLUDE "gfx/pics/celebi/anim0.asm" -EggAnimation: INCLUDE "gfx/pics/egg/anim0.asm" diff --git a/gfx/pics/arbok/anim0.asm b/gfx/pics/arbok/anim0.asm deleted file mode 100644 index 0ceceacac..000000000 --- a/gfx/pics/arbok/anim0.asm +++ /dev/null @@ -1,15 +0,0 @@ - frame 0, 04 - frame 4, 08 - setrepeat 2 - frame 5, 08 - frame 6, 08 - dorepeat 3 - frame 4, 08 - setrepeat 3 - frame 0, 07 - frame 1, 07 - frame 2, 05 - frame 3, 05 - dorepeat 8 - endanim -; 0xd09ed diff --git a/gfx/pics/arbok/anim1.asm b/gfx/pics/arbok/anim1.asm deleted file mode 100644 index c9f85e238..000000000 --- a/gfx/pics/arbok/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - frame 4, 06 - frame 5, 04 - frame 6, 04 - frame 5, 04 - frame 4, 06 - endanim -; 0xd19a9 diff --git a/gfx/pics/arbok/back.2bpp.lz.7b18cb93 b/gfx/pics/arbok/back.2bpp.lz.7b18cb93 deleted file mode 100644 index 175abb499..000000000 Binary files a/gfx/pics/arbok/back.2bpp.lz.7b18cb93 and /dev/null differ diff --git a/gfx/pics/arbok/back.png b/gfx/pics/arbok/back.png deleted file mode 100644 index 5d9809918..000000000 Binary files a/gfx/pics/arbok/back.png and /dev/null differ diff --git a/gfx/pics/arbok/front.animated.2bpp.lz.1589a977 b/gfx/pics/arbok/front.animated.2bpp.lz.1589a977 deleted file mode 100644 index 8b5918dbd..000000000 Binary files a/gfx/pics/arbok/front.animated.2bpp.lz.1589a977 and /dev/null differ diff --git a/gfx/pics/arbok/front.png b/gfx/pics/arbok/front.png deleted file mode 100644 index 340c07d1a..000000000 Binary files a/gfx/pics/arbok/front.png and /dev/null differ diff --git a/gfx/pics/arbok/shiny.pal b/gfx/pics/arbok/shiny.pal deleted file mode 100644 index 3c731f915..000000000 --- a/gfx/pics/arbok/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 19, 11 - RGB 20, 10, 30 - diff --git a/gfx/pics/arcanine/anim0.asm b/gfx/pics/arcanine/anim0.asm deleted file mode 100644 index 0dc0dcacc..000000000 --- a/gfx/pics/arcanine/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 05 - frame 2, 25 - frame 3, 10 - frame 4, 10 - frame 7, 25 - endanim -; 0xd0c26 diff --git a/gfx/pics/arcanine/anim1.asm b/gfx/pics/arcanine/anim1.asm deleted file mode 100644 index e178a2d24..000000000 --- a/gfx/pics/arcanine/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 4 - frame 5, 09 - frame 6, 09 - dorepeat 1 - endanim -; 0xd1b0c diff --git a/gfx/pics/arcanine/back.2bpp.lz.f5b35ebf b/gfx/pics/arcanine/back.2bpp.lz.f5b35ebf deleted file mode 100644 index a76d64986..000000000 Binary files a/gfx/pics/arcanine/back.2bpp.lz.f5b35ebf and /dev/null differ diff --git a/gfx/pics/arcanine/back.png b/gfx/pics/arcanine/back.png deleted file mode 100644 index 0358d9344..000000000 Binary files a/gfx/pics/arcanine/back.png and /dev/null differ diff --git a/gfx/pics/arcanine/front.animated.2bpp.lz.5ae8eff3 b/gfx/pics/arcanine/front.animated.2bpp.lz.5ae8eff3 deleted file mode 100644 index da1784800..000000000 Binary files a/gfx/pics/arcanine/front.animated.2bpp.lz.5ae8eff3 and /dev/null differ diff --git a/gfx/pics/arcanine/front.png b/gfx/pics/arcanine/front.png deleted file mode 100644 index 5a65299ed..000000000 Binary files a/gfx/pics/arcanine/front.png and /dev/null differ diff --git a/gfx/pics/arcanine/shiny.pal b/gfx/pics/arcanine/shiny.pal deleted file mode 100644 index 78da21464..000000000 --- a/gfx/pics/arcanine/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 17, 15 - RGB 19, 17, 01 - diff --git a/gfx/pics/ariados/anim0.asm b/gfx/pics/ariados/anim0.asm deleted file mode 100644 index 9a4d30385..000000000 --- a/gfx/pics/ariados/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 12 - setrepeat 6 - frame 2, 03 - frame 3, 03 - dorepeat 2 - frame 1, 24 - endanim -; 0xd124d diff --git a/gfx/pics/ariados/anim1.asm b/gfx/pics/ariados/anim1.asm deleted file mode 100644 index 6b9f416be..000000000 --- a/gfx/pics/ariados/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 08 - setrepeat 2 - frame 4, 06 - frame 1, 06 - dorepeat 2 - frame 1, 08 - endanim -; 0xd1f3b diff --git a/gfx/pics/ariados/back.2bpp.lz.9fb1c3fc b/gfx/pics/ariados/back.2bpp.lz.9fb1c3fc deleted file mode 100644 index ff3aec7fb..000000000 Binary files a/gfx/pics/ariados/back.2bpp.lz.9fb1c3fc and /dev/null differ diff --git a/gfx/pics/ariados/back.png b/gfx/pics/ariados/back.png deleted file mode 100644 index 6d0bc737d..000000000 Binary files a/gfx/pics/ariados/back.png and /dev/null differ diff --git a/gfx/pics/ariados/front.animated.2bpp.lz.5ac5c83c b/gfx/pics/ariados/front.animated.2bpp.lz.5ac5c83c deleted file mode 100644 index 51039aeb5..000000000 Binary files a/gfx/pics/ariados/front.animated.2bpp.lz.5ac5c83c and /dev/null differ diff --git a/gfx/pics/ariados/front.png b/gfx/pics/ariados/front.png deleted file mode 100644 index ba40159e6..000000000 Binary files a/gfx/pics/ariados/front.png and /dev/null differ diff --git a/gfx/pics/ariados/shiny.pal b/gfx/pics/ariados/shiny.pal deleted file mode 100644 index 1dae64a4f..000000000 --- a/gfx/pics/ariados/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 03, 26 - RGB 05, 09, 29 - diff --git a/gfx/pics/articuno/anim0.asm b/gfx/pics/articuno/anim0.asm deleted file mode 100644 index ccb583766..000000000 --- a/gfx/pics/articuno/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 5, 08 - setrepeat 2 - frame 1, 10 - frame 2, 10 - frame 3, 10 - dorepeat 2 - frame 5, 12 - endanim -; 0xd10c1 diff --git a/gfx/pics/articuno/anim1.asm b/gfx/pics/articuno/anim1.asm deleted file mode 100644 index 634d8daff..000000000 --- a/gfx/pics/articuno/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 5, 08 - setrepeat 2 - frame 4, 06 - frame 1, 06 - dorepeat 2 - frame 5, 12 - endanim -; 0xd1e41 diff --git a/gfx/pics/articuno/back.2bpp.lz.c263c2aa b/gfx/pics/articuno/back.2bpp.lz.c263c2aa deleted file mode 100644 index 87b61ac9d..000000000 Binary files a/gfx/pics/articuno/back.2bpp.lz.c263c2aa and /dev/null differ diff --git a/gfx/pics/articuno/back.png b/gfx/pics/articuno/back.png deleted file mode 100644 index 9734a3095..000000000 Binary files a/gfx/pics/articuno/back.png and /dev/null differ diff --git a/gfx/pics/articuno/front.animated.2bpp.lz.650aef29 b/gfx/pics/articuno/front.animated.2bpp.lz.650aef29 deleted file mode 100644 index a60367098..000000000 Binary files a/gfx/pics/articuno/front.animated.2bpp.lz.650aef29 and /dev/null differ diff --git a/gfx/pics/articuno/front.png b/gfx/pics/articuno/front.png deleted file mode 100644 index bd0090d7b..000000000 Binary files a/gfx/pics/articuno/front.png and /dev/null differ diff --git a/gfx/pics/articuno/shiny.pal b/gfx/pics/articuno/shiny.pal deleted file mode 100644 index d6c56f521..000000000 --- a/gfx/pics/articuno/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 26, 31 - RGB 13, 13, 22 - diff --git a/gfx/pics/azumarill/anim0.asm b/gfx/pics/azumarill/anim0.asm deleted file mode 100644 index bbe46d4b7..000000000 --- a/gfx/pics/azumarill/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - setrepeat 2 - frame 2, 06 - frame 3, 06 - dorepeat 1 - frame 0, 08 - frame 1, 08 - frame 4, 08 - endanim -; 0xd1329 diff --git a/gfx/pics/azumarill/anim1.asm b/gfx/pics/azumarill/anim1.asm deleted file mode 100644 index 070e6145f..000000000 --- a/gfx/pics/azumarill/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1fd3 diff --git a/gfx/pics/azumarill/back.2bpp.lz.f7fa0db9 b/gfx/pics/azumarill/back.2bpp.lz.f7fa0db9 deleted file mode 100644 index b66df2a71..000000000 Binary files a/gfx/pics/azumarill/back.2bpp.lz.f7fa0db9 and /dev/null differ diff --git a/gfx/pics/azumarill/back.png b/gfx/pics/azumarill/back.png deleted file mode 100644 index 581c0e926..000000000 Binary files a/gfx/pics/azumarill/back.png and /dev/null differ diff --git a/gfx/pics/azumarill/front.animated.2bpp.lz.cc9fd2ed b/gfx/pics/azumarill/front.animated.2bpp.lz.cc9fd2ed deleted file mode 100644 index d6f031164..000000000 Binary files a/gfx/pics/azumarill/front.animated.2bpp.lz.cc9fd2ed and /dev/null differ diff --git a/gfx/pics/azumarill/front.png b/gfx/pics/azumarill/front.png deleted file mode 100644 index 9a51d6739..000000000 Binary files a/gfx/pics/azumarill/front.png and /dev/null differ diff --git a/gfx/pics/azumarill/shiny.pal b/gfx/pics/azumarill/shiny.pal deleted file mode 100644 index 18cfd1195..000000000 --- a/gfx/pics/azumarill/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 26, 20, 05 - RGB 18, 09, 07 - diff --git a/gfx/pics/bayleef/anim0.asm b/gfx/pics/bayleef/anim0.asm deleted file mode 100644 index de54fe495..000000000 --- a/gfx/pics/bayleef/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 12 - frame 2, 11 - frame 3, 15 - endanim -; 0xd116c diff --git a/gfx/pics/bayleef/anim1.asm b/gfx/pics/bayleef/anim1.asm deleted file mode 100644 index 59d3f1762..000000000 --- a/gfx/pics/bayleef/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1ea8 diff --git a/gfx/pics/bayleef/back.2bpp.lz.c4783e65 b/gfx/pics/bayleef/back.2bpp.lz.c4783e65 deleted file mode 100644 index 809e5d199..000000000 Binary files a/gfx/pics/bayleef/back.2bpp.lz.c4783e65 and /dev/null differ diff --git a/gfx/pics/bayleef/back.png b/gfx/pics/bayleef/back.png deleted file mode 100644 index 1e95d7b08..000000000 Binary files a/gfx/pics/bayleef/back.png and /dev/null differ diff --git a/gfx/pics/bayleef/front.animated.2bpp.lz.147649f2 b/gfx/pics/bayleef/front.animated.2bpp.lz.147649f2 deleted file mode 100644 index 3134f6e16..000000000 Binary files a/gfx/pics/bayleef/front.animated.2bpp.lz.147649f2 and /dev/null differ diff --git a/gfx/pics/bayleef/front.png b/gfx/pics/bayleef/front.png deleted file mode 100644 index 9fd993152..000000000 Binary files a/gfx/pics/bayleef/front.png and /dev/null differ diff --git a/gfx/pics/bayleef/shiny.pal b/gfx/pics/bayleef/shiny.pal deleted file mode 100644 index fcacccc19..000000000 --- a/gfx/pics/bayleef/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 20, 13 - RGB 25, 15, 00 - diff --git a/gfx/pics/beedrill/anim0.asm b/gfx/pics/beedrill/anim0.asm deleted file mode 100644 index 036fbb738..000000000 --- a/gfx/pics/beedrill/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - setrepeat 8 - frame 3, 02 - frame 1, 01 - frame 2, 01 - frame 1, 02 - dorepeat 1 - setrepeat 2 - frame 0, 10 - frame 3, 10 - dorepeat 7 - endanim -; 0xd0954 diff --git a/gfx/pics/beedrill/anim1.asm b/gfx/pics/beedrill/anim1.asm deleted file mode 100644 index 8205f9a8c..000000000 --- a/gfx/pics/beedrill/anim1.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 4 - frame 3, 02 - frame 1, 01 - frame 2, 01 - frame 1, 02 - dorepeat 1 - frame 0, 25 - frame 3, 10 - endanim -; 0xd193c diff --git a/gfx/pics/beedrill/back.2bpp.lz.dfd6a87b b/gfx/pics/beedrill/back.2bpp.lz.dfd6a87b deleted file mode 100644 index 492eb64e2..000000000 Binary files a/gfx/pics/beedrill/back.2bpp.lz.dfd6a87b and /dev/null differ diff --git a/gfx/pics/beedrill/back.png b/gfx/pics/beedrill/back.png deleted file mode 100644 index c41eccf5f..000000000 Binary files a/gfx/pics/beedrill/back.png and /dev/null differ diff --git a/gfx/pics/beedrill/front.animated.2bpp.lz.1b5d3117 b/gfx/pics/beedrill/front.animated.2bpp.lz.1b5d3117 deleted file mode 100644 index 55f560521..000000000 Binary files a/gfx/pics/beedrill/front.animated.2bpp.lz.1b5d3117 and /dev/null differ diff --git a/gfx/pics/beedrill/front.png b/gfx/pics/beedrill/front.png deleted file mode 100644 index 271eaa3b4..000000000 Binary files a/gfx/pics/beedrill/front.png and /dev/null differ diff --git a/gfx/pics/beedrill/shiny.pal b/gfx/pics/beedrill/shiny.pal deleted file mode 100644 index cfbc9997a..000000000 --- a/gfx/pics/beedrill/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 17, 20, 13 - RGB 08, 07, 27 - diff --git a/gfx/pics/bellossom/anim0.asm b/gfx/pics/bellossom/anim0.asm deleted file mode 100644 index 7aa2e3568..000000000 --- a/gfx/pics/bellossom/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 3, 12 - frame 1, 12 - frame 2, 12 - frame 4, 10 - frame 0, 12 - frame 4, 10 - frame 5, 12 - frame 4, 10 - endanim -; 0xd130b diff --git a/gfx/pics/bellossom/anim1.asm b/gfx/pics/bellossom/anim1.asm deleted file mode 100644 index 322fa3758..000000000 --- a/gfx/pics/bellossom/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 6, 06 - dorepeat 1 - endanim -; 0xd1fbf diff --git a/gfx/pics/bellossom/back.2bpp.lz.10d31691 b/gfx/pics/bellossom/back.2bpp.lz.10d31691 deleted file mode 100644 index d1a59b617..000000000 Binary files a/gfx/pics/bellossom/back.2bpp.lz.10d31691 and /dev/null differ diff --git a/gfx/pics/bellossom/back.png b/gfx/pics/bellossom/back.png deleted file mode 100644 index 53b24c2b4..000000000 Binary files a/gfx/pics/bellossom/back.png and /dev/null differ diff --git a/gfx/pics/bellossom/front.animated.2bpp.lz.289eaecf b/gfx/pics/bellossom/front.animated.2bpp.lz.289eaecf deleted file mode 100644 index 9cba9a1c3..000000000 Binary files a/gfx/pics/bellossom/front.animated.2bpp.lz.289eaecf and /dev/null differ diff --git a/gfx/pics/bellossom/front.png b/gfx/pics/bellossom/front.png deleted file mode 100644 index f77907c45..000000000 Binary files a/gfx/pics/bellossom/front.png and /dev/null differ diff --git a/gfx/pics/bellossom/shiny.pal b/gfx/pics/bellossom/shiny.pal deleted file mode 100644 index a099a594e..000000000 --- a/gfx/pics/bellossom/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 28, 11, 06 - RGB 11, 14, 25 - diff --git a/gfx/pics/bellsprout/anim0.asm b/gfx/pics/bellsprout/anim0.asm deleted file mode 100644 index 9a71b29ac..000000000 --- a/gfx/pics/bellsprout/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - setrepeat 2 - frame 0, 08 - frame 1, 08 - frame 2, 12 - frame 1, 08 - dorepeat 5 - endanim -; 0xd0cb2 diff --git a/gfx/pics/bellsprout/anim1.asm b/gfx/pics/bellsprout/anim1.asm deleted file mode 100644 index 31ad26997..000000000 --- a/gfx/pics/bellsprout/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 4, 10 - frame 5, 10 - setrepeat 3 - frame 0, 05 - frame 6, 05 - dorepeat 3 - endanim -; 0xd1b78 diff --git a/gfx/pics/bellsprout/back.2bpp.lz.9dacbda8 b/gfx/pics/bellsprout/back.2bpp.lz.9dacbda8 deleted file mode 100644 index ab600f064..000000000 Binary files a/gfx/pics/bellsprout/back.2bpp.lz.9dacbda8 and /dev/null differ diff --git a/gfx/pics/bellsprout/back.png b/gfx/pics/bellsprout/back.png deleted file mode 100644 index ef5c271ef..000000000 Binary files a/gfx/pics/bellsprout/back.png and /dev/null differ diff --git a/gfx/pics/bellsprout/front.animated.2bpp.lz.44df413d b/gfx/pics/bellsprout/front.animated.2bpp.lz.44df413d deleted file mode 100644 index 2593fb112..000000000 Binary files a/gfx/pics/bellsprout/front.animated.2bpp.lz.44df413d and /dev/null differ diff --git a/gfx/pics/bellsprout/front.png b/gfx/pics/bellsprout/front.png deleted file mode 100644 index 0a243dd94..000000000 Binary files a/gfx/pics/bellsprout/front.png and /dev/null differ diff --git a/gfx/pics/bellsprout/shiny.pal b/gfx/pics/bellsprout/shiny.pal deleted file mode 100644 index 5a2b267f1..000000000 --- a/gfx/pics/bellsprout/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 20, 07 - RGB 20, 10, 21 - diff --git a/gfx/pics/bitmask_pointers.asm b/gfx/pics/bitmask_pointers.asm deleted file mode 100644 index 7d87ad8d9..000000000 --- a/gfx/pics/bitmask_pointers.asm +++ /dev/null @@ -1,252 +0,0 @@ -BitmasksPointers: - dw BulbasaurBitmasks - dw IvysaurBitmasks - dw VenusaurBitmasks - dw CharmanderBitmasks - dw CharmeleonBitmasks - dw CharizardBitmasks - dw SquirtleBitmasks - dw WartortleBitmasks - dw BlastoiseBitmasks - dw CaterpieBitmasks - dw MetapodBitmasks - dw ButterfreeBitmasks - dw WeedleBitmasks - dw KakunaBitmasks - dw BeedrillBitmasks - dw PidgeyBitmasks - dw PidgeottoBitmasks - dw PidgeotBitmasks - dw RattataBitmasks - dw RaticateBitmasks - dw SpearowBitmasks - dw FearowBitmasks - dw EkansBitmasks - dw ArbokBitmasks - dw PikachuBitmasks - dw RaichuBitmasks - dw SandshrewBitmasks - dw SandslashBitmasks - dw NidoranFBitmasks - dw NidorinaBitmasks - dw NidoqueenBitmasks - dw NidoranMBitmasks - dw NidorinoBitmasks - dw NidokingBitmasks - dw ClefairyBitmasks - dw ClefableBitmasks - dw VulpixBitmasks - dw NinetalesBitmasks - dw JigglypuffBitmasks - dw WigglytuffBitmasks - dw ZubatBitmasks - dw GolbatBitmasks - dw OddishBitmasks - dw GloomBitmasks - dw VileplumeBitmasks - dw ParasBitmasks - dw ParasectBitmasks - dw VenonatBitmasks - dw VenomothBitmasks - dw DiglettBitmasks - dw DugtrioBitmasks - dw MeowthBitmasks - dw PersianBitmasks - dw PsyduckBitmasks - dw GolduckBitmasks - dw MankeyBitmasks - dw PrimeapeBitmasks - dw GrowlitheBitmasks - dw ArcanineBitmasks - dw PoliwagBitmasks - dw PoliwhirlBitmasks - dw PoliwrathBitmasks - dw AbraBitmasks - dw KadabraBitmasks - dw AlakazamBitmasks - dw MachopBitmasks - dw MachokeBitmasks - dw MachampBitmasks - dw BellsproutBitmasks - dw WeepinbellBitmasks - dw VictreebelBitmasks - dw TentacoolBitmasks - dw TentacruelBitmasks - dw GeodudeBitmasks - dw GravelerBitmasks - dw GolemBitmasks - dw PonytaBitmasks - dw RapidashBitmasks - dw SlowpokeBitmasks - dw SlowbroBitmasks - dw MagnemiteBitmasks - dw MagnetonBitmasks - dw FarfetchDBitmasks - dw DoduoBitmasks - dw DodrioBitmasks - dw SeelBitmasks - dw DewgongBitmasks - dw GrimerBitmasks - dw MukBitmasks - dw ShellderBitmasks - dw CloysterBitmasks - dw GastlyBitmasks - dw HaunterBitmasks - dw GengarBitmasks - dw OnixBitmasks - dw DrowzeeBitmasks - dw HypnoBitmasks - dw KrabbyBitmasks - dw KinglerBitmasks - dw VoltorbBitmasks - dw ElectrodeBitmasks - dw ExeggcuteBitmasks - dw ExeggutorBitmasks - dw CuboneBitmasks - dw MarowakBitmasks - dw HitmonleeBitmasks - dw HitmonchanBitmasks - dw LickitungBitmasks - dw KoffingBitmasks - dw WeezingBitmasks - dw RhyhornBitmasks - dw RhydonBitmasks - dw ChanseyBitmasks - dw TangelaBitmasks - dw KangaskhanBitmasks - dw HorseaBitmasks - dw SeadraBitmasks - dw GoldeenBitmasks - dw SeakingBitmasks - dw StaryuBitmasks - dw StarmieBitmasks - dw MrMimeBitmasks - dw ScytherBitmasks - dw JynxBitmasks - dw ElectabuzzBitmasks - dw MagmarBitmasks - dw PinsirBitmasks - dw TaurosBitmasks - dw MagikarpBitmasks - dw GyaradosBitmasks - dw LaprasBitmasks - dw DittoBitmasks - dw EeveeBitmasks - dw VaporeonBitmasks - dw JolteonBitmasks - dw FlareonBitmasks - dw PorygonBitmasks - dw OmanyteBitmasks - dw OmastarBitmasks - dw KabutoBitmasks - dw KabutopsBitmasks - dw AerodactylBitmasks - dw SnorlaxBitmasks - dw ArticunoBitmasks - dw ZapdosBitmasks - dw MoltresBitmasks - dw DratiniBitmasks - dw DragonairBitmasks - dw DragoniteBitmasks - dw MewtwoBitmasks - dw MewBitmasks - dw ChikoritaBitmasks - dw BayleefBitmasks - dw MeganiumBitmasks - dw CyndaquilBitmasks - dw QuilavaBitmasks - dw TyphlosionBitmasks - dw TotodileBitmasks - dw CroconawBitmasks - dw FeraligatrBitmasks - dw SentretBitmasks - dw FurretBitmasks - dw HoothootBitmasks - dw NoctowlBitmasks - dw LedybaBitmasks - dw LedianBitmasks - dw SpinarakBitmasks - dw AriadosBitmasks - dw CrobatBitmasks - dw ChinchouBitmasks - dw LanturnBitmasks - dw PichuBitmasks - dw CleffaBitmasks - dw IgglybuffBitmasks - dw TogepiBitmasks - dw TogeticBitmasks - dw NatuBitmasks - dw XatuBitmasks - dw MareepBitmasks - dw FlaaffyBitmasks - dw AmpharosBitmasks - dw BellossomBitmasks - dw MarillBitmasks - dw AzumarillBitmasks - dw SudowoodoBitmasks - dw PolitoedBitmasks - dw HoppipBitmasks - dw SkiploomBitmasks - dw JumpluffBitmasks - dw AipomBitmasks - dw SunkernBitmasks - dw SunfloraBitmasks - dw YanmaBitmasks - dw WooperBitmasks - dw QuagsireBitmasks - dw EspeonBitmasks - dw UmbreonBitmasks - dw MurkrowBitmasks - dw SlowkingBitmasks - dw MisdreavusBitmasks - dw UnownBitmasks - dw WobbuffetBitmasks - dw GirafarigBitmasks - dw PinecoBitmasks - dw ForretressBitmasks - dw DunsparceBitmasks - dw GligarBitmasks - dw SteelixBitmasks - dw SnubbullBitmasks - dw GranbullBitmasks - dw QwilfishBitmasks - dw ScizorBitmasks - dw ShuckleBitmasks - dw HeracrossBitmasks - dw SneaselBitmasks - dw TeddiursaBitmasks - dw UrsaringBitmasks - dw SlugmaBitmasks - dw MagcargoBitmasks - dw SwinubBitmasks - dw PiloswineBitmasks - dw CorsolaBitmasks - dw RemoraidBitmasks - dw OctilleryBitmasks - dw DelibirdBitmasks - dw MantineBitmasks - dw SkarmoryBitmasks - dw HoundourBitmasks - dw HoundoomBitmasks - dw KingdraBitmasks - dw PhanpyBitmasks - dw DonphanBitmasks - dw Porygon2Bitmasks - dw StantlerBitmasks - dw SmeargleBitmasks - dw TyrogueBitmasks - dw HitmontopBitmasks - dw SmoochumBitmasks - dw ElekidBitmasks - dw MagbyBitmasks - dw MiltankBitmasks - dw BlisseyBitmasks - dw RaikouBitmasks - dw EnteiBitmasks - dw SuicuneBitmasks - dw LarvitarBitmasks - dw PupitarBitmasks - dw TyranitarBitmasks - dw LugiaBitmasks - dw HoOhBitmasks - dw CelebiBitmasks diff --git a/gfx/pics/bitmasks.asm b/gfx/pics/bitmasks.asm deleted file mode 100644 index 4f142431f..000000000 --- a/gfx/pics/bitmasks.asm +++ /dev/null @@ -1,252 +0,0 @@ -BulbasaurBitmasks: INCLUDE "gfx/pics/bulbasaur/bitmask.asm" -IvysaurBitmasks: INCLUDE "gfx/pics/ivysaur/bitmask.asm" -VenusaurBitmasks: INCLUDE "gfx/pics/venusaur/bitmask.asm" -CharmanderBitmasks: INCLUDE "gfx/pics/charmander/bitmask.asm" -CharmeleonBitmasks: INCLUDE "gfx/pics/charmeleon/bitmask.asm" -CharizardBitmasks: INCLUDE "gfx/pics/charizard/bitmask.asm" -SquirtleBitmasks: INCLUDE "gfx/pics/squirtle/bitmask.asm" -WartortleBitmasks: INCLUDE "gfx/pics/wartortle/bitmask.asm" -BlastoiseBitmasks: INCLUDE "gfx/pics/blastoise/bitmask.asm" -CaterpieBitmasks: INCLUDE "gfx/pics/caterpie/bitmask.asm" -MetapodBitmasks: INCLUDE "gfx/pics/metapod/bitmask.asm" -ButterfreeBitmasks: INCLUDE "gfx/pics/butterfree/bitmask.asm" -WeedleBitmasks: INCLUDE "gfx/pics/weedle/bitmask.asm" -KakunaBitmasks: INCLUDE "gfx/pics/kakuna/bitmask.asm" -BeedrillBitmasks: INCLUDE "gfx/pics/beedrill/bitmask.asm" -PidgeyBitmasks: INCLUDE "gfx/pics/pidgey/bitmask.asm" -PidgeottoBitmasks: INCLUDE "gfx/pics/pidgeotto/bitmask.asm" -PidgeotBitmasks: INCLUDE "gfx/pics/pidgeot/bitmask.asm" -RattataBitmasks: INCLUDE "gfx/pics/rattata/bitmask.asm" -RaticateBitmasks: INCLUDE "gfx/pics/raticate/bitmask.asm" -SpearowBitmasks: INCLUDE "gfx/pics/spearow/bitmask.asm" -FearowBitmasks: INCLUDE "gfx/pics/fearow/bitmask.asm" -EkansBitmasks: INCLUDE "gfx/pics/ekans/bitmask.asm" -ArbokBitmasks: INCLUDE "gfx/pics/arbok/bitmask.asm" -PikachuBitmasks: INCLUDE "gfx/pics/pikachu/bitmask.asm" -RaichuBitmasks: INCLUDE "gfx/pics/raichu/bitmask.asm" -SandshrewBitmasks: INCLUDE "gfx/pics/sandshrew/bitmask.asm" -SandslashBitmasks: INCLUDE "gfx/pics/sandslash/bitmask.asm" -NidoranFBitmasks: INCLUDE "gfx/pics/nidoran_f/bitmask.asm" -NidorinaBitmasks: INCLUDE "gfx/pics/nidorina/bitmask.asm" -NidoqueenBitmasks: INCLUDE "gfx/pics/nidoqueen/bitmask.asm" -NidoranMBitmasks: INCLUDE "gfx/pics/nidoran_m/bitmask.asm" -NidorinoBitmasks: INCLUDE "gfx/pics/nidorino/bitmask.asm" -NidokingBitmasks: INCLUDE "gfx/pics/nidoking/bitmask.asm" -ClefairyBitmasks: INCLUDE "gfx/pics/clefairy/bitmask.asm" -ClefableBitmasks: INCLUDE "gfx/pics/clefable/bitmask.asm" -VulpixBitmasks: INCLUDE "gfx/pics/vulpix/bitmask.asm" -NinetalesBitmasks: INCLUDE "gfx/pics/ninetales/bitmask.asm" -JigglypuffBitmasks: INCLUDE "gfx/pics/jigglypuff/bitmask.asm" -WigglytuffBitmasks: INCLUDE "gfx/pics/wigglytuff/bitmask.asm" -ZubatBitmasks: INCLUDE "gfx/pics/zubat/bitmask.asm" -GolbatBitmasks: INCLUDE "gfx/pics/golbat/bitmask.asm" -OddishBitmasks: INCLUDE "gfx/pics/oddish/bitmask.asm" -GloomBitmasks: INCLUDE "gfx/pics/gloom/bitmask.asm" -VileplumeBitmasks: INCLUDE "gfx/pics/vileplume/bitmask.asm" -ParasBitmasks: INCLUDE "gfx/pics/paras/bitmask.asm" -ParasectBitmasks: INCLUDE "gfx/pics/parasect/bitmask.asm" -VenonatBitmasks: INCLUDE "gfx/pics/venonat/bitmask.asm" -VenomothBitmasks: INCLUDE "gfx/pics/venomoth/bitmask.asm" -DiglettBitmasks: INCLUDE "gfx/pics/diglett/bitmask.asm" -DugtrioBitmasks: INCLUDE "gfx/pics/dugtrio/bitmask.asm" -MeowthBitmasks: INCLUDE "gfx/pics/meowth/bitmask.asm" -PersianBitmasks: INCLUDE "gfx/pics/persian/bitmask.asm" -PsyduckBitmasks: INCLUDE "gfx/pics/psyduck/bitmask.asm" -GolduckBitmasks: INCLUDE "gfx/pics/golduck/bitmask.asm" -MankeyBitmasks: INCLUDE "gfx/pics/mankey/bitmask.asm" -PrimeapeBitmasks: INCLUDE "gfx/pics/primeape/bitmask.asm" -GrowlitheBitmasks: INCLUDE "gfx/pics/growlithe/bitmask.asm" -ArcanineBitmasks: INCLUDE "gfx/pics/arcanine/bitmask.asm" -PoliwagBitmasks: INCLUDE "gfx/pics/poliwag/bitmask.asm" -PoliwhirlBitmasks: INCLUDE "gfx/pics/poliwhirl/bitmask.asm" -PoliwrathBitmasks: INCLUDE "gfx/pics/poliwrath/bitmask.asm" -AbraBitmasks: INCLUDE "gfx/pics/abra/bitmask.asm" -KadabraBitmasks: INCLUDE "gfx/pics/kadabra/bitmask.asm" -AlakazamBitmasks: INCLUDE "gfx/pics/alakazam/bitmask.asm" -MachopBitmasks: INCLUDE "gfx/pics/machop/bitmask.asm" -MachokeBitmasks: INCLUDE "gfx/pics/machoke/bitmask.asm" -MachampBitmasks: INCLUDE "gfx/pics/machamp/bitmask.asm" -BellsproutBitmasks: INCLUDE "gfx/pics/bellsprout/bitmask.asm" -WeepinbellBitmasks: INCLUDE "gfx/pics/weepinbell/bitmask.asm" -VictreebelBitmasks: INCLUDE "gfx/pics/victreebel/bitmask.asm" -TentacoolBitmasks: INCLUDE "gfx/pics/tentacool/bitmask.asm" -TentacruelBitmasks: INCLUDE "gfx/pics/tentacruel/bitmask.asm" -GeodudeBitmasks: INCLUDE "gfx/pics/geodude/bitmask.asm" -GravelerBitmasks: INCLUDE "gfx/pics/graveler/bitmask.asm" -GolemBitmasks: INCLUDE "gfx/pics/golem/bitmask.asm" -PonytaBitmasks: INCLUDE "gfx/pics/ponyta/bitmask.asm" -RapidashBitmasks: INCLUDE "gfx/pics/rapidash/bitmask.asm" -SlowpokeBitmasks: INCLUDE "gfx/pics/slowpoke/bitmask.asm" -SlowbroBitmasks: INCLUDE "gfx/pics/slowbro/bitmask.asm" -MagnemiteBitmasks: INCLUDE "gfx/pics/magnemite/bitmask.asm" -MagnetonBitmasks: INCLUDE "gfx/pics/magneton/bitmask.asm" -FarfetchDBitmasks: INCLUDE "gfx/pics/farfetch_d/bitmask.asm" -DoduoBitmasks: INCLUDE "gfx/pics/doduo/bitmask.asm" -DodrioBitmasks: INCLUDE "gfx/pics/dodrio/bitmask.asm" -SeelBitmasks: INCLUDE "gfx/pics/seel/bitmask.asm" -DewgongBitmasks: INCLUDE "gfx/pics/dewgong/bitmask.asm" -GrimerBitmasks: INCLUDE "gfx/pics/grimer/bitmask.asm" -MukBitmasks: INCLUDE "gfx/pics/muk/bitmask.asm" -ShellderBitmasks: INCLUDE "gfx/pics/shellder/bitmask.asm" -CloysterBitmasks: INCLUDE "gfx/pics/cloyster/bitmask.asm" -GastlyBitmasks: INCLUDE "gfx/pics/gastly/bitmask.asm" -HaunterBitmasks: INCLUDE "gfx/pics/haunter/bitmask.asm" -GengarBitmasks: INCLUDE "gfx/pics/gengar/bitmask.asm" -OnixBitmasks: INCLUDE "gfx/pics/onix/bitmask.asm" -DrowzeeBitmasks: INCLUDE "gfx/pics/drowzee/bitmask.asm" -HypnoBitmasks: INCLUDE "gfx/pics/hypno/bitmask.asm" -KrabbyBitmasks: INCLUDE "gfx/pics/krabby/bitmask.asm" -KinglerBitmasks: INCLUDE "gfx/pics/kingler/bitmask.asm" -VoltorbBitmasks: INCLUDE "gfx/pics/voltorb/bitmask.asm" -ElectrodeBitmasks: INCLUDE "gfx/pics/electrode/bitmask.asm" -ExeggcuteBitmasks: INCLUDE "gfx/pics/exeggcute/bitmask.asm" -ExeggutorBitmasks: INCLUDE "gfx/pics/exeggutor/bitmask.asm" -CuboneBitmasks: INCLUDE "gfx/pics/cubone/bitmask.asm" -MarowakBitmasks: INCLUDE "gfx/pics/marowak/bitmask.asm" -HitmonleeBitmasks: INCLUDE "gfx/pics/hitmonlee/bitmask.asm" -HitmonchanBitmasks: INCLUDE "gfx/pics/hitmonchan/bitmask.asm" -LickitungBitmasks: INCLUDE "gfx/pics/lickitung/bitmask.asm" -KoffingBitmasks: INCLUDE "gfx/pics/koffing/bitmask.asm" -WeezingBitmasks: INCLUDE "gfx/pics/weezing/bitmask.asm" -RhyhornBitmasks: INCLUDE "gfx/pics/rhyhorn/bitmask.asm" -RhydonBitmasks: INCLUDE "gfx/pics/rhydon/bitmask.asm" -ChanseyBitmasks: INCLUDE "gfx/pics/chansey/bitmask.asm" -TangelaBitmasks: INCLUDE "gfx/pics/tangela/bitmask.asm" -KangaskhanBitmasks: INCLUDE "gfx/pics/kangaskhan/bitmask.asm" -HorseaBitmasks: INCLUDE "gfx/pics/horsea/bitmask.asm" -SeadraBitmasks: INCLUDE "gfx/pics/seadra/bitmask.asm" -GoldeenBitmasks: INCLUDE "gfx/pics/goldeen/bitmask.asm" -SeakingBitmasks: INCLUDE "gfx/pics/seaking/bitmask.asm" -StaryuBitmasks: INCLUDE "gfx/pics/staryu/bitmask.asm" -StarmieBitmasks: INCLUDE "gfx/pics/starmie/bitmask.asm" -MrMimeBitmasks: INCLUDE "gfx/pics/mr__mime/bitmask.asm" -ScytherBitmasks: INCLUDE "gfx/pics/scyther/bitmask.asm" -JynxBitmasks: INCLUDE "gfx/pics/jynx/bitmask.asm" -ElectabuzzBitmasks: INCLUDE "gfx/pics/electabuzz/bitmask.asm" -MagmarBitmasks: INCLUDE "gfx/pics/magmar/bitmask.asm" -PinsirBitmasks: INCLUDE "gfx/pics/pinsir/bitmask.asm" -TaurosBitmasks: INCLUDE "gfx/pics/tauros/bitmask.asm" -MagikarpBitmasks: INCLUDE "gfx/pics/magikarp/bitmask.asm" -GyaradosBitmasks: INCLUDE "gfx/pics/gyarados/bitmask.asm" -LaprasBitmasks: INCLUDE "gfx/pics/lapras/bitmask.asm" -DittoBitmasks: INCLUDE "gfx/pics/ditto/bitmask.asm" -EeveeBitmasks: INCLUDE "gfx/pics/eevee/bitmask.asm" -VaporeonBitmasks: INCLUDE "gfx/pics/vaporeon/bitmask.asm" -JolteonBitmasks: INCLUDE "gfx/pics/jolteon/bitmask.asm" -FlareonBitmasks: INCLUDE "gfx/pics/flareon/bitmask.asm" -PorygonBitmasks: INCLUDE "gfx/pics/porygon/bitmask.asm" -OmanyteBitmasks: INCLUDE "gfx/pics/omanyte/bitmask.asm" -OmastarBitmasks: INCLUDE "gfx/pics/omastar/bitmask.asm" -KabutoBitmasks: INCLUDE "gfx/pics/kabuto/bitmask.asm" -KabutopsBitmasks: INCLUDE "gfx/pics/kabutops/bitmask.asm" -AerodactylBitmasks: INCLUDE "gfx/pics/aerodactyl/bitmask.asm" -SnorlaxBitmasks: INCLUDE "gfx/pics/snorlax/bitmask.asm" -ArticunoBitmasks: INCLUDE "gfx/pics/articuno/bitmask.asm" -ZapdosBitmasks: INCLUDE "gfx/pics/zapdos/bitmask.asm" -MoltresBitmasks: INCLUDE "gfx/pics/moltres/bitmask.asm" -DratiniBitmasks: INCLUDE "gfx/pics/dratini/bitmask.asm" -DragonairBitmasks: INCLUDE "gfx/pics/dragonair/bitmask.asm" -DragoniteBitmasks: INCLUDE "gfx/pics/dragonite/bitmask.asm" -MewtwoBitmasks: INCLUDE "gfx/pics/mewtwo/bitmask.asm" -MewBitmasks: INCLUDE "gfx/pics/mew/bitmask.asm" -ChikoritaBitmasks: INCLUDE "gfx/pics/chikorita/bitmask.asm" -BayleefBitmasks: INCLUDE "gfx/pics/bayleef/bitmask.asm" -MeganiumBitmasks: INCLUDE "gfx/pics/meganium/bitmask.asm" -CyndaquilBitmasks: INCLUDE "gfx/pics/cyndaquil/bitmask.asm" -QuilavaBitmasks: INCLUDE "gfx/pics/quilava/bitmask.asm" -TyphlosionBitmasks: INCLUDE "gfx/pics/typhlosion/bitmask.asm" -TotodileBitmasks: INCLUDE "gfx/pics/totodile/bitmask.asm" -CroconawBitmasks: INCLUDE "gfx/pics/croconaw/bitmask.asm" -FeraligatrBitmasks: INCLUDE "gfx/pics/feraligatr/bitmask.asm" -SentretBitmasks: INCLUDE "gfx/pics/sentret/bitmask.asm" -FurretBitmasks: INCLUDE "gfx/pics/furret/bitmask.asm" -HoothootBitmasks: INCLUDE "gfx/pics/hoothoot/bitmask.asm" -NoctowlBitmasks: INCLUDE "gfx/pics/noctowl/bitmask.asm" -LedybaBitmasks: INCLUDE "gfx/pics/ledyba/bitmask.asm" -LedianBitmasks: INCLUDE "gfx/pics/ledian/bitmask.asm" -SpinarakBitmasks: INCLUDE "gfx/pics/spinarak/bitmask.asm" -AriadosBitmasks: INCLUDE "gfx/pics/ariados/bitmask.asm" -CrobatBitmasks: INCLUDE "gfx/pics/crobat/bitmask.asm" -ChinchouBitmasks: INCLUDE "gfx/pics/chinchou/bitmask.asm" -LanturnBitmasks: INCLUDE "gfx/pics/lanturn/bitmask.asm" -PichuBitmasks: INCLUDE "gfx/pics/pichu/bitmask.asm" -CleffaBitmasks: INCLUDE "gfx/pics/cleffa/bitmask.asm" -IgglybuffBitmasks: INCLUDE "gfx/pics/igglybuff/bitmask.asm" -TogepiBitmasks: INCLUDE "gfx/pics/togepi/bitmask.asm" -TogeticBitmasks: INCLUDE "gfx/pics/togetic/bitmask.asm" -NatuBitmasks: INCLUDE "gfx/pics/natu/bitmask.asm" -XatuBitmasks: INCLUDE "gfx/pics/xatu/bitmask.asm" -MareepBitmasks: INCLUDE "gfx/pics/mareep/bitmask.asm" -FlaaffyBitmasks: INCLUDE "gfx/pics/flaaffy/bitmask.asm" -AmpharosBitmasks: INCLUDE "gfx/pics/ampharos/bitmask.asm" -BellossomBitmasks: INCLUDE "gfx/pics/bellossom/bitmask.asm" -MarillBitmasks: INCLUDE "gfx/pics/marill/bitmask.asm" -AzumarillBitmasks: INCLUDE "gfx/pics/azumarill/bitmask.asm" -SudowoodoBitmasks: INCLUDE "gfx/pics/sudowoodo/bitmask.asm" -PolitoedBitmasks: INCLUDE "gfx/pics/politoed/bitmask.asm" -HoppipBitmasks: INCLUDE "gfx/pics/hoppip/bitmask.asm" -SkiploomBitmasks: INCLUDE "gfx/pics/skiploom/bitmask.asm" -JumpluffBitmasks: INCLUDE "gfx/pics/jumpluff/bitmask.asm" -AipomBitmasks: INCLUDE "gfx/pics/aipom/bitmask.asm" -SunkernBitmasks: INCLUDE "gfx/pics/sunkern/bitmask.asm" -SunfloraBitmasks: INCLUDE "gfx/pics/sunflora/bitmask.asm" -YanmaBitmasks: INCLUDE "gfx/pics/yanma/bitmask.asm" -WooperBitmasks: INCLUDE "gfx/pics/wooper/bitmask.asm" -QuagsireBitmasks: INCLUDE "gfx/pics/quagsire/bitmask.asm" -EspeonBitmasks: INCLUDE "gfx/pics/espeon/bitmask.asm" -UmbreonBitmasks: INCLUDE "gfx/pics/umbreon/bitmask.asm" -MurkrowBitmasks: INCLUDE "gfx/pics/murkrow/bitmask.asm" -SlowkingBitmasks: INCLUDE "gfx/pics/slowking/bitmask.asm" -MisdreavusBitmasks: INCLUDE "gfx/pics/misdreavus/bitmask.asm" -UnownBitmasks: INCLUDE "gfx/pics/unown/bitmask.asm" -WobbuffetBitmasks: INCLUDE "gfx/pics/wobbuffet/bitmask.asm" -GirafarigBitmasks: INCLUDE "gfx/pics/girafarig/bitmask.asm" -PinecoBitmasks: INCLUDE "gfx/pics/pineco/bitmask.asm" -ForretressBitmasks: INCLUDE "gfx/pics/forretress/bitmask.asm" -DunsparceBitmasks: INCLUDE "gfx/pics/dunsparce/bitmask.asm" -GligarBitmasks: INCLUDE "gfx/pics/gligar/bitmask.asm" -SteelixBitmasks: INCLUDE "gfx/pics/steelix/bitmask.asm" -SnubbullBitmasks: INCLUDE "gfx/pics/snubbull/bitmask.asm" -GranbullBitmasks: INCLUDE "gfx/pics/granbull/bitmask.asm" -QwilfishBitmasks: INCLUDE "gfx/pics/qwilfish/bitmask.asm" -ScizorBitmasks: INCLUDE "gfx/pics/scizor/bitmask.asm" -ShuckleBitmasks: INCLUDE "gfx/pics/shuckle/bitmask.asm" -HeracrossBitmasks: INCLUDE "gfx/pics/heracross/bitmask.asm" -SneaselBitmasks: INCLUDE "gfx/pics/sneasel/bitmask.asm" -TeddiursaBitmasks: INCLUDE "gfx/pics/teddiursa/bitmask.asm" -UrsaringBitmasks: INCLUDE "gfx/pics/ursaring/bitmask.asm" -SlugmaBitmasks: INCLUDE "gfx/pics/slugma/bitmask.asm" -MagcargoBitmasks: INCLUDE "gfx/pics/magcargo/bitmask.asm" -SwinubBitmasks: INCLUDE "gfx/pics/swinub/bitmask.asm" -PiloswineBitmasks: INCLUDE "gfx/pics/piloswine/bitmask.asm" -CorsolaBitmasks: INCLUDE "gfx/pics/corsola/bitmask.asm" -RemoraidBitmasks: INCLUDE "gfx/pics/remoraid/bitmask.asm" -OctilleryBitmasks: INCLUDE "gfx/pics/octillery/bitmask.asm" -DelibirdBitmasks: INCLUDE "gfx/pics/delibird/bitmask.asm" -MantineBitmasks: INCLUDE "gfx/pics/mantine/bitmask.asm" -SkarmoryBitmasks: INCLUDE "gfx/pics/skarmory/bitmask.asm" -HoundourBitmasks: INCLUDE "gfx/pics/houndour/bitmask.asm" -HoundoomBitmasks: INCLUDE "gfx/pics/houndoom/bitmask.asm" -KingdraBitmasks: INCLUDE "gfx/pics/kingdra/bitmask.asm" -PhanpyBitmasks: INCLUDE "gfx/pics/phanpy/bitmask.asm" -DonphanBitmasks: INCLUDE "gfx/pics/donphan/bitmask.asm" -Porygon2Bitmasks: INCLUDE "gfx/pics/porygon2/bitmask.asm" -StantlerBitmasks: INCLUDE "gfx/pics/stantler/bitmask.asm" -SmeargleBitmasks: INCLUDE "gfx/pics/smeargle/bitmask.asm" -TyrogueBitmasks: INCLUDE "gfx/pics/tyrogue/bitmask.asm" -HitmontopBitmasks: INCLUDE "gfx/pics/hitmontop/bitmask.asm" -SmoochumBitmasks: INCLUDE "gfx/pics/smoochum/bitmask.asm" -ElekidBitmasks: INCLUDE "gfx/pics/elekid/bitmask.asm" -MagbyBitmasks: INCLUDE "gfx/pics/magby/bitmask.asm" -MiltankBitmasks: INCLUDE "gfx/pics/miltank/bitmask.asm" -BlisseyBitmasks: INCLUDE "gfx/pics/blissey/bitmask.asm" -RaikouBitmasks: INCLUDE "gfx/pics/raikou/bitmask.asm" -EnteiBitmasks: INCLUDE "gfx/pics/entei/bitmask.asm" -SuicuneBitmasks: INCLUDE "gfx/pics/suicune/bitmask.asm" -LarvitarBitmasks: INCLUDE "gfx/pics/larvitar/bitmask.asm" -PupitarBitmasks: INCLUDE "gfx/pics/pupitar/bitmask.asm" -TyranitarBitmasks: INCLUDE "gfx/pics/tyranitar/bitmask.asm" -LugiaBitmasks: INCLUDE "gfx/pics/lugia/bitmask.asm" -HoOhBitmasks: INCLUDE "gfx/pics/ho_oh/bitmask.asm" -CelebiBitmasks: INCLUDE "gfx/pics/celebi/bitmask.asm" -EggBitmasks: INCLUDE "gfx/pics/egg/bitmask.asm" diff --git a/gfx/pics/blastoise/anim0.asm b/gfx/pics/blastoise/anim0.asm deleted file mode 100644 index 2d8b464d0..000000000 --- a/gfx/pics/blastoise/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 06 - frame 2, 40 - frame 3, 08 - frame 1, 04 - endanim -; 0xd0908 diff --git a/gfx/pics/blastoise/anim1.asm b/gfx/pics/blastoise/anim1.asm deleted file mode 100644 index b25c75e5a..000000000 --- a/gfx/pics/blastoise/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 12 - frame 4, 12 - dorepeat 1 - endanim -; 0xd18f0 diff --git a/gfx/pics/blastoise/back.2bpp.lz.b90e8d5a b/gfx/pics/blastoise/back.2bpp.lz.b90e8d5a deleted file mode 100644 index 5e27c9989..000000000 Binary files a/gfx/pics/blastoise/back.2bpp.lz.b90e8d5a and /dev/null differ diff --git a/gfx/pics/blastoise/back.png b/gfx/pics/blastoise/back.png deleted file mode 100644 index 9f236fb94..000000000 Binary files a/gfx/pics/blastoise/back.png and /dev/null differ diff --git a/gfx/pics/blastoise/front.animated.2bpp.lz.3899aed0 b/gfx/pics/blastoise/front.animated.2bpp.lz.3899aed0 deleted file mode 100644 index 33148b076..000000000 Binary files a/gfx/pics/blastoise/front.animated.2bpp.lz.3899aed0 and /dev/null differ diff --git a/gfx/pics/blastoise/front.png b/gfx/pics/blastoise/front.png deleted file mode 100644 index f6623fe78..000000000 Binary files a/gfx/pics/blastoise/front.png and /dev/null differ diff --git a/gfx/pics/blastoise/shiny.pal b/gfx/pics/blastoise/shiny.pal deleted file mode 100644 index dbde45ec9..000000000 --- a/gfx/pics/blastoise/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 21, 07 - RGB 16, 16, 20 - diff --git a/gfx/pics/blissey/anim0.asm b/gfx/pics/blissey/anim0.asm deleted file mode 100644 index 097ecc094..000000000 --- a/gfx/pics/blissey/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 12 - frame 2, 14 - frame 1, 10 - frame 3, 04 - frame 0, 06 - frame 3, 08 - endanim -; 0xd1607 diff --git a/gfx/pics/blissey/anim1.asm b/gfx/pics/blissey/anim1.asm deleted file mode 100644 index 846d85003..000000000 --- a/gfx/pics/blissey/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd21c1 diff --git a/gfx/pics/blissey/back.2bpp.lz.d2763673 b/gfx/pics/blissey/back.2bpp.lz.d2763673 deleted file mode 100644 index 00749ddee..000000000 Binary files a/gfx/pics/blissey/back.2bpp.lz.d2763673 and /dev/null differ diff --git a/gfx/pics/blissey/back.png b/gfx/pics/blissey/back.png deleted file mode 100644 index 858ad5d40..000000000 Binary files a/gfx/pics/blissey/back.png and /dev/null differ diff --git a/gfx/pics/blissey/front.animated.2bpp.lz.04f2353a b/gfx/pics/blissey/front.animated.2bpp.lz.04f2353a deleted file mode 100644 index 76f492c43..000000000 Binary files a/gfx/pics/blissey/front.animated.2bpp.lz.04f2353a and /dev/null differ diff --git a/gfx/pics/blissey/front.png b/gfx/pics/blissey/front.png deleted file mode 100644 index 3d44eb5d6..000000000 Binary files a/gfx/pics/blissey/front.png and /dev/null differ diff --git a/gfx/pics/blissey/shiny.pal b/gfx/pics/blissey/shiny.pal deleted file mode 100644 index 862858e75..000000000 --- a/gfx/pics/blissey/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 13, 29 - RGB 14, 13, 24 - diff --git a/gfx/pics/bulbasaur/anim0.asm b/gfx/pics/bulbasaur/anim0.asm deleted file mode 100644 index e5c1cbe1e..000000000 --- a/gfx/pics/bulbasaur/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 10 - frame 2, 10 - frame 1, 08 - frame 2, 06 - frame 4, 20 - frame 3, 06 - frame 0, 05 - frame 5, 05 - endanim -; 0xd089c diff --git a/gfx/pics/bulbasaur/anim1.asm b/gfx/pics/bulbasaur/anim1.asm deleted file mode 100644 index cfc0f54e9..000000000 --- a/gfx/pics/bulbasaur/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 5, 05 - frame 0, 05 - frame 5, 05 - endanim -; 0xd18a0 diff --git a/gfx/pics/bulbasaur/back.2bpp.lz.84f8d1c4 b/gfx/pics/bulbasaur/back.2bpp.lz.84f8d1c4 deleted file mode 100644 index 44f8fa450..000000000 Binary files a/gfx/pics/bulbasaur/back.2bpp.lz.84f8d1c4 and /dev/null differ diff --git a/gfx/pics/bulbasaur/back.png b/gfx/pics/bulbasaur/back.png deleted file mode 100644 index c37b4b2c2..000000000 Binary files a/gfx/pics/bulbasaur/back.png and /dev/null differ diff --git a/gfx/pics/bulbasaur/front.animated.2bpp.lz.04627405 b/gfx/pics/bulbasaur/front.animated.2bpp.lz.04627405 deleted file mode 100644 index fc4550001..000000000 Binary files a/gfx/pics/bulbasaur/front.animated.2bpp.lz.04627405 and /dev/null differ diff --git a/gfx/pics/bulbasaur/front.png b/gfx/pics/bulbasaur/front.png deleted file mode 100644 index 0bd513962..000000000 Binary files a/gfx/pics/bulbasaur/front.png and /dev/null differ diff --git a/gfx/pics/bulbasaur/shiny.pal b/gfx/pics/bulbasaur/shiny.pal deleted file mode 100644 index bcd5ad011..000000000 --- a/gfx/pics/bulbasaur/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 28, 11 - RGB 31, 10, 06 - diff --git a/gfx/pics/butterfree/anim0.asm b/gfx/pics/butterfree/anim0.asm deleted file mode 100644 index d31161a28..000000000 --- a/gfx/pics/butterfree/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 04 - frame 2, 24 - setrepeat 3 - frame 0, 06 - frame 1, 06 - dorepeat 3 - endanim -; 0xd0929 diff --git a/gfx/pics/butterfree/anim1.asm b/gfx/pics/butterfree/anim1.asm deleted file mode 100644 index 1eb152f28..000000000 --- a/gfx/pics/butterfree/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 1, 10 - dorepeat 1 - endanim -; 0xd190d diff --git a/gfx/pics/butterfree/back.2bpp.lz.a8543d86 b/gfx/pics/butterfree/back.2bpp.lz.a8543d86 deleted file mode 100644 index 6d741f493..000000000 Binary files a/gfx/pics/butterfree/back.2bpp.lz.a8543d86 and /dev/null differ diff --git a/gfx/pics/butterfree/back.png b/gfx/pics/butterfree/back.png deleted file mode 100644 index 18757bb3e..000000000 Binary files a/gfx/pics/butterfree/back.png and /dev/null differ diff --git a/gfx/pics/butterfree/front.animated.2bpp.lz.33ba7e24 b/gfx/pics/butterfree/front.animated.2bpp.lz.33ba7e24 deleted file mode 100644 index bf8b7a690..000000000 Binary files a/gfx/pics/butterfree/front.animated.2bpp.lz.33ba7e24 and /dev/null differ diff --git a/gfx/pics/butterfree/front.png b/gfx/pics/butterfree/front.png deleted file mode 100644 index 5b60425bf..000000000 Binary files a/gfx/pics/butterfree/front.png and /dev/null differ diff --git a/gfx/pics/butterfree/shiny.pal b/gfx/pics/butterfree/shiny.pal deleted file mode 100644 index 75a74906b..000000000 --- a/gfx/pics/butterfree/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 15, 23 - RGB 15, 31, 00 - diff --git a/gfx/pics/caterpie/anim0.asm b/gfx/pics/caterpie/anim0.asm deleted file mode 100644 index a5cf5f238..000000000 --- a/gfx/pics/caterpie/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - frame 1, 08 - frame 2, 12 - frame 1, 12 - frame 2, 08 - frame 1, 08 - endanim -; 0xd0915 diff --git a/gfx/pics/caterpie/anim1.asm b/gfx/pics/caterpie/anim1.asm deleted file mode 100644 index e75b83f5c..000000000 --- a/gfx/pics/caterpie/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd18f9 diff --git a/gfx/pics/caterpie/back.2bpp.lz.57e32015 b/gfx/pics/caterpie/back.2bpp.lz.57e32015 deleted file mode 100644 index a3788d1e4..000000000 Binary files a/gfx/pics/caterpie/back.2bpp.lz.57e32015 and /dev/null differ diff --git a/gfx/pics/caterpie/back.png b/gfx/pics/caterpie/back.png deleted file mode 100644 index 66add2336..000000000 Binary files a/gfx/pics/caterpie/back.png and /dev/null differ diff --git a/gfx/pics/caterpie/front.animated.2bpp.lz.ec4f7cb8 b/gfx/pics/caterpie/front.animated.2bpp.lz.ec4f7cb8 deleted file mode 100644 index d3036d9ff..000000000 Binary files a/gfx/pics/caterpie/front.animated.2bpp.lz.ec4f7cb8 and /dev/null differ diff --git a/gfx/pics/caterpie/front.png b/gfx/pics/caterpie/front.png deleted file mode 100644 index 78130b1aa..000000000 Binary files a/gfx/pics/caterpie/front.png and /dev/null differ diff --git a/gfx/pics/caterpie/shiny.pal b/gfx/pics/caterpie/shiny.pal deleted file mode 100644 index 32410e492..000000000 --- a/gfx/pics/caterpie/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 24, 06 - RGB 31, 12, 17 - diff --git a/gfx/pics/celebi/anim0.asm b/gfx/pics/celebi/anim0.asm deleted file mode 100644 index 9f218a43e..000000000 --- a/gfx/pics/celebi/anim0.asm +++ /dev/null @@ -1,16 +0,0 @@ - frame 1, 05 - frame 2, 05 - frame 3, 05 - frame 4, 05 - frame 5, 05 - frame 6, 05 - frame 7, 05 - frame 8, 05 - frame 9, 05 - frame 10, 05 - setrepeat 3 - frame 12, 05 - frame 13, 05 - dorepeat 11 - endanim -; 0xd1696 diff --git a/gfx/pics/celebi/anim1.asm b/gfx/pics/celebi/anim1.asm deleted file mode 100644 index 6162488db..000000000 --- a/gfx/pics/celebi/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 07 - frame 11, 07 - setrepeat 2 - frame 0, 05 - frame 11, 05 - dorepeat 3 - endanim -; 0xd2222 diff --git a/gfx/pics/celebi/back.2bpp.lz.17ea5fe6 b/gfx/pics/celebi/back.2bpp.lz.17ea5fe6 deleted file mode 100644 index e8153224c..000000000 Binary files a/gfx/pics/celebi/back.2bpp.lz.17ea5fe6 and /dev/null differ diff --git a/gfx/pics/celebi/back.png b/gfx/pics/celebi/back.png deleted file mode 100644 index ebb79c020..000000000 Binary files a/gfx/pics/celebi/back.png and /dev/null differ diff --git a/gfx/pics/celebi/front.animated.2bpp.lz.16f259a5 b/gfx/pics/celebi/front.animated.2bpp.lz.16f259a5 deleted file mode 100644 index afc41bee7..000000000 Binary files a/gfx/pics/celebi/front.animated.2bpp.lz.16f259a5 and /dev/null differ diff --git a/gfx/pics/celebi/front.png b/gfx/pics/celebi/front.png deleted file mode 100644 index 66bcd2e70..000000000 Binary files a/gfx/pics/celebi/front.png and /dev/null differ diff --git a/gfx/pics/celebi/shiny.pal b/gfx/pics/celebi/shiny.pal deleted file mode 100644 index 1d73c8043..000000000 --- a/gfx/pics/celebi/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 15, 15 - RGB 15, 04, 18 - diff --git a/gfx/pics/chansey/anim0.asm b/gfx/pics/chansey/anim0.asm deleted file mode 100644 index 75de3b32b..000000000 --- a/gfx/pics/chansey/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 06 - frame 4, 06 - frame 1, 06 - frame 2, 10 - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 5 - endanim -; 0xd0f26 diff --git a/gfx/pics/chansey/anim1.asm b/gfx/pics/chansey/anim1.asm deleted file mode 100644 index a78f8cf88..000000000 --- a/gfx/pics/chansey/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd1d16 diff --git a/gfx/pics/chansey/back.2bpp.lz.14d90ba1 b/gfx/pics/chansey/back.2bpp.lz.14d90ba1 deleted file mode 100644 index 239df2d63..000000000 Binary files a/gfx/pics/chansey/back.2bpp.lz.14d90ba1 and /dev/null differ diff --git a/gfx/pics/chansey/back.png b/gfx/pics/chansey/back.png deleted file mode 100644 index ea2296b37..000000000 Binary files a/gfx/pics/chansey/back.png and /dev/null differ diff --git a/gfx/pics/chansey/front.animated.2bpp.lz.158fc381 b/gfx/pics/chansey/front.animated.2bpp.lz.158fc381 deleted file mode 100644 index 1fc457f19..000000000 Binary files a/gfx/pics/chansey/front.animated.2bpp.lz.158fc381 and /dev/null differ diff --git a/gfx/pics/chansey/front.png b/gfx/pics/chansey/front.png deleted file mode 100644 index 0213b874d..000000000 Binary files a/gfx/pics/chansey/front.png and /dev/null differ diff --git a/gfx/pics/chansey/shiny.pal b/gfx/pics/chansey/shiny.pal deleted file mode 100644 index 4d52ad934..000000000 --- a/gfx/pics/chansey/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 25, 19 - RGB 13, 19, 01 - diff --git a/gfx/pics/charizard/anim0.asm b/gfx/pics/charizard/anim0.asm deleted file mode 100644 index b258e35c7..000000000 --- a/gfx/pics/charizard/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - frame 1, 16 - setrepeat 2 - frame 2, 09 - frame 1, 09 - dorepeat 3 - endanim -; 0xd08e1 diff --git a/gfx/pics/charizard/anim1.asm b/gfx/pics/charizard/anim1.asm deleted file mode 100644 index daffccb9d..000000000 --- a/gfx/pics/charizard/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd18d5 diff --git a/gfx/pics/charizard/back.2bpp.lz.f04ac62c b/gfx/pics/charizard/back.2bpp.lz.f04ac62c deleted file mode 100644 index db1d9c9ea..000000000 Binary files a/gfx/pics/charizard/back.2bpp.lz.f04ac62c and /dev/null differ diff --git a/gfx/pics/charizard/back.png b/gfx/pics/charizard/back.png deleted file mode 100644 index 2ad954963..000000000 Binary files a/gfx/pics/charizard/back.png and /dev/null differ diff --git a/gfx/pics/charizard/front.animated.2bpp.lz.0068f820 b/gfx/pics/charizard/front.animated.2bpp.lz.0068f820 deleted file mode 100644 index aab0fda99..000000000 Binary files a/gfx/pics/charizard/front.animated.2bpp.lz.0068f820 and /dev/null differ diff --git a/gfx/pics/charizard/front.png b/gfx/pics/charizard/front.png deleted file mode 100644 index 1cb0df943..000000000 Binary files a/gfx/pics/charizard/front.png and /dev/null differ diff --git a/gfx/pics/charizard/shiny.pal b/gfx/pics/charizard/shiny.pal deleted file mode 100644 index 88c195d74..000000000 --- a/gfx/pics/charizard/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 15, 21 - RGB 08, 21, 14 - diff --git a/gfx/pics/charmander/anim0.asm b/gfx/pics/charmander/anim0.asm deleted file mode 100644 index 72a0fe83d..000000000 --- a/gfx/pics/charmander/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 04 - frame 1, 08 - frame 2, 24 - frame 1, 08 - frame 4, 10 - frame 0, 10 - frame 4, 10 - endanim -; 0xd08c5 diff --git a/gfx/pics/charmander/anim1.asm b/gfx/pics/charmander/anim1.asm deleted file mode 100644 index 219b5407f..000000000 --- a/gfx/pics/charmander/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd18bf diff --git a/gfx/pics/charmander/back.2bpp.lz.bcb371c6 b/gfx/pics/charmander/back.2bpp.lz.bcb371c6 deleted file mode 100644 index e8eb5eb4e..000000000 Binary files a/gfx/pics/charmander/back.2bpp.lz.bcb371c6 and /dev/null differ diff --git a/gfx/pics/charmander/back.png b/gfx/pics/charmander/back.png deleted file mode 100644 index b5e6cc5a7..000000000 Binary files a/gfx/pics/charmander/back.png and /dev/null differ diff --git a/gfx/pics/charmander/front.animated.2bpp.lz.704bfc17 b/gfx/pics/charmander/front.animated.2bpp.lz.704bfc17 deleted file mode 100644 index 7cc31694b..000000000 Binary files a/gfx/pics/charmander/front.animated.2bpp.lz.704bfc17 and /dev/null differ diff --git a/gfx/pics/charmander/front.png b/gfx/pics/charmander/front.png deleted file mode 100644 index ba365e42a..000000000 Binary files a/gfx/pics/charmander/front.png and /dev/null differ diff --git a/gfx/pics/charmander/shiny.pal b/gfx/pics/charmander/shiny.pal deleted file mode 100644 index d7a346bd8..000000000 --- a/gfx/pics/charmander/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 24, 06 - RGB 31, 16, 02 - diff --git a/gfx/pics/charmeleon/anim0.asm b/gfx/pics/charmeleon/anim0.asm deleted file mode 100644 index 30eeae979..000000000 --- a/gfx/pics/charmeleon/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 3, 08 - frame 2, 08 - frame 3, 08 - frame 2, 08 - frame 1, 15 - frame 3, 08 - frame 4, 30 - endanim -; 0xd08d4 diff --git a/gfx/pics/charmeleon/anim1.asm b/gfx/pics/charmeleon/anim1.asm deleted file mode 100644 index d3320e33c..000000000 --- a/gfx/pics/charmeleon/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 3, 08 - frame 4, 15 - setrepeat 2 - frame 0, 08 - frame 1, 10 - dorepeat 3 - endanim -; 0xd18cc diff --git a/gfx/pics/charmeleon/back.2bpp.lz.cf73268f b/gfx/pics/charmeleon/back.2bpp.lz.cf73268f deleted file mode 100644 index aec0cd7b2..000000000 Binary files a/gfx/pics/charmeleon/back.2bpp.lz.cf73268f and /dev/null differ diff --git a/gfx/pics/charmeleon/back.png b/gfx/pics/charmeleon/back.png deleted file mode 100644 index 60eb4666f..000000000 Binary files a/gfx/pics/charmeleon/back.png and /dev/null differ diff --git a/gfx/pics/charmeleon/front.animated.2bpp.lz.0e629968 b/gfx/pics/charmeleon/front.animated.2bpp.lz.0e629968 deleted file mode 100644 index efe789dad..000000000 Binary files a/gfx/pics/charmeleon/front.animated.2bpp.lz.0e629968 and /dev/null differ diff --git a/gfx/pics/charmeleon/front.png b/gfx/pics/charmeleon/front.png deleted file mode 100644 index 44558255f..000000000 Binary files a/gfx/pics/charmeleon/front.png and /dev/null differ diff --git a/gfx/pics/charmeleon/shiny.pal b/gfx/pics/charmeleon/shiny.pal deleted file mode 100644 index 7a86d2cb1..000000000 --- a/gfx/pics/charmeleon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 21, 15 - RGB 23, 09, 13 - diff --git a/gfx/pics/chikorita/anim0.asm b/gfx/pics/chikorita/anim0.asm deleted file mode 100644 index 2b8fa7d35..000000000 --- a/gfx/pics/chikorita/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 04 - frame 1, 24 - frame 0, 08 - setrepeat 2 - frame 2, 03 - frame 3, 04 - frame 4, 05 - dorepeat 4 - endanim -; 0xd1165 diff --git a/gfx/pics/chikorita/anim1.asm b/gfx/pics/chikorita/anim1.asm deleted file mode 100644 index 9003c3ff2..000000000 --- a/gfx/pics/chikorita/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 5, 06 - dorepeat 1 - endanim -; 0xd1e9f diff --git a/gfx/pics/chikorita/back.2bpp.lz.27a21938 b/gfx/pics/chikorita/back.2bpp.lz.27a21938 deleted file mode 100644 index e98365a2b..000000000 Binary files a/gfx/pics/chikorita/back.2bpp.lz.27a21938 and /dev/null differ diff --git a/gfx/pics/chikorita/back.png b/gfx/pics/chikorita/back.png deleted file mode 100644 index 5ce5ae068..000000000 Binary files a/gfx/pics/chikorita/back.png and /dev/null differ diff --git a/gfx/pics/chikorita/front.animated.2bpp.lz.18de5fe9 b/gfx/pics/chikorita/front.animated.2bpp.lz.18de5fe9 deleted file mode 100644 index 008c4ec2d..000000000 Binary files a/gfx/pics/chikorita/front.animated.2bpp.lz.18de5fe9 and /dev/null differ diff --git a/gfx/pics/chikorita/front.png b/gfx/pics/chikorita/front.png deleted file mode 100644 index 584f05cbc..000000000 Binary files a/gfx/pics/chikorita/front.png and /dev/null differ diff --git a/gfx/pics/chikorita/shiny.pal b/gfx/pics/chikorita/shiny.pal deleted file mode 100644 index c2ff6a3f8..000000000 --- a/gfx/pics/chikorita/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 23, 12 - RGB 26, 14, 00 - diff --git a/gfx/pics/chinchou/anim0.asm b/gfx/pics/chinchou/anim0.asm deleted file mode 100644 index f765c151a..000000000 --- a/gfx/pics/chinchou/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - setrepeat 2 - frame 2, 05 - frame 1, 05 - dorepeat 1 - setrepeat 7 - frame 3, 02 - frame 0, 01 - dorepeat 5 - frame 3, 10 - endanim -; 0xd1271 diff --git a/gfx/pics/chinchou/anim1.asm b/gfx/pics/chinchou/anim1.asm deleted file mode 100644 index bf38f8d87..000000000 --- a/gfx/pics/chinchou/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1f4d diff --git a/gfx/pics/chinchou/back.2bpp.lz.ea061e91 b/gfx/pics/chinchou/back.2bpp.lz.ea061e91 deleted file mode 100644 index 744af1ad4..000000000 Binary files a/gfx/pics/chinchou/back.2bpp.lz.ea061e91 and /dev/null differ diff --git a/gfx/pics/chinchou/back.png b/gfx/pics/chinchou/back.png deleted file mode 100644 index 5de7df3ba..000000000 Binary files a/gfx/pics/chinchou/back.png and /dev/null differ diff --git a/gfx/pics/chinchou/front.animated.2bpp.lz.901aa690 b/gfx/pics/chinchou/front.animated.2bpp.lz.901aa690 deleted file mode 100644 index b5db65701..000000000 Binary files a/gfx/pics/chinchou/front.animated.2bpp.lz.901aa690 and /dev/null differ diff --git a/gfx/pics/chinchou/front.png b/gfx/pics/chinchou/front.png deleted file mode 100644 index 4af95c53e..000000000 Binary files a/gfx/pics/chinchou/front.png and /dev/null differ diff --git a/gfx/pics/chinchou/shiny.pal b/gfx/pics/chinchou/shiny.pal deleted file mode 100644 index 334561248..000000000 --- a/gfx/pics/chinchou/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 28, 12 - RGB 12, 14, 20 - diff --git a/gfx/pics/clefable/anim0.asm b/gfx/pics/clefable/anim0.asm deleted file mode 100644 index d442807e8..000000000 --- a/gfx/pics/clefable/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 04 - frame 1, 10 - frame 2, 10 - frame 1, 10 - endanim -; 0xd0aa7 diff --git a/gfx/pics/clefable/anim1.asm b/gfx/pics/clefable/anim1.asm deleted file mode 100644 index 2b024ffd8..000000000 --- a/gfx/pics/clefable/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 3, 07 - dorepeat 1 - endanim -; 0xd1a29 diff --git a/gfx/pics/clefable/back.2bpp.lz.d57ec142 b/gfx/pics/clefable/back.2bpp.lz.d57ec142 deleted file mode 100644 index 1bcb8cbcd..000000000 Binary files a/gfx/pics/clefable/back.2bpp.lz.d57ec142 and /dev/null differ diff --git a/gfx/pics/clefable/back.png b/gfx/pics/clefable/back.png deleted file mode 100644 index b049faa13..000000000 Binary files a/gfx/pics/clefable/back.png and /dev/null differ diff --git a/gfx/pics/clefable/front.animated.2bpp.lz.59d160ad b/gfx/pics/clefable/front.animated.2bpp.lz.59d160ad deleted file mode 100644 index 4fb424305..000000000 Binary files a/gfx/pics/clefable/front.animated.2bpp.lz.59d160ad and /dev/null differ diff --git a/gfx/pics/clefable/front.png b/gfx/pics/clefable/front.png deleted file mode 100644 index 0b85d5f7d..000000000 Binary files a/gfx/pics/clefable/front.png and /dev/null differ diff --git a/gfx/pics/clefable/shiny.pal b/gfx/pics/clefable/shiny.pal deleted file mode 100644 index 1c0871557..000000000 --- a/gfx/pics/clefable/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 13, 25 - RGB 08, 18, 00 - diff --git a/gfx/pics/clefairy/anim0.asm b/gfx/pics/clefairy/anim0.asm deleted file mode 100644 index 9905c4fcc..000000000 --- a/gfx/pics/clefairy/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 2, 06 - frame 1, 06 - frame 2, 06 - setrepeat 3 - frame 0, 05 - frame 3, 05 - dorepeat 4 - endanim -; 0xd0a9e diff --git a/gfx/pics/clefairy/anim1.asm b/gfx/pics/clefairy/anim1.asm deleted file mode 100644 index c93613467..000000000 --- a/gfx/pics/clefairy/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 4, 12 - frame 5, 12 - dorepeat 1 - frame 0, 05 - frame 3, 05 - endanim -; 0xd1a20 diff --git a/gfx/pics/clefairy/back.2bpp.lz.f8aff3dd b/gfx/pics/clefairy/back.2bpp.lz.f8aff3dd deleted file mode 100644 index a6a5ecb82..000000000 Binary files a/gfx/pics/clefairy/back.2bpp.lz.f8aff3dd and /dev/null differ diff --git a/gfx/pics/clefairy/back.png b/gfx/pics/clefairy/back.png deleted file mode 100644 index 76f475ea0..000000000 Binary files a/gfx/pics/clefairy/back.png and /dev/null differ diff --git a/gfx/pics/clefairy/front.animated.2bpp.lz.0918b60d b/gfx/pics/clefairy/front.animated.2bpp.lz.0918b60d deleted file mode 100644 index d8adc2e2e..000000000 Binary files a/gfx/pics/clefairy/front.animated.2bpp.lz.0918b60d and /dev/null differ diff --git a/gfx/pics/clefairy/front.png b/gfx/pics/clefairy/front.png deleted file mode 100644 index 70e63d454..000000000 Binary files a/gfx/pics/clefairy/front.png and /dev/null differ diff --git a/gfx/pics/clefairy/shiny.pal b/gfx/pics/clefairy/shiny.pal deleted file mode 100644 index 1c0871557..000000000 --- a/gfx/pics/clefairy/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 13, 25 - RGB 08, 18, 00 - diff --git a/gfx/pics/cleffa/anim0.asm b/gfx/pics/cleffa/anim0.asm deleted file mode 100644 index 37f3da590..000000000 --- a/gfx/pics/cleffa/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 10 - frame 2, 10 - frame 3, 10 - endanim -; 0xd1290 diff --git a/gfx/pics/cleffa/anim1.asm b/gfx/pics/cleffa/anim1.asm deleted file mode 100644 index 129f123c2..000000000 --- a/gfx/pics/cleffa/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 1, 08 - dorepeat 1 - endanim -; 0xd1f68 diff --git a/gfx/pics/cleffa/back.2bpp.lz.ea9b3d08 b/gfx/pics/cleffa/back.2bpp.lz.ea9b3d08 deleted file mode 100644 index 35ec3369b..000000000 Binary files a/gfx/pics/cleffa/back.2bpp.lz.ea9b3d08 and /dev/null differ diff --git a/gfx/pics/cleffa/back.png b/gfx/pics/cleffa/back.png deleted file mode 100644 index c888fef10..000000000 Binary files a/gfx/pics/cleffa/back.png and /dev/null differ diff --git a/gfx/pics/cleffa/front.animated.2bpp.lz.49630c80 b/gfx/pics/cleffa/front.animated.2bpp.lz.49630c80 deleted file mode 100644 index e8c624069..000000000 Binary files a/gfx/pics/cleffa/front.animated.2bpp.lz.49630c80 and /dev/null differ diff --git a/gfx/pics/cleffa/front.png b/gfx/pics/cleffa/front.png deleted file mode 100644 index 6c411c3ad..000000000 Binary files a/gfx/pics/cleffa/front.png and /dev/null differ diff --git a/gfx/pics/cleffa/shiny.pal b/gfx/pics/cleffa/shiny.pal deleted file mode 100644 index 1c0871557..000000000 --- a/gfx/pics/cleffa/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 13, 25 - RGB 08, 18, 00 - diff --git a/gfx/pics/cloyster/anim0.asm b/gfx/pics/cloyster/anim0.asm deleted file mode 100644 index cc338f014..000000000 --- a/gfx/pics/cloyster/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 1, 09 - frame 2, 09 - dorepeat 1 - frame 3, 09 - endanim -; 0xd0dd0 diff --git a/gfx/pics/cloyster/anim1.asm b/gfx/pics/cloyster/anim1.asm deleted file mode 100644 index e872bbc59..000000000 --- a/gfx/pics/cloyster/anim1.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 4, 52 - dorepeat 1 - endanim -; 0xd1c4e diff --git a/gfx/pics/cloyster/back.2bpp.lz.5ad194b3 b/gfx/pics/cloyster/back.2bpp.lz.5ad194b3 deleted file mode 100644 index 655890df8..000000000 Binary files a/gfx/pics/cloyster/back.2bpp.lz.5ad194b3 and /dev/null differ diff --git a/gfx/pics/cloyster/back.png b/gfx/pics/cloyster/back.png deleted file mode 100644 index 4b4f9294a..000000000 Binary files a/gfx/pics/cloyster/back.png and /dev/null differ diff --git a/gfx/pics/cloyster/front.animated.2bpp.lz.fe85709f b/gfx/pics/cloyster/front.animated.2bpp.lz.fe85709f deleted file mode 100644 index 83991eed6..000000000 Binary files a/gfx/pics/cloyster/front.animated.2bpp.lz.fe85709f and /dev/null differ diff --git a/gfx/pics/cloyster/front.png b/gfx/pics/cloyster/front.png deleted file mode 100644 index fc725f85c..000000000 Binary files a/gfx/pics/cloyster/front.png and /dev/null differ diff --git a/gfx/pics/cloyster/shiny.pal b/gfx/pics/cloyster/shiny.pal deleted file mode 100644 index 973ccfb8a..000000000 --- a/gfx/pics/cloyster/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 12, 28 - RGB 11, 04, 31 - diff --git a/gfx/pics/corsola/anim0.asm b/gfx/pics/corsola/anim0.asm deleted file mode 100644 index 68182e18e..000000000 --- a/gfx/pics/corsola/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 10 - frame 2, 22 - frame 1, 10 - frame 0, 12 - frame 3, 18 - endanim -; 0xd1501 diff --git a/gfx/pics/corsola/anim1.asm b/gfx/pics/corsola/anim1.asm deleted file mode 100644 index 6360176ca..000000000 --- a/gfx/pics/corsola/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd210b diff --git a/gfx/pics/corsola/back.2bpp.lz.2b6c7860 b/gfx/pics/corsola/back.2bpp.lz.2b6c7860 deleted file mode 100644 index 6707a3538..000000000 Binary files a/gfx/pics/corsola/back.2bpp.lz.2b6c7860 and /dev/null differ diff --git a/gfx/pics/corsola/back.png b/gfx/pics/corsola/back.png deleted file mode 100644 index 8550813ab..000000000 Binary files a/gfx/pics/corsola/back.png and /dev/null differ diff --git a/gfx/pics/corsola/front.animated.2bpp.lz.2e7905aa b/gfx/pics/corsola/front.animated.2bpp.lz.2e7905aa deleted file mode 100644 index afa208922..000000000 Binary files a/gfx/pics/corsola/front.animated.2bpp.lz.2e7905aa and /dev/null differ diff --git a/gfx/pics/corsola/front.png b/gfx/pics/corsola/front.png deleted file mode 100644 index 210b508e7..000000000 Binary files a/gfx/pics/corsola/front.png and /dev/null differ diff --git a/gfx/pics/corsola/shiny.pal b/gfx/pics/corsola/shiny.pal deleted file mode 100644 index 8aec60de2..000000000 --- a/gfx/pics/corsola/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 13, 25, 28 - RGB 07, 14, 10 - diff --git a/gfx/pics/crobat/anim0.asm b/gfx/pics/crobat/anim0.asm deleted file mode 100644 index 99888ab81..000000000 --- a/gfx/pics/crobat/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 1, 05 - frame 2, 05 - frame 3, 05 - frame 4, 05 - frame 5, 05 - dorepeat 1 - endanim -; 0xd125e diff --git a/gfx/pics/crobat/anim1.asm b/gfx/pics/crobat/anim1.asm deleted file mode 100644 index ec1dae2ac..000000000 --- a/gfx/pics/crobat/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 5 - frame 0, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd1f44 diff --git a/gfx/pics/crobat/back.2bpp.lz.30850b2e b/gfx/pics/crobat/back.2bpp.lz.30850b2e deleted file mode 100644 index a572d93c5..000000000 Binary files a/gfx/pics/crobat/back.2bpp.lz.30850b2e and /dev/null differ diff --git a/gfx/pics/crobat/back.png b/gfx/pics/crobat/back.png deleted file mode 100644 index 944c3a872..000000000 Binary files a/gfx/pics/crobat/back.png and /dev/null differ diff --git a/gfx/pics/crobat/front.animated.2bpp.lz.dc386ff0 b/gfx/pics/crobat/front.animated.2bpp.lz.dc386ff0 deleted file mode 100644 index 1e12aeed2..000000000 Binary files a/gfx/pics/crobat/front.animated.2bpp.lz.dc386ff0 and /dev/null differ diff --git a/gfx/pics/crobat/front.png b/gfx/pics/crobat/front.png deleted file mode 100644 index b1e989fac..000000000 Binary files a/gfx/pics/crobat/front.png and /dev/null differ diff --git a/gfx/pics/crobat/shiny.pal b/gfx/pics/crobat/shiny.pal deleted file mode 100644 index 2cb1d6ced..000000000 --- a/gfx/pics/crobat/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 12, 19 - RGB 07, 15, 00 - diff --git a/gfx/pics/croconaw/anim0.asm b/gfx/pics/croconaw/anim0.asm deleted file mode 100644 index c487abfd9..000000000 --- a/gfx/pics/croconaw/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 5 - frame 3, 05 - frame 2, 05 - frame 1, 05 - dorepeat 1 - endanim -; 0xd11d2 diff --git a/gfx/pics/croconaw/anim1.asm b/gfx/pics/croconaw/anim1.asm deleted file mode 100644 index 78bd8518e..000000000 --- a/gfx/pics/croconaw/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 4, 10 - dorepeat 1 - endanim -; 0xd1ee0 diff --git a/gfx/pics/croconaw/back.2bpp.lz.a605c82f b/gfx/pics/croconaw/back.2bpp.lz.a605c82f deleted file mode 100644 index 7e573e6a0..000000000 Binary files a/gfx/pics/croconaw/back.2bpp.lz.a605c82f and /dev/null differ diff --git a/gfx/pics/croconaw/back.png b/gfx/pics/croconaw/back.png deleted file mode 100644 index 1c745387a..000000000 Binary files a/gfx/pics/croconaw/back.png and /dev/null differ diff --git a/gfx/pics/croconaw/front.animated.2bpp.lz.a797986d b/gfx/pics/croconaw/front.animated.2bpp.lz.a797986d deleted file mode 100644 index 9c7f511ba..000000000 Binary files a/gfx/pics/croconaw/front.animated.2bpp.lz.a797986d and /dev/null differ diff --git a/gfx/pics/croconaw/front.png b/gfx/pics/croconaw/front.png deleted file mode 100644 index 8fabda95c..000000000 Binary files a/gfx/pics/croconaw/front.png and /dev/null differ diff --git a/gfx/pics/croconaw/shiny.pal b/gfx/pics/croconaw/shiny.pal deleted file mode 100644 index efba52bea..000000000 --- a/gfx/pics/croconaw/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 21, 14 - RGB 13, 09, 23 - diff --git a/gfx/pics/cubone/anim0.asm b/gfx/pics/cubone/anim0.asm deleted file mode 100644 index 2af8c522c..000000000 --- a/gfx/pics/cubone/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 0, 04 - frame 5, 19 - frame 1, 08 - frame 2, 06 - frame 6, 03 - frame 3, 02 - frame 4, 40 - frame 3, 02 - frame 6, 02 - frame 1, 08 - endanim -; 0xd0e9f diff --git a/gfx/pics/cubone/anim1.asm b/gfx/pics/cubone/anim1.asm deleted file mode 100644 index fb3b0b3ba..000000000 --- a/gfx/pics/cubone/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 1 - endanim -; 0xd1cc3 diff --git a/gfx/pics/cubone/back.2bpp.lz.bd849dfb b/gfx/pics/cubone/back.2bpp.lz.bd849dfb deleted file mode 100644 index fc9931417..000000000 Binary files a/gfx/pics/cubone/back.2bpp.lz.bd849dfb and /dev/null differ diff --git a/gfx/pics/cubone/back.png b/gfx/pics/cubone/back.png deleted file mode 100644 index d4069071b..000000000 Binary files a/gfx/pics/cubone/back.png and /dev/null differ diff --git a/gfx/pics/cubone/front.animated.2bpp.lz.0d63a3a4 b/gfx/pics/cubone/front.animated.2bpp.lz.0d63a3a4 deleted file mode 100644 index 9de9f7732..000000000 Binary files a/gfx/pics/cubone/front.animated.2bpp.lz.0d63a3a4 and /dev/null differ diff --git a/gfx/pics/cubone/front.png b/gfx/pics/cubone/front.png deleted file mode 100644 index de641c36d..000000000 Binary files a/gfx/pics/cubone/front.png and /dev/null differ diff --git a/gfx/pics/cubone/shiny.pal b/gfx/pics/cubone/shiny.pal deleted file mode 100644 index e27abe43a..000000000 --- a/gfx/pics/cubone/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 22, 23 - RGB 11, 15, 09 - diff --git a/gfx/pics/cyndaquil/anim0.asm b/gfx/pics/cyndaquil/anim0.asm deleted file mode 100644 index b069cc300..000000000 --- a/gfx/pics/cyndaquil/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 04 - frame 4, 04 - frame 1, 04 - setrepeat 4 - frame 4, 03 - frame 1, 03 - dorepeat 4 - frame 2, 03 - frame 3, 09 - frame 1, 03 - endanim -; 0xd1194 diff --git a/gfx/pics/cyndaquil/anim1.asm b/gfx/pics/cyndaquil/anim1.asm deleted file mode 100644 index 43c4d495a..000000000 --- a/gfx/pics/cyndaquil/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 4, 10 - dorepeat 1 - endanim -; 0xd1eba diff --git a/gfx/pics/cyndaquil/back.2bpp.lz.68baeeeb b/gfx/pics/cyndaquil/back.2bpp.lz.68baeeeb deleted file mode 100644 index 226c41e49..000000000 Binary files a/gfx/pics/cyndaquil/back.2bpp.lz.68baeeeb and /dev/null differ diff --git a/gfx/pics/cyndaquil/back.png b/gfx/pics/cyndaquil/back.png deleted file mode 100644 index 4e0664be0..000000000 Binary files a/gfx/pics/cyndaquil/back.png and /dev/null differ diff --git a/gfx/pics/cyndaquil/front.animated.2bpp.lz.0d5dce8d b/gfx/pics/cyndaquil/front.animated.2bpp.lz.0d5dce8d deleted file mode 100644 index 3e2886783..000000000 Binary files a/gfx/pics/cyndaquil/front.animated.2bpp.lz.0d5dce8d and /dev/null differ diff --git a/gfx/pics/cyndaquil/front.png b/gfx/pics/cyndaquil/front.png deleted file mode 100644 index 4edae6bc6..000000000 Binary files a/gfx/pics/cyndaquil/front.png and /dev/null differ diff --git a/gfx/pics/cyndaquil/shiny.pal b/gfx/pics/cyndaquil/shiny.pal deleted file mode 100644 index 5b3df0b4e..000000000 --- a/gfx/pics/cyndaquil/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 23, 09 - RGB 22, 00, 19 - diff --git a/gfx/pics/delibird/anim0.asm b/gfx/pics/delibird/anim0.asm deleted file mode 100644 index 3431ad1ae..000000000 --- a/gfx/pics/delibird/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 02 - frame 2, 10 - setrepeat 2 - frame 3, 09 - frame 2, 09 - dorepeat 3 - frame 2, 13 - frame 1, 02 - frame 0, 05 - frame 6, 05 - endanim -; 0xd152a diff --git a/gfx/pics/delibird/anim1.asm b/gfx/pics/delibird/anim1.asm deleted file mode 100644 index 8a416cc61..000000000 --- a/gfx/pics/delibird/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 4 - frame 4, 06 - frame 5, 06 - dorepeat 1 - endanim -; 0xd2126 diff --git a/gfx/pics/delibird/back.2bpp.lz.11463d76 b/gfx/pics/delibird/back.2bpp.lz.11463d76 deleted file mode 100644 index 22f41237c..000000000 Binary files a/gfx/pics/delibird/back.2bpp.lz.11463d76 and /dev/null differ diff --git a/gfx/pics/delibird/back.png b/gfx/pics/delibird/back.png deleted file mode 100644 index 367d6055a..000000000 Binary files a/gfx/pics/delibird/back.png and /dev/null differ diff --git a/gfx/pics/delibird/front.animated.2bpp.lz.a3126c48 b/gfx/pics/delibird/front.animated.2bpp.lz.a3126c48 deleted file mode 100644 index 819e46af0..000000000 Binary files a/gfx/pics/delibird/front.animated.2bpp.lz.a3126c48 and /dev/null differ diff --git a/gfx/pics/delibird/front.png b/gfx/pics/delibird/front.png deleted file mode 100644 index 591271b3a..000000000 Binary files a/gfx/pics/delibird/front.png and /dev/null differ diff --git a/gfx/pics/delibird/shiny.pal b/gfx/pics/delibird/shiny.pal deleted file mode 100644 index 4c4ee713f..000000000 --- a/gfx/pics/delibird/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 26, 00 - RGB 26, 01, 26 - diff --git a/gfx/pics/dewgong/anim0.asm b/gfx/pics/dewgong/anim0.asm deleted file mode 100644 index b7c3efecf..000000000 --- a/gfx/pics/dewgong/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 09 - frame 2, 09 - frame 3, 09 - frame 4, 09 - frame 5, 14 - endanim -; 0xd0daa diff --git a/gfx/pics/dewgong/anim1.asm b/gfx/pics/dewgong/anim1.asm deleted file mode 100644 index 0357ce660..000000000 --- a/gfx/pics/dewgong/anim1.asm +++ /dev/null @@ -1,9 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 6, 06 - frame 7, 06 - frame 8, 06 - frame 9, 06 - dorepeat 1 - endanim -; 0xd1c2a diff --git a/gfx/pics/dewgong/back.2bpp.lz.4e1fef76 b/gfx/pics/dewgong/back.2bpp.lz.4e1fef76 deleted file mode 100644 index bc6842e86..000000000 Binary files a/gfx/pics/dewgong/back.2bpp.lz.4e1fef76 and /dev/null differ diff --git a/gfx/pics/dewgong/back.png b/gfx/pics/dewgong/back.png deleted file mode 100644 index 9544f9c25..000000000 Binary files a/gfx/pics/dewgong/back.png and /dev/null differ diff --git a/gfx/pics/dewgong/front.animated.2bpp.lz.cc53359c b/gfx/pics/dewgong/front.animated.2bpp.lz.cc53359c deleted file mode 100644 index cbb0ace94..000000000 Binary files a/gfx/pics/dewgong/front.animated.2bpp.lz.cc53359c and /dev/null differ diff --git a/gfx/pics/dewgong/front.png b/gfx/pics/dewgong/front.png deleted file mode 100644 index b73d51c07..000000000 Binary files a/gfx/pics/dewgong/front.png and /dev/null differ diff --git a/gfx/pics/dewgong/shiny.pal b/gfx/pics/dewgong/shiny.pal deleted file mode 100644 index b9da48134..000000000 --- a/gfx/pics/dewgong/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 19, 20 - RGB 18, 11, 14 - diff --git a/gfx/pics/diglett/anim0.asm b/gfx/pics/diglett/anim0.asm deleted file mode 100644 index a4d79bd56..000000000 --- a/gfx/pics/diglett/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 3, 04 - setrepeat 2 - frame 2, 08 - frame 1, 09 - dorepeat 2 - endanim -; 0xd0b97 diff --git a/gfx/pics/diglett/anim1.asm b/gfx/pics/diglett/anim1.asm deleted file mode 100644 index bd2a27e03..000000000 --- a/gfx/pics/diglett/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 08 - dorepeat 1 - endanim -; 0xd1aad diff --git a/gfx/pics/diglett/back.2bpp.lz.31d8cacc b/gfx/pics/diglett/back.2bpp.lz.31d8cacc deleted file mode 100644 index 05625954c..000000000 Binary files a/gfx/pics/diglett/back.2bpp.lz.31d8cacc and /dev/null differ diff --git a/gfx/pics/diglett/back.png b/gfx/pics/diglett/back.png deleted file mode 100644 index cde3b07f9..000000000 Binary files a/gfx/pics/diglett/back.png and /dev/null differ diff --git a/gfx/pics/diglett/front.animated.2bpp.lz.52b0361e b/gfx/pics/diglett/front.animated.2bpp.lz.52b0361e deleted file mode 100644 index 5ed5e87ff..000000000 Binary files a/gfx/pics/diglett/front.animated.2bpp.lz.52b0361e and /dev/null differ diff --git a/gfx/pics/diglett/front.png b/gfx/pics/diglett/front.png deleted file mode 100644 index 49adc371a..000000000 Binary files a/gfx/pics/diglett/front.png and /dev/null differ diff --git a/gfx/pics/diglett/shiny.pal b/gfx/pics/diglett/shiny.pal deleted file mode 100644 index ce41b3928..000000000 --- a/gfx/pics/diglett/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 11, 04 - RGB 12, 06, 27 - diff --git a/gfx/pics/ditto/anim0.asm b/gfx/pics/ditto/anim0.asm deleted file mode 100644 index 53f3f9afa..000000000 --- a/gfx/pics/ditto/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 5, 08 - frame 1, 08 - frame 2, 08 - frame 3, 06 - frame 2, 06 - frame 0, 12 - frame 6, 12 - frame 7, 12 - frame 8, 12 - endanim -; 0xd1029 diff --git a/gfx/pics/ditto/anim1.asm b/gfx/pics/ditto/anim1.asm deleted file mode 100644 index 195808be1..000000000 --- a/gfx/pics/ditto/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd1dc9 diff --git a/gfx/pics/ditto/back.2bpp.lz.b01a9d91 b/gfx/pics/ditto/back.2bpp.lz.b01a9d91 deleted file mode 100644 index ee2a621bf..000000000 Binary files a/gfx/pics/ditto/back.2bpp.lz.b01a9d91 and /dev/null differ diff --git a/gfx/pics/ditto/back.png b/gfx/pics/ditto/back.png deleted file mode 100644 index bf1f4cb1a..000000000 Binary files a/gfx/pics/ditto/back.png and /dev/null differ diff --git a/gfx/pics/ditto/front.animated.2bpp.lz.344c90fd b/gfx/pics/ditto/front.animated.2bpp.lz.344c90fd deleted file mode 100644 index ef64bd777..000000000 Binary files a/gfx/pics/ditto/front.animated.2bpp.lz.344c90fd and /dev/null differ diff --git a/gfx/pics/ditto/front.png b/gfx/pics/ditto/front.png deleted file mode 100644 index 9979863f6..000000000 Binary files a/gfx/pics/ditto/front.png and /dev/null differ diff --git a/gfx/pics/ditto/shiny.pal b/gfx/pics/ditto/shiny.pal deleted file mode 100644 index bcc063864..000000000 --- a/gfx/pics/ditto/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 17, 22, 28 - RGB 09, 12, 27 - diff --git a/gfx/pics/dodrio/anim0.asm b/gfx/pics/dodrio/anim0.asm deleted file mode 100644 index 539f896d7..000000000 --- a/gfx/pics/dodrio/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 10 - frame 2, 10 - frame 4, 10 - frame 1, 09 - endanim -; 0xd0d92 diff --git a/gfx/pics/dodrio/anim1.asm b/gfx/pics/dodrio/anim1.asm deleted file mode 100644 index a921058f3..000000000 --- a/gfx/pics/dodrio/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 3, 10 - frame 0, 08 - dorepeat 1 - endanim -; 0xd1c10 diff --git a/gfx/pics/dodrio/back.2bpp.lz.a5480e88 b/gfx/pics/dodrio/back.2bpp.lz.a5480e88 deleted file mode 100644 index 3b1d80db5..000000000 Binary files a/gfx/pics/dodrio/back.2bpp.lz.a5480e88 and /dev/null differ diff --git a/gfx/pics/dodrio/back.png b/gfx/pics/dodrio/back.png deleted file mode 100644 index abc232883..000000000 Binary files a/gfx/pics/dodrio/back.png and /dev/null differ diff --git a/gfx/pics/dodrio/front.animated.2bpp.lz.2aaff569 b/gfx/pics/dodrio/front.animated.2bpp.lz.2aaff569 deleted file mode 100644 index 8de65b2de..000000000 Binary files a/gfx/pics/dodrio/front.animated.2bpp.lz.2aaff569 and /dev/null differ diff --git a/gfx/pics/dodrio/front.png b/gfx/pics/dodrio/front.png deleted file mode 100644 index ddd441ba1..000000000 Binary files a/gfx/pics/dodrio/front.png and /dev/null differ diff --git a/gfx/pics/dodrio/shiny.pal b/gfx/pics/dodrio/shiny.pal deleted file mode 100644 index 521bc017b..000000000 --- a/gfx/pics/dodrio/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 24, 01 - RGB 18, 16, 00 - diff --git a/gfx/pics/doduo/anim0.asm b/gfx/pics/doduo/anim0.asm deleted file mode 100644 index cd38ca192..000000000 --- a/gfx/pics/doduo/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 12 - frame 2, 32 - frame 1, 24 - setrepeat 2 - frame 3, 08 - frame 1, 08 - dorepeat 4 - endanim -; 0xd0d89 diff --git a/gfx/pics/doduo/anim1.asm b/gfx/pics/doduo/anim1.asm deleted file mode 100644 index 89715cae8..000000000 --- a/gfx/pics/doduo/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 12 - setrepeat 2 - frame 3, 06 - frame 1, 06 - dorepeat 2 - frame 1, 30 - endanim -; 0xd1c07 diff --git a/gfx/pics/doduo/back.2bpp.lz.05a57563 b/gfx/pics/doduo/back.2bpp.lz.05a57563 deleted file mode 100644 index 8f204150b..000000000 Binary files a/gfx/pics/doduo/back.2bpp.lz.05a57563 and /dev/null differ diff --git a/gfx/pics/doduo/back.png b/gfx/pics/doduo/back.png deleted file mode 100644 index 8440b7af7..000000000 Binary files a/gfx/pics/doduo/back.png and /dev/null differ diff --git a/gfx/pics/doduo/front.animated.2bpp.lz.89c4acbd b/gfx/pics/doduo/front.animated.2bpp.lz.89c4acbd deleted file mode 100644 index 11d525427..000000000 Binary files a/gfx/pics/doduo/front.animated.2bpp.lz.89c4acbd and /dev/null differ diff --git a/gfx/pics/doduo/front.png b/gfx/pics/doduo/front.png deleted file mode 100644 index 8c90b36f7..000000000 Binary files a/gfx/pics/doduo/front.png and /dev/null differ diff --git a/gfx/pics/doduo/shiny.pal b/gfx/pics/doduo/shiny.pal deleted file mode 100644 index f8093f636..000000000 --- a/gfx/pics/doduo/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 28, 23, 00 - RGB 18, 16, 00 - diff --git a/gfx/pics/donphan/anim0.asm b/gfx/pics/donphan/anim0.asm deleted file mode 100644 index fbfbd8d17..000000000 --- a/gfx/pics/donphan/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 2, 08 - frame 1, 24 - frame 3, 10 - frame 4, 06 - endanim -; 0xd1587 diff --git a/gfx/pics/donphan/anim1.asm b/gfx/pics/donphan/anim1.asm deleted file mode 100644 index 341013ce9..000000000 --- a/gfx/pics/donphan/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 1 - endanim -; 0xd2169 diff --git a/gfx/pics/donphan/back.2bpp.lz.5067b370 b/gfx/pics/donphan/back.2bpp.lz.5067b370 deleted file mode 100644 index 4914f03aa..000000000 Binary files a/gfx/pics/donphan/back.2bpp.lz.5067b370 and /dev/null differ diff --git a/gfx/pics/donphan/back.png b/gfx/pics/donphan/back.png deleted file mode 100644 index a156f85bf..000000000 Binary files a/gfx/pics/donphan/back.png and /dev/null differ diff --git a/gfx/pics/donphan/front.animated.2bpp.lz.9e1b7048 b/gfx/pics/donphan/front.animated.2bpp.lz.9e1b7048 deleted file mode 100644 index b46d083fc..000000000 Binary files a/gfx/pics/donphan/front.animated.2bpp.lz.9e1b7048 and /dev/null differ diff --git a/gfx/pics/donphan/front.png b/gfx/pics/donphan/front.png deleted file mode 100644 index 9dc93c065..000000000 Binary files a/gfx/pics/donphan/front.png and /dev/null differ diff --git a/gfx/pics/donphan/shiny.pal b/gfx/pics/donphan/shiny.pal deleted file mode 100644 index d705694c2..000000000 --- a/gfx/pics/donphan/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 21, 20 - RGB 20, 10, 07 - diff --git a/gfx/pics/dragonair/anim0.asm b/gfx/pics/dragonair/anim0.asm deleted file mode 100644 index b7a2be64d..000000000 --- a/gfx/pics/dragonair/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 1, 08 - frame 2, 08 - frame 3, 08 - frame 2, 08 - dorepeat 1 - endanim -; 0xd10fd diff --git a/gfx/pics/dragonair/anim1.asm b/gfx/pics/dragonair/anim1.asm deleted file mode 100644 index afea7ab43..000000000 --- a/gfx/pics/dragonair/anim1.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - frame 0, 06 - frame 5, 06 - frame 6, 06 - frame 5, 06 - endanim -; 0xd1e71 diff --git a/gfx/pics/dragonair/back.2bpp.lz.9b6fda5b b/gfx/pics/dragonair/back.2bpp.lz.9b6fda5b deleted file mode 100644 index 52094c394..000000000 Binary files a/gfx/pics/dragonair/back.2bpp.lz.9b6fda5b and /dev/null differ diff --git a/gfx/pics/dragonair/back.png b/gfx/pics/dragonair/back.png deleted file mode 100644 index 99c03894a..000000000 Binary files a/gfx/pics/dragonair/back.png and /dev/null differ diff --git a/gfx/pics/dragonair/front.animated.2bpp.lz.bb9ee373 b/gfx/pics/dragonair/front.animated.2bpp.lz.bb9ee373 deleted file mode 100644 index aad34536f..000000000 Binary files a/gfx/pics/dragonair/front.animated.2bpp.lz.bb9ee373 and /dev/null differ diff --git a/gfx/pics/dragonair/front.png b/gfx/pics/dragonair/front.png deleted file mode 100644 index 19feeeec1..000000000 Binary files a/gfx/pics/dragonair/front.png and /dev/null differ diff --git a/gfx/pics/dragonair/shiny.pal b/gfx/pics/dragonair/shiny.pal deleted file mode 100644 index 744429411..000000000 --- a/gfx/pics/dragonair/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 19, 31 - RGB 20, 15, 31 - diff --git a/gfx/pics/dragonite/anim0.asm b/gfx/pics/dragonite/anim0.asm deleted file mode 100644 index 9dd6bf84a..000000000 --- a/gfx/pics/dragonite/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 1, 12 - frame 2, 12 - setrepeat 2 - frame 3, 12 - frame 4, 12 - dorepeat 3 - frame 1, 12 - setrepeat 3 - frame 0, 12 - frame 1, 12 - dorepeat 8 - endanim -; 0xd1114 diff --git a/gfx/pics/dragonite/anim1.asm b/gfx/pics/dragonite/anim1.asm deleted file mode 100644 index fe0d7edbb..000000000 --- a/gfx/pics/dragonite/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 20 - frame 1, 20 - setrepeat 2 - frame 0, 05 - frame 5, 05 - dorepeat 3 - endanim -; 0xd1e7e diff --git a/gfx/pics/dragonite/back.2bpp.lz.c408806f b/gfx/pics/dragonite/back.2bpp.lz.c408806f deleted file mode 100644 index 09a828dd0..000000000 Binary files a/gfx/pics/dragonite/back.2bpp.lz.c408806f and /dev/null differ diff --git a/gfx/pics/dragonite/back.png b/gfx/pics/dragonite/back.png deleted file mode 100644 index 29ef7abea..000000000 Binary files a/gfx/pics/dragonite/back.png and /dev/null differ diff --git a/gfx/pics/dragonite/front.animated.2bpp.lz.b914dfd9 b/gfx/pics/dragonite/front.animated.2bpp.lz.b914dfd9 deleted file mode 100644 index 730c16739..000000000 Binary files a/gfx/pics/dragonite/front.animated.2bpp.lz.b914dfd9 and /dev/null differ diff --git a/gfx/pics/dragonite/front.png b/gfx/pics/dragonite/front.png deleted file mode 100644 index 5675a1441..000000000 Binary files a/gfx/pics/dragonite/front.png and /dev/null differ diff --git a/gfx/pics/dragonite/shiny.pal b/gfx/pics/dragonite/shiny.pal deleted file mode 100644 index f12fb4a7b..000000000 --- a/gfx/pics/dragonite/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 17, 19, 14 - RGB 19, 00, 14 - diff --git a/gfx/pics/dratini/anim0.asm b/gfx/pics/dratini/anim0.asm deleted file mode 100644 index f844a2eec..000000000 --- a/gfx/pics/dratini/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 1, 07 - dorepeat 1 - frame 2, 09 - frame 3, 09 - endanim -; 0xd10f0 diff --git a/gfx/pics/dratini/anim1.asm b/gfx/pics/dratini/anim1.asm deleted file mode 100644 index 441340446..000000000 --- a/gfx/pics/dratini/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd1e60 diff --git a/gfx/pics/dratini/back.2bpp.lz.be4d6a2a b/gfx/pics/dratini/back.2bpp.lz.be4d6a2a deleted file mode 100644 index b40ffcaaf..000000000 Binary files a/gfx/pics/dratini/back.2bpp.lz.be4d6a2a and /dev/null differ diff --git a/gfx/pics/dratini/back.png b/gfx/pics/dratini/back.png deleted file mode 100644 index 352e436de..000000000 Binary files a/gfx/pics/dratini/back.png and /dev/null differ diff --git a/gfx/pics/dratini/front.animated.2bpp.lz.838e4248 b/gfx/pics/dratini/front.animated.2bpp.lz.838e4248 deleted file mode 100644 index b933491b7..000000000 Binary files a/gfx/pics/dratini/front.animated.2bpp.lz.838e4248 and /dev/null differ diff --git a/gfx/pics/dratini/front.png b/gfx/pics/dratini/front.png deleted file mode 100644 index 9f49eb8f0..000000000 Binary files a/gfx/pics/dratini/front.png and /dev/null differ diff --git a/gfx/pics/dratini/shiny.pal b/gfx/pics/dratini/shiny.pal deleted file mode 100644 index e7c9b58a1..000000000 --- a/gfx/pics/dratini/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 19, 24 - RGB 14, 11, 24 - diff --git a/gfx/pics/drowzee/anim0.asm b/gfx/pics/drowzee/anim0.asm deleted file mode 100644 index badc99074..000000000 --- a/gfx/pics/drowzee/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 08 - frame 2, 08 - frame 3, 08 - frame 4, 08 - frame 0, 05 - frame 1, 05 - frame 2, 05 - frame 3, 05 - frame 4, 05 - endanim -; 0xd0e1b diff --git a/gfx/pics/drowzee/anim1.asm b/gfx/pics/drowzee/anim1.asm deleted file mode 100644 index 247ecb8fe..000000000 --- a/gfx/pics/drowzee/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 5, 06 - dorepeat 1 - frame 0, 08 - frame 5, 08 - endanim -; 0xd1c81 diff --git a/gfx/pics/drowzee/back.2bpp.lz.55367f5a b/gfx/pics/drowzee/back.2bpp.lz.55367f5a deleted file mode 100644 index a4218ade7..000000000 Binary files a/gfx/pics/drowzee/back.2bpp.lz.55367f5a and /dev/null differ diff --git a/gfx/pics/drowzee/back.png b/gfx/pics/drowzee/back.png deleted file mode 100644 index 8186a9529..000000000 Binary files a/gfx/pics/drowzee/back.png and /dev/null differ diff --git a/gfx/pics/drowzee/front.animated.2bpp.lz.1f23711a b/gfx/pics/drowzee/front.animated.2bpp.lz.1f23711a deleted file mode 100644 index cf3f87571..000000000 Binary files a/gfx/pics/drowzee/front.animated.2bpp.lz.1f23711a and /dev/null differ diff --git a/gfx/pics/drowzee/front.png b/gfx/pics/drowzee/front.png deleted file mode 100644 index 2b3a43d26..000000000 Binary files a/gfx/pics/drowzee/front.png and /dev/null differ diff --git a/gfx/pics/drowzee/shiny.pal b/gfx/pics/drowzee/shiny.pal deleted file mode 100644 index 2b0946ece..000000000 --- a/gfx/pics/drowzee/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 13, 27 - RGB 18, 00, 10 - diff --git a/gfx/pics/dugtrio/anim0.asm b/gfx/pics/dugtrio/anim0.asm deleted file mode 100644 index 7b5038620..000000000 --- a/gfx/pics/dugtrio/anim0.asm +++ /dev/null @@ -1,16 +0,0 @@ - frame 1, 08 - frame 2, 08 - frame 3, 12 - frame 4, 06 - frame 3, 05 - frame 5, 06 - frame 3, 05 - setrepeat 4 - frame 3, 05 - frame 6, 05 - dorepeat 8 - frame 6, 15 - frame 2, 06 - frame 1, 06 - endanim -; 0xd0bb4 diff --git a/gfx/pics/dugtrio/anim1.asm b/gfx/pics/dugtrio/anim1.asm deleted file mode 100644 index 1b32b854c..000000000 --- a/gfx/pics/dugtrio/anim1.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 20 - frame 3, 10 - frame 7, 16 - setrepeat 2 - frame 6, 04 - frame 7, 04 - dorepeat 4 - frame 6, 20 - endanim -; 0xd1abe diff --git a/gfx/pics/dugtrio/back.2bpp.lz.e821a89c b/gfx/pics/dugtrio/back.2bpp.lz.e821a89c deleted file mode 100644 index 05ad7b1ad..000000000 Binary files a/gfx/pics/dugtrio/back.2bpp.lz.e821a89c and /dev/null differ diff --git a/gfx/pics/dugtrio/back.png b/gfx/pics/dugtrio/back.png deleted file mode 100644 index c1bca81bd..000000000 Binary files a/gfx/pics/dugtrio/back.png and /dev/null differ diff --git a/gfx/pics/dugtrio/front.animated.2bpp.lz.5c9e668c b/gfx/pics/dugtrio/front.animated.2bpp.lz.5c9e668c deleted file mode 100644 index 7ef2606cd..000000000 Binary files a/gfx/pics/dugtrio/front.animated.2bpp.lz.5c9e668c and /dev/null differ diff --git a/gfx/pics/dugtrio/front.png b/gfx/pics/dugtrio/front.png deleted file mode 100644 index 9fe5e14a7..000000000 Binary files a/gfx/pics/dugtrio/front.png and /dev/null differ diff --git a/gfx/pics/dugtrio/shiny.pal b/gfx/pics/dugtrio/shiny.pal deleted file mode 100644 index ce41b3928..000000000 --- a/gfx/pics/dugtrio/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 11, 04 - RGB 12, 06, 27 - diff --git a/gfx/pics/dunsparce/anim0.asm b/gfx/pics/dunsparce/anim0.asm deleted file mode 100644 index b4217afbd..000000000 --- a/gfx/pics/dunsparce/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 12 - setrepeat 5 - frame 2, 03 - frame 3, 03 - dorepeat 2 - frame 4, 12 - endanim -; 0xd1441 diff --git a/gfx/pics/dunsparce/anim1.asm b/gfx/pics/dunsparce/anim1.asm deleted file mode 100644 index f5d6d9b05..000000000 --- a/gfx/pics/dunsparce/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 1 - endanim -; 0xd2089 diff --git a/gfx/pics/dunsparce/back.2bpp.lz.aee69114 b/gfx/pics/dunsparce/back.2bpp.lz.aee69114 deleted file mode 100644 index 1042b07f8..000000000 Binary files a/gfx/pics/dunsparce/back.2bpp.lz.aee69114 and /dev/null differ diff --git a/gfx/pics/dunsparce/back.png b/gfx/pics/dunsparce/back.png deleted file mode 100644 index d3fc9cc85..000000000 Binary files a/gfx/pics/dunsparce/back.png and /dev/null differ diff --git a/gfx/pics/dunsparce/front.animated.2bpp.lz.04ea863c b/gfx/pics/dunsparce/front.animated.2bpp.lz.04ea863c deleted file mode 100644 index 31e9aa319..000000000 Binary files a/gfx/pics/dunsparce/front.animated.2bpp.lz.04ea863c and /dev/null differ diff --git a/gfx/pics/dunsparce/front.png b/gfx/pics/dunsparce/front.png deleted file mode 100644 index a2fbc6f18..000000000 Binary files a/gfx/pics/dunsparce/front.png and /dev/null differ diff --git a/gfx/pics/dunsparce/shiny.pal b/gfx/pics/dunsparce/shiny.pal deleted file mode 100644 index a86589ee4..000000000 --- a/gfx/pics/dunsparce/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 24, 06 - RGB 31, 05, 21 - diff --git a/gfx/pics/eevee/anim0.asm b/gfx/pics/eevee/anim0.asm deleted file mode 100644 index 537cefb83..000000000 --- a/gfx/pics/eevee/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 06 - frame 2, 06 - setrepeat 2 - frame 3, 07 - frame 4, 07 - dorepeat 3 - frame 2, 10 - endanim -; 0xd1038 diff --git a/gfx/pics/eevee/anim1.asm b/gfx/pics/eevee/anim1.asm deleted file mode 100644 index 0f50b3cb8..000000000 --- a/gfx/pics/eevee/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 3 - frame 0, 05 - frame 5, 05 - dorepeat 1 - frame 0, 09 - frame 5, 13 - endanim -; 0xd1dd6 diff --git a/gfx/pics/eevee/back.2bpp.lz.bc34ce62 b/gfx/pics/eevee/back.2bpp.lz.bc34ce62 deleted file mode 100644 index ddd051f3a..000000000 Binary files a/gfx/pics/eevee/back.2bpp.lz.bc34ce62 and /dev/null differ diff --git a/gfx/pics/eevee/back.png b/gfx/pics/eevee/back.png deleted file mode 100644 index 7dbca2487..000000000 Binary files a/gfx/pics/eevee/back.png and /dev/null differ diff --git a/gfx/pics/eevee/front.animated.2bpp.lz.04e72b48 b/gfx/pics/eevee/front.animated.2bpp.lz.04e72b48 deleted file mode 100644 index aea8d545e..000000000 Binary files a/gfx/pics/eevee/front.animated.2bpp.lz.04e72b48 and /dev/null differ diff --git a/gfx/pics/eevee/front.png b/gfx/pics/eevee/front.png deleted file mode 100644 index b35e901c8..000000000 Binary files a/gfx/pics/eevee/front.png and /dev/null differ diff --git a/gfx/pics/eevee/shiny.pal b/gfx/pics/eevee/shiny.pal deleted file mode 100644 index 69759609c..000000000 --- a/gfx/pics/eevee/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 19, 21 - RGB 12, 14, 13 - diff --git a/gfx/pics/egg/anim0.asm b/gfx/pics/egg/anim0.asm deleted file mode 100644 index 1ded66327..000000000 --- a/gfx/pics/egg/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 1, 04 - frame 0, 04 - frame 2, 04 - frame 0, 04 - dorepeat 1 - endanim -; 0xd16a3 diff --git a/gfx/pics/egg/anim1.asm b/gfx/pics/egg/anim1.asm deleted file mode 100644 index 634736c6b..000000000 --- a/gfx/pics/egg/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 03 - frame 0, 03 - frame 2, 03 - endanim -; 0xd2229 diff --git a/gfx/pics/egg/front.animated.2bpp.lz.7b468eff b/gfx/pics/egg/front.animated.2bpp.lz.7b468eff deleted file mode 100644 index 47d8b997e..000000000 Binary files a/gfx/pics/egg/front.animated.2bpp.lz.7b468eff and /dev/null differ diff --git a/gfx/pics/egg/front.png b/gfx/pics/egg/front.png deleted file mode 100644 index be8e9d4a4..000000000 Binary files a/gfx/pics/egg/front.png and /dev/null differ diff --git a/gfx/pics/ekans/anim0.asm b/gfx/pics/ekans/anim0.asm deleted file mode 100644 index 9728434c0..000000000 --- a/gfx/pics/ekans/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 08 - frame 0, 05 - setrepeat 7 - frame 2, 03 - frame 3, 03 - dorepeat 3 - frame 2, 20 - endanim -; 0xd09d2 diff --git a/gfx/pics/ekans/anim1.asm b/gfx/pics/ekans/anim1.asm deleted file mode 100644 index 660a4f971..000000000 --- a/gfx/pics/ekans/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 5 - frame 4, 02 - frame 5, 02 - frame 4, 02 - frame 0, 02 - dorepeat 1 - endanim -; 0xd199c diff --git a/gfx/pics/ekans/back.2bpp.lz.671d14d9 b/gfx/pics/ekans/back.2bpp.lz.671d14d9 deleted file mode 100644 index 07785737f..000000000 Binary files a/gfx/pics/ekans/back.2bpp.lz.671d14d9 and /dev/null differ diff --git a/gfx/pics/ekans/back.png b/gfx/pics/ekans/back.png deleted file mode 100644 index d61670da7..000000000 Binary files a/gfx/pics/ekans/back.png and /dev/null differ diff --git a/gfx/pics/ekans/front.animated.2bpp.lz.018a1c72 b/gfx/pics/ekans/front.animated.2bpp.lz.018a1c72 deleted file mode 100644 index efa075fab..000000000 Binary files a/gfx/pics/ekans/front.animated.2bpp.lz.018a1c72 and /dev/null differ diff --git a/gfx/pics/ekans/front.png b/gfx/pics/ekans/front.png deleted file mode 100644 index 21f476943..000000000 Binary files a/gfx/pics/ekans/front.png and /dev/null differ diff --git a/gfx/pics/ekans/shiny.pal b/gfx/pics/ekans/shiny.pal deleted file mode 100644 index 6f71f8cbb..000000000 --- a/gfx/pics/ekans/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 23, 13 - RGB 09, 11, 05 - diff --git a/gfx/pics/electabuzz/anim0.asm b/gfx/pics/electabuzz/anim0.asm deleted file mode 100644 index 4e2a550ed..000000000 --- a/gfx/pics/electabuzz/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 1, 08 - setrepeat 3 - setrepeat 3 - frame 1, 02 - frame 2, 02 - dorepeat 3 - setrepeat 4 - frame 3, 02 - frame 4, 02 - dorepeat 7 - dorepeat 7 - endanim -; 0xd0fcc diff --git a/gfx/pics/electabuzz/anim1.asm b/gfx/pics/electabuzz/anim1.asm deleted file mode 100644 index efff4b3db..000000000 --- a/gfx/pics/electabuzz/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 4 - frame 0, 04 - frame 5, 04 - dorepeat 1 - endanim -; 0xd1d8a diff --git a/gfx/pics/electabuzz/back.2bpp.lz.e97330fe b/gfx/pics/electabuzz/back.2bpp.lz.e97330fe deleted file mode 100644 index b64bc1ca1..000000000 Binary files a/gfx/pics/electabuzz/back.2bpp.lz.e97330fe and /dev/null differ diff --git a/gfx/pics/electabuzz/back.png b/gfx/pics/electabuzz/back.png deleted file mode 100644 index 73496522e..000000000 Binary files a/gfx/pics/electabuzz/back.png and /dev/null differ diff --git a/gfx/pics/electabuzz/front.animated.2bpp.lz.381e1c6e b/gfx/pics/electabuzz/front.animated.2bpp.lz.381e1c6e deleted file mode 100644 index 645db8d4d..000000000 Binary files a/gfx/pics/electabuzz/front.animated.2bpp.lz.381e1c6e and /dev/null differ diff --git a/gfx/pics/electabuzz/front.png b/gfx/pics/electabuzz/front.png deleted file mode 100644 index 3d44a603a..000000000 Binary files a/gfx/pics/electabuzz/front.png and /dev/null differ diff --git a/gfx/pics/electabuzz/shiny.pal b/gfx/pics/electabuzz/shiny.pal deleted file mode 100644 index e932aa461..000000000 --- a/gfx/pics/electabuzz/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 25, 00 - RGB 18, 20, 00 - diff --git a/gfx/pics/electrode/anim0.asm b/gfx/pics/electrode/anim0.asm deleted file mode 100644 index 18b31e305..000000000 --- a/gfx/pics/electrode/anim0.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 1, 05 - frame 2, 40 - endanim -; 0xd0e5c diff --git a/gfx/pics/electrode/anim1.asm b/gfx/pics/electrode/anim1.asm deleted file mode 100644 index 30d1b1788..000000000 --- a/gfx/pics/electrode/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 3, 45 - endanim -; 0xd1ca8 diff --git a/gfx/pics/electrode/back.2bpp.lz.874e1f1c b/gfx/pics/electrode/back.2bpp.lz.874e1f1c deleted file mode 100644 index 9161c8884..000000000 Binary files a/gfx/pics/electrode/back.2bpp.lz.874e1f1c and /dev/null differ diff --git a/gfx/pics/electrode/back.png b/gfx/pics/electrode/back.png deleted file mode 100644 index ea243bf3c..000000000 Binary files a/gfx/pics/electrode/back.png and /dev/null differ diff --git a/gfx/pics/electrode/front.animated.2bpp.lz.d7943ad8 b/gfx/pics/electrode/front.animated.2bpp.lz.d7943ad8 deleted file mode 100644 index 2d86aa4ac..000000000 Binary files a/gfx/pics/electrode/front.animated.2bpp.lz.d7943ad8 and /dev/null differ diff --git a/gfx/pics/electrode/front.png b/gfx/pics/electrode/front.png deleted file mode 100644 index 25c181357..000000000 Binary files a/gfx/pics/electrode/front.png and /dev/null differ diff --git a/gfx/pics/electrode/shiny.pal b/gfx/pics/electrode/shiny.pal deleted file mode 100644 index b8509a81f..000000000 --- a/gfx/pics/electrode/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 20, 17 - RGB 09, 02, 28 - diff --git a/gfx/pics/elekid/anim0.asm b/gfx/pics/elekid/anim0.asm deleted file mode 100644 index 590dccf14..000000000 --- a/gfx/pics/elekid/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 07 - setrepeat 7 - frame 2, 03 - frame 1, 03 - dorepeat 2 - setrepeat 4 - frame 4, 03 - frame 3, 03 - dorepeat 6 - endanim -; 0xd15e0 diff --git a/gfx/pics/elekid/anim1.asm b/gfx/pics/elekid/anim1.asm deleted file mode 100644 index cd10626f6..000000000 --- a/gfx/pics/elekid/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 5, 09 - frame 3, 09 - dorepeat 1 - frame 3, 20 - endanim -; 0xd21a6 diff --git a/gfx/pics/elekid/back.2bpp.lz.227a1b23 b/gfx/pics/elekid/back.2bpp.lz.227a1b23 deleted file mode 100644 index fd8dd04df..000000000 Binary files a/gfx/pics/elekid/back.2bpp.lz.227a1b23 and /dev/null differ diff --git a/gfx/pics/elekid/back.png b/gfx/pics/elekid/back.png deleted file mode 100644 index 8049ca5ad..000000000 Binary files a/gfx/pics/elekid/back.png and /dev/null differ diff --git a/gfx/pics/elekid/front.animated.2bpp.lz.3bbb6b61 b/gfx/pics/elekid/front.animated.2bpp.lz.3bbb6b61 deleted file mode 100644 index dde6b0e0b..000000000 Binary files a/gfx/pics/elekid/front.animated.2bpp.lz.3bbb6b61 and /dev/null differ diff --git a/gfx/pics/elekid/front.png b/gfx/pics/elekid/front.png deleted file mode 100644 index eaefbdc6c..000000000 Binary files a/gfx/pics/elekid/front.png and /dev/null differ diff --git a/gfx/pics/elekid/shiny.pal b/gfx/pics/elekid/shiny.pal deleted file mode 100644 index 4eb42c6d4..000000000 --- a/gfx/pics/elekid/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 24, 05 - RGB 15, 15, 17 - diff --git a/gfx/pics/entei/anim0.asm b/gfx/pics/entei/anim0.asm deleted file mode 100644 index 66c2c128d..000000000 --- a/gfx/pics/entei/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 04 - frame 1, 10 - frame 2, 12 - frame 3, 30 - endanim -; 0xd161d diff --git a/gfx/pics/entei/anim1.asm b/gfx/pics/entei/anim1.asm deleted file mode 100644 index f20e5d072..000000000 --- a/gfx/pics/entei/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd21d7 diff --git a/gfx/pics/entei/back.2bpp.lz.d1e1986a b/gfx/pics/entei/back.2bpp.lz.d1e1986a deleted file mode 100644 index 7f2440f51..000000000 Binary files a/gfx/pics/entei/back.2bpp.lz.d1e1986a and /dev/null differ diff --git a/gfx/pics/entei/back.png b/gfx/pics/entei/back.png deleted file mode 100644 index fa966a3c9..000000000 Binary files a/gfx/pics/entei/back.png and /dev/null differ diff --git a/gfx/pics/entei/front.animated.2bpp.lz.ebaf8024 b/gfx/pics/entei/front.animated.2bpp.lz.ebaf8024 deleted file mode 100644 index bc969fe65..000000000 Binary files a/gfx/pics/entei/front.animated.2bpp.lz.ebaf8024 and /dev/null differ diff --git a/gfx/pics/entei/front.png b/gfx/pics/entei/front.png deleted file mode 100644 index 220bcf9a6..000000000 Binary files a/gfx/pics/entei/front.png and /dev/null differ diff --git a/gfx/pics/entei/shiny.pal b/gfx/pics/entei/shiny.pal deleted file mode 100644 index e806f7e00..000000000 --- a/gfx/pics/entei/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 10, 01 - RGB 10, 10, 08 - diff --git a/gfx/pics/espeon/anim0.asm b/gfx/pics/espeon/anim0.asm deleted file mode 100644 index 8a54a9b97..000000000 --- a/gfx/pics/espeon/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 08 - frame 1, 26 - setrepeat 2 - frame 0, 07 - frame 2, 07 - frame 3, 07 - dorepeat 3 - endanim -; 0xd13af diff --git a/gfx/pics/espeon/anim1.asm b/gfx/pics/espeon/anim1.asm deleted file mode 100644 index 33c88d1b4..000000000 --- a/gfx/pics/espeon/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd203d diff --git a/gfx/pics/espeon/back.2bpp.lz.0e77f26e b/gfx/pics/espeon/back.2bpp.lz.0e77f26e deleted file mode 100644 index 59a69eae1..000000000 Binary files a/gfx/pics/espeon/back.2bpp.lz.0e77f26e and /dev/null differ diff --git a/gfx/pics/espeon/back.png b/gfx/pics/espeon/back.png deleted file mode 100644 index 26d2d2973..000000000 Binary files a/gfx/pics/espeon/back.png and /dev/null differ diff --git a/gfx/pics/espeon/front.animated.2bpp.lz.069f57ec b/gfx/pics/espeon/front.animated.2bpp.lz.069f57ec deleted file mode 100644 index b7d983e9f..000000000 Binary files a/gfx/pics/espeon/front.animated.2bpp.lz.069f57ec and /dev/null differ diff --git a/gfx/pics/espeon/front.png b/gfx/pics/espeon/front.png deleted file mode 100644 index dd68a6c18..000000000 Binary files a/gfx/pics/espeon/front.png and /dev/null differ diff --git a/gfx/pics/espeon/shiny.pal b/gfx/pics/espeon/shiny.pal deleted file mode 100644 index 8f2343d89..000000000 --- a/gfx/pics/espeon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 31, 10 - RGB 10, 16, 08 - diff --git a/gfx/pics/exeggcute/anim0.asm b/gfx/pics/exeggcute/anim0.asm deleted file mode 100644 index 0f0c10729..000000000 --- a/gfx/pics/exeggcute/anim0.asm +++ /dev/null @@ -1,17 +0,0 @@ - frame 0, 08 - setrepeat 2 - frame 1, 04 - frame 2, 04 - dorepeat 2 - frame 0, 01 - setrepeat 3 - frame 1, 03 - frame 2, 03 - dorepeat 7 - frame 0, 01 - frame 1, 04 - frame 2, 04 - frame 0, 08 - frame 3, 08 - endanim -; 0xd0e7b diff --git a/gfx/pics/exeggcute/anim1.asm b/gfx/pics/exeggcute/anim1.asm deleted file mode 100644 index ef839f5d1..000000000 --- a/gfx/pics/exeggcute/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1cb1 diff --git a/gfx/pics/exeggcute/back.2bpp.lz.060c38b0 b/gfx/pics/exeggcute/back.2bpp.lz.060c38b0 deleted file mode 100644 index 1877fcea1..000000000 Binary files a/gfx/pics/exeggcute/back.2bpp.lz.060c38b0 and /dev/null differ diff --git a/gfx/pics/exeggcute/back.png b/gfx/pics/exeggcute/back.png deleted file mode 100644 index 97f04b02f..000000000 Binary files a/gfx/pics/exeggcute/back.png and /dev/null differ diff --git a/gfx/pics/exeggcute/front.animated.2bpp.lz.578a4722 b/gfx/pics/exeggcute/front.animated.2bpp.lz.578a4722 deleted file mode 100644 index 9d018e7c4..000000000 Binary files a/gfx/pics/exeggcute/front.animated.2bpp.lz.578a4722 and /dev/null differ diff --git a/gfx/pics/exeggcute/front.png b/gfx/pics/exeggcute/front.png deleted file mode 100644 index a492d0cf5..000000000 Binary files a/gfx/pics/exeggcute/front.png and /dev/null differ diff --git a/gfx/pics/exeggcute/shiny.pal b/gfx/pics/exeggcute/shiny.pal deleted file mode 100644 index 63686e6f0..000000000 --- a/gfx/pics/exeggcute/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 25, 06 - RGB 19, 12, 09 - diff --git a/gfx/pics/exeggutor/anim0.asm b/gfx/pics/exeggutor/anim0.asm deleted file mode 100644 index 92f11a117..000000000 --- a/gfx/pics/exeggutor/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 07 - frame 0, 07 - frame 1, 07 - setrepeat 3 - frame 2, 06 - frame 0, 06 - dorepeat 4 - endanim -; 0xd0e8a diff --git a/gfx/pics/exeggutor/anim1.asm b/gfx/pics/exeggutor/anim1.asm deleted file mode 100644 index 3e5542c97..000000000 --- a/gfx/pics/exeggutor/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 4 - frame 0, 06 - frame 1, 06 - dorepeat 1 - endanim -; 0xd1cba diff --git a/gfx/pics/exeggutor/back.2bpp.lz.e012643e b/gfx/pics/exeggutor/back.2bpp.lz.e012643e deleted file mode 100644 index abf6c97dd..000000000 Binary files a/gfx/pics/exeggutor/back.2bpp.lz.e012643e and /dev/null differ diff --git a/gfx/pics/exeggutor/back.png b/gfx/pics/exeggutor/back.png deleted file mode 100644 index 7812499b1..000000000 Binary files a/gfx/pics/exeggutor/back.png and /dev/null differ diff --git a/gfx/pics/exeggutor/front.animated.2bpp.lz.3915d572 b/gfx/pics/exeggutor/front.animated.2bpp.lz.3915d572 deleted file mode 100644 index b4056b175..000000000 Binary files a/gfx/pics/exeggutor/front.animated.2bpp.lz.3915d572 and /dev/null differ diff --git a/gfx/pics/exeggutor/front.png b/gfx/pics/exeggutor/front.png deleted file mode 100644 index b9d75b166..000000000 Binary files a/gfx/pics/exeggutor/front.png and /dev/null differ diff --git a/gfx/pics/exeggutor/shiny.pal b/gfx/pics/exeggutor/shiny.pal deleted file mode 100644 index c580552e0..000000000 --- a/gfx/pics/exeggutor/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 17, 08 - RGB 24, 14, 09 - diff --git a/gfx/pics/extra_pointers.asm b/gfx/pics/extra_pointers.asm deleted file mode 100644 index 7afd95148..000000000 --- a/gfx/pics/extra_pointers.asm +++ /dev/null @@ -1,252 +0,0 @@ -AnimationExtraPointers: - dw BulbasaurAnimationExtra - dw IvysaurAnimationExtra - dw VenusaurAnimationExtra - dw CharmanderAnimationExtra - dw CharmeleonAnimationExtra - dw CharizardAnimationExtra - dw SquirtleAnimationExtra - dw WartortleAnimationExtra - dw BlastoiseAnimationExtra - dw CaterpieAnimationExtra - dw MetapodAnimationExtra - dw ButterfreeAnimationExtra - dw WeedleAnimationExtra - dw KakunaAnimationExtra - dw BeedrillAnimationExtra - dw PidgeyAnimationExtra - dw PidgeottoAnimationExtra - dw PidgeotAnimationExtra - dw RattataAnimationExtra - dw RaticateAnimationExtra - dw SpearowAnimationExtra - dw FearowAnimationExtra - dw EkansAnimationExtra - dw ArbokAnimationExtra - dw PikachuAnimationExtra - dw RaichuAnimationExtra - dw SandshrewAnimationExtra - dw SandslashAnimationExtra - dw NidoranFAnimationExtra - dw NidorinaAnimationExtra - dw NidoqueenAnimationExtra - dw NidoranMAnimationExtra - dw NidorinoAnimationExtra - dw NidokingAnimationExtra - dw ClefairyAnimationExtra - dw ClefableAnimationExtra - dw VulpixAnimationExtra - dw NinetalesAnimationExtra - dw JigglypuffAnimationExtra - dw WigglytuffAnimationExtra - dw ZubatAnimationExtra - dw GolbatAnimationExtra - dw OddishAnimationExtra - dw GloomAnimationExtra - dw VileplumeAnimationExtra - dw ParasAnimationExtra - dw ParasectAnimationExtra - dw VenonatAnimationExtra - dw VenomothAnimationExtra - dw DiglettAnimationExtra - dw DugtrioAnimationExtra - dw MeowthAnimationExtra - dw PersianAnimationExtra - dw PsyduckAnimationExtra - dw GolduckAnimationExtra - dw MankeyAnimationExtra - dw PrimeapeAnimationExtra - dw GrowlitheAnimationExtra - dw ArcanineAnimationExtra - dw PoliwagAnimationExtra - dw PoliwhirlAnimationExtra - dw PoliwrathAnimationExtra - dw AbraAnimationExtra - dw KadabraAnimationExtra - dw AlakazamAnimationExtra - dw MachopAnimationExtra - dw MachokeAnimationExtra - dw MachampAnimationExtra - dw BellsproutAnimationExtra - dw WeepinbellAnimationExtra - dw VictreebelAnimationExtra - dw TentacoolAnimationExtra - dw TentacruelAnimationExtra - dw GeodudeAnimationExtra - dw GravelerAnimationExtra - dw GolemAnimationExtra - dw PonytaAnimationExtra - dw RapidashAnimationExtra - dw SlowpokeAnimationExtra - dw SlowbroAnimationExtra - dw MagnemiteAnimationExtra - dw MagnetonAnimationExtra - dw FarfetchDAnimationExtra - dw DoduoAnimationExtra - dw DodrioAnimationExtra - dw SeelAnimationExtra - dw DewgongAnimationExtra - dw GrimerAnimationExtra - dw MukAnimationExtra - dw ShellderAnimationExtra - dw CloysterAnimationExtra - dw GastlyAnimationExtra - dw HaunterAnimationExtra - dw GengarAnimationExtra - dw OnixAnimationExtra - dw DrowzeeAnimationExtra - dw HypnoAnimationExtra - dw KrabbyAnimationExtra - dw KinglerAnimationExtra - dw VoltorbAnimationExtra - dw ElectrodeAnimationExtra - dw ExeggcuteAnimationExtra - dw ExeggutorAnimationExtra - dw CuboneAnimationExtra - dw MarowakAnimationExtra - dw HitmonleeAnimationExtra - dw HitmonchanAnimationExtra - dw LickitungAnimationExtra - dw KoffingAnimationExtra - dw WeezingAnimationExtra - dw RhyhornAnimationExtra - dw RhydonAnimationExtra - dw ChanseyAnimationExtra - dw TangelaAnimationExtra - dw KangaskhanAnimationExtra - dw HorseaAnimationExtra - dw SeadraAnimationExtra - dw GoldeenAnimationExtra - dw SeakingAnimationExtra - dw StaryuAnimationExtra - dw StarmieAnimationExtra - dw MrMimeAnimationExtra - dw ScytherAnimationExtra - dw JynxAnimationExtra - dw ElectabuzzAnimationExtra - dw MagmarAnimationExtra - dw PinsirAnimationExtra - dw TaurosAnimationExtra - dw MagikarpAnimationExtra - dw GyaradosAnimationExtra - dw LaprasAnimationExtra - dw DittoAnimationExtra - dw EeveeAnimationExtra - dw VaporeonAnimationExtra - dw JolteonAnimationExtra - dw FlareonAnimationExtra - dw PorygonAnimationExtra - dw OmanyteAnimationExtra - dw OmastarAnimationExtra - dw KabutoAnimationExtra - dw KabutopsAnimationExtra - dw AerodactylAnimationExtra - dw SnorlaxAnimationExtra - dw ArticunoAnimationExtra - dw ZapdosAnimationExtra - dw MoltresAnimationExtra - dw DratiniAnimationExtra - dw DragonairAnimationExtra - dw DragoniteAnimationExtra - dw MewtwoAnimationExtra - dw MewAnimationExtra - dw ChikoritaAnimationExtra - dw BayleefAnimationExtra - dw MeganiumAnimationExtra - dw CyndaquilAnimationExtra - dw QuilavaAnimationExtra - dw TyphlosionAnimationExtra - dw TotodileAnimationExtra - dw CroconawAnimationExtra - dw FeraligatrAnimationExtra - dw SentretAnimationExtra - dw FurretAnimationExtra - dw HoothootAnimationExtra - dw NoctowlAnimationExtra - dw LedybaAnimationExtra - dw LedianAnimationExtra - dw SpinarakAnimationExtra - dw AriadosAnimationExtra - dw CrobatAnimationExtra - dw ChinchouAnimationExtra - dw LanturnAnimationExtra - dw PichuAnimationExtra - dw CleffaAnimationExtra - dw IgglybuffAnimationExtra - dw TogepiAnimationExtra - dw TogeticAnimationExtra - dw NatuAnimationExtra - dw XatuAnimationExtra - dw MareepAnimationExtra - dw FlaaffyAnimationExtra - dw AmpharosAnimationExtra - dw BellossomAnimationExtra - dw MarillAnimationExtra - dw AzumarillAnimationExtra - dw SudowoodoAnimationExtra - dw PolitoedAnimationExtra - dw HoppipAnimationExtra - dw SkiploomAnimationExtra - dw JumpluffAnimationExtra - dw AipomAnimationExtra - dw SunkernAnimationExtra - dw SunfloraAnimationExtra - dw YanmaAnimationExtra - dw WooperAnimationExtra - dw QuagsireAnimationExtra - dw EspeonAnimationExtra - dw UmbreonAnimationExtra - dw MurkrowAnimationExtra - dw SlowkingAnimationExtra - dw MisdreavusAnimationExtra - dw UnownAnimationExtra - dw WobbuffetAnimationExtra - dw GirafarigAnimationExtra - dw PinecoAnimationExtra - dw ForretressAnimationExtra - dw DunsparceAnimationExtra - dw GligarAnimationExtra - dw SteelixAnimationExtra - dw SnubbullAnimationExtra - dw GranbullAnimationExtra - dw QwilfishAnimationExtra - dw ScizorAnimationExtra - dw ShuckleAnimationExtra - dw HeracrossAnimationExtra - dw SneaselAnimationExtra - dw TeddiursaAnimationExtra - dw UrsaringAnimationExtra - dw SlugmaAnimationExtra - dw MagcargoAnimationExtra - dw SwinubAnimationExtra - dw PiloswineAnimationExtra - dw CorsolaAnimationExtra - dw RemoraidAnimationExtra - dw OctilleryAnimationExtra - dw DelibirdAnimationExtra - dw MantineAnimationExtra - dw SkarmoryAnimationExtra - dw HoundourAnimationExtra - dw HoundoomAnimationExtra - dw KingdraAnimationExtra - dw PhanpyAnimationExtra - dw DonphanAnimationExtra - dw Porygon2AnimationExtra - dw StantlerAnimationExtra - dw SmeargleAnimationExtra - dw TyrogueAnimationExtra - dw HitmontopAnimationExtra - dw SmoochumAnimationExtra - dw ElekidAnimationExtra - dw MagbyAnimationExtra - dw MiltankAnimationExtra - dw BlisseyAnimationExtra - dw RaikouAnimationExtra - dw EnteiAnimationExtra - dw SuicuneAnimationExtra - dw LarvitarAnimationExtra - dw PupitarAnimationExtra - dw TyranitarAnimationExtra - dw LugiaAnimationExtra - dw HoOhAnimationExtra - dw CelebiAnimationExtra diff --git a/gfx/pics/extras.asm b/gfx/pics/extras.asm deleted file mode 100644 index 682cbb635..000000000 --- a/gfx/pics/extras.asm +++ /dev/null @@ -1,252 +0,0 @@ -BulbasaurAnimationExtra: INCLUDE "gfx/pics/bulbasaur/anim1.asm" -IvysaurAnimationExtra: INCLUDE "gfx/pics/ivysaur/anim1.asm" -VenusaurAnimationExtra: INCLUDE "gfx/pics/venusaur/anim1.asm" -CharmanderAnimationExtra: INCLUDE "gfx/pics/charmander/anim1.asm" -CharmeleonAnimationExtra: INCLUDE "gfx/pics/charmeleon/anim1.asm" -CharizardAnimationExtra: INCLUDE "gfx/pics/charizard/anim1.asm" -SquirtleAnimationExtra: INCLUDE "gfx/pics/squirtle/anim1.asm" -WartortleAnimationExtra: INCLUDE "gfx/pics/wartortle/anim1.asm" -BlastoiseAnimationExtra: INCLUDE "gfx/pics/blastoise/anim1.asm" -CaterpieAnimationExtra: INCLUDE "gfx/pics/caterpie/anim1.asm" -MetapodAnimationExtra: INCLUDE "gfx/pics/metapod/anim1.asm" -ButterfreeAnimationExtra: INCLUDE "gfx/pics/butterfree/anim1.asm" -WeedleAnimationExtra: INCLUDE "gfx/pics/weedle/anim1.asm" -KakunaAnimationExtra: INCLUDE "gfx/pics/kakuna/anim1.asm" -BeedrillAnimationExtra: INCLUDE "gfx/pics/beedrill/anim1.asm" -PidgeyAnimationExtra: INCLUDE "gfx/pics/pidgey/anim1.asm" -PidgeottoAnimationExtra: INCLUDE "gfx/pics/pidgeotto/anim1.asm" -PidgeotAnimationExtra: INCLUDE "gfx/pics/pidgeot/anim1.asm" -RattataAnimationExtra: INCLUDE "gfx/pics/rattata/anim1.asm" -RaticateAnimationExtra: INCLUDE "gfx/pics/raticate/anim1.asm" -SpearowAnimationExtra: INCLUDE "gfx/pics/spearow/anim1.asm" -FearowAnimationExtra: INCLUDE "gfx/pics/fearow/anim1.asm" -EkansAnimationExtra: INCLUDE "gfx/pics/ekans/anim1.asm" -ArbokAnimationExtra: INCLUDE "gfx/pics/arbok/anim1.asm" -PikachuAnimationExtra: INCLUDE "gfx/pics/pikachu/anim1.asm" -RaichuAnimationExtra: INCLUDE "gfx/pics/raichu/anim1.asm" -SandshrewAnimationExtra: INCLUDE "gfx/pics/sandshrew/anim1.asm" -SandslashAnimationExtra: INCLUDE "gfx/pics/sandslash/anim1.asm" -NidoranFAnimationExtra: INCLUDE "gfx/pics/nidoran_f/anim1.asm" -NidorinaAnimationExtra: INCLUDE "gfx/pics/nidorina/anim1.asm" -NidoqueenAnimationExtra: INCLUDE "gfx/pics/nidoqueen/anim1.asm" -NidoranMAnimationExtra: INCLUDE "gfx/pics/nidoran_m/anim1.asm" -NidorinoAnimationExtra: INCLUDE "gfx/pics/nidorino/anim1.asm" -NidokingAnimationExtra: INCLUDE "gfx/pics/nidoking/anim1.asm" -ClefairyAnimationExtra: INCLUDE "gfx/pics/clefairy/anim1.asm" -ClefableAnimationExtra: INCLUDE "gfx/pics/clefable/anim1.asm" -VulpixAnimationExtra: INCLUDE "gfx/pics/vulpix/anim1.asm" -NinetalesAnimationExtra: INCLUDE "gfx/pics/ninetales/anim1.asm" -JigglypuffAnimationExtra: INCLUDE "gfx/pics/jigglypuff/anim1.asm" -WigglytuffAnimationExtra: INCLUDE "gfx/pics/wigglytuff/anim1.asm" -ZubatAnimationExtra: INCLUDE "gfx/pics/zubat/anim1.asm" -GolbatAnimationExtra: INCLUDE "gfx/pics/golbat/anim1.asm" -OddishAnimationExtra: INCLUDE "gfx/pics/oddish/anim1.asm" -GloomAnimationExtra: INCLUDE "gfx/pics/gloom/anim1.asm" -VileplumeAnimationExtra: INCLUDE "gfx/pics/vileplume/anim1.asm" -ParasAnimationExtra: INCLUDE "gfx/pics/paras/anim1.asm" -ParasectAnimationExtra: INCLUDE "gfx/pics/parasect/anim1.asm" -VenonatAnimationExtra: INCLUDE "gfx/pics/venonat/anim1.asm" -VenomothAnimationExtra: INCLUDE "gfx/pics/venomoth/anim1.asm" -DiglettAnimationExtra: INCLUDE "gfx/pics/diglett/anim1.asm" -DugtrioAnimationExtra: INCLUDE "gfx/pics/dugtrio/anim1.asm" -MeowthAnimationExtra: INCLUDE "gfx/pics/meowth/anim1.asm" -PersianAnimationExtra: INCLUDE "gfx/pics/persian/anim1.asm" -PsyduckAnimationExtra: INCLUDE "gfx/pics/psyduck/anim1.asm" -GolduckAnimationExtra: INCLUDE "gfx/pics/golduck/anim1.asm" -MankeyAnimationExtra: INCLUDE "gfx/pics/mankey/anim1.asm" -PrimeapeAnimationExtra: INCLUDE "gfx/pics/primeape/anim1.asm" -GrowlitheAnimationExtra: INCLUDE "gfx/pics/growlithe/anim1.asm" -ArcanineAnimationExtra: INCLUDE "gfx/pics/arcanine/anim1.asm" -PoliwagAnimationExtra: INCLUDE "gfx/pics/poliwag/anim1.asm" -PoliwhirlAnimationExtra: INCLUDE "gfx/pics/poliwhirl/anim1.asm" -PoliwrathAnimationExtra: INCLUDE "gfx/pics/poliwrath/anim1.asm" -AbraAnimationExtra: INCLUDE "gfx/pics/abra/anim1.asm" -KadabraAnimationExtra: INCLUDE "gfx/pics/kadabra/anim1.asm" -AlakazamAnimationExtra: INCLUDE "gfx/pics/alakazam/anim1.asm" -MachopAnimationExtra: INCLUDE "gfx/pics/machop/anim1.asm" -MachokeAnimationExtra: INCLUDE "gfx/pics/machoke/anim1.asm" -MachampAnimationExtra: INCLUDE "gfx/pics/machamp/anim1.asm" -BellsproutAnimationExtra: INCLUDE "gfx/pics/bellsprout/anim1.asm" -WeepinbellAnimationExtra: INCLUDE "gfx/pics/weepinbell/anim1.asm" -VictreebelAnimationExtra: INCLUDE "gfx/pics/victreebel/anim1.asm" -TentacoolAnimationExtra: INCLUDE "gfx/pics/tentacool/anim1.asm" -TentacruelAnimationExtra: INCLUDE "gfx/pics/tentacruel/anim1.asm" -GeodudeAnimationExtra: INCLUDE "gfx/pics/geodude/anim1.asm" -GravelerAnimationExtra: INCLUDE "gfx/pics/graveler/anim1.asm" -GolemAnimationExtra: INCLUDE "gfx/pics/golem/anim1.asm" -PonytaAnimationExtra: INCLUDE "gfx/pics/ponyta/anim1.asm" -RapidashAnimationExtra: INCLUDE "gfx/pics/rapidash/anim1.asm" -SlowpokeAnimationExtra: INCLUDE "gfx/pics/slowpoke/anim1.asm" -SlowbroAnimationExtra: INCLUDE "gfx/pics/slowbro/anim1.asm" -MagnemiteAnimationExtra: INCLUDE "gfx/pics/magnemite/anim1.asm" -MagnetonAnimationExtra: INCLUDE "gfx/pics/magneton/anim1.asm" -FarfetchDAnimationExtra: INCLUDE "gfx/pics/farfetch_d/anim1.asm" -DoduoAnimationExtra: INCLUDE "gfx/pics/doduo/anim1.asm" -DodrioAnimationExtra: INCLUDE "gfx/pics/dodrio/anim1.asm" -SeelAnimationExtra: INCLUDE "gfx/pics/seel/anim1.asm" -DewgongAnimationExtra: INCLUDE "gfx/pics/dewgong/anim1.asm" -GrimerAnimationExtra: INCLUDE "gfx/pics/grimer/anim1.asm" -MukAnimationExtra: INCLUDE "gfx/pics/muk/anim1.asm" -ShellderAnimationExtra: INCLUDE "gfx/pics/shellder/anim1.asm" -CloysterAnimationExtra: INCLUDE "gfx/pics/cloyster/anim1.asm" -GastlyAnimationExtra: INCLUDE "gfx/pics/gastly/anim1.asm" -HaunterAnimationExtra: INCLUDE "gfx/pics/haunter/anim1.asm" -GengarAnimationExtra: INCLUDE "gfx/pics/gengar/anim1.asm" -OnixAnimationExtra: INCLUDE "gfx/pics/onix/anim1.asm" -DrowzeeAnimationExtra: INCLUDE "gfx/pics/drowzee/anim1.asm" -HypnoAnimationExtra: INCLUDE "gfx/pics/hypno/anim1.asm" -KrabbyAnimationExtra: INCLUDE "gfx/pics/krabby/anim1.asm" -KinglerAnimationExtra: INCLUDE "gfx/pics/kingler/anim1.asm" -VoltorbAnimationExtra: INCLUDE "gfx/pics/voltorb/anim1.asm" -ElectrodeAnimationExtra: INCLUDE "gfx/pics/electrode/anim1.asm" -ExeggcuteAnimationExtra: INCLUDE "gfx/pics/exeggcute/anim1.asm" -ExeggutorAnimationExtra: INCLUDE "gfx/pics/exeggutor/anim1.asm" -CuboneAnimationExtra: INCLUDE "gfx/pics/cubone/anim1.asm" -MarowakAnimationExtra: INCLUDE "gfx/pics/marowak/anim1.asm" -HitmonleeAnimationExtra: INCLUDE "gfx/pics/hitmonlee/anim1.asm" -HitmonchanAnimationExtra: INCLUDE "gfx/pics/hitmonchan/anim1.asm" -LickitungAnimationExtra: INCLUDE "gfx/pics/lickitung/anim1.asm" -KoffingAnimationExtra: INCLUDE "gfx/pics/koffing/anim1.asm" -WeezingAnimationExtra: INCLUDE "gfx/pics/weezing/anim1.asm" -RhyhornAnimationExtra: INCLUDE "gfx/pics/rhyhorn/anim1.asm" -RhydonAnimationExtra: INCLUDE "gfx/pics/rhydon/anim1.asm" -ChanseyAnimationExtra: INCLUDE "gfx/pics/chansey/anim1.asm" -TangelaAnimationExtra: INCLUDE "gfx/pics/tangela/anim1.asm" -KangaskhanAnimationExtra: INCLUDE "gfx/pics/kangaskhan/anim1.asm" -HorseaAnimationExtra: INCLUDE "gfx/pics/horsea/anim1.asm" -SeadraAnimationExtra: INCLUDE "gfx/pics/seadra/anim1.asm" -GoldeenAnimationExtra: INCLUDE "gfx/pics/goldeen/anim1.asm" -SeakingAnimationExtra: INCLUDE "gfx/pics/seaking/anim1.asm" -StaryuAnimationExtra: INCLUDE "gfx/pics/staryu/anim1.asm" -StarmieAnimationExtra: INCLUDE "gfx/pics/starmie/anim1.asm" -MrMimeAnimationExtra: INCLUDE "gfx/pics/mr__mime/anim1.asm" -ScytherAnimationExtra: INCLUDE "gfx/pics/scyther/anim1.asm" -JynxAnimationExtra: INCLUDE "gfx/pics/jynx/anim1.asm" -ElectabuzzAnimationExtra: INCLUDE "gfx/pics/electabuzz/anim1.asm" -MagmarAnimationExtra: INCLUDE "gfx/pics/magmar/anim1.asm" -PinsirAnimationExtra: INCLUDE "gfx/pics/pinsir/anim1.asm" -TaurosAnimationExtra: INCLUDE "gfx/pics/tauros/anim1.asm" -MagikarpAnimationExtra: INCLUDE "gfx/pics/magikarp/anim1.asm" -GyaradosAnimationExtra: INCLUDE "gfx/pics/gyarados/anim1.asm" -LaprasAnimationExtra: INCLUDE "gfx/pics/lapras/anim1.asm" -DittoAnimationExtra: INCLUDE "gfx/pics/ditto/anim1.asm" -EeveeAnimationExtra: INCLUDE "gfx/pics/eevee/anim1.asm" -VaporeonAnimationExtra: INCLUDE "gfx/pics/vaporeon/anim1.asm" -JolteonAnimationExtra: INCLUDE "gfx/pics/jolteon/anim1.asm" -FlareonAnimationExtra: INCLUDE "gfx/pics/flareon/anim1.asm" -PorygonAnimationExtra: INCLUDE "gfx/pics/porygon/anim1.asm" -OmanyteAnimationExtra: INCLUDE "gfx/pics/omanyte/anim1.asm" -OmastarAnimationExtra: INCLUDE "gfx/pics/omastar/anim1.asm" -KabutoAnimationExtra: INCLUDE "gfx/pics/kabuto/anim1.asm" -KabutopsAnimationExtra: INCLUDE "gfx/pics/kabutops/anim1.asm" -AerodactylAnimationExtra: INCLUDE "gfx/pics/aerodactyl/anim1.asm" -SnorlaxAnimationExtra: INCLUDE "gfx/pics/snorlax/anim1.asm" -ArticunoAnimationExtra: INCLUDE "gfx/pics/articuno/anim1.asm" -ZapdosAnimationExtra: INCLUDE "gfx/pics/zapdos/anim1.asm" -MoltresAnimationExtra: INCLUDE "gfx/pics/moltres/anim1.asm" -DratiniAnimationExtra: INCLUDE "gfx/pics/dratini/anim1.asm" -DragonairAnimationExtra: INCLUDE "gfx/pics/dragonair/anim1.asm" -DragoniteAnimationExtra: INCLUDE "gfx/pics/dragonite/anim1.asm" -MewtwoAnimationExtra: INCLUDE "gfx/pics/mewtwo/anim1.asm" -MewAnimationExtra: INCLUDE "gfx/pics/mew/anim1.asm" -ChikoritaAnimationExtra: INCLUDE "gfx/pics/chikorita/anim1.asm" -BayleefAnimationExtra: INCLUDE "gfx/pics/bayleef/anim1.asm" -MeganiumAnimationExtra: INCLUDE "gfx/pics/meganium/anim1.asm" -CyndaquilAnimationExtra: INCLUDE "gfx/pics/cyndaquil/anim1.asm" -QuilavaAnimationExtra: INCLUDE "gfx/pics/quilava/anim1.asm" -TyphlosionAnimationExtra: INCLUDE "gfx/pics/typhlosion/anim1.asm" -TotodileAnimationExtra: INCLUDE "gfx/pics/totodile/anim1.asm" -CroconawAnimationExtra: INCLUDE "gfx/pics/croconaw/anim1.asm" -FeraligatrAnimationExtra: INCLUDE "gfx/pics/feraligatr/anim1.asm" -SentretAnimationExtra: INCLUDE "gfx/pics/sentret/anim1.asm" -FurretAnimationExtra: INCLUDE "gfx/pics/furret/anim1.asm" -HoothootAnimationExtra: INCLUDE "gfx/pics/hoothoot/anim1.asm" -NoctowlAnimationExtra: INCLUDE "gfx/pics/noctowl/anim1.asm" -LedybaAnimationExtra: INCLUDE "gfx/pics/ledyba/anim1.asm" -LedianAnimationExtra: INCLUDE "gfx/pics/ledian/anim1.asm" -SpinarakAnimationExtra: INCLUDE "gfx/pics/spinarak/anim1.asm" -AriadosAnimationExtra: INCLUDE "gfx/pics/ariados/anim1.asm" -CrobatAnimationExtra: INCLUDE "gfx/pics/crobat/anim1.asm" -ChinchouAnimationExtra: INCLUDE "gfx/pics/chinchou/anim1.asm" -LanturnAnimationExtra: INCLUDE "gfx/pics/lanturn/anim1.asm" -PichuAnimationExtra: INCLUDE "gfx/pics/pichu/anim1.asm" -CleffaAnimationExtra: INCLUDE "gfx/pics/cleffa/anim1.asm" -IgglybuffAnimationExtra: INCLUDE "gfx/pics/igglybuff/anim1.asm" -TogepiAnimationExtra: INCLUDE "gfx/pics/togepi/anim1.asm" -TogeticAnimationExtra: INCLUDE "gfx/pics/togetic/anim1.asm" -NatuAnimationExtra: INCLUDE "gfx/pics/natu/anim1.asm" -XatuAnimationExtra: INCLUDE "gfx/pics/xatu/anim1.asm" -MareepAnimationExtra: INCLUDE "gfx/pics/mareep/anim1.asm" -FlaaffyAnimationExtra: INCLUDE "gfx/pics/flaaffy/anim1.asm" -AmpharosAnimationExtra: INCLUDE "gfx/pics/ampharos/anim1.asm" -BellossomAnimationExtra: INCLUDE "gfx/pics/bellossom/anim1.asm" -MarillAnimationExtra: INCLUDE "gfx/pics/marill/anim1.asm" -AzumarillAnimationExtra: INCLUDE "gfx/pics/azumarill/anim1.asm" -SudowoodoAnimationExtra: INCLUDE "gfx/pics/sudowoodo/anim1.asm" -PolitoedAnimationExtra: INCLUDE "gfx/pics/politoed/anim1.asm" -HoppipAnimationExtra: INCLUDE "gfx/pics/hoppip/anim1.asm" -SkiploomAnimationExtra: INCLUDE "gfx/pics/skiploom/anim1.asm" -JumpluffAnimationExtra: INCLUDE "gfx/pics/jumpluff/anim1.asm" -AipomAnimationExtra: INCLUDE "gfx/pics/aipom/anim1.asm" -SunkernAnimationExtra: INCLUDE "gfx/pics/sunkern/anim1.asm" -SunfloraAnimationExtra: INCLUDE "gfx/pics/sunflora/anim1.asm" -YanmaAnimationExtra: INCLUDE "gfx/pics/yanma/anim1.asm" -WooperAnimationExtra: INCLUDE "gfx/pics/wooper/anim1.asm" -QuagsireAnimationExtra: INCLUDE "gfx/pics/quagsire/anim1.asm" -EspeonAnimationExtra: INCLUDE "gfx/pics/espeon/anim1.asm" -UmbreonAnimationExtra: INCLUDE "gfx/pics/umbreon/anim1.asm" -MurkrowAnimationExtra: INCLUDE "gfx/pics/murkrow/anim1.asm" -SlowkingAnimationExtra: INCLUDE "gfx/pics/slowking/anim1.asm" -MisdreavusAnimationExtra: INCLUDE "gfx/pics/misdreavus/anim1.asm" -UnownAnimationExtra: INCLUDE "gfx/pics/unown/anim1.asm" -WobbuffetAnimationExtra: INCLUDE "gfx/pics/wobbuffet/anim1.asm" -GirafarigAnimationExtra: INCLUDE "gfx/pics/girafarig/anim1.asm" -PinecoAnimationExtra: INCLUDE "gfx/pics/pineco/anim1.asm" -ForretressAnimationExtra: INCLUDE "gfx/pics/forretress/anim1.asm" -DunsparceAnimationExtra: INCLUDE "gfx/pics/dunsparce/anim1.asm" -GligarAnimationExtra: INCLUDE "gfx/pics/gligar/anim1.asm" -SteelixAnimationExtra: INCLUDE "gfx/pics/steelix/anim1.asm" -SnubbullAnimationExtra: INCLUDE "gfx/pics/snubbull/anim1.asm" -GranbullAnimationExtra: INCLUDE "gfx/pics/granbull/anim1.asm" -QwilfishAnimationExtra: INCLUDE "gfx/pics/qwilfish/anim1.asm" -ScizorAnimationExtra: INCLUDE "gfx/pics/scizor/anim1.asm" -ShuckleAnimationExtra: INCLUDE "gfx/pics/shuckle/anim1.asm" -HeracrossAnimationExtra: INCLUDE "gfx/pics/heracross/anim1.asm" -SneaselAnimationExtra: INCLUDE "gfx/pics/sneasel/anim1.asm" -TeddiursaAnimationExtra: INCLUDE "gfx/pics/teddiursa/anim1.asm" -UrsaringAnimationExtra: INCLUDE "gfx/pics/ursaring/anim1.asm" -SlugmaAnimationExtra: INCLUDE "gfx/pics/slugma/anim1.asm" -MagcargoAnimationExtra: INCLUDE "gfx/pics/magcargo/anim1.asm" -SwinubAnimationExtra: INCLUDE "gfx/pics/swinub/anim1.asm" -PiloswineAnimationExtra: INCLUDE "gfx/pics/piloswine/anim1.asm" -CorsolaAnimationExtra: INCLUDE "gfx/pics/corsola/anim1.asm" -RemoraidAnimationExtra: INCLUDE "gfx/pics/remoraid/anim1.asm" -OctilleryAnimationExtra: INCLUDE "gfx/pics/octillery/anim1.asm" -DelibirdAnimationExtra: INCLUDE "gfx/pics/delibird/anim1.asm" -MantineAnimationExtra: INCLUDE "gfx/pics/mantine/anim1.asm" -SkarmoryAnimationExtra: INCLUDE "gfx/pics/skarmory/anim1.asm" -HoundourAnimationExtra: INCLUDE "gfx/pics/houndour/anim1.asm" -HoundoomAnimationExtra: INCLUDE "gfx/pics/houndoom/anim1.asm" -KingdraAnimationExtra: INCLUDE "gfx/pics/kingdra/anim1.asm" -PhanpyAnimationExtra: INCLUDE "gfx/pics/phanpy/anim1.asm" -DonphanAnimationExtra: INCLUDE "gfx/pics/donphan/anim1.asm" -Porygon2AnimationExtra: INCLUDE "gfx/pics/porygon2/anim1.asm" -StantlerAnimationExtra: INCLUDE "gfx/pics/stantler/anim1.asm" -SmeargleAnimationExtra: INCLUDE "gfx/pics/smeargle/anim1.asm" -TyrogueAnimationExtra: INCLUDE "gfx/pics/tyrogue/anim1.asm" -HitmontopAnimationExtra: INCLUDE "gfx/pics/hitmontop/anim1.asm" -SmoochumAnimationExtra: INCLUDE "gfx/pics/smoochum/anim1.asm" -ElekidAnimationExtra: INCLUDE "gfx/pics/elekid/anim1.asm" -MagbyAnimationExtra: INCLUDE "gfx/pics/magby/anim1.asm" -MiltankAnimationExtra: INCLUDE "gfx/pics/miltank/anim1.asm" -BlisseyAnimationExtra: INCLUDE "gfx/pics/blissey/anim1.asm" -RaikouAnimationExtra: INCLUDE "gfx/pics/raikou/anim1.asm" -EnteiAnimationExtra: INCLUDE "gfx/pics/entei/anim1.asm" -SuicuneAnimationExtra: INCLUDE "gfx/pics/suicune/anim1.asm" -LarvitarAnimationExtra: INCLUDE "gfx/pics/larvitar/anim1.asm" -PupitarAnimationExtra: INCLUDE "gfx/pics/pupitar/anim1.asm" -TyranitarAnimationExtra: INCLUDE "gfx/pics/tyranitar/anim1.asm" -LugiaAnimationExtra: INCLUDE "gfx/pics/lugia/anim1.asm" -HoOhAnimationExtra: INCLUDE "gfx/pics/ho_oh/anim1.asm" -CelebiAnimationExtra: INCLUDE "gfx/pics/celebi/anim1.asm" -EggAnimationExtra: INCLUDE "gfx/pics/egg/anim1.asm" diff --git a/gfx/pics/farfetch_d/anim0.asm b/gfx/pics/farfetch_d/anim0.asm deleted file mode 100644 index 4dac6c1a4..000000000 --- a/gfx/pics/farfetch_d/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 06 - frame 2, 06 - frame 3, 14 - frame 2, 06 - endanim -; 0xd0d7a diff --git a/gfx/pics/farfetch_d/anim1.asm b/gfx/pics/farfetch_d/anim1.asm deleted file mode 100644 index 5dcfaa89d..000000000 --- a/gfx/pics/farfetch_d/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 4, 10 - frame 5, 07 - frame 4, 07 - endanim -; 0xd1bfa diff --git a/gfx/pics/farfetch_d/back.2bpp.lz.6f28ebc4 b/gfx/pics/farfetch_d/back.2bpp.lz.6f28ebc4 deleted file mode 100644 index 77dd25ae9..000000000 Binary files a/gfx/pics/farfetch_d/back.2bpp.lz.6f28ebc4 and /dev/null differ diff --git a/gfx/pics/farfetch_d/back.png b/gfx/pics/farfetch_d/back.png deleted file mode 100644 index b7f1ce41f..000000000 Binary files a/gfx/pics/farfetch_d/back.png and /dev/null differ diff --git a/gfx/pics/farfetch_d/front.animated.2bpp.lz.a4ae9393 b/gfx/pics/farfetch_d/front.animated.2bpp.lz.a4ae9393 deleted file mode 100644 index d9eeb7489..000000000 Binary files a/gfx/pics/farfetch_d/front.animated.2bpp.lz.a4ae9393 and /dev/null differ diff --git a/gfx/pics/farfetch_d/front.png b/gfx/pics/farfetch_d/front.png deleted file mode 100644 index 1ad86679f..000000000 Binary files a/gfx/pics/farfetch_d/front.png and /dev/null differ diff --git a/gfx/pics/farfetch_d/shiny.pal b/gfx/pics/farfetch_d/shiny.pal deleted file mode 100644 index 2bae03e7f..000000000 --- a/gfx/pics/farfetch_d/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 16, 14 - RGB 12, 20, 01 - diff --git a/gfx/pics/fearow/anim0.asm b/gfx/pics/fearow/anim0.asm deleted file mode 100644 index 3a689af18..000000000 --- a/gfx/pics/fearow/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 02 - setrepeat 3 - frame 1, 08 - frame 3, 10 - frame 2, 06 - dorepeat 2 - endanim -; 0xd09c3 diff --git a/gfx/pics/fearow/anim1.asm b/gfx/pics/fearow/anim1.asm deleted file mode 100644 index 0233782c9..000000000 --- a/gfx/pics/fearow/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 4, 05 - frame 0, 05 - dorepeat 1 - endanim -; 0xd198f diff --git a/gfx/pics/fearow/back.2bpp.lz.a7a39118 b/gfx/pics/fearow/back.2bpp.lz.a7a39118 deleted file mode 100644 index 641086eaa..000000000 Binary files a/gfx/pics/fearow/back.2bpp.lz.a7a39118 and /dev/null differ diff --git a/gfx/pics/fearow/back.png b/gfx/pics/fearow/back.png deleted file mode 100644 index f6fc2a63a..000000000 Binary files a/gfx/pics/fearow/back.png and /dev/null differ diff --git a/gfx/pics/fearow/front.animated.2bpp.lz.393b11d6 b/gfx/pics/fearow/front.animated.2bpp.lz.393b11d6 deleted file mode 100644 index 4fbf2d47f..000000000 Binary files a/gfx/pics/fearow/front.animated.2bpp.lz.393b11d6 and /dev/null differ diff --git a/gfx/pics/fearow/front.png b/gfx/pics/fearow/front.png deleted file mode 100644 index f003ce0f7..000000000 Binary files a/gfx/pics/fearow/front.png and /dev/null differ diff --git a/gfx/pics/fearow/shiny.pal b/gfx/pics/fearow/shiny.pal deleted file mode 100644 index abc40692b..000000000 --- a/gfx/pics/fearow/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 16, 10 - RGB 24, 17, 07 - diff --git a/gfx/pics/feraligatr/anim0.asm b/gfx/pics/feraligatr/anim0.asm deleted file mode 100644 index 1a0cebd2e..000000000 --- a/gfx/pics/feraligatr/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 0, 04 - frame 1, 10 - frame 2, 16 - frame 3, 36 - frame 2, 12 - endanim -; 0xd11dd diff --git a/gfx/pics/feraligatr/anim1.asm b/gfx/pics/feraligatr/anim1.asm deleted file mode 100644 index c1c39258d..000000000 --- a/gfx/pics/feraligatr/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1ee9 diff --git a/gfx/pics/feraligatr/back.2bpp.lz.f95abe99 b/gfx/pics/feraligatr/back.2bpp.lz.f95abe99 deleted file mode 100644 index 4e180d0f5..000000000 Binary files a/gfx/pics/feraligatr/back.2bpp.lz.f95abe99 and /dev/null differ diff --git a/gfx/pics/feraligatr/back.png b/gfx/pics/feraligatr/back.png deleted file mode 100644 index 8f1e63203..000000000 Binary files a/gfx/pics/feraligatr/back.png and /dev/null differ diff --git a/gfx/pics/feraligatr/front.animated.2bpp.lz.fade72cc b/gfx/pics/feraligatr/front.animated.2bpp.lz.fade72cc deleted file mode 100644 index cc055e629..000000000 Binary files a/gfx/pics/feraligatr/front.animated.2bpp.lz.fade72cc and /dev/null differ diff --git a/gfx/pics/feraligatr/front.png b/gfx/pics/feraligatr/front.png deleted file mode 100644 index c3057a8cb..000000000 Binary files a/gfx/pics/feraligatr/front.png and /dev/null differ diff --git a/gfx/pics/feraligatr/shiny.pal b/gfx/pics/feraligatr/shiny.pal deleted file mode 100644 index afe21b2b2..000000000 --- a/gfx/pics/feraligatr/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 08, 17, 13 - RGB 12, 07, 31 - diff --git a/gfx/pics/flaaffy/anim0.asm b/gfx/pics/flaaffy/anim0.asm deleted file mode 100644 index c9f1f4e7e..000000000 --- a/gfx/pics/flaaffy/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 06 - setrepeat 5 - frame 3, 02 - frame 2, 02 - dorepeat 2 - frame 3, 18 - endanim -; 0xd12e9 diff --git a/gfx/pics/flaaffy/anim1.asm b/gfx/pics/flaaffy/anim1.asm deleted file mode 100644 index b9ec0d483..000000000 --- a/gfx/pics/flaaffy/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd1fab diff --git a/gfx/pics/flaaffy/back.2bpp.lz.461855e4 b/gfx/pics/flaaffy/back.2bpp.lz.461855e4 deleted file mode 100644 index 5eec3df7a..000000000 Binary files a/gfx/pics/flaaffy/back.2bpp.lz.461855e4 and /dev/null differ diff --git a/gfx/pics/flaaffy/back.png b/gfx/pics/flaaffy/back.png deleted file mode 100644 index 36259453c..000000000 Binary files a/gfx/pics/flaaffy/back.png and /dev/null differ diff --git a/gfx/pics/flaaffy/front.animated.2bpp.lz.6a27aac3 b/gfx/pics/flaaffy/front.animated.2bpp.lz.6a27aac3 deleted file mode 100644 index 673155a7e..000000000 Binary files a/gfx/pics/flaaffy/front.animated.2bpp.lz.6a27aac3 and /dev/null differ diff --git a/gfx/pics/flaaffy/front.png b/gfx/pics/flaaffy/front.png deleted file mode 100644 index f42a3b749..000000000 Binary files a/gfx/pics/flaaffy/front.png and /dev/null differ diff --git a/gfx/pics/flaaffy/shiny.pal b/gfx/pics/flaaffy/shiny.pal deleted file mode 100644 index 50c88df2e..000000000 --- a/gfx/pics/flaaffy/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 16, 29 - RGB 16, 08, 31 - diff --git a/gfx/pics/flareon/anim0.asm b/gfx/pics/flareon/anim0.asm deleted file mode 100644 index dbefae362..000000000 --- a/gfx/pics/flareon/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 10 - setrepeat 3 - frame 2, 08 - frame 3, 08 - dorepeat 2 - endanim -; 0xd105f diff --git a/gfx/pics/flareon/anim1.asm b/gfx/pics/flareon/anim1.asm deleted file mode 100644 index 431573106..000000000 --- a/gfx/pics/flareon/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1df1 diff --git a/gfx/pics/flareon/back.2bpp.lz.d58af0e5 b/gfx/pics/flareon/back.2bpp.lz.d58af0e5 deleted file mode 100644 index bafc64cd2..000000000 Binary files a/gfx/pics/flareon/back.2bpp.lz.d58af0e5 and /dev/null differ diff --git a/gfx/pics/flareon/back.png b/gfx/pics/flareon/back.png deleted file mode 100644 index 4b68451c1..000000000 Binary files a/gfx/pics/flareon/back.png and /dev/null differ diff --git a/gfx/pics/flareon/front.animated.2bpp.lz.7b68c716 b/gfx/pics/flareon/front.animated.2bpp.lz.7b68c716 deleted file mode 100644 index d3210b7e3..000000000 Binary files a/gfx/pics/flareon/front.animated.2bpp.lz.7b68c716 and /dev/null differ diff --git a/gfx/pics/flareon/front.png b/gfx/pics/flareon/front.png deleted file mode 100644 index 13a9af29a..000000000 Binary files a/gfx/pics/flareon/front.png and /dev/null differ diff --git a/gfx/pics/flareon/shiny.pal b/gfx/pics/flareon/shiny.pal deleted file mode 100644 index 7e840a3cd..000000000 --- a/gfx/pics/flareon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 17, 01 - RGB 24, 09, 00 - diff --git a/gfx/pics/forretress/anim0.asm b/gfx/pics/forretress/anim0.asm deleted file mode 100644 index 74c8e2e12..000000000 --- a/gfx/pics/forretress/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 08 - frame 2, 16 - setrepeat 2 - frame 2, 05 - frame 3, 05 - frame 4, 05 - dorepeat 3 - frame 2, 25 - frame 1, 08 - endanim -; 0xd1434 diff --git a/gfx/pics/forretress/anim1.asm b/gfx/pics/forretress/anim1.asm deleted file mode 100644 index 4fafa1a3e..000000000 --- a/gfx/pics/forretress/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 5, 06 - dorepeat 1 - endanim -; 0xd2080 diff --git a/gfx/pics/forretress/back.2bpp.lz.2b8e5f48 b/gfx/pics/forretress/back.2bpp.lz.2b8e5f48 deleted file mode 100644 index 1c4b5d69a..000000000 Binary files a/gfx/pics/forretress/back.2bpp.lz.2b8e5f48 and /dev/null differ diff --git a/gfx/pics/forretress/back.png b/gfx/pics/forretress/back.png deleted file mode 100644 index a64fb1480..000000000 Binary files a/gfx/pics/forretress/back.png and /dev/null differ diff --git a/gfx/pics/forretress/front.animated.2bpp.lz.761b9f80 b/gfx/pics/forretress/front.animated.2bpp.lz.761b9f80 deleted file mode 100644 index 239e20532..000000000 Binary files a/gfx/pics/forretress/front.animated.2bpp.lz.761b9f80 and /dev/null differ diff --git a/gfx/pics/forretress/front.png b/gfx/pics/forretress/front.png deleted file mode 100644 index 065237310..000000000 Binary files a/gfx/pics/forretress/front.png and /dev/null differ diff --git a/gfx/pics/forretress/shiny.pal b/gfx/pics/forretress/shiny.pal deleted file mode 100644 index 84aa229d2..000000000 --- a/gfx/pics/forretress/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 16, 02 - RGB 10, 10, 01 - diff --git a/gfx/pics/frame_pointers.asm b/gfx/pics/frame_pointers.asm deleted file mode 100644 index cff10ef33..000000000 --- a/gfx/pics/frame_pointers.asm +++ /dev/null @@ -1,252 +0,0 @@ -FramesPointers: - dw BulbasaurFrames - dw IvysaurFrames - dw VenusaurFrames - dw CharmanderFrames - dw CharmeleonFrames - dw CharizardFrames - dw SquirtleFrames - dw WartortleFrames - dw BlastoiseFrames - dw CaterpieFrames - dw MetapodFrames - dw ButterfreeFrames - dw WeedleFrames - dw KakunaFrames - dw BeedrillFrames - dw PidgeyFrames - dw PidgeottoFrames - dw PidgeotFrames - dw RattataFrames - dw RaticateFrames - dw SpearowFrames - dw FearowFrames - dw EkansFrames - dw ArbokFrames - dw PikachuFrames - dw RaichuFrames - dw SandshrewFrames - dw SandslashFrames - dw NidoranFFrames - dw NidorinaFrames - dw NidoqueenFrames - dw NidoranMFrames - dw NidorinoFrames - dw NidokingFrames - dw ClefairyFrames - dw ClefableFrames - dw VulpixFrames - dw NinetalesFrames - dw JigglypuffFrames - dw WigglytuffFrames - dw ZubatFrames - dw GolbatFrames - dw OddishFrames - dw GloomFrames - dw VileplumeFrames - dw ParasFrames - dw ParasectFrames - dw VenonatFrames - dw VenomothFrames - dw DiglettFrames - dw DugtrioFrames - dw MeowthFrames - dw PersianFrames - dw PsyduckFrames - dw GolduckFrames - dw MankeyFrames - dw PrimeapeFrames - dw GrowlitheFrames - dw ArcanineFrames - dw PoliwagFrames - dw PoliwhirlFrames - dw PoliwrathFrames - dw AbraFrames - dw KadabraFrames - dw AlakazamFrames - dw MachopFrames - dw MachokeFrames - dw MachampFrames - dw BellsproutFrames - dw WeepinbellFrames - dw VictreebelFrames - dw TentacoolFrames - dw TentacruelFrames - dw GeodudeFrames - dw GravelerFrames - dw GolemFrames - dw PonytaFrames - dw RapidashFrames - dw SlowpokeFrames - dw SlowbroFrames - dw MagnemiteFrames - dw MagnetonFrames - dw FarfetchDFrames - dw DoduoFrames - dw DodrioFrames - dw SeelFrames - dw DewgongFrames - dw GrimerFrames - dw MukFrames - dw ShellderFrames - dw CloysterFrames - dw GastlyFrames - dw HaunterFrames - dw GengarFrames - dw OnixFrames - dw DrowzeeFrames - dw HypnoFrames - dw KrabbyFrames - dw KinglerFrames - dw VoltorbFrames - dw ElectrodeFrames - dw ExeggcuteFrames - dw ExeggutorFrames - dw CuboneFrames - dw MarowakFrames - dw HitmonleeFrames - dw HitmonchanFrames - dw LickitungFrames - dw KoffingFrames - dw WeezingFrames - dw RhyhornFrames - dw RhydonFrames - dw ChanseyFrames - dw TangelaFrames - dw KangaskhanFrames - dw HorseaFrames - dw SeadraFrames - dw GoldeenFrames - dw SeakingFrames - dw StaryuFrames - dw StarmieFrames - dw MrMimeFrames - dw ScytherFrames - dw JynxFrames - dw ElectabuzzFrames - dw MagmarFrames - dw PinsirFrames - dw TaurosFrames - dw MagikarpFrames - dw GyaradosFrames - dw LaprasFrames - dw DittoFrames - dw EeveeFrames - dw VaporeonFrames - dw JolteonFrames - dw FlareonFrames - dw PorygonFrames - dw OmanyteFrames - dw OmastarFrames - dw KabutoFrames - dw KabutopsFrames - dw AerodactylFrames - dw SnorlaxFrames - dw ArticunoFrames - dw ZapdosFrames - dw MoltresFrames - dw DratiniFrames - dw DragonairFrames - dw DragoniteFrames - dw MewtwoFrames - dw MewFrames - dw ChikoritaFrames - dw BayleefFrames - dw MeganiumFrames - dw CyndaquilFrames - dw QuilavaFrames - dw TyphlosionFrames - dw TotodileFrames - dw CroconawFrames - dw FeraligatrFrames - dw SentretFrames - dw FurretFrames - dw HoothootFrames - dw NoctowlFrames - dw LedybaFrames - dw LedianFrames - dw SpinarakFrames - dw AriadosFrames - dw CrobatFrames - dw ChinchouFrames - dw LanturnFrames - dw PichuFrames - dw CleffaFrames - dw IgglybuffFrames - dw TogepiFrames - dw TogeticFrames - dw NatuFrames - dw XatuFrames - dw MareepFrames - dw FlaaffyFrames - dw AmpharosFrames - dw BellossomFrames - dw MarillFrames - dw AzumarillFrames - dw SudowoodoFrames - dw PolitoedFrames - dw HoppipFrames - dw SkiploomFrames - dw JumpluffFrames - dw AipomFrames - dw SunkernFrames - dw SunfloraFrames - dw YanmaFrames - dw WooperFrames - dw QuagsireFrames - dw EspeonFrames - dw UmbreonFrames - dw MurkrowFrames - dw SlowkingFrames - dw MisdreavusFrames - dw UnownFrames - dw WobbuffetFrames - dw GirafarigFrames - dw PinecoFrames - dw ForretressFrames - dw DunsparceFrames - dw GligarFrames - dw SteelixFrames - dw SnubbullFrames - dw GranbullFrames - dw QwilfishFrames - dw ScizorFrames - dw ShuckleFrames - dw HeracrossFrames - dw SneaselFrames - dw TeddiursaFrames - dw UrsaringFrames - dw SlugmaFrames - dw MagcargoFrames - dw SwinubFrames - dw PiloswineFrames - dw CorsolaFrames - dw RemoraidFrames - dw OctilleryFrames - dw DelibirdFrames - dw MantineFrames - dw SkarmoryFrames - dw HoundourFrames - dw HoundoomFrames - dw KingdraFrames - dw PhanpyFrames - dw DonphanFrames - dw Porygon2Frames - dw StantlerFrames - dw SmeargleFrames - dw TyrogueFrames - dw HitmontopFrames - dw SmoochumFrames - dw ElekidFrames - dw MagbyFrames - dw MiltankFrames - dw BlisseyFrames - dw RaikouFrames - dw EnteiFrames - dw SuicuneFrames - dw LarvitarFrames - dw PupitarFrames - dw TyranitarFrames - dw LugiaFrames - dw HoOhFrames - dw CelebiFrames diff --git a/gfx/pics/furret/anim0.asm b/gfx/pics/furret/anim0.asm deleted file mode 100644 index 8503d74ec..000000000 --- a/gfx/pics/furret/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 3, 22 - setrepeat 2 - frame 0, 08 - frame 1, 08 - frame 2, 08 - dorepeat 2 - endanim -; 0xd11f3 diff --git a/gfx/pics/furret/anim1.asm b/gfx/pics/furret/anim1.asm deleted file mode 100644 index e175bf7cc..000000000 --- a/gfx/pics/furret/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1efb diff --git a/gfx/pics/furret/back.2bpp.lz.24792550 b/gfx/pics/furret/back.2bpp.lz.24792550 deleted file mode 100644 index 0cbe66f49..000000000 Binary files a/gfx/pics/furret/back.2bpp.lz.24792550 and /dev/null differ diff --git a/gfx/pics/furret/back.png b/gfx/pics/furret/back.png deleted file mode 100644 index 906e6e7f1..000000000 Binary files a/gfx/pics/furret/back.png and /dev/null differ diff --git a/gfx/pics/furret/front.animated.2bpp.lz.f72a2758 b/gfx/pics/furret/front.animated.2bpp.lz.f72a2758 deleted file mode 100644 index afba64f59..000000000 Binary files a/gfx/pics/furret/front.animated.2bpp.lz.f72a2758 and /dev/null differ diff --git a/gfx/pics/furret/front.png b/gfx/pics/furret/front.png deleted file mode 100644 index 3ae88bf70..000000000 Binary files a/gfx/pics/furret/front.png and /dev/null differ diff --git a/gfx/pics/furret/shiny.pal b/gfx/pics/furret/shiny.pal deleted file mode 100644 index fe5870bd6..000000000 --- a/gfx/pics/furret/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 13, 31 - RGB 15, 10, 02 - diff --git a/gfx/pics/gastly/anim0.asm b/gfx/pics/gastly/anim0.asm deleted file mode 100644 index d9414d188..000000000 --- a/gfx/pics/gastly/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 04 - frame 1, 18 - frame 2, 24 - frame 1, 18 - frame 0, 12 - frame 1, 12 - endanim -; 0xd0ddd diff --git a/gfx/pics/gastly/anim1.asm b/gfx/pics/gastly/anim1.asm deleted file mode 100644 index 65dc17abf..000000000 --- a/gfx/pics/gastly/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1c57 diff --git a/gfx/pics/gastly/back.2bpp.lz.4078fa56 b/gfx/pics/gastly/back.2bpp.lz.4078fa56 deleted file mode 100644 index ecb4af90d..000000000 Binary files a/gfx/pics/gastly/back.2bpp.lz.4078fa56 and /dev/null differ diff --git a/gfx/pics/gastly/back.png b/gfx/pics/gastly/back.png deleted file mode 100644 index 78f96fe93..000000000 Binary files a/gfx/pics/gastly/back.png and /dev/null differ diff --git a/gfx/pics/gastly/front.animated.2bpp.lz.84148c1e b/gfx/pics/gastly/front.animated.2bpp.lz.84148c1e deleted file mode 100644 index f3d99339b..000000000 Binary files a/gfx/pics/gastly/front.animated.2bpp.lz.84148c1e and /dev/null differ diff --git a/gfx/pics/gastly/front.png b/gfx/pics/gastly/front.png deleted file mode 100644 index 5a28030d4..000000000 Binary files a/gfx/pics/gastly/front.png and /dev/null differ diff --git a/gfx/pics/gastly/shiny.pal b/gfx/pics/gastly/shiny.pal deleted file mode 100644 index 50e42ab4a..000000000 --- a/gfx/pics/gastly/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 17, 30 - RGB 05, 07, 11 - diff --git a/gfx/pics/gengar/anim0.asm b/gfx/pics/gengar/anim0.asm deleted file mode 100644 index 842c47c76..000000000 --- a/gfx/pics/gengar/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 06 - frame 4, 07 - frame 2, 50 - setrepeat 3 - frame 0, 09 - frame 3, 09 - dorepeat 4 - endanim -; 0xd0df7 diff --git a/gfx/pics/gengar/anim1.asm b/gfx/pics/gengar/anim1.asm deleted file mode 100644 index 09df5dca3..000000000 --- a/gfx/pics/gengar/anim1.asm +++ /dev/null @@ -1,9 +0,0 @@ - setrepeat 2 - frame 5, 02 - frame 0, 02 - dorepeat 1 - frame 5, 09 - frame 6, 09 - frame 5, 09 - endanim -; 0xd1c69 diff --git a/gfx/pics/gengar/back.2bpp.lz.5237ee63 b/gfx/pics/gengar/back.2bpp.lz.5237ee63 deleted file mode 100644 index d1ecca65e..000000000 Binary files a/gfx/pics/gengar/back.2bpp.lz.5237ee63 and /dev/null differ diff --git a/gfx/pics/gengar/back.png b/gfx/pics/gengar/back.png deleted file mode 100644 index 1cb67715d..000000000 Binary files a/gfx/pics/gengar/back.png and /dev/null differ diff --git a/gfx/pics/gengar/front.animated.2bpp.lz.65ddc6f5 b/gfx/pics/gengar/front.animated.2bpp.lz.65ddc6f5 deleted file mode 100644 index a11754646..000000000 Binary files a/gfx/pics/gengar/front.animated.2bpp.lz.65ddc6f5 and /dev/null differ diff --git a/gfx/pics/gengar/front.png b/gfx/pics/gengar/front.png deleted file mode 100644 index 5fa68e3a0..000000000 Binary files a/gfx/pics/gengar/front.png and /dev/null differ diff --git a/gfx/pics/gengar/shiny.pal b/gfx/pics/gengar/shiny.pal deleted file mode 100644 index ccf6bf685..000000000 --- a/gfx/pics/gengar/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 00, 29 - RGB 15, 12, 23 - diff --git a/gfx/pics/geodude/anim0.asm b/gfx/pics/geodude/anim0.asm deleted file mode 100644 index 3c54bc94e..000000000 --- a/gfx/pics/geodude/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - frame 1, 16 - setrepeat 3 - frame 2, 07 - frame 1, 07 - dorepeat 3 - endanim -; 0xd0ceb diff --git a/gfx/pics/geodude/anim1.asm b/gfx/pics/geodude/anim1.asm deleted file mode 100644 index 4ec72d9b1..000000000 --- a/gfx/pics/geodude/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1ba9 diff --git a/gfx/pics/geodude/back.2bpp.lz.d5aa5e9f b/gfx/pics/geodude/back.2bpp.lz.d5aa5e9f deleted file mode 100644 index 443fd327d..000000000 Binary files a/gfx/pics/geodude/back.2bpp.lz.d5aa5e9f and /dev/null differ diff --git a/gfx/pics/geodude/back.png b/gfx/pics/geodude/back.png deleted file mode 100644 index 0b3acd0c1..000000000 Binary files a/gfx/pics/geodude/back.png and /dev/null differ diff --git a/gfx/pics/geodude/front.animated.2bpp.lz.d743f2c9 b/gfx/pics/geodude/front.animated.2bpp.lz.d743f2c9 deleted file mode 100644 index 96bd9f794..000000000 Binary files a/gfx/pics/geodude/front.animated.2bpp.lz.d743f2c9 and /dev/null differ diff --git a/gfx/pics/geodude/front.png b/gfx/pics/geodude/front.png deleted file mode 100644 index 22fb6c4a7..000000000 Binary files a/gfx/pics/geodude/front.png and /dev/null differ diff --git a/gfx/pics/geodude/shiny.pal b/gfx/pics/geodude/shiny.pal deleted file mode 100644 index 305e1a362..000000000 --- a/gfx/pics/geodude/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 17, 15 - RGB 15, 13, 07 - diff --git a/gfx/pics/girafarig/anim0.asm b/gfx/pics/girafarig/anim0.asm deleted file mode 100644 index 3a7ebd9fe..000000000 --- a/gfx/pics/girafarig/anim0.asm +++ /dev/null @@ -1,14 +0,0 @@ - frame 1, 15 - frame 4, 04 - setrepeat 2 - frame 1, 05 - frame 2, 05 - dorepeat 3 - setrepeat 3 - frame 1, 05 - frame 4, 05 - dorepeat 7 - frame 5, 05 - frame 3, 05 - endanim -; 0xd141c diff --git a/gfx/pics/girafarig/anim1.asm b/gfx/pics/girafarig/anim1.asm deleted file mode 100644 index 95b1131ca..000000000 --- a/gfx/pics/girafarig/anim1.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 5, 16 - frame 3, 16 - endanim -; 0xd206e diff --git a/gfx/pics/girafarig/back.2bpp.lz.5dd68457 b/gfx/pics/girafarig/back.2bpp.lz.5dd68457 deleted file mode 100644 index aca23f976..000000000 Binary files a/gfx/pics/girafarig/back.2bpp.lz.5dd68457 and /dev/null differ diff --git a/gfx/pics/girafarig/back.png b/gfx/pics/girafarig/back.png deleted file mode 100644 index 6ca3e0dea..000000000 Binary files a/gfx/pics/girafarig/back.png and /dev/null differ diff --git a/gfx/pics/girafarig/front.animated.2bpp.lz.76d809c4 b/gfx/pics/girafarig/front.animated.2bpp.lz.76d809c4 deleted file mode 100644 index 48c9fc94a..000000000 Binary files a/gfx/pics/girafarig/front.animated.2bpp.lz.76d809c4 and /dev/null differ diff --git a/gfx/pics/girafarig/front.png b/gfx/pics/girafarig/front.png deleted file mode 100644 index 18071ac82..000000000 Binary files a/gfx/pics/girafarig/front.png and /dev/null differ diff --git a/gfx/pics/girafarig/shiny.pal b/gfx/pics/girafarig/shiny.pal deleted file mode 100644 index 51b7f3847..000000000 --- a/gfx/pics/girafarig/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 19, 00 - RGB 05, 04, 31 - diff --git a/gfx/pics/gligar/anim0.asm b/gfx/pics/gligar/anim0.asm deleted file mode 100644 index 1dabf6cbd..000000000 --- a/gfx/pics/gligar/anim0.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 1, 35 - endanim -; 0xd1444 diff --git a/gfx/pics/gligar/anim1.asm b/gfx/pics/gligar/anim1.asm deleted file mode 100644 index 0cc7c0916..000000000 --- a/gfx/pics/gligar/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 1, 35 - endanim -; 0xd208c diff --git a/gfx/pics/gligar/back.2bpp.lz.ee922122 b/gfx/pics/gligar/back.2bpp.lz.ee922122 deleted file mode 100644 index 45b7d9b76..000000000 Binary files a/gfx/pics/gligar/back.2bpp.lz.ee922122 and /dev/null differ diff --git a/gfx/pics/gligar/back.png b/gfx/pics/gligar/back.png deleted file mode 100644 index 64bcc503f..000000000 Binary files a/gfx/pics/gligar/back.png and /dev/null differ diff --git a/gfx/pics/gligar/front.animated.2bpp.lz.4dcc41b3 b/gfx/pics/gligar/front.animated.2bpp.lz.4dcc41b3 deleted file mode 100644 index 4ef9e5398..000000000 Binary files a/gfx/pics/gligar/front.animated.2bpp.lz.4dcc41b3 and /dev/null differ diff --git a/gfx/pics/gligar/front.png b/gfx/pics/gligar/front.png deleted file mode 100644 index 729bc9d7f..000000000 Binary files a/gfx/pics/gligar/front.png and /dev/null differ diff --git a/gfx/pics/gligar/shiny.pal b/gfx/pics/gligar/shiny.pal deleted file mode 100644 index b33b2c373..000000000 --- a/gfx/pics/gligar/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 15, 19 - RGB 06, 06, 31 - diff --git a/gfx/pics/gloom/anim0.asm b/gfx/pics/gloom/anim0.asm deleted file mode 100644 index 89c6805b9..000000000 --- a/gfx/pics/gloom/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 0, 04 - frame 1, 10 - frame 2, 14 - frame 3, 20 - frame 2, 10 - frame 3, 08 - frame 4, 07 - frame 5, 07 - frame 0, 06 - frame 5, 06 - endanim -; 0xd0b35 diff --git a/gfx/pics/gloom/anim1.asm b/gfx/pics/gloom/anim1.asm deleted file mode 100644 index cdb6c5191..000000000 --- a/gfx/pics/gloom/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 5, 10 - dorepeat 1 - endanim -; 0xd1a75 diff --git a/gfx/pics/gloom/back.2bpp.lz.9a321f63 b/gfx/pics/gloom/back.2bpp.lz.9a321f63 deleted file mode 100644 index 7d35e2d82..000000000 Binary files a/gfx/pics/gloom/back.2bpp.lz.9a321f63 and /dev/null differ diff --git a/gfx/pics/gloom/back.png b/gfx/pics/gloom/back.png deleted file mode 100644 index 9308b29ae..000000000 Binary files a/gfx/pics/gloom/back.png and /dev/null differ diff --git a/gfx/pics/gloom/front.animated.2bpp.lz.c6ef04a5 b/gfx/pics/gloom/front.animated.2bpp.lz.c6ef04a5 deleted file mode 100644 index a69e4b76c..000000000 Binary files a/gfx/pics/gloom/front.animated.2bpp.lz.c6ef04a5 and /dev/null differ diff --git a/gfx/pics/gloom/front.png b/gfx/pics/gloom/front.png deleted file mode 100644 index 34625df13..000000000 Binary files a/gfx/pics/gloom/front.png and /dev/null differ diff --git a/gfx/pics/gloom/shiny.pal b/gfx/pics/gloom/shiny.pal deleted file mode 100644 index 998bfce6e..000000000 --- a/gfx/pics/gloom/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 21, 05 - RGB 13, 17, 12 - diff --git a/gfx/pics/golbat/anim0.asm b/gfx/pics/golbat/anim0.asm deleted file mode 100644 index cb04c1a3b..000000000 --- a/gfx/pics/golbat/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 0, 08 - setrepeat 2 - frame 2, 09 - frame 3, 09 - dorepeat 2 - setrepeat 3 - frame 3, 08 - frame 1, 08 - dorepeat 6 - endanim -; 0xd0b0d diff --git a/gfx/pics/golbat/anim1.asm b/gfx/pics/golbat/anim1.asm deleted file mode 100644 index 689aed3fd..000000000 --- a/gfx/pics/golbat/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1a63 diff --git a/gfx/pics/golbat/back.2bpp.lz.e277e260 b/gfx/pics/golbat/back.2bpp.lz.e277e260 deleted file mode 100644 index e2bd0c367..000000000 Binary files a/gfx/pics/golbat/back.2bpp.lz.e277e260 and /dev/null differ diff --git a/gfx/pics/golbat/back.png b/gfx/pics/golbat/back.png deleted file mode 100644 index 5bc2b1336..000000000 Binary files a/gfx/pics/golbat/back.png and /dev/null differ diff --git a/gfx/pics/golbat/front.animated.2bpp.lz.c35ffe9b b/gfx/pics/golbat/front.animated.2bpp.lz.c35ffe9b deleted file mode 100644 index 94f7d8216..000000000 Binary files a/gfx/pics/golbat/front.animated.2bpp.lz.c35ffe9b and /dev/null differ diff --git a/gfx/pics/golbat/front.png b/gfx/pics/golbat/front.png deleted file mode 100644 index 5a7d1745a..000000000 Binary files a/gfx/pics/golbat/front.png and /dev/null differ diff --git a/gfx/pics/golbat/shiny.pal b/gfx/pics/golbat/shiny.pal deleted file mode 100644 index 2cb1d6ced..000000000 --- a/gfx/pics/golbat/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 12, 19 - RGB 07, 15, 00 - diff --git a/gfx/pics/goldeen/anim0.asm b/gfx/pics/goldeen/anim0.asm deleted file mode 100644 index c93141feb..000000000 --- a/gfx/pics/goldeen/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 30 - frame 0, 16 - setrepeat 4 - frame 2, 12 - frame 0, 12 - dorepeat 3 - endanim -; 0xd0f61 diff --git a/gfx/pics/goldeen/anim1.asm b/gfx/pics/goldeen/anim1.asm deleted file mode 100644 index f31dfd1b2..000000000 --- a/gfx/pics/goldeen/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 1 - endanim -; 0xd1d49 diff --git a/gfx/pics/goldeen/back.2bpp.lz.d0e5751e b/gfx/pics/goldeen/back.2bpp.lz.d0e5751e deleted file mode 100644 index 5d00534ec..000000000 Binary files a/gfx/pics/goldeen/back.2bpp.lz.d0e5751e and /dev/null differ diff --git a/gfx/pics/goldeen/back.png b/gfx/pics/goldeen/back.png deleted file mode 100644 index 7644dc343..000000000 Binary files a/gfx/pics/goldeen/back.png and /dev/null differ diff --git a/gfx/pics/goldeen/front.animated.2bpp.lz.c451a8c4 b/gfx/pics/goldeen/front.animated.2bpp.lz.c451a8c4 deleted file mode 100644 index f0090e94e..000000000 Binary files a/gfx/pics/goldeen/front.animated.2bpp.lz.c451a8c4 and /dev/null differ diff --git a/gfx/pics/goldeen/front.png b/gfx/pics/goldeen/front.png deleted file mode 100644 index c3a874b35..000000000 Binary files a/gfx/pics/goldeen/front.png and /dev/null differ diff --git a/gfx/pics/goldeen/shiny.pal b/gfx/pics/goldeen/shiny.pal deleted file mode 100644 index 14910020e..000000000 --- a/gfx/pics/goldeen/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 19, 00 - RGB 30, 14, 00 - diff --git a/gfx/pics/golduck/anim0.asm b/gfx/pics/golduck/anim0.asm deleted file mode 100644 index 41ce17c55..000000000 --- a/gfx/pics/golduck/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 1, 07 - frame 2, 15 - setrepeat 2 - frame 3, 08 - frame 4, 05 - dorepeat 3 - frame 5, 13 - setrepeat 3 - frame 5, 10 - frame 6, 10 - dorepeat 8 - endanim -; 0xd0bf4 diff --git a/gfx/pics/golduck/anim1.asm b/gfx/pics/golduck/anim1.asm deleted file mode 100644 index a73476ca9..000000000 --- a/gfx/pics/golduck/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 7, 15 - dorepeat 1 - endanim -; 0xd1ae2 diff --git a/gfx/pics/golduck/back.2bpp.lz.2d022642 b/gfx/pics/golduck/back.2bpp.lz.2d022642 deleted file mode 100644 index 13807b9e9..000000000 Binary files a/gfx/pics/golduck/back.2bpp.lz.2d022642 and /dev/null differ diff --git a/gfx/pics/golduck/back.png b/gfx/pics/golduck/back.png deleted file mode 100644 index 4791a6b8e..000000000 Binary files a/gfx/pics/golduck/back.png and /dev/null differ diff --git a/gfx/pics/golduck/front.animated.2bpp.lz.09e97414 b/gfx/pics/golduck/front.animated.2bpp.lz.09e97414 deleted file mode 100644 index ff3fa6792..000000000 Binary files a/gfx/pics/golduck/front.animated.2bpp.lz.09e97414 and /dev/null differ diff --git a/gfx/pics/golduck/front.png b/gfx/pics/golduck/front.png deleted file mode 100644 index 172653ab2..000000000 Binary files a/gfx/pics/golduck/front.png and /dev/null differ diff --git a/gfx/pics/golduck/shiny.pal b/gfx/pics/golduck/shiny.pal deleted file mode 100644 index cfd29e90e..000000000 --- a/gfx/pics/golduck/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 28, 10, 13 - RGB 07, 17, 30 - diff --git a/gfx/pics/golem/anim0.asm b/gfx/pics/golem/anim0.asm deleted file mode 100644 index ef21ec211..000000000 --- a/gfx/pics/golem/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 0, 08 - frame 1, 12 - frame 2, 18 - frame 1, 12 - frame 3, 12 - endanim -; 0xd0d07 diff --git a/gfx/pics/golem/anim1.asm b/gfx/pics/golem/anim1.asm deleted file mode 100644 index 9d3c23ba3..000000000 --- a/gfx/pics/golem/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd1bbd diff --git a/gfx/pics/golem/back.2bpp.lz.ae903dee b/gfx/pics/golem/back.2bpp.lz.ae903dee deleted file mode 100644 index fd1ee3dcb..000000000 Binary files a/gfx/pics/golem/back.2bpp.lz.ae903dee and /dev/null differ diff --git a/gfx/pics/golem/back.png b/gfx/pics/golem/back.png deleted file mode 100644 index 4b39da3cd..000000000 Binary files a/gfx/pics/golem/back.png and /dev/null differ diff --git a/gfx/pics/golem/front.animated.2bpp.lz.a16f21c8 b/gfx/pics/golem/front.animated.2bpp.lz.a16f21c8 deleted file mode 100644 index 0a7bf3369..000000000 Binary files a/gfx/pics/golem/front.animated.2bpp.lz.a16f21c8 and /dev/null differ diff --git a/gfx/pics/golem/front.png b/gfx/pics/golem/front.png deleted file mode 100644 index 8a8450b28..000000000 Binary files a/gfx/pics/golem/front.png and /dev/null differ diff --git a/gfx/pics/golem/shiny.pal b/gfx/pics/golem/shiny.pal deleted file mode 100644 index d50b44fa6..000000000 --- a/gfx/pics/golem/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 15, 12 - RGB 19, 07, 03 - diff --git a/gfx/pics/granbull/anim0.asm b/gfx/pics/granbull/anim0.asm deleted file mode 100644 index 2f412479f..000000000 --- a/gfx/pics/granbull/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 32 - frame 0, 16 - setrepeat 2 - frame 1, 07 - frame 0, 07 - dorepeat 3 - endanim -; 0xd146f diff --git a/gfx/pics/granbull/anim1.asm b/gfx/pics/granbull/anim1.asm deleted file mode 100644 index 22e166977..000000000 --- a/gfx/pics/granbull/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 2, 06 - dorepeat 1 - endanim -; 0xd20a7 diff --git a/gfx/pics/granbull/back.2bpp.lz.7f1208ed b/gfx/pics/granbull/back.2bpp.lz.7f1208ed deleted file mode 100644 index f09d4e7dc..000000000 Binary files a/gfx/pics/granbull/back.2bpp.lz.7f1208ed and /dev/null differ diff --git a/gfx/pics/granbull/back.png b/gfx/pics/granbull/back.png deleted file mode 100644 index 9ffdc7c99..000000000 Binary files a/gfx/pics/granbull/back.png and /dev/null differ diff --git a/gfx/pics/granbull/front.animated.2bpp.lz.4504768b b/gfx/pics/granbull/front.animated.2bpp.lz.4504768b deleted file mode 100644 index 94062ce3f..000000000 Binary files a/gfx/pics/granbull/front.animated.2bpp.lz.4504768b and /dev/null differ diff --git a/gfx/pics/granbull/front.png b/gfx/pics/granbull/front.png deleted file mode 100644 index 911bc59ae..000000000 Binary files a/gfx/pics/granbull/front.png and /dev/null differ diff --git a/gfx/pics/granbull/shiny.pal b/gfx/pics/granbull/shiny.pal deleted file mode 100644 index b15bd641c..000000000 --- a/gfx/pics/granbull/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 20, 16 - RGB 14, 12, 12 - diff --git a/gfx/pics/graveler/anim0.asm b/gfx/pics/graveler/anim0.asm deleted file mode 100644 index 8c0fba1ac..000000000 --- a/gfx/pics/graveler/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 12 - frame 2, 12 - frame 3, 17 - frame 0, 15 - setrepeat 2 - frame 0, 09 - frame 4, 09 - dorepeat 5 - endanim -; 0xd0cfc diff --git a/gfx/pics/graveler/anim1.asm b/gfx/pics/graveler/anim1.asm deleted file mode 100644 index e4ebc15e0..000000000 --- a/gfx/pics/graveler/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 2, 35 - setrepeat 2 - frame 0, 20 - frame 5, 20 - dorepeat 2 - endanim -; 0xd1bb4 diff --git a/gfx/pics/graveler/back.2bpp.lz.c7867de7 b/gfx/pics/graveler/back.2bpp.lz.c7867de7 deleted file mode 100644 index ba2fba8e6..000000000 Binary files a/gfx/pics/graveler/back.2bpp.lz.c7867de7 and /dev/null differ diff --git a/gfx/pics/graveler/back.png b/gfx/pics/graveler/back.png deleted file mode 100644 index 17eb486b6..000000000 Binary files a/gfx/pics/graveler/back.png and /dev/null differ diff --git a/gfx/pics/graveler/front.animated.2bpp.lz.68d07c61 b/gfx/pics/graveler/front.animated.2bpp.lz.68d07c61 deleted file mode 100644 index 5dcee6436..000000000 Binary files a/gfx/pics/graveler/front.animated.2bpp.lz.68d07c61 and /dev/null differ diff --git a/gfx/pics/graveler/front.png b/gfx/pics/graveler/front.png deleted file mode 100644 index 30cca1550..000000000 Binary files a/gfx/pics/graveler/front.png and /dev/null differ diff --git a/gfx/pics/graveler/shiny.pal b/gfx/pics/graveler/shiny.pal deleted file mode 100644 index 36ba603c5..000000000 --- a/gfx/pics/graveler/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 14, 12 - RGB 16, 11, 07 - diff --git a/gfx/pics/grimer/anim0.asm b/gfx/pics/grimer/anim0.asm deleted file mode 100644 index c8edda489..000000000 --- a/gfx/pics/grimer/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 04 - frame 2, 12 - frame 1, 08 - frame 2, 28 - endanim -; 0xd0db3 diff --git a/gfx/pics/grimer/anim1.asm b/gfx/pics/grimer/anim1.asm deleted file mode 100644 index 50829935e..000000000 --- a/gfx/pics/grimer/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 3, 04 - setrepeat 2 - frame 1, 08 - frame 4, 08 - dorepeat 2 - frame 2, 16 - endanim -; 0xd1c37 diff --git a/gfx/pics/grimer/back.2bpp.lz.833bd626 b/gfx/pics/grimer/back.2bpp.lz.833bd626 deleted file mode 100644 index d4494a003..000000000 Binary files a/gfx/pics/grimer/back.2bpp.lz.833bd626 and /dev/null differ diff --git a/gfx/pics/grimer/back.png b/gfx/pics/grimer/back.png deleted file mode 100644 index e5c70286b..000000000 Binary files a/gfx/pics/grimer/back.png and /dev/null differ diff --git a/gfx/pics/grimer/front.animated.2bpp.lz.dfe40e91 b/gfx/pics/grimer/front.animated.2bpp.lz.dfe40e91 deleted file mode 100644 index 176f2da1c..000000000 Binary files a/gfx/pics/grimer/front.animated.2bpp.lz.dfe40e91 and /dev/null differ diff --git a/gfx/pics/grimer/front.png b/gfx/pics/grimer/front.png deleted file mode 100644 index f71dca145..000000000 Binary files a/gfx/pics/grimer/front.png and /dev/null differ diff --git a/gfx/pics/grimer/shiny.pal b/gfx/pics/grimer/shiny.pal deleted file mode 100644 index 893276df4..000000000 --- a/gfx/pics/grimer/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 19, 01 - RGB 11, 10, 10 - diff --git a/gfx/pics/growlithe/anim0.asm b/gfx/pics/growlithe/anim0.asm deleted file mode 100644 index 333c08e67..000000000 --- a/gfx/pics/growlithe/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 08 - frame 2, 10 - frame 0, 18 - setrepeat 3 - frame 1, 08 - frame 2, 08 - dorepeat 4 - endanim -; 0xd0c1b diff --git a/gfx/pics/growlithe/anim1.asm b/gfx/pics/growlithe/anim1.asm deleted file mode 100644 index bce18fa44..000000000 --- a/gfx/pics/growlithe/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 2, 08 - frame 3, 08 - dorepeat 1 - frame 2, 16 - endanim -; 0xd1b03 diff --git a/gfx/pics/growlithe/back.2bpp.lz.7f5831f6 b/gfx/pics/growlithe/back.2bpp.lz.7f5831f6 deleted file mode 100644 index 222250f79..000000000 Binary files a/gfx/pics/growlithe/back.2bpp.lz.7f5831f6 and /dev/null differ diff --git a/gfx/pics/growlithe/back.png b/gfx/pics/growlithe/back.png deleted file mode 100644 index e5e23b822..000000000 Binary files a/gfx/pics/growlithe/back.png and /dev/null differ diff --git a/gfx/pics/growlithe/front.animated.2bpp.lz.f7b376fa b/gfx/pics/growlithe/front.animated.2bpp.lz.f7b376fa deleted file mode 100644 index a01b4f1fc..000000000 Binary files a/gfx/pics/growlithe/front.animated.2bpp.lz.f7b376fa and /dev/null differ diff --git a/gfx/pics/growlithe/front.png b/gfx/pics/growlithe/front.png deleted file mode 100644 index 333568169..000000000 Binary files a/gfx/pics/growlithe/front.png and /dev/null differ diff --git a/gfx/pics/growlithe/shiny.pal b/gfx/pics/growlithe/shiny.pal deleted file mode 100644 index 5033bfda2..000000000 --- a/gfx/pics/growlithe/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 20, 07 - RGB 21, 13, 00 - diff --git a/gfx/pics/gyarados/anim0.asm b/gfx/pics/gyarados/anim0.asm deleted file mode 100644 index 89195fa31..000000000 --- a/gfx/pics/gyarados/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 1, 11 - frame 2, 11 - dorepeat 1 - endanim -; 0xd100b diff --git a/gfx/pics/gyarados/anim1.asm b/gfx/pics/gyarados/anim1.asm deleted file mode 100644 index b33c52080..000000000 --- a/gfx/pics/gyarados/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1db7 diff --git a/gfx/pics/gyarados/back.2bpp.lz.fc577f9e b/gfx/pics/gyarados/back.2bpp.lz.fc577f9e deleted file mode 100644 index d061ec9b2..000000000 Binary files a/gfx/pics/gyarados/back.2bpp.lz.fc577f9e and /dev/null differ diff --git a/gfx/pics/gyarados/back.png b/gfx/pics/gyarados/back.png deleted file mode 100644 index 12e942927..000000000 Binary files a/gfx/pics/gyarados/back.png and /dev/null differ diff --git a/gfx/pics/gyarados/front.animated.2bpp.lz.1b498e2b b/gfx/pics/gyarados/front.animated.2bpp.lz.1b498e2b deleted file mode 100644 index 4d66d5814..000000000 Binary files a/gfx/pics/gyarados/front.animated.2bpp.lz.1b498e2b and /dev/null differ diff --git a/gfx/pics/gyarados/front.png b/gfx/pics/gyarados/front.png deleted file mode 100644 index 0b6c883e9..000000000 Binary files a/gfx/pics/gyarados/front.png and /dev/null differ diff --git a/gfx/pics/gyarados/shiny.pal b/gfx/pics/gyarados/shiny.pal deleted file mode 100644 index d0599722d..000000000 --- a/gfx/pics/gyarados/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 20, 08 - RGB 27, 10, 05 - diff --git a/gfx/pics/haunter/anim0.asm b/gfx/pics/haunter/anim0.asm deleted file mode 100644 index a46d0f0bc..000000000 --- a/gfx/pics/haunter/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 10 - frame 2, 10 - frame 3, 44 - frame 2, 10 - frame 1, 10 - endanim -; 0xd0de8 diff --git a/gfx/pics/haunter/anim1.asm b/gfx/pics/haunter/anim1.asm deleted file mode 100644 index bf439b1e1..000000000 --- a/gfx/pics/haunter/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 4, 58 - endanim -; 0xd1c5a diff --git a/gfx/pics/haunter/back.2bpp.lz.8a5dc2c1 b/gfx/pics/haunter/back.2bpp.lz.8a5dc2c1 deleted file mode 100644 index 660c0408b..000000000 Binary files a/gfx/pics/haunter/back.2bpp.lz.8a5dc2c1 and /dev/null differ diff --git a/gfx/pics/haunter/back.png b/gfx/pics/haunter/back.png deleted file mode 100644 index 204e1987f..000000000 Binary files a/gfx/pics/haunter/back.png and /dev/null differ diff --git a/gfx/pics/haunter/front.animated.2bpp.lz.aeed5f7e b/gfx/pics/haunter/front.animated.2bpp.lz.aeed5f7e deleted file mode 100644 index 6bb6ab582..000000000 Binary files a/gfx/pics/haunter/front.animated.2bpp.lz.aeed5f7e and /dev/null differ diff --git a/gfx/pics/haunter/front.png b/gfx/pics/haunter/front.png deleted file mode 100644 index 5f6c2d1b3..000000000 Binary files a/gfx/pics/haunter/front.png and /dev/null differ diff --git a/gfx/pics/haunter/shiny.pal b/gfx/pics/haunter/shiny.pal deleted file mode 100644 index b8ea0d809..000000000 --- a/gfx/pics/haunter/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 10, 09, 27 - RGB 08, 00, 19 - diff --git a/gfx/pics/heracross/anim0.asm b/gfx/pics/heracross/anim0.asm deleted file mode 100644 index 5bba06fad..000000000 --- a/gfx/pics/heracross/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 0, 06 - frame 1, 20 - frame 2, 18 - endanim -; 0xd14a5 diff --git a/gfx/pics/heracross/anim1.asm b/gfx/pics/heracross/anim1.asm deleted file mode 100644 index 6c402379c..000000000 --- a/gfx/pics/heracross/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd20cb diff --git a/gfx/pics/heracross/back.2bpp.lz.ba09608b b/gfx/pics/heracross/back.2bpp.lz.ba09608b deleted file mode 100644 index da4d40981..000000000 Binary files a/gfx/pics/heracross/back.2bpp.lz.ba09608b and /dev/null differ diff --git a/gfx/pics/heracross/back.png b/gfx/pics/heracross/back.png deleted file mode 100644 index f3ee9d73d..000000000 Binary files a/gfx/pics/heracross/back.png and /dev/null differ diff --git a/gfx/pics/heracross/front.animated.2bpp.lz.0742fe2b b/gfx/pics/heracross/front.animated.2bpp.lz.0742fe2b deleted file mode 100644 index ad23e01d1..000000000 Binary files a/gfx/pics/heracross/front.animated.2bpp.lz.0742fe2b and /dev/null differ diff --git a/gfx/pics/heracross/front.png b/gfx/pics/heracross/front.png deleted file mode 100644 index a8908ab86..000000000 Binary files a/gfx/pics/heracross/front.png and /dev/null differ diff --git a/gfx/pics/heracross/shiny.pal b/gfx/pics/heracross/shiny.pal deleted file mode 100644 index 3bc81cbdc..000000000 --- a/gfx/pics/heracross/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 09, 24 - RGB 13, 03, 16 - diff --git a/gfx/pics/hitmonchan/anim0.asm b/gfx/pics/hitmonchan/anim0.asm deleted file mode 100644 index b6ddd647e..000000000 --- a/gfx/pics/hitmonchan/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 20 - setrepeat 3 - frame 1, 06 - frame 2, 06 - dorepeat 2 - frame 1, 15 - frame 3, 06 - frame 1, 40 - frame 2, 10 - endanim -; 0xd0eda diff --git a/gfx/pics/hitmonchan/anim1.asm b/gfx/pics/hitmonchan/anim1.asm deleted file mode 100644 index 6f67577a0..000000000 --- a/gfx/pics/hitmonchan/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 40 - setrepeat 4 - frame 5, 09 - frame 4, 09 - dorepeat 2 - frame 4, 20 - endanim -; 0xd1ce2 diff --git a/gfx/pics/hitmonchan/back.2bpp.lz.68e28b98 b/gfx/pics/hitmonchan/back.2bpp.lz.68e28b98 deleted file mode 100644 index f785248c1..000000000 Binary files a/gfx/pics/hitmonchan/back.2bpp.lz.68e28b98 and /dev/null differ diff --git a/gfx/pics/hitmonchan/back.png b/gfx/pics/hitmonchan/back.png deleted file mode 100644 index 6a2e663e3..000000000 Binary files a/gfx/pics/hitmonchan/back.png and /dev/null differ diff --git a/gfx/pics/hitmonchan/front.animated.2bpp.lz.61836c4c b/gfx/pics/hitmonchan/front.animated.2bpp.lz.61836c4c deleted file mode 100644 index e9a77e987..000000000 Binary files a/gfx/pics/hitmonchan/front.animated.2bpp.lz.61836c4c and /dev/null differ diff --git a/gfx/pics/hitmonchan/front.png b/gfx/pics/hitmonchan/front.png deleted file mode 100644 index 6575dad5a..000000000 Binary files a/gfx/pics/hitmonchan/front.png and /dev/null differ diff --git a/gfx/pics/hitmonchan/shiny.pal b/gfx/pics/hitmonchan/shiny.pal deleted file mode 100644 index ff930b7a5..000000000 --- a/gfx/pics/hitmonchan/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 17, 12 - RGB 08, 03, 31 - diff --git a/gfx/pics/hitmonlee/anim0.asm b/gfx/pics/hitmonlee/anim0.asm deleted file mode 100644 index 4260d7753..000000000 --- a/gfx/pics/hitmonlee/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 0, 04 - frame 5, 24 - frame 1, 12 - frame 2, 06 - frame 3, 10 - frame 4, 06 - frame 1, 05 - frame 2, 05 - frame 3, 05 - frame 4, 05 - frame 1, 08 - endanim -; 0xd0ec7 diff --git a/gfx/pics/hitmonlee/anim1.asm b/gfx/pics/hitmonlee/anim1.asm deleted file mode 100644 index 4d7d191bf..000000000 --- a/gfx/pics/hitmonlee/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 1 - endanim -; 0xd1cd5 diff --git a/gfx/pics/hitmonlee/back.2bpp.lz.374e3caa b/gfx/pics/hitmonlee/back.2bpp.lz.374e3caa deleted file mode 100644 index 4847a1496..000000000 Binary files a/gfx/pics/hitmonlee/back.2bpp.lz.374e3caa and /dev/null differ diff --git a/gfx/pics/hitmonlee/back.png b/gfx/pics/hitmonlee/back.png deleted file mode 100644 index 9bc03d5e7..000000000 Binary files a/gfx/pics/hitmonlee/back.png and /dev/null differ diff --git a/gfx/pics/hitmonlee/front.animated.2bpp.lz.d174eba1 b/gfx/pics/hitmonlee/front.animated.2bpp.lz.d174eba1 deleted file mode 100644 index c85ec5817..000000000 Binary files a/gfx/pics/hitmonlee/front.animated.2bpp.lz.d174eba1 and /dev/null differ diff --git a/gfx/pics/hitmonlee/front.png b/gfx/pics/hitmonlee/front.png deleted file mode 100644 index 96b6430ce..000000000 Binary files a/gfx/pics/hitmonlee/front.png and /dev/null differ diff --git a/gfx/pics/hitmonlee/shiny.pal b/gfx/pics/hitmonlee/shiny.pal deleted file mode 100644 index c0ee7cc2e..000000000 --- a/gfx/pics/hitmonlee/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 17, 21, 05 - RGB 13, 08, 13 - diff --git a/gfx/pics/hitmontop/anim0.asm b/gfx/pics/hitmontop/anim0.asm deleted file mode 100644 index 195f1554b..000000000 --- a/gfx/pics/hitmontop/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 12 - frame 4, 05 - setrepeat 4 - frame 2, 08 - frame 3, 08 - dorepeat 3 - frame 4, 25 - endanim -; 0xd15c6 diff --git a/gfx/pics/hitmontop/anim1.asm b/gfx/pics/hitmontop/anim1.asm deleted file mode 100644 index 3b4f17403..000000000 --- a/gfx/pics/hitmontop/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 4, 08 - frame 0, 08 - dorepeat 1 - frame 4, 30 - endanim -; 0xd2192 diff --git a/gfx/pics/hitmontop/back.2bpp.lz.ea3f1576 b/gfx/pics/hitmontop/back.2bpp.lz.ea3f1576 deleted file mode 100644 index 185f08aff..000000000 Binary files a/gfx/pics/hitmontop/back.2bpp.lz.ea3f1576 and /dev/null differ diff --git a/gfx/pics/hitmontop/back.png b/gfx/pics/hitmontop/back.png deleted file mode 100644 index 95a1faa4c..000000000 Binary files a/gfx/pics/hitmontop/back.png and /dev/null differ diff --git a/gfx/pics/hitmontop/front.animated.2bpp.lz.1b3e96fc b/gfx/pics/hitmontop/front.animated.2bpp.lz.1b3e96fc deleted file mode 100644 index d28913fcf..000000000 Binary files a/gfx/pics/hitmontop/front.animated.2bpp.lz.1b3e96fc and /dev/null differ diff --git a/gfx/pics/hitmontop/front.png b/gfx/pics/hitmontop/front.png deleted file mode 100644 index 3c580896d..000000000 Binary files a/gfx/pics/hitmontop/front.png and /dev/null differ diff --git a/gfx/pics/hitmontop/shiny.pal b/gfx/pics/hitmontop/shiny.pal deleted file mode 100644 index 5c88a27e0..000000000 --- a/gfx/pics/hitmontop/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 17, 20 - RGB 17, 07, 29 - diff --git a/gfx/pics/ho_oh/anim0.asm b/gfx/pics/ho_oh/anim0.asm deleted file mode 100644 index 5ae27b487..000000000 --- a/gfx/pics/ho_oh/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 0, 04 - frame 1, 08 - frame 2, 12 - setrepeat 5 - frame 0, 05 - frame 3, 05 - dorepeat 4 - frame 0, 06 - frame 4, 12 - endanim -; 0xd1679 diff --git a/gfx/pics/ho_oh/anim1.asm b/gfx/pics/ho_oh/anim1.asm deleted file mode 100644 index d7808f281..000000000 --- a/gfx/pics/ho_oh/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd2215 diff --git a/gfx/pics/ho_oh/back.2bpp.lz.1412f260 b/gfx/pics/ho_oh/back.2bpp.lz.1412f260 deleted file mode 100644 index 1d58cf8ac..000000000 Binary files a/gfx/pics/ho_oh/back.2bpp.lz.1412f260 and /dev/null differ diff --git a/gfx/pics/ho_oh/back.png b/gfx/pics/ho_oh/back.png deleted file mode 100644 index c28d038d9..000000000 Binary files a/gfx/pics/ho_oh/back.png and /dev/null differ diff --git a/gfx/pics/ho_oh/front.animated.2bpp.lz.db80b5eb b/gfx/pics/ho_oh/front.animated.2bpp.lz.db80b5eb deleted file mode 100644 index 40c91739e..000000000 Binary files a/gfx/pics/ho_oh/front.animated.2bpp.lz.db80b5eb and /dev/null differ diff --git a/gfx/pics/ho_oh/front.png b/gfx/pics/ho_oh/front.png deleted file mode 100644 index 52598814d..000000000 Binary files a/gfx/pics/ho_oh/front.png and /dev/null differ diff --git a/gfx/pics/ho_oh/shiny.pal b/gfx/pics/ho_oh/shiny.pal deleted file mode 100644 index 64a56ec52..000000000 --- a/gfx/pics/ho_oh/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 20, 00 - RGB 31, 08, 04 - diff --git a/gfx/pics/hoothoot/anim0.asm b/gfx/pics/hoothoot/anim0.asm deleted file mode 100644 index 813faf909..000000000 --- a/gfx/pics/hoothoot/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 15 - frame 2, 04 - frame 3, 07 - frame 4, 07 - frame 3, 07 - frame 4, 07 - setrepeat 2 - frame 0, 05 - frame 5, 05 - dorepeat 7 - endanim -; 0xd1208 diff --git a/gfx/pics/hoothoot/anim1.asm b/gfx/pics/hoothoot/anim1.asm deleted file mode 100644 index 4aaf1a124..000000000 --- a/gfx/pics/hoothoot/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 5, 05 - dorepeat 1 - frame 0, 13 - frame 5, 05 - endanim -; 0xd1f08 diff --git a/gfx/pics/hoothoot/back.2bpp.lz.7ebb0b29 b/gfx/pics/hoothoot/back.2bpp.lz.7ebb0b29 deleted file mode 100644 index e4ca2f37f..000000000 Binary files a/gfx/pics/hoothoot/back.2bpp.lz.7ebb0b29 and /dev/null differ diff --git a/gfx/pics/hoothoot/back.png b/gfx/pics/hoothoot/back.png deleted file mode 100644 index 73247ff34..000000000 Binary files a/gfx/pics/hoothoot/back.png and /dev/null differ diff --git a/gfx/pics/hoothoot/front.animated.2bpp.lz.752ab202 b/gfx/pics/hoothoot/front.animated.2bpp.lz.752ab202 deleted file mode 100644 index 6abcd37fc..000000000 Binary files a/gfx/pics/hoothoot/front.animated.2bpp.lz.752ab202 and /dev/null differ diff --git a/gfx/pics/hoothoot/front.png b/gfx/pics/hoothoot/front.png deleted file mode 100644 index 97500e77c..000000000 Binary files a/gfx/pics/hoothoot/front.png and /dev/null differ diff --git a/gfx/pics/hoothoot/shiny.pal b/gfx/pics/hoothoot/shiny.pal deleted file mode 100644 index 360685581..000000000 --- a/gfx/pics/hoothoot/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 22, 06 - RGB 22, 02, 24 - diff --git a/gfx/pics/hoppip/anim0.asm b/gfx/pics/hoppip/anim0.asm deleted file mode 100644 index 6af60ab0b..000000000 --- a/gfx/pics/hoppip/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 1, 10 - frame 2, 10 - dorepeat 1 - endanim -; 0xd134e diff --git a/gfx/pics/hoppip/anim1.asm b/gfx/pics/hoppip/anim1.asm deleted file mode 100644 index d0281ca1c..000000000 --- a/gfx/pics/hoppip/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 2, 10 - dorepeat 1 - frame 2, 20 - endanim -; 0xd1ff0 diff --git a/gfx/pics/hoppip/back.2bpp.lz.5684c023 b/gfx/pics/hoppip/back.2bpp.lz.5684c023 deleted file mode 100644 index c5439118e..000000000 Binary files a/gfx/pics/hoppip/back.2bpp.lz.5684c023 and /dev/null differ diff --git a/gfx/pics/hoppip/back.png b/gfx/pics/hoppip/back.png deleted file mode 100644 index 325c08993..000000000 Binary files a/gfx/pics/hoppip/back.png and /dev/null differ diff --git a/gfx/pics/hoppip/front.animated.2bpp.lz.a03efe74 b/gfx/pics/hoppip/front.animated.2bpp.lz.a03efe74 deleted file mode 100644 index 4387e2886..000000000 Binary files a/gfx/pics/hoppip/front.animated.2bpp.lz.a03efe74 and /dev/null differ diff --git a/gfx/pics/hoppip/front.png b/gfx/pics/hoppip/front.png deleted file mode 100644 index 19cd0d473..000000000 Binary files a/gfx/pics/hoppip/front.png and /dev/null differ diff --git a/gfx/pics/hoppip/shiny.pal b/gfx/pics/hoppip/shiny.pal deleted file mode 100644 index 4a4afec42..000000000 --- a/gfx/pics/hoppip/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 29, 06 - RGB 09, 12, 03 - diff --git a/gfx/pics/horsea/anim0.asm b/gfx/pics/horsea/anim0.asm deleted file mode 100644 index 18d51863c..000000000 --- a/gfx/pics/horsea/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 16 - frame 2, 24 - setrepeat 3 - frame 0, 03 - frame 3, 03 - dorepeat 3 - endanim -; 0xd0f49 diff --git a/gfx/pics/horsea/anim1.asm b/gfx/pics/horsea/anim1.asm deleted file mode 100644 index 2475abfdb..000000000 --- a/gfx/pics/horsea/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1d35 diff --git a/gfx/pics/horsea/back.2bpp.lz.50b6afb9 b/gfx/pics/horsea/back.2bpp.lz.50b6afb9 deleted file mode 100644 index ae6a2ecab..000000000 Binary files a/gfx/pics/horsea/back.2bpp.lz.50b6afb9 and /dev/null differ diff --git a/gfx/pics/horsea/back.png b/gfx/pics/horsea/back.png deleted file mode 100644 index 70c34e674..000000000 Binary files a/gfx/pics/horsea/back.png and /dev/null differ diff --git a/gfx/pics/horsea/front.animated.2bpp.lz.8b84f98e b/gfx/pics/horsea/front.animated.2bpp.lz.8b84f98e deleted file mode 100644 index 7db08094b..000000000 Binary files a/gfx/pics/horsea/front.animated.2bpp.lz.8b84f98e and /dev/null differ diff --git a/gfx/pics/horsea/front.png b/gfx/pics/horsea/front.png deleted file mode 100644 index 285617685..000000000 Binary files a/gfx/pics/horsea/front.png and /dev/null differ diff --git a/gfx/pics/horsea/shiny.pal b/gfx/pics/horsea/shiny.pal deleted file mode 100644 index 9b9875302..000000000 --- a/gfx/pics/horsea/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 12, 24 - RGB 12, 15, 31 - diff --git a/gfx/pics/houndoom/anim0.asm b/gfx/pics/houndoom/anim0.asm deleted file mode 100644 index 60ad08726..000000000 --- a/gfx/pics/houndoom/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 11 - setrepeat 9 - frame 2, 02 - frame 3, 02 - dorepeat 2 - frame 2, 04 - frame 3, 04 - frame 4, 08 - endanim -; 0xd1560 diff --git a/gfx/pics/houndoom/anim1.asm b/gfx/pics/houndoom/anim1.asm deleted file mode 100644 index 78fa8610c..000000000 --- a/gfx/pics/houndoom/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 12 - frame 5, 12 - dorepeat 1 - endanim -; 0xd214e diff --git a/gfx/pics/houndoom/back.2bpp.lz.5fa55a47 b/gfx/pics/houndoom/back.2bpp.lz.5fa55a47 deleted file mode 100644 index 5b7b72ffc..000000000 Binary files a/gfx/pics/houndoom/back.2bpp.lz.5fa55a47 and /dev/null differ diff --git a/gfx/pics/houndoom/back.png b/gfx/pics/houndoom/back.png deleted file mode 100644 index e9137ba77..000000000 Binary files a/gfx/pics/houndoom/back.png and /dev/null differ diff --git a/gfx/pics/houndoom/front.animated.2bpp.lz.2d450e90 b/gfx/pics/houndoom/front.animated.2bpp.lz.2d450e90 deleted file mode 100644 index c2ce34ee3..000000000 Binary files a/gfx/pics/houndoom/front.animated.2bpp.lz.2d450e90 and /dev/null differ diff --git a/gfx/pics/houndoom/front.png b/gfx/pics/houndoom/front.png deleted file mode 100644 index 0a8315734..000000000 Binary files a/gfx/pics/houndoom/front.png and /dev/null differ diff --git a/gfx/pics/houndoom/shiny.pal b/gfx/pics/houndoom/shiny.pal deleted file mode 100644 index cf16faf2c..000000000 --- a/gfx/pics/houndoom/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 18, 20 - RGB 08, 07, 20 - diff --git a/gfx/pics/houndour/anim0.asm b/gfx/pics/houndour/anim0.asm deleted file mode 100644 index 2235850c0..000000000 --- a/gfx/pics/houndour/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 05 - frame 2, 05 - frame 1, 05 - frame 0, 07 - frame 3, 07 - endanim -; 0xd154f diff --git a/gfx/pics/houndour/anim1.asm b/gfx/pics/houndour/anim1.asm deleted file mode 100644 index dd8318689..000000000 --- a/gfx/pics/houndour/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - setrepeat 2 - frame 3, 07 - frame 4, 07 - dorepeat 2 - frame 3, 16 - endanim -; 0xd2145 diff --git a/gfx/pics/houndour/back.2bpp.lz.ae5f2dc9 b/gfx/pics/houndour/back.2bpp.lz.ae5f2dc9 deleted file mode 100644 index fe3584bd1..000000000 Binary files a/gfx/pics/houndour/back.2bpp.lz.ae5f2dc9 and /dev/null differ diff --git a/gfx/pics/houndour/back.png b/gfx/pics/houndour/back.png deleted file mode 100644 index bcaf2c7ca..000000000 Binary files a/gfx/pics/houndour/back.png and /dev/null differ diff --git a/gfx/pics/houndour/front.animated.2bpp.lz.f847f4f6 b/gfx/pics/houndour/front.animated.2bpp.lz.f847f4f6 deleted file mode 100644 index 786c0f9a4..000000000 Binary files a/gfx/pics/houndour/front.animated.2bpp.lz.f847f4f6 and /dev/null differ diff --git a/gfx/pics/houndour/front.png b/gfx/pics/houndour/front.png deleted file mode 100644 index b002b0f15..000000000 Binary files a/gfx/pics/houndour/front.png and /dev/null differ diff --git a/gfx/pics/houndour/shiny.pal b/gfx/pics/houndour/shiny.pal deleted file mode 100644 index c7296ab33..000000000 --- a/gfx/pics/houndour/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 19, 18 - RGB 08, 07, 24 - diff --git a/gfx/pics/hypno/anim0.asm b/gfx/pics/hypno/anim0.asm deleted file mode 100644 index b6c3e6463..000000000 --- a/gfx/pics/hypno/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 1, 15 - frame 2, 15 - frame 3, 15 - dorepeat 1 - endanim -; 0xd0e26 diff --git a/gfx/pics/hypno/anim1.asm b/gfx/pics/hypno/anim1.asm deleted file mode 100644 index 4d981c442..000000000 --- a/gfx/pics/hypno/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd1c8a diff --git a/gfx/pics/hypno/back.2bpp.lz.c091ce88 b/gfx/pics/hypno/back.2bpp.lz.c091ce88 deleted file mode 100644 index b69fcadf7..000000000 Binary files a/gfx/pics/hypno/back.2bpp.lz.c091ce88 and /dev/null differ diff --git a/gfx/pics/hypno/back.png b/gfx/pics/hypno/back.png deleted file mode 100644 index b68f235d3..000000000 Binary files a/gfx/pics/hypno/back.png and /dev/null differ diff --git a/gfx/pics/hypno/front.animated.2bpp.lz.638333a3 b/gfx/pics/hypno/front.animated.2bpp.lz.638333a3 deleted file mode 100644 index ca6ec0608..000000000 Binary files a/gfx/pics/hypno/front.animated.2bpp.lz.638333a3 and /dev/null differ diff --git a/gfx/pics/hypno/front.png b/gfx/pics/hypno/front.png deleted file mode 100644 index 64c844425..000000000 Binary files a/gfx/pics/hypno/front.png and /dev/null differ diff --git a/gfx/pics/hypno/shiny.pal b/gfx/pics/hypno/shiny.pal deleted file mode 100644 index 51f14601f..000000000 --- a/gfx/pics/hypno/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 09, 25 - RGB 18, 10, 13 - diff --git a/gfx/pics/igglybuff/anim0.asm b/gfx/pics/igglybuff/anim0.asm deleted file mode 100644 index 0b2430e44..000000000 --- a/gfx/pics/igglybuff/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 04 - frame 1, 08 - frame 2, 14 - frame 1, 06 - endanim -; 0xd1299 diff --git a/gfx/pics/igglybuff/anim1.asm b/gfx/pics/igglybuff/anim1.asm deleted file mode 100644 index 338a0ab2d..000000000 --- a/gfx/pics/igglybuff/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1f71 diff --git a/gfx/pics/igglybuff/back.2bpp.lz.c0c17dcb b/gfx/pics/igglybuff/back.2bpp.lz.c0c17dcb deleted file mode 100644 index b416af3f0..000000000 Binary files a/gfx/pics/igglybuff/back.2bpp.lz.c0c17dcb and /dev/null differ diff --git a/gfx/pics/igglybuff/back.png b/gfx/pics/igglybuff/back.png deleted file mode 100644 index 7b34a17ff..000000000 Binary files a/gfx/pics/igglybuff/back.png and /dev/null differ diff --git a/gfx/pics/igglybuff/front.animated.2bpp.lz.1e00afc3 b/gfx/pics/igglybuff/front.animated.2bpp.lz.1e00afc3 deleted file mode 100644 index 1c4bbefa0..000000000 Binary files a/gfx/pics/igglybuff/front.animated.2bpp.lz.1e00afc3 and /dev/null differ diff --git a/gfx/pics/igglybuff/front.png b/gfx/pics/igglybuff/front.png deleted file mode 100644 index 2fb7dbb78..000000000 Binary files a/gfx/pics/igglybuff/front.png and /dev/null differ diff --git a/gfx/pics/igglybuff/shiny.pal b/gfx/pics/igglybuff/shiny.pal deleted file mode 100644 index 38ce5d76d..000000000 --- a/gfx/pics/igglybuff/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 17, 31 - RGB 09, 24, 03 - diff --git a/gfx/pics/ivysaur/anim0.asm b/gfx/pics/ivysaur/anim0.asm deleted file mode 100644 index 65e89f5ab..000000000 --- a/gfx/pics/ivysaur/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 1, 08 - frame 2, 20 - frame 1, 06 - endanim -; 0xd08a5 diff --git a/gfx/pics/ivysaur/anim1.asm b/gfx/pics/ivysaur/anim1.asm deleted file mode 100644 index 3df18b2cd..000000000 --- a/gfx/pics/ivysaur/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 1 - frame 0, 08 - frame 1, 06 - endanim -; 0xd18ad diff --git a/gfx/pics/ivysaur/back.2bpp.lz.bed1ff58 b/gfx/pics/ivysaur/back.2bpp.lz.bed1ff58 deleted file mode 100644 index 34557d9dd..000000000 Binary files a/gfx/pics/ivysaur/back.2bpp.lz.bed1ff58 and /dev/null differ diff --git a/gfx/pics/ivysaur/back.png b/gfx/pics/ivysaur/back.png deleted file mode 100644 index 325b5cdf5..000000000 Binary files a/gfx/pics/ivysaur/back.png and /dev/null differ diff --git a/gfx/pics/ivysaur/front.animated.2bpp.lz.3abed0fa b/gfx/pics/ivysaur/front.animated.2bpp.lz.3abed0fa deleted file mode 100644 index 7b9c8f9d9..000000000 Binary files a/gfx/pics/ivysaur/front.animated.2bpp.lz.3abed0fa and /dev/null differ diff --git a/gfx/pics/ivysaur/front.png b/gfx/pics/ivysaur/front.png deleted file mode 100644 index 799c79667..000000000 Binary files a/gfx/pics/ivysaur/front.png and /dev/null differ diff --git a/gfx/pics/ivysaur/shiny.pal b/gfx/pics/ivysaur/shiny.pal deleted file mode 100644 index 04c81cf45..000000000 --- a/gfx/pics/ivysaur/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 28, 11 - RGB 31, 24, 09 - diff --git a/gfx/pics/jigglypuff/anim0.asm b/gfx/pics/jigglypuff/anim0.asm deleted file mode 100644 index ada7e0d99..000000000 --- a/gfx/pics/jigglypuff/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 14 - frame 2, 09 - frame 3, 09 - frame 2, 06 - frame 4, 20 - setrepeat 2 - frame 3, 05 - frame 4, 05 - dorepeat 6 - endanim -; 0xd0ade diff --git a/gfx/pics/jigglypuff/anim1.asm b/gfx/pics/jigglypuff/anim1.asm deleted file mode 100644 index 40584de87..000000000 --- a/gfx/pics/jigglypuff/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd1a46 diff --git a/gfx/pics/jigglypuff/back.2bpp.lz.87d5730b b/gfx/pics/jigglypuff/back.2bpp.lz.87d5730b deleted file mode 100644 index e551afaf6..000000000 Binary files a/gfx/pics/jigglypuff/back.2bpp.lz.87d5730b and /dev/null differ diff --git a/gfx/pics/jigglypuff/back.png b/gfx/pics/jigglypuff/back.png deleted file mode 100644 index 4e1849c51..000000000 Binary files a/gfx/pics/jigglypuff/back.png and /dev/null differ diff --git a/gfx/pics/jigglypuff/front.animated.2bpp.lz.9fd159f4 b/gfx/pics/jigglypuff/front.animated.2bpp.lz.9fd159f4 deleted file mode 100644 index 4367e41d8..000000000 Binary files a/gfx/pics/jigglypuff/front.animated.2bpp.lz.9fd159f4 and /dev/null differ diff --git a/gfx/pics/jigglypuff/front.png b/gfx/pics/jigglypuff/front.png deleted file mode 100644 index 867134d13..000000000 Binary files a/gfx/pics/jigglypuff/front.png and /dev/null differ diff --git a/gfx/pics/jigglypuff/shiny.pal b/gfx/pics/jigglypuff/shiny.pal deleted file mode 100644 index 38ce5d76d..000000000 --- a/gfx/pics/jigglypuff/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 17, 31 - RGB 09, 24, 03 - diff --git a/gfx/pics/johto_frames.asm b/gfx/pics/johto_frames.asm deleted file mode 100644 index 5bac4fde2..000000000 --- a/gfx/pics/johto_frames.asm +++ /dev/null @@ -1,102 +0,0 @@ -JohtoFrames: -ChikoritaFrames: INCLUDE "gfx/pics/chikorita/frames.asm" -BayleefFrames: INCLUDE "gfx/pics/bayleef/frames.asm" -MeganiumFrames: INCLUDE "gfx/pics/meganium/frames.asm" -CyndaquilFrames: INCLUDE "gfx/pics/cyndaquil/frames.asm" -QuilavaFrames: INCLUDE "gfx/pics/quilava/frames.asm" -TyphlosionFrames: INCLUDE "gfx/pics/typhlosion/frames.asm" -TotodileFrames: INCLUDE "gfx/pics/totodile/frames.asm" -CroconawFrames: INCLUDE "gfx/pics/croconaw/frames.asm" -FeraligatrFrames: INCLUDE "gfx/pics/feraligatr/frames.asm" -SentretFrames: INCLUDE "gfx/pics/sentret/frames.asm" -FurretFrames: INCLUDE "gfx/pics/furret/frames.asm" -HoothootFrames: INCLUDE "gfx/pics/hoothoot/frames.asm" -NoctowlFrames: INCLUDE "gfx/pics/noctowl/frames.asm" -LedybaFrames: INCLUDE "gfx/pics/ledyba/frames.asm" -LedianFrames: INCLUDE "gfx/pics/ledian/frames.asm" -SpinarakFrames: INCLUDE "gfx/pics/spinarak/frames.asm" -AriadosFrames: INCLUDE "gfx/pics/ariados/frames.asm" -CrobatFrames: INCLUDE "gfx/pics/crobat/frames.asm" -ChinchouFrames: INCLUDE "gfx/pics/chinchou/frames.asm" -LanturnFrames: INCLUDE "gfx/pics/lanturn/frames.asm" -PichuFrames: INCLUDE "gfx/pics/pichu/frames.asm" -CleffaFrames: INCLUDE "gfx/pics/cleffa/frames.asm" -IgglybuffFrames: INCLUDE "gfx/pics/igglybuff/frames.asm" -TogepiFrames: INCLUDE "gfx/pics/togepi/frames.asm" -TogeticFrames: INCLUDE "gfx/pics/togetic/frames.asm" -NatuFrames: INCLUDE "gfx/pics/natu/frames.asm" -XatuFrames: INCLUDE "gfx/pics/xatu/frames.asm" -MareepFrames: INCLUDE "gfx/pics/mareep/frames.asm" -FlaaffyFrames: INCLUDE "gfx/pics/flaaffy/frames.asm" -AmpharosFrames: INCLUDE "gfx/pics/ampharos/frames.asm" -BellossomFrames: INCLUDE "gfx/pics/bellossom/frames.asm" -MarillFrames: INCLUDE "gfx/pics/marill/frames.asm" -AzumarillFrames: INCLUDE "gfx/pics/azumarill/frames.asm" -SudowoodoFrames: INCLUDE "gfx/pics/sudowoodo/frames.asm" -PolitoedFrames: INCLUDE "gfx/pics/politoed/frames.asm" -HoppipFrames: INCLUDE "gfx/pics/hoppip/frames.asm" -SkiploomFrames: INCLUDE "gfx/pics/skiploom/frames.asm" -JumpluffFrames: INCLUDE "gfx/pics/jumpluff/frames.asm" -AipomFrames: INCLUDE "gfx/pics/aipom/frames.asm" -SunkernFrames: INCLUDE "gfx/pics/sunkern/frames.asm" -SunfloraFrames: INCLUDE "gfx/pics/sunflora/frames.asm" -YanmaFrames: INCLUDE "gfx/pics/yanma/frames.asm" -WooperFrames: INCLUDE "gfx/pics/wooper/frames.asm" -QuagsireFrames: INCLUDE "gfx/pics/quagsire/frames.asm" -EspeonFrames: INCLUDE "gfx/pics/espeon/frames.asm" -UmbreonFrames: INCLUDE "gfx/pics/umbreon/frames.asm" -MurkrowFrames: INCLUDE "gfx/pics/murkrow/frames.asm" -SlowkingFrames: INCLUDE "gfx/pics/slowking/frames.asm" -MisdreavusFrames: INCLUDE "gfx/pics/misdreavus/frames.asm" -UnownFrames: INCLUDE "gfx/pics/unown/frames.asm" -WobbuffetFrames: INCLUDE "gfx/pics/wobbuffet/frames.asm" -GirafarigFrames: INCLUDE "gfx/pics/girafarig/frames.asm" -PinecoFrames: INCLUDE "gfx/pics/pineco/frames.asm" -ForretressFrames: INCLUDE "gfx/pics/forretress/frames.asm" -DunsparceFrames: INCLUDE "gfx/pics/dunsparce/frames.asm" -GligarFrames: INCLUDE "gfx/pics/gligar/frames.asm" -SteelixFrames: INCLUDE "gfx/pics/steelix/frames.asm" -SnubbullFrames: INCLUDE "gfx/pics/snubbull/frames.asm" -GranbullFrames: INCLUDE "gfx/pics/granbull/frames.asm" -QwilfishFrames: INCLUDE "gfx/pics/qwilfish/frames.asm" -ScizorFrames: INCLUDE "gfx/pics/scizor/frames.asm" -ShuckleFrames: INCLUDE "gfx/pics/shuckle/frames.asm" -HeracrossFrames: INCLUDE "gfx/pics/heracross/frames.asm" -SneaselFrames: INCLUDE "gfx/pics/sneasel/frames.asm" -TeddiursaFrames: INCLUDE "gfx/pics/teddiursa/frames.asm" -UrsaringFrames: INCLUDE "gfx/pics/ursaring/frames.asm" -SlugmaFrames: INCLUDE "gfx/pics/slugma/frames.asm" -MagcargoFrames: INCLUDE "gfx/pics/magcargo/frames.asm" -SwinubFrames: INCLUDE "gfx/pics/swinub/frames.asm" -PiloswineFrames: INCLUDE "gfx/pics/piloswine/frames.asm" -CorsolaFrames: INCLUDE "gfx/pics/corsola/frames.asm" -RemoraidFrames: INCLUDE "gfx/pics/remoraid/frames.asm" -OctilleryFrames: INCLUDE "gfx/pics/octillery/frames.asm" -DelibirdFrames: INCLUDE "gfx/pics/delibird/frames.asm" -MantineFrames: INCLUDE "gfx/pics/mantine/frames.asm" -SkarmoryFrames: INCLUDE "gfx/pics/skarmory/frames.asm" -HoundourFrames: INCLUDE "gfx/pics/houndour/frames.asm" -HoundoomFrames: INCLUDE "gfx/pics/houndoom/frames.asm" -KingdraFrames: INCLUDE "gfx/pics/kingdra/frames.asm" -PhanpyFrames: INCLUDE "gfx/pics/phanpy/frames.asm" -DonphanFrames: INCLUDE "gfx/pics/donphan/frames.asm" -Porygon2Frames: INCLUDE "gfx/pics/porygon2/frames.asm" -StantlerFrames: INCLUDE "gfx/pics/stantler/frames.asm" -SmeargleFrames: INCLUDE "gfx/pics/smeargle/frames.asm" -TyrogueFrames: INCLUDE "gfx/pics/tyrogue/frames.asm" -HitmontopFrames: INCLUDE "gfx/pics/hitmontop/frames.asm" -SmoochumFrames: INCLUDE "gfx/pics/smoochum/frames.asm" -ElekidFrames: INCLUDE "gfx/pics/elekid/frames.asm" -MagbyFrames: INCLUDE "gfx/pics/magby/frames.asm" -MiltankFrames: INCLUDE "gfx/pics/miltank/frames.asm" -BlisseyFrames: INCLUDE "gfx/pics/blissey/frames.asm" -RaikouFrames: INCLUDE "gfx/pics/raikou/frames.asm" -EnteiFrames: INCLUDE "gfx/pics/entei/frames.asm" -SuicuneFrames: INCLUDE "gfx/pics/suicune/frames.asm" -LarvitarFrames: INCLUDE "gfx/pics/larvitar/frames.asm" -PupitarFrames: INCLUDE "gfx/pics/pupitar/frames.asm" -TyranitarFrames: INCLUDE "gfx/pics/tyranitar/frames.asm" -LugiaFrames: INCLUDE "gfx/pics/lugia/frames.asm" -HoOhFrames: INCLUDE "gfx/pics/ho_oh/frames.asm" -CelebiFrames: INCLUDE "gfx/pics/celebi/frames.asm" -EggFrames: INCLUDE "gfx/pics/egg/frames.asm" diff --git a/gfx/pics/jolteon/anim0.asm b/gfx/pics/jolteon/anim0.asm deleted file mode 100644 index c4c01e60a..000000000 --- a/gfx/pics/jolteon/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 05 - frame 2, 38 - frame 1, 08 - frame 0, 20 - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 5 - endanim -; 0xd1054 diff --git a/gfx/pics/jolteon/anim1.asm b/gfx/pics/jolteon/anim1.asm deleted file mode 100644 index 0b5481afd..000000000 --- a/gfx/pics/jolteon/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1de8 diff --git a/gfx/pics/jolteon/back.2bpp.lz.f248aac4 b/gfx/pics/jolteon/back.2bpp.lz.f248aac4 deleted file mode 100644 index e95f893ce..000000000 Binary files a/gfx/pics/jolteon/back.2bpp.lz.f248aac4 and /dev/null differ diff --git a/gfx/pics/jolteon/back.png b/gfx/pics/jolteon/back.png deleted file mode 100644 index 0bf798ebf..000000000 Binary files a/gfx/pics/jolteon/back.png and /dev/null differ diff --git a/gfx/pics/jolteon/front.animated.2bpp.lz.b2b07d79 b/gfx/pics/jolteon/front.animated.2bpp.lz.b2b07d79 deleted file mode 100644 index 32d271390..000000000 Binary files a/gfx/pics/jolteon/front.animated.2bpp.lz.b2b07d79 and /dev/null differ diff --git a/gfx/pics/jolteon/front.png b/gfx/pics/jolteon/front.png deleted file mode 100644 index 4f052d559..000000000 Binary files a/gfx/pics/jolteon/front.png and /dev/null differ diff --git a/gfx/pics/jolteon/shiny.pal b/gfx/pics/jolteon/shiny.pal deleted file mode 100644 index 81d8eda41..000000000 --- a/gfx/pics/jolteon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 22, 00 - RGB 15, 15, 06 - diff --git a/gfx/pics/jumpluff/anim0.asm b/gfx/pics/jumpluff/anim0.asm deleted file mode 100644 index c4161560e..000000000 --- a/gfx/pics/jumpluff/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 09 - frame 2, 09 - frame 3, 09 - endanim -; 0xd135e diff --git a/gfx/pics/jumpluff/anim1.asm b/gfx/pics/jumpluff/anim1.asm deleted file mode 100644 index 5013b953f..000000000 --- a/gfx/pics/jumpluff/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd2002 diff --git a/gfx/pics/jumpluff/back.2bpp.lz.b258a699 b/gfx/pics/jumpluff/back.2bpp.lz.b258a699 deleted file mode 100644 index 57ae8b890..000000000 Binary files a/gfx/pics/jumpluff/back.2bpp.lz.b258a699 and /dev/null differ diff --git a/gfx/pics/jumpluff/back.png b/gfx/pics/jumpluff/back.png deleted file mode 100644 index 1b72ecf2f..000000000 Binary files a/gfx/pics/jumpluff/back.png and /dev/null differ diff --git a/gfx/pics/jumpluff/front.animated.2bpp.lz.6d1d8175 b/gfx/pics/jumpluff/front.animated.2bpp.lz.6d1d8175 deleted file mode 100644 index c3570ed09..000000000 Binary files a/gfx/pics/jumpluff/front.animated.2bpp.lz.6d1d8175 and /dev/null differ diff --git a/gfx/pics/jumpluff/front.png b/gfx/pics/jumpluff/front.png deleted file mode 100644 index 1048e3937..000000000 Binary files a/gfx/pics/jumpluff/front.png and /dev/null differ diff --git a/gfx/pics/jumpluff/shiny.pal b/gfx/pics/jumpluff/shiny.pal deleted file mode 100644 index c553ebebf..000000000 --- a/gfx/pics/jumpluff/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 16, 29 - RGB 31, 08, 31 - diff --git a/gfx/pics/jynx/anim0.asm b/gfx/pics/jynx/anim0.asm deleted file mode 100644 index 78f0e63ed..000000000 --- a/gfx/pics/jynx/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 16 - frame 1, 16 - frame 2, 16 - frame 1, 16 - dorepeat 1 - endanim -; 0xd0fb5 diff --git a/gfx/pics/jynx/anim1.asm b/gfx/pics/jynx/anim1.asm deleted file mode 100644 index 42f42859c..000000000 --- a/gfx/pics/jynx/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1d81 diff --git a/gfx/pics/jynx/back.2bpp.lz.1eef1c1b b/gfx/pics/jynx/back.2bpp.lz.1eef1c1b deleted file mode 100644 index 4642ecda7..000000000 Binary files a/gfx/pics/jynx/back.2bpp.lz.1eef1c1b and /dev/null differ diff --git a/gfx/pics/jynx/back.png b/gfx/pics/jynx/back.png deleted file mode 100644 index 6478f6099..000000000 Binary files a/gfx/pics/jynx/back.png and /dev/null differ diff --git a/gfx/pics/jynx/front.animated.2bpp.lz.6aaf67b0 b/gfx/pics/jynx/front.animated.2bpp.lz.6aaf67b0 deleted file mode 100644 index 78a436494..000000000 Binary files a/gfx/pics/jynx/front.animated.2bpp.lz.6aaf67b0 and /dev/null differ diff --git a/gfx/pics/jynx/front.png b/gfx/pics/jynx/front.png deleted file mode 100644 index 297a90630..000000000 Binary files a/gfx/pics/jynx/front.png and /dev/null differ diff --git a/gfx/pics/jynx/shiny.pal b/gfx/pics/jynx/shiny.pal deleted file mode 100644 index 7e6ad315e..000000000 --- a/gfx/pics/jynx/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 02, 15 - RGB 31, 09, 27 - diff --git a/gfx/pics/kabuto/anim0.asm b/gfx/pics/kabuto/anim0.asm deleted file mode 100644 index de308c900..000000000 --- a/gfx/pics/kabuto/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 2, 12 - frame 1, 16 - frame 2, 12 - endanim -; 0xd1085 diff --git a/gfx/pics/kabuto/anim1.asm b/gfx/pics/kabuto/anim1.asm deleted file mode 100644 index 0e347c87d..000000000 --- a/gfx/pics/kabuto/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - frame 0, 18 - frame 3, 04 - endanim -; 0xd1e19 diff --git a/gfx/pics/kabuto/back.2bpp.lz.0717a29b b/gfx/pics/kabuto/back.2bpp.lz.0717a29b deleted file mode 100644 index 61390a32e..000000000 Binary files a/gfx/pics/kabuto/back.2bpp.lz.0717a29b and /dev/null differ diff --git a/gfx/pics/kabuto/back.png b/gfx/pics/kabuto/back.png deleted file mode 100644 index acd9444b6..000000000 Binary files a/gfx/pics/kabuto/back.png and /dev/null differ diff --git a/gfx/pics/kabuto/front.animated.2bpp.lz.afe4e2dc b/gfx/pics/kabuto/front.animated.2bpp.lz.afe4e2dc deleted file mode 100644 index 24a9376c8..000000000 Binary files a/gfx/pics/kabuto/front.animated.2bpp.lz.afe4e2dc and /dev/null differ diff --git a/gfx/pics/kabuto/front.png b/gfx/pics/kabuto/front.png deleted file mode 100644 index c354983ed..000000000 Binary files a/gfx/pics/kabuto/front.png and /dev/null differ diff --git a/gfx/pics/kabuto/shiny.pal b/gfx/pics/kabuto/shiny.pal deleted file mode 100644 index 1248ce809..000000000 --- a/gfx/pics/kabuto/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 24, 20 - RGB 14, 18, 10 - diff --git a/gfx/pics/kabutops/anim0.asm b/gfx/pics/kabutops/anim0.asm deleted file mode 100644 index f5812126a..000000000 --- a/gfx/pics/kabutops/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 40 - setrepeat 2 - frame 1, 05 - frame 2, 05 - dorepeat 2 - frame 1, 25 - endanim -; 0xd1092 diff --git a/gfx/pics/kabutops/anim1.asm b/gfx/pics/kabutops/anim1.asm deleted file mode 100644 index 32a70f827..000000000 --- a/gfx/pics/kabutops/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1e22 diff --git a/gfx/pics/kabutops/back.2bpp.lz.98a1dfc4 b/gfx/pics/kabutops/back.2bpp.lz.98a1dfc4 deleted file mode 100644 index 507c10e2f..000000000 Binary files a/gfx/pics/kabutops/back.2bpp.lz.98a1dfc4 and /dev/null differ diff --git a/gfx/pics/kabutops/back.png b/gfx/pics/kabutops/back.png deleted file mode 100644 index 2a1fde94d..000000000 Binary files a/gfx/pics/kabutops/back.png and /dev/null differ diff --git a/gfx/pics/kabutops/front.animated.2bpp.lz.d5e4bfeb b/gfx/pics/kabutops/front.animated.2bpp.lz.d5e4bfeb deleted file mode 100644 index 38d21fa16..000000000 Binary files a/gfx/pics/kabutops/front.animated.2bpp.lz.d5e4bfeb and /dev/null differ diff --git a/gfx/pics/kabutops/front.png b/gfx/pics/kabutops/front.png deleted file mode 100644 index 776073b50..000000000 Binary files a/gfx/pics/kabutops/front.png and /dev/null differ diff --git a/gfx/pics/kabutops/shiny.pal b/gfx/pics/kabutops/shiny.pal deleted file mode 100644 index 5c7ac28cf..000000000 --- a/gfx/pics/kabutops/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 20, 11 - RGB 10, 15, 10 - diff --git a/gfx/pics/kadabra/anim0.asm b/gfx/pics/kadabra/anim0.asm deleted file mode 100644 index 9b132e26b..000000000 --- a/gfx/pics/kadabra/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 08 - setrepeat 4 - frame 2, 06 - frame 3, 06 - dorepeat 2 - frame 1, 12 - endanim -; 0xd0c67 diff --git a/gfx/pics/kadabra/anim1.asm b/gfx/pics/kadabra/anim1.asm deleted file mode 100644 index eabcdb07d..000000000 --- a/gfx/pics/kadabra/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd1b41 diff --git a/gfx/pics/kadabra/back.2bpp.lz.6b26c1a0 b/gfx/pics/kadabra/back.2bpp.lz.6b26c1a0 deleted file mode 100644 index 0092147d7..000000000 Binary files a/gfx/pics/kadabra/back.2bpp.lz.6b26c1a0 and /dev/null differ diff --git a/gfx/pics/kadabra/back.png b/gfx/pics/kadabra/back.png deleted file mode 100644 index 20f615a84..000000000 Binary files a/gfx/pics/kadabra/back.png and /dev/null differ diff --git a/gfx/pics/kadabra/front.animated.2bpp.lz.bc78f9cf b/gfx/pics/kadabra/front.animated.2bpp.lz.bc78f9cf deleted file mode 100644 index 54f47795d..000000000 Binary files a/gfx/pics/kadabra/front.animated.2bpp.lz.bc78f9cf and /dev/null differ diff --git a/gfx/pics/kadabra/front.png b/gfx/pics/kadabra/front.png deleted file mode 100644 index 50341a6b3..000000000 Binary files a/gfx/pics/kadabra/front.png and /dev/null differ diff --git a/gfx/pics/kadabra/shiny.pal b/gfx/pics/kadabra/shiny.pal deleted file mode 100644 index 328319095..000000000 --- a/gfx/pics/kadabra/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 28, 24, 10 - RGB 20, 09, 19 - diff --git a/gfx/pics/kakuna/anim0.asm b/gfx/pics/kakuna/anim0.asm deleted file mode 100644 index b67e66e26..000000000 --- a/gfx/pics/kakuna/anim0.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 0, 12 - frame 1, 24 - endanim -; 0xd093f diff --git a/gfx/pics/kakuna/anim1.asm b/gfx/pics/kakuna/anim1.asm deleted file mode 100644 index a7ca98540..000000000 --- a/gfx/pics/kakuna/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd192b diff --git a/gfx/pics/kakuna/back.2bpp.lz.3bffa4c3 b/gfx/pics/kakuna/back.2bpp.lz.3bffa4c3 deleted file mode 100644 index b369857d5..000000000 Binary files a/gfx/pics/kakuna/back.2bpp.lz.3bffa4c3 and /dev/null differ diff --git a/gfx/pics/kakuna/back.png b/gfx/pics/kakuna/back.png deleted file mode 100644 index b7f2b2e52..000000000 Binary files a/gfx/pics/kakuna/back.png and /dev/null differ diff --git a/gfx/pics/kakuna/front.animated.2bpp.lz.c7425e72 b/gfx/pics/kakuna/front.animated.2bpp.lz.c7425e72 deleted file mode 100644 index 2f2431edf..000000000 Binary files a/gfx/pics/kakuna/front.animated.2bpp.lz.c7425e72 and /dev/null differ diff --git a/gfx/pics/kakuna/front.png b/gfx/pics/kakuna/front.png deleted file mode 100644 index b34a398f9..000000000 Binary files a/gfx/pics/kakuna/front.png and /dev/null differ diff --git a/gfx/pics/kakuna/shiny.pal b/gfx/pics/kakuna/shiny.pal deleted file mode 100644 index 335bdffe9..000000000 --- a/gfx/pics/kakuna/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 27, 04 - RGB 13, 17, 07 - diff --git a/gfx/pics/kangaskhan/anim0.asm b/gfx/pics/kangaskhan/anim0.asm deleted file mode 100644 index 34363f893..000000000 --- a/gfx/pics/kangaskhan/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 30 - frame 5, 10 - frame 2, 12 - frame 3, 09 - frame 4, 09 - frame 3, 09 - frame 4, 15 - endanim -; 0xd0f3c diff --git a/gfx/pics/kangaskhan/anim1.asm b/gfx/pics/kangaskhan/anim1.asm deleted file mode 100644 index 0da29ec4a..000000000 --- a/gfx/pics/kangaskhan/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 6, 06 - dorepeat 1 - frame 0, 15 - frame 4, 25 - endanim -; 0xd1d2c diff --git a/gfx/pics/kangaskhan/back.2bpp.lz.0d7cc337 b/gfx/pics/kangaskhan/back.2bpp.lz.0d7cc337 deleted file mode 100644 index c7ff00272..000000000 Binary files a/gfx/pics/kangaskhan/back.2bpp.lz.0d7cc337 and /dev/null differ diff --git a/gfx/pics/kangaskhan/back.png b/gfx/pics/kangaskhan/back.png deleted file mode 100644 index d69e041ca..000000000 Binary files a/gfx/pics/kangaskhan/back.png and /dev/null differ diff --git a/gfx/pics/kangaskhan/front.animated.2bpp.lz.09c81009 b/gfx/pics/kangaskhan/front.animated.2bpp.lz.09c81009 deleted file mode 100644 index 1ec58169d..000000000 Binary files a/gfx/pics/kangaskhan/front.animated.2bpp.lz.09c81009 and /dev/null differ diff --git a/gfx/pics/kangaskhan/front.png b/gfx/pics/kangaskhan/front.png deleted file mode 100644 index abe680c64..000000000 Binary files a/gfx/pics/kangaskhan/front.png and /dev/null differ diff --git a/gfx/pics/kangaskhan/shiny.pal b/gfx/pics/kangaskhan/shiny.pal deleted file mode 100644 index 492559959..000000000 --- a/gfx/pics/kangaskhan/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 16, 19 - RGB 03, 11, 03 - diff --git a/gfx/pics/kanto_frames.asm b/gfx/pics/kanto_frames.asm deleted file mode 100644 index 2cb87b2b9..000000000 --- a/gfx/pics/kanto_frames.asm +++ /dev/null @@ -1,152 +0,0 @@ -KantoFrames: -BulbasaurFrames: INCLUDE "gfx/pics/bulbasaur/frames.asm" -IvysaurFrames: INCLUDE "gfx/pics/ivysaur/frames.asm" -VenusaurFrames: INCLUDE "gfx/pics/venusaur/frames.asm" -CharmanderFrames: INCLUDE "gfx/pics/charmander/frames.asm" -CharmeleonFrames: INCLUDE "gfx/pics/charmeleon/frames.asm" -CharizardFrames: INCLUDE "gfx/pics/charizard/frames.asm" -SquirtleFrames: INCLUDE "gfx/pics/squirtle/frames.asm" -WartortleFrames: INCLUDE "gfx/pics/wartortle/frames.asm" -BlastoiseFrames: INCLUDE "gfx/pics/blastoise/frames.asm" -CaterpieFrames: INCLUDE "gfx/pics/caterpie/frames.asm" -MetapodFrames: INCLUDE "gfx/pics/metapod/frames.asm" -ButterfreeFrames: INCLUDE "gfx/pics/butterfree/frames.asm" -WeedleFrames: INCLUDE "gfx/pics/weedle/frames.asm" -KakunaFrames: INCLUDE "gfx/pics/kakuna/frames.asm" -BeedrillFrames: INCLUDE "gfx/pics/beedrill/frames.asm" -PidgeyFrames: INCLUDE "gfx/pics/pidgey/frames.asm" -PidgeottoFrames: INCLUDE "gfx/pics/pidgeotto/frames.asm" -PidgeotFrames: INCLUDE "gfx/pics/pidgeot/frames.asm" -RattataFrames: INCLUDE "gfx/pics/rattata/frames.asm" -RaticateFrames: INCLUDE "gfx/pics/raticate/frames.asm" -SpearowFrames: INCLUDE "gfx/pics/spearow/frames.asm" -FearowFrames: INCLUDE "gfx/pics/fearow/frames.asm" -EkansFrames: INCLUDE "gfx/pics/ekans/frames.asm" -ArbokFrames: INCLUDE "gfx/pics/arbok/frames.asm" -PikachuFrames: INCLUDE "gfx/pics/pikachu/frames.asm" -RaichuFrames: INCLUDE "gfx/pics/raichu/frames.asm" -SandshrewFrames: INCLUDE "gfx/pics/sandshrew/frames.asm" -SandslashFrames: INCLUDE "gfx/pics/sandslash/frames.asm" -NidoranFFrames: INCLUDE "gfx/pics/nidoran_f/frames.asm" -NidorinaFrames: INCLUDE "gfx/pics/nidorina/frames.asm" -NidoqueenFrames: INCLUDE "gfx/pics/nidoqueen/frames.asm" -NidoranMFrames: INCLUDE "gfx/pics/nidoran_m/frames.asm" -NidorinoFrames: INCLUDE "gfx/pics/nidorino/frames.asm" -NidokingFrames: INCLUDE "gfx/pics/nidoking/frames.asm" -ClefairyFrames: INCLUDE "gfx/pics/clefairy/frames.asm" -ClefableFrames: INCLUDE "gfx/pics/clefable/frames.asm" -VulpixFrames: INCLUDE "gfx/pics/vulpix/frames.asm" -NinetalesFrames: INCLUDE "gfx/pics/ninetales/frames.asm" -JigglypuffFrames: INCLUDE "gfx/pics/jigglypuff/frames.asm" -WigglytuffFrames: INCLUDE "gfx/pics/wigglytuff/frames.asm" -ZubatFrames: INCLUDE "gfx/pics/zubat/frames.asm" -GolbatFrames: INCLUDE "gfx/pics/golbat/frames.asm" -OddishFrames: INCLUDE "gfx/pics/oddish/frames.asm" -GloomFrames: INCLUDE "gfx/pics/gloom/frames.asm" -VileplumeFrames: INCLUDE "gfx/pics/vileplume/frames.asm" -ParasFrames: INCLUDE "gfx/pics/paras/frames.asm" -ParasectFrames: INCLUDE "gfx/pics/parasect/frames.asm" -VenonatFrames: INCLUDE "gfx/pics/venonat/frames.asm" -VenomothFrames: INCLUDE "gfx/pics/venomoth/frames.asm" -DiglettFrames: INCLUDE "gfx/pics/diglett/frames.asm" -DugtrioFrames: INCLUDE "gfx/pics/dugtrio/frames.asm" -MeowthFrames: INCLUDE "gfx/pics/meowth/frames.asm" -PersianFrames: INCLUDE "gfx/pics/persian/frames.asm" -PsyduckFrames: INCLUDE "gfx/pics/psyduck/frames.asm" -GolduckFrames: INCLUDE "gfx/pics/golduck/frames.asm" -MankeyFrames: INCLUDE "gfx/pics/mankey/frames.asm" -PrimeapeFrames: INCLUDE "gfx/pics/primeape/frames.asm" -GrowlitheFrames: INCLUDE "gfx/pics/growlithe/frames.asm" -ArcanineFrames: INCLUDE "gfx/pics/arcanine/frames.asm" -PoliwagFrames: INCLUDE "gfx/pics/poliwag/frames.asm" -PoliwhirlFrames: INCLUDE "gfx/pics/poliwhirl/frames.asm" -PoliwrathFrames: INCLUDE "gfx/pics/poliwrath/frames.asm" -AbraFrames: INCLUDE "gfx/pics/abra/frames.asm" -KadabraFrames: INCLUDE "gfx/pics/kadabra/frames.asm" -AlakazamFrames: INCLUDE "gfx/pics/alakazam/frames.asm" -MachopFrames: INCLUDE "gfx/pics/machop/frames.asm" -MachokeFrames: INCLUDE "gfx/pics/machoke/frames.asm" -MachampFrames: INCLUDE "gfx/pics/machamp/frames.asm" -BellsproutFrames: INCLUDE "gfx/pics/bellsprout/frames.asm" -WeepinbellFrames: INCLUDE "gfx/pics/weepinbell/frames.asm" -VictreebelFrames: INCLUDE "gfx/pics/victreebel/frames.asm" -TentacoolFrames: INCLUDE "gfx/pics/tentacool/frames.asm" -TentacruelFrames: INCLUDE "gfx/pics/tentacruel/frames.asm" -GeodudeFrames: INCLUDE "gfx/pics/geodude/frames.asm" -GravelerFrames: INCLUDE "gfx/pics/graveler/frames.asm" -GolemFrames: INCLUDE "gfx/pics/golem/frames.asm" -PonytaFrames: INCLUDE "gfx/pics/ponyta/frames.asm" -RapidashFrames: INCLUDE "gfx/pics/rapidash/frames.asm" -SlowpokeFrames: INCLUDE "gfx/pics/slowpoke/frames.asm" -SlowbroFrames: INCLUDE "gfx/pics/slowbro/frames.asm" -MagnemiteFrames: INCLUDE "gfx/pics/magnemite/frames.asm" -MagnetonFrames: INCLUDE "gfx/pics/magneton/frames.asm" -FarfetchDFrames: INCLUDE "gfx/pics/farfetch_d/frames.asm" -DoduoFrames: INCLUDE "gfx/pics/doduo/frames.asm" -DodrioFrames: INCLUDE "gfx/pics/dodrio/frames.asm" -SeelFrames: INCLUDE "gfx/pics/seel/frames.asm" -DewgongFrames: INCLUDE "gfx/pics/dewgong/frames.asm" -GrimerFrames: INCLUDE "gfx/pics/grimer/frames.asm" -MukFrames: INCLUDE "gfx/pics/muk/frames.asm" -ShellderFrames: INCLUDE "gfx/pics/shellder/frames.asm" -CloysterFrames: INCLUDE "gfx/pics/cloyster/frames.asm" -GastlyFrames: INCLUDE "gfx/pics/gastly/frames.asm" -HaunterFrames: INCLUDE "gfx/pics/haunter/frames.asm" -GengarFrames: INCLUDE "gfx/pics/gengar/frames.asm" -OnixFrames: INCLUDE "gfx/pics/onix/frames.asm" -DrowzeeFrames: INCLUDE "gfx/pics/drowzee/frames.asm" -HypnoFrames: INCLUDE "gfx/pics/hypno/frames.asm" -KrabbyFrames: INCLUDE "gfx/pics/krabby/frames.asm" -KinglerFrames: INCLUDE "gfx/pics/kingler/frames.asm" -VoltorbFrames: INCLUDE "gfx/pics/voltorb/frames.asm" -ElectrodeFrames: INCLUDE "gfx/pics/electrode/frames.asm" -ExeggcuteFrames: INCLUDE "gfx/pics/exeggcute/frames.asm" -ExeggutorFrames: INCLUDE "gfx/pics/exeggutor/frames.asm" -CuboneFrames: INCLUDE "gfx/pics/cubone/frames.asm" -MarowakFrames: INCLUDE "gfx/pics/marowak/frames.asm" -HitmonleeFrames: INCLUDE "gfx/pics/hitmonlee/frames.asm" -HitmonchanFrames: INCLUDE "gfx/pics/hitmonchan/frames.asm" -LickitungFrames: INCLUDE "gfx/pics/lickitung/frames.asm" -KoffingFrames: INCLUDE "gfx/pics/koffing/frames.asm" -WeezingFrames: INCLUDE "gfx/pics/weezing/frames.asm" -RhyhornFrames: INCLUDE "gfx/pics/rhyhorn/frames.asm" -RhydonFrames: INCLUDE "gfx/pics/rhydon/frames.asm" -ChanseyFrames: INCLUDE "gfx/pics/chansey/frames.asm" -TangelaFrames: INCLUDE "gfx/pics/tangela/frames.asm" -KangaskhanFrames: INCLUDE "gfx/pics/kangaskhan/frames.asm" -HorseaFrames: INCLUDE "gfx/pics/horsea/frames.asm" -SeadraFrames: INCLUDE "gfx/pics/seadra/frames.asm" -GoldeenFrames: INCLUDE "gfx/pics/goldeen/frames.asm" -SeakingFrames: INCLUDE "gfx/pics/seaking/frames.asm" -StaryuFrames: INCLUDE "gfx/pics/staryu/frames.asm" -StarmieFrames: INCLUDE "gfx/pics/starmie/frames.asm" -MrMimeFrames: INCLUDE "gfx/pics/mr__mime/frames.asm" -ScytherFrames: INCLUDE "gfx/pics/scyther/frames.asm" -JynxFrames: INCLUDE "gfx/pics/jynx/frames.asm" -ElectabuzzFrames: INCLUDE "gfx/pics/electabuzz/frames.asm" -MagmarFrames: INCLUDE "gfx/pics/magmar/frames.asm" -PinsirFrames: INCLUDE "gfx/pics/pinsir/frames.asm" -TaurosFrames: INCLUDE "gfx/pics/tauros/frames.asm" -MagikarpFrames: INCLUDE "gfx/pics/magikarp/frames.asm" -GyaradosFrames: INCLUDE "gfx/pics/gyarados/frames.asm" -LaprasFrames: INCLUDE "gfx/pics/lapras/frames.asm" -DittoFrames: INCLUDE "gfx/pics/ditto/frames.asm" -EeveeFrames: INCLUDE "gfx/pics/eevee/frames.asm" -VaporeonFrames: INCLUDE "gfx/pics/vaporeon/frames.asm" -JolteonFrames: INCLUDE "gfx/pics/jolteon/frames.asm" -FlareonFrames: INCLUDE "gfx/pics/flareon/frames.asm" -PorygonFrames: INCLUDE "gfx/pics/porygon/frames.asm" -OmanyteFrames: INCLUDE "gfx/pics/omanyte/frames.asm" -OmastarFrames: INCLUDE "gfx/pics/omastar/frames.asm" -KabutoFrames: INCLUDE "gfx/pics/kabuto/frames.asm" -KabutopsFrames: INCLUDE "gfx/pics/kabutops/frames.asm" -AerodactylFrames: INCLUDE "gfx/pics/aerodactyl/frames.asm" -SnorlaxFrames: INCLUDE "gfx/pics/snorlax/frames.asm" -ArticunoFrames: INCLUDE "gfx/pics/articuno/frames.asm" -ZapdosFrames: INCLUDE "gfx/pics/zapdos/frames.asm" -MoltresFrames: INCLUDE "gfx/pics/moltres/frames.asm" -DratiniFrames: INCLUDE "gfx/pics/dratini/frames.asm" -DragonairFrames: INCLUDE "gfx/pics/dragonair/frames.asm" -DragoniteFrames: INCLUDE "gfx/pics/dragonite/frames.asm" -MewtwoFrames: INCLUDE "gfx/pics/mewtwo/frames.asm" -MewFrames: INCLUDE "gfx/pics/mew/frames.asm" diff --git a/gfx/pics/kingdra/anim0.asm b/gfx/pics/kingdra/anim0.asm deleted file mode 100644 index c7bc2991f..000000000 --- a/gfx/pics/kingdra/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 12 - frame 2, 12 - frame 3, 12 - frame 0, 12 - setrepeat 3 - frame 4, 06 - frame 5, 06 - dorepeat 5 - endanim -; 0xd1571 diff --git a/gfx/pics/kingdra/anim1.asm b/gfx/pics/kingdra/anim1.asm deleted file mode 100644 index 2ec7e99ae..000000000 --- a/gfx/pics/kingdra/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 6, 06 - dorepeat 1 - endanim -; 0xd2157 diff --git a/gfx/pics/kingdra/back.2bpp.lz.e48ecb3f b/gfx/pics/kingdra/back.2bpp.lz.e48ecb3f deleted file mode 100644 index 9f2c38b6c..000000000 Binary files a/gfx/pics/kingdra/back.2bpp.lz.e48ecb3f and /dev/null differ diff --git a/gfx/pics/kingdra/back.png b/gfx/pics/kingdra/back.png deleted file mode 100644 index 9f0784999..000000000 Binary files a/gfx/pics/kingdra/back.png and /dev/null differ diff --git a/gfx/pics/kingdra/front.animated.2bpp.lz.668c0516 b/gfx/pics/kingdra/front.animated.2bpp.lz.668c0516 deleted file mode 100644 index d28a4dc78..000000000 Binary files a/gfx/pics/kingdra/front.animated.2bpp.lz.668c0516 and /dev/null differ diff --git a/gfx/pics/kingdra/front.png b/gfx/pics/kingdra/front.png deleted file mode 100644 index 978f8e91c..000000000 Binary files a/gfx/pics/kingdra/front.png and /dev/null differ diff --git a/gfx/pics/kingdra/shiny.pal b/gfx/pics/kingdra/shiny.pal deleted file mode 100644 index 2a65783f1..000000000 --- a/gfx/pics/kingdra/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 17, 15 - RGB 17, 11, 19 - diff --git a/gfx/pics/kingler/anim0.asm b/gfx/pics/kingler/anim0.asm deleted file mode 100644 index 2be7b62be..000000000 --- a/gfx/pics/kingler/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 2 - frame 1, 11 - frame 2, 11 - dorepeat 1 - frame 0, 11 - frame 2, 11 - frame 0, 15 - frame 2, 15 - endanim -; 0xd0e4a diff --git a/gfx/pics/kingler/anim1.asm b/gfx/pics/kingler/anim1.asm deleted file mode 100644 index 25af73bc9..000000000 --- a/gfx/pics/kingler/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 4 - frame 0, 10 - frame 3, 10 - dorepeat 1 - endanim -; 0xd1c9a diff --git a/gfx/pics/kingler/back.2bpp.lz.88e96d65 b/gfx/pics/kingler/back.2bpp.lz.88e96d65 deleted file mode 100644 index aceed0679..000000000 Binary files a/gfx/pics/kingler/back.2bpp.lz.88e96d65 and /dev/null differ diff --git a/gfx/pics/kingler/back.png b/gfx/pics/kingler/back.png deleted file mode 100644 index 02e058053..000000000 Binary files a/gfx/pics/kingler/back.png and /dev/null differ diff --git a/gfx/pics/kingler/front.animated.2bpp.lz.35305199 b/gfx/pics/kingler/front.animated.2bpp.lz.35305199 deleted file mode 100644 index 590bd05ee..000000000 Binary files a/gfx/pics/kingler/front.animated.2bpp.lz.35305199 and /dev/null differ diff --git a/gfx/pics/kingler/front.png b/gfx/pics/kingler/front.png deleted file mode 100644 index 5631d87e7..000000000 Binary files a/gfx/pics/kingler/front.png and /dev/null differ diff --git a/gfx/pics/kingler/shiny.pal b/gfx/pics/kingler/shiny.pal deleted file mode 100644 index 9a9c3818b..000000000 --- a/gfx/pics/kingler/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 22, 09 - RGB 12, 13, 11 - diff --git a/gfx/pics/koffing/anim0.asm b/gfx/pics/koffing/anim0.asm deleted file mode 100644 index fc574f528..000000000 --- a/gfx/pics/koffing/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 20 - frame 2, 06 - frame 3, 05 - frame 4, 10 - frame 5, 15 - endanim -; 0xd0ef0 diff --git a/gfx/pics/koffing/anim1.asm b/gfx/pics/koffing/anim1.asm deleted file mode 100644 index e0e81b4d3..000000000 --- a/gfx/pics/koffing/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 5, 48 - endanim -; 0xd1cee diff --git a/gfx/pics/koffing/back.2bpp.lz.8c0a2526 b/gfx/pics/koffing/back.2bpp.lz.8c0a2526 deleted file mode 100644 index 2e8762565..000000000 Binary files a/gfx/pics/koffing/back.2bpp.lz.8c0a2526 and /dev/null differ diff --git a/gfx/pics/koffing/back.png b/gfx/pics/koffing/back.png deleted file mode 100644 index fd156a89b..000000000 Binary files a/gfx/pics/koffing/back.png and /dev/null differ diff --git a/gfx/pics/koffing/front.animated.2bpp.lz.00044b3f b/gfx/pics/koffing/front.animated.2bpp.lz.00044b3f deleted file mode 100644 index 78de37eeb..000000000 Binary files a/gfx/pics/koffing/front.animated.2bpp.lz.00044b3f and /dev/null differ diff --git a/gfx/pics/koffing/front.png b/gfx/pics/koffing/front.png deleted file mode 100644 index 1468a07f1..000000000 Binary files a/gfx/pics/koffing/front.png and /dev/null differ diff --git a/gfx/pics/koffing/shiny.pal b/gfx/pics/koffing/shiny.pal deleted file mode 100644 index 8132fea04..000000000 --- a/gfx/pics/koffing/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 20, 25 - RGB 09, 12, 23 - diff --git a/gfx/pics/krabby/anim0.asm b/gfx/pics/krabby/anim0.asm deleted file mode 100644 index 22f5657e5..000000000 --- a/gfx/pics/krabby/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 5, 18 - frame 0, 06 - setrepeat 2 - frame 0, 06 - frame 1, 04 - frame 2, 03 - frame 3, 04 - frame 4, 03 - dorepeat 3 - endanim -; 0xd0e39 diff --git a/gfx/pics/krabby/anim1.asm b/gfx/pics/krabby/anim1.asm deleted file mode 100644 index 0b89ffc33..000000000 --- a/gfx/pics/krabby/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 0, 06 - frame 7, 06 - dorepeat 3 - endanim -; 0xd1c91 diff --git a/gfx/pics/krabby/back.2bpp.lz.2bc2487b b/gfx/pics/krabby/back.2bpp.lz.2bc2487b deleted file mode 100644 index 5954b413d..000000000 Binary files a/gfx/pics/krabby/back.2bpp.lz.2bc2487b and /dev/null differ diff --git a/gfx/pics/krabby/back.png b/gfx/pics/krabby/back.png deleted file mode 100644 index baf5a048e..000000000 Binary files a/gfx/pics/krabby/back.png and /dev/null differ diff --git a/gfx/pics/krabby/front.animated.2bpp.lz.39592514 b/gfx/pics/krabby/front.animated.2bpp.lz.39592514 deleted file mode 100644 index c0f968fa5..000000000 Binary files a/gfx/pics/krabby/front.animated.2bpp.lz.39592514 and /dev/null differ diff --git a/gfx/pics/krabby/front.png b/gfx/pics/krabby/front.png deleted file mode 100644 index f790059e8..000000000 Binary files a/gfx/pics/krabby/front.png and /dev/null differ diff --git a/gfx/pics/krabby/shiny.pal b/gfx/pics/krabby/shiny.pal deleted file mode 100644 index 57fd91a81..000000000 --- a/gfx/pics/krabby/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 20, 22 - RGB 18, 15, 04 - diff --git a/gfx/pics/lanturn/anim0.asm b/gfx/pics/lanturn/anim0.asm deleted file mode 100644 index 18882deb5..000000000 --- a/gfx/pics/lanturn/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 12 - frame 2, 12 - frame 3, 12 - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 4 - endanim -; 0xd1280 diff --git a/gfx/pics/lanturn/anim1.asm b/gfx/pics/lanturn/anim1.asm deleted file mode 100644 index d57dd04b1..000000000 --- a/gfx/pics/lanturn/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1f56 diff --git a/gfx/pics/lanturn/back.2bpp.lz.8e9c7c1a b/gfx/pics/lanturn/back.2bpp.lz.8e9c7c1a deleted file mode 100644 index ea916b7ea..000000000 Binary files a/gfx/pics/lanturn/back.2bpp.lz.8e9c7c1a and /dev/null differ diff --git a/gfx/pics/lanturn/back.png b/gfx/pics/lanturn/back.png deleted file mode 100644 index f80ffc742..000000000 Binary files a/gfx/pics/lanturn/back.png and /dev/null differ diff --git a/gfx/pics/lanturn/front.animated.2bpp.lz.1bfac161 b/gfx/pics/lanturn/front.animated.2bpp.lz.1bfac161 deleted file mode 100644 index ba57a1569..000000000 Binary files a/gfx/pics/lanturn/front.animated.2bpp.lz.1bfac161 and /dev/null differ diff --git a/gfx/pics/lanturn/front.png b/gfx/pics/lanturn/front.png deleted file mode 100644 index 5b2eaeb5b..000000000 Binary files a/gfx/pics/lanturn/front.png and /dev/null differ diff --git a/gfx/pics/lanturn/shiny.pal b/gfx/pics/lanturn/shiny.pal deleted file mode 100644 index e1e3e4fe8..000000000 --- a/gfx/pics/lanturn/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 23, 10 - RGB 16, 10, 31 - diff --git a/gfx/pics/lapras/anim0.asm b/gfx/pics/lapras/anim0.asm deleted file mode 100644 index 9ae8f4e5c..000000000 --- a/gfx/pics/lapras/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 10 - frame 2, 07 - frame 3, 40 - frame 2, 09 - frame 1, 10 - endanim -; 0xd1016 diff --git a/gfx/pics/lapras/anim1.asm b/gfx/pics/lapras/anim1.asm deleted file mode 100644 index 790cccf05..000000000 --- a/gfx/pics/lapras/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 4, 10 - frame 5, 30 - frame 0, 12 - frame 5, 12 - endanim -; 0xd1dc0 diff --git a/gfx/pics/lapras/back.2bpp.lz.d09351a1 b/gfx/pics/lapras/back.2bpp.lz.d09351a1 deleted file mode 100644 index 00f6b4329..000000000 Binary files a/gfx/pics/lapras/back.2bpp.lz.d09351a1 and /dev/null differ diff --git a/gfx/pics/lapras/back.png b/gfx/pics/lapras/back.png deleted file mode 100644 index 9c17ce376..000000000 Binary files a/gfx/pics/lapras/back.png and /dev/null differ diff --git a/gfx/pics/lapras/front.animated.2bpp.lz.8290ef8e b/gfx/pics/lapras/front.animated.2bpp.lz.8290ef8e deleted file mode 100644 index 0c20fc0be..000000000 Binary files a/gfx/pics/lapras/front.animated.2bpp.lz.8290ef8e and /dev/null differ diff --git a/gfx/pics/lapras/front.png b/gfx/pics/lapras/front.png deleted file mode 100644 index f6c2c483b..000000000 Binary files a/gfx/pics/lapras/front.png and /dev/null differ diff --git a/gfx/pics/lapras/shiny.pal b/gfx/pics/lapras/shiny.pal deleted file mode 100644 index 58fa3bc59..000000000 --- a/gfx/pics/lapras/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 13, 31 - RGB 16, 11, 31 - diff --git a/gfx/pics/larvitar/anim0.asm b/gfx/pics/larvitar/anim0.asm deleted file mode 100644 index bb861f733..000000000 --- a/gfx/pics/larvitar/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 3, 12 - frame 1, 12 - frame 2, 28 - frame 3, 08 - endanim -; 0xd163d diff --git a/gfx/pics/larvitar/anim1.asm b/gfx/pics/larvitar/anim1.asm deleted file mode 100644 index 2b87de7be..000000000 --- a/gfx/pics/larvitar/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd21eb diff --git a/gfx/pics/larvitar/back.2bpp.lz.4b2ac395 b/gfx/pics/larvitar/back.2bpp.lz.4b2ac395 deleted file mode 100644 index b4122419b..000000000 Binary files a/gfx/pics/larvitar/back.2bpp.lz.4b2ac395 and /dev/null differ diff --git a/gfx/pics/larvitar/back.png b/gfx/pics/larvitar/back.png deleted file mode 100644 index 84e51b20b..000000000 Binary files a/gfx/pics/larvitar/back.png and /dev/null differ diff --git a/gfx/pics/larvitar/front.animated.2bpp.lz.83859c57 b/gfx/pics/larvitar/front.animated.2bpp.lz.83859c57 deleted file mode 100644 index deba5d5a2..000000000 Binary files a/gfx/pics/larvitar/front.animated.2bpp.lz.83859c57 and /dev/null differ diff --git a/gfx/pics/larvitar/front.png b/gfx/pics/larvitar/front.png deleted file mode 100644 index 3f58d0be6..000000000 Binary files a/gfx/pics/larvitar/front.png and /dev/null differ diff --git a/gfx/pics/larvitar/shiny.pal b/gfx/pics/larvitar/shiny.pal deleted file mode 100644 index 025a819dc..000000000 --- a/gfx/pics/larvitar/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 23, 10 - RGB 20, 07, 23 - diff --git a/gfx/pics/ledian/anim0.asm b/gfx/pics/ledian/anim0.asm deleted file mode 100644 index ece77ff44..000000000 --- a/gfx/pics/ledian/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 04 - frame 2, 24 - setrepeat 7 - frame 1, 02 - frame 3, 02 - dorepeat 3 - frame 1, 08 - endanim -; 0xd1233 diff --git a/gfx/pics/ledian/anim1.asm b/gfx/pics/ledian/anim1.asm deleted file mode 100644 index cf5a0e011..000000000 --- a/gfx/pics/ledian/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd1f25 diff --git a/gfx/pics/ledian/back.2bpp.lz.48657bbb b/gfx/pics/ledian/back.2bpp.lz.48657bbb deleted file mode 100644 index eb996b4e3..000000000 Binary files a/gfx/pics/ledian/back.2bpp.lz.48657bbb and /dev/null differ diff --git a/gfx/pics/ledian/back.png b/gfx/pics/ledian/back.png deleted file mode 100644 index 6dcd7eb53..000000000 Binary files a/gfx/pics/ledian/back.png and /dev/null differ diff --git a/gfx/pics/ledian/front.animated.2bpp.lz.83e819c3 b/gfx/pics/ledian/front.animated.2bpp.lz.83e819c3 deleted file mode 100644 index 117d19c14..000000000 Binary files a/gfx/pics/ledian/front.animated.2bpp.lz.83e819c3 and /dev/null differ diff --git a/gfx/pics/ledian/front.png b/gfx/pics/ledian/front.png deleted file mode 100644 index d5773cbba..000000000 Binary files a/gfx/pics/ledian/front.png and /dev/null differ diff --git a/gfx/pics/ledian/shiny.pal b/gfx/pics/ledian/shiny.pal deleted file mode 100644 index f404bc1d1..000000000 --- a/gfx/pics/ledian/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 26, 00 - RGB 31, 17, 00 - diff --git a/gfx/pics/ledyba/anim0.asm b/gfx/pics/ledyba/anim0.asm deleted file mode 100644 index ac4c8e154..000000000 --- a/gfx/pics/ledyba/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 08 - setrepeat 2 - frame 2, 10 - frame 3, 12 - dorepeat 2 - endanim -; 0xd1224 diff --git a/gfx/pics/ledyba/anim1.asm b/gfx/pics/ledyba/anim1.asm deleted file mode 100644 index d493c5fbc..000000000 --- a/gfx/pics/ledyba/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 3, 07 - setrepeat 3 - frame 4, 05 - frame 3, 05 - dorepeat 2 - endanim -; 0xd1f1c diff --git a/gfx/pics/ledyba/back.2bpp.lz.d50e8860 b/gfx/pics/ledyba/back.2bpp.lz.d50e8860 deleted file mode 100644 index 728f4dedb..000000000 Binary files a/gfx/pics/ledyba/back.2bpp.lz.d50e8860 and /dev/null differ diff --git a/gfx/pics/ledyba/back.png b/gfx/pics/ledyba/back.png deleted file mode 100644 index e9f080747..000000000 Binary files a/gfx/pics/ledyba/back.png and /dev/null differ diff --git a/gfx/pics/ledyba/front.animated.2bpp.lz.1700dc27 b/gfx/pics/ledyba/front.animated.2bpp.lz.1700dc27 deleted file mode 100644 index fc15ab1ba..000000000 Binary files a/gfx/pics/ledyba/front.animated.2bpp.lz.1700dc27 and /dev/null differ diff --git a/gfx/pics/ledyba/front.png b/gfx/pics/ledyba/front.png deleted file mode 100644 index 317670632..000000000 Binary files a/gfx/pics/ledyba/front.png and /dev/null differ diff --git a/gfx/pics/ledyba/shiny.pal b/gfx/pics/ledyba/shiny.pal deleted file mode 100644 index f404bc1d1..000000000 --- a/gfx/pics/ledyba/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 26, 00 - RGB 31, 17, 00 - diff --git a/gfx/pics/lickitung/anim0.asm b/gfx/pics/lickitung/anim0.asm deleted file mode 100644 index 2fb31e50b..000000000 --- a/gfx/pics/lickitung/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 16 - frame 2, 06 - frame 3, 06 - frame 0, 06 - frame 3, 06 - endanim -; 0xd0ee5 diff --git a/gfx/pics/lickitung/anim1.asm b/gfx/pics/lickitung/anim1.asm deleted file mode 100644 index cf0355a03..000000000 --- a/gfx/pics/lickitung/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1ceb diff --git a/gfx/pics/lickitung/back.2bpp.lz.a127e40b b/gfx/pics/lickitung/back.2bpp.lz.a127e40b deleted file mode 100644 index 85764655a..000000000 Binary files a/gfx/pics/lickitung/back.2bpp.lz.a127e40b and /dev/null differ diff --git a/gfx/pics/lickitung/back.png b/gfx/pics/lickitung/back.png deleted file mode 100644 index dd6276d7c..000000000 Binary files a/gfx/pics/lickitung/back.png and /dev/null differ diff --git a/gfx/pics/lickitung/front.animated.2bpp.lz.328a7c53 b/gfx/pics/lickitung/front.animated.2bpp.lz.328a7c53 deleted file mode 100644 index f7e2f4f43..000000000 Binary files a/gfx/pics/lickitung/front.animated.2bpp.lz.328a7c53 and /dev/null differ diff --git a/gfx/pics/lickitung/front.png b/gfx/pics/lickitung/front.png deleted file mode 100644 index 9918326e4..000000000 Binary files a/gfx/pics/lickitung/front.png and /dev/null differ diff --git a/gfx/pics/lickitung/shiny.pal b/gfx/pics/lickitung/shiny.pal deleted file mode 100644 index 214a63264..000000000 --- a/gfx/pics/lickitung/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 22, 09 - RGB 28, 09, 14 - diff --git a/gfx/pics/lugia/anim0.asm b/gfx/pics/lugia/anim0.asm deleted file mode 100644 index 3c3c021a5..000000000 --- a/gfx/pics/lugia/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 11 - frame 2, 11 - frame 3, 14 - frame 4, 14 - frame 5, 14 - frame 6, 11 - endanim -; 0xd1666 diff --git a/gfx/pics/lugia/anim1.asm b/gfx/pics/lugia/anim1.asm deleted file mode 100644 index 31f2ea09c..000000000 --- a/gfx/pics/lugia/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 3 - frame 9, 10 - frame 7, 10 - dorepeat 1 - frame 8, 10 - frame 3, 10 - endanim -; 0xd220c diff --git a/gfx/pics/lugia/back.2bpp.lz.ad953eb5 b/gfx/pics/lugia/back.2bpp.lz.ad953eb5 deleted file mode 100644 index 8f7134e13..000000000 Binary files a/gfx/pics/lugia/back.2bpp.lz.ad953eb5 and /dev/null differ diff --git a/gfx/pics/lugia/back.png b/gfx/pics/lugia/back.png deleted file mode 100644 index 07e502f41..000000000 Binary files a/gfx/pics/lugia/back.png and /dev/null differ diff --git a/gfx/pics/lugia/front.animated.2bpp.lz.7293eddc b/gfx/pics/lugia/front.animated.2bpp.lz.7293eddc deleted file mode 100644 index b1b300304..000000000 Binary files a/gfx/pics/lugia/front.animated.2bpp.lz.7293eddc and /dev/null differ diff --git a/gfx/pics/lugia/front.png b/gfx/pics/lugia/front.png deleted file mode 100644 index 29c21ee3c..000000000 Binary files a/gfx/pics/lugia/front.png and /dev/null differ diff --git a/gfx/pics/lugia/shiny.pal b/gfx/pics/lugia/shiny.pal deleted file mode 100644 index 22a7970ff..000000000 --- a/gfx/pics/lugia/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 28, 28 - RGB 27, 00, 14 - diff --git a/gfx/pics/machamp/anim0.asm b/gfx/pics/machamp/anim0.asm deleted file mode 100644 index 6202aefe5..000000000 --- a/gfx/pics/machamp/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 0, 04 - frame 1, 30 - setrepeat 3 - frame 2, 05 - frame 6, 03 - frame 3, 05 - frame 4, 03 - dorepeat 3 - frame 7, 08 - endanim -; 0xd0c9d diff --git a/gfx/pics/machamp/anim1.asm b/gfx/pics/machamp/anim1.asm deleted file mode 100644 index 5171d3966..000000000 --- a/gfx/pics/machamp/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 5, 07 - dorepeat 1 - endanim -; 0xd1b6b diff --git a/gfx/pics/machamp/back.2bpp.lz.757f4c29 b/gfx/pics/machamp/back.2bpp.lz.757f4c29 deleted file mode 100644 index b82d09cce..000000000 Binary files a/gfx/pics/machamp/back.2bpp.lz.757f4c29 and /dev/null differ diff --git a/gfx/pics/machamp/back.png b/gfx/pics/machamp/back.png deleted file mode 100644 index 9fd20fd70..000000000 Binary files a/gfx/pics/machamp/back.png and /dev/null differ diff --git a/gfx/pics/machamp/front.animated.2bpp.lz.2d408542 b/gfx/pics/machamp/front.animated.2bpp.lz.2d408542 deleted file mode 100644 index aa1b12edb..000000000 Binary files a/gfx/pics/machamp/front.animated.2bpp.lz.2d408542 and /dev/null differ diff --git a/gfx/pics/machamp/front.png b/gfx/pics/machamp/front.png deleted file mode 100644 index b06c66af6..000000000 Binary files a/gfx/pics/machamp/front.png and /dev/null differ diff --git a/gfx/pics/machamp/shiny.pal b/gfx/pics/machamp/shiny.pal deleted file mode 100644 index afe8a06a6..000000000 --- a/gfx/pics/machamp/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 17, 11 - RGB 09, 12, 04 - diff --git a/gfx/pics/machoke/anim0.asm b/gfx/pics/machoke/anim0.asm deleted file mode 100644 index 6d89ab174..000000000 --- a/gfx/pics/machoke/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 12 - frame 2, 40 - frame 1, 10 - endanim -; 0xd0c8a diff --git a/gfx/pics/machoke/anim1.asm b/gfx/pics/machoke/anim1.asm deleted file mode 100644 index c79f108d7..000000000 --- a/gfx/pics/machoke/anim1.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 4, 06 - frame 5, 25 - frame 4, 05 - frame 6, 20 - setrepeat 2 - frame 3, 08 - frame 6, 08 - dorepeat 5 - endanim -; 0xd1b62 diff --git a/gfx/pics/machoke/back.2bpp.lz.2634245e b/gfx/pics/machoke/back.2bpp.lz.2634245e deleted file mode 100644 index e6a0015ed..000000000 Binary files a/gfx/pics/machoke/back.2bpp.lz.2634245e and /dev/null differ diff --git a/gfx/pics/machoke/back.png b/gfx/pics/machoke/back.png deleted file mode 100644 index a6f9c2c4c..000000000 Binary files a/gfx/pics/machoke/back.png and /dev/null differ diff --git a/gfx/pics/machoke/front.animated.2bpp.lz.f38b95a7 b/gfx/pics/machoke/front.animated.2bpp.lz.f38b95a7 deleted file mode 100644 index 984f1601f..000000000 Binary files a/gfx/pics/machoke/front.animated.2bpp.lz.f38b95a7 and /dev/null differ diff --git a/gfx/pics/machoke/front.png b/gfx/pics/machoke/front.png deleted file mode 100644 index 8c496b08b..000000000 Binary files a/gfx/pics/machoke/front.png and /dev/null differ diff --git a/gfx/pics/machoke/shiny.pal b/gfx/pics/machoke/shiny.pal deleted file mode 100644 index 7dceaa4c1..000000000 --- a/gfx/pics/machoke/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 16, 11 - RGB 07, 06, 25 - diff --git a/gfx/pics/machop/anim0.asm b/gfx/pics/machop/anim0.asm deleted file mode 100644 index 8fee766ce..000000000 --- a/gfx/pics/machop/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 12 - frame 2, 22 - setrepeat 2 - frame 0, 12 - frame 1, 12 - dorepeat 3 - endanim -; 0xd0c83 diff --git a/gfx/pics/machop/anim1.asm b/gfx/pics/machop/anim1.asm deleted file mode 100644 index 20658284d..000000000 --- a/gfx/pics/machop/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1b51 diff --git a/gfx/pics/machop/back.2bpp.lz.bc17b50a b/gfx/pics/machop/back.2bpp.lz.bc17b50a deleted file mode 100644 index 96e6d00c6..000000000 Binary files a/gfx/pics/machop/back.2bpp.lz.bc17b50a and /dev/null differ diff --git a/gfx/pics/machop/back.png b/gfx/pics/machop/back.png deleted file mode 100644 index e463bd456..000000000 Binary files a/gfx/pics/machop/back.png and /dev/null differ diff --git a/gfx/pics/machop/front.animated.2bpp.lz.0fd8735f b/gfx/pics/machop/front.animated.2bpp.lz.0fd8735f deleted file mode 100644 index 3b5404276..000000000 Binary files a/gfx/pics/machop/front.animated.2bpp.lz.0fd8735f and /dev/null differ diff --git a/gfx/pics/machop/front.png b/gfx/pics/machop/front.png deleted file mode 100644 index 4ec28bf2f..000000000 Binary files a/gfx/pics/machop/front.png and /dev/null differ diff --git a/gfx/pics/machop/shiny.pal b/gfx/pics/machop/shiny.pal deleted file mode 100644 index 0b940effd..000000000 --- a/gfx/pics/machop/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 14, 11 - RGB 06, 08, 09 - diff --git a/gfx/pics/magby/anim0.asm b/gfx/pics/magby/anim0.asm deleted file mode 100644 index b0f8c7a10..000000000 --- a/gfx/pics/magby/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 14 - setrepeat 2 - frame 2, 07 - frame 3, 07 - dorepeat 2 - frame 4, 16 - endanim -; 0xd15ed diff --git a/gfx/pics/magby/anim1.asm b/gfx/pics/magby/anim1.asm deleted file mode 100644 index 20b2b7997..000000000 --- a/gfx/pics/magby/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 09 - frame 5, 09 - dorepeat 1 - endanim -; 0xd21af diff --git a/gfx/pics/magby/back.2bpp.lz.e50ccadb b/gfx/pics/magby/back.2bpp.lz.e50ccadb deleted file mode 100644 index 8746c640e..000000000 Binary files a/gfx/pics/magby/back.2bpp.lz.e50ccadb and /dev/null differ diff --git a/gfx/pics/magby/back.png b/gfx/pics/magby/back.png deleted file mode 100644 index 8d38c2ccb..000000000 Binary files a/gfx/pics/magby/back.png and /dev/null differ diff --git a/gfx/pics/magby/front.animated.2bpp.lz.172d0807 b/gfx/pics/magby/front.animated.2bpp.lz.172d0807 deleted file mode 100644 index b4eac5040..000000000 Binary files a/gfx/pics/magby/front.animated.2bpp.lz.172d0807 and /dev/null differ diff --git a/gfx/pics/magby/front.png b/gfx/pics/magby/front.png deleted file mode 100644 index a966313d7..000000000 Binary files a/gfx/pics/magby/front.png and /dev/null differ diff --git a/gfx/pics/magby/shiny.pal b/gfx/pics/magby/shiny.pal deleted file mode 100644 index ee96fafd2..000000000 --- a/gfx/pics/magby/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 26, 09 - RGB 31, 16, 00 - diff --git a/gfx/pics/magcargo/anim0.asm b/gfx/pics/magcargo/anim0.asm deleted file mode 100644 index d6bf7543a..000000000 --- a/gfx/pics/magcargo/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 05 - frame 2, 10 - frame 3, 10 - frame 4, 10 - frame 1, 25 - endanim -; 0xd14e4 diff --git a/gfx/pics/magcargo/anim1.asm b/gfx/pics/magcargo/anim1.asm deleted file mode 100644 index 3c76a44df..000000000 --- a/gfx/pics/magcargo/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 1, 60 - endanim -; 0xd20f0 diff --git a/gfx/pics/magcargo/back.2bpp.lz.56b096bc b/gfx/pics/magcargo/back.2bpp.lz.56b096bc deleted file mode 100644 index 5cafe687a..000000000 Binary files a/gfx/pics/magcargo/back.2bpp.lz.56b096bc and /dev/null differ diff --git a/gfx/pics/magcargo/back.png b/gfx/pics/magcargo/back.png deleted file mode 100644 index a1db71ec2..000000000 Binary files a/gfx/pics/magcargo/back.png and /dev/null differ diff --git a/gfx/pics/magcargo/front.animated.2bpp.lz.53a425f4 b/gfx/pics/magcargo/front.animated.2bpp.lz.53a425f4 deleted file mode 100644 index 8b2cda00e..000000000 Binary files a/gfx/pics/magcargo/front.animated.2bpp.lz.53a425f4 and /dev/null differ diff --git a/gfx/pics/magcargo/front.png b/gfx/pics/magcargo/front.png deleted file mode 100644 index f5be029bf..000000000 Binary files a/gfx/pics/magcargo/front.png and /dev/null differ diff --git a/gfx/pics/magcargo/shiny.pal b/gfx/pics/magcargo/shiny.pal deleted file mode 100644 index a31d8288f..000000000 --- a/gfx/pics/magcargo/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 12, 11, 28 - RGB 15, 06, 06 - diff --git a/gfx/pics/magikarp/anim0.asm b/gfx/pics/magikarp/anim0.asm deleted file mode 100644 index f06f21a40..000000000 --- a/gfx/pics/magikarp/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 0, 12 - setrepeat 3 - frame 1, 09 - frame 2, 07 - dorepeat 2 - endanim -; 0xd1002 diff --git a/gfx/pics/magikarp/anim1.asm b/gfx/pics/magikarp/anim1.asm deleted file mode 100644 index 7c3f5cb76..000000000 --- a/gfx/pics/magikarp/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 10 - frame 3, 10 - dorepeat 1 - endanim -; 0xd1dae diff --git a/gfx/pics/magikarp/back.2bpp.lz.7f25810a b/gfx/pics/magikarp/back.2bpp.lz.7f25810a deleted file mode 100644 index 17100a9c5..000000000 Binary files a/gfx/pics/magikarp/back.2bpp.lz.7f25810a and /dev/null differ diff --git a/gfx/pics/magikarp/back.png b/gfx/pics/magikarp/back.png deleted file mode 100644 index 94efb9b92..000000000 Binary files a/gfx/pics/magikarp/back.png and /dev/null differ diff --git a/gfx/pics/magikarp/front.animated.2bpp.lz.031ee449 b/gfx/pics/magikarp/front.animated.2bpp.lz.031ee449 deleted file mode 100644 index 3ec963c7f..000000000 Binary files a/gfx/pics/magikarp/front.animated.2bpp.lz.031ee449 and /dev/null differ diff --git a/gfx/pics/magikarp/front.png b/gfx/pics/magikarp/front.png deleted file mode 100644 index 6358fcbfc..000000000 Binary files a/gfx/pics/magikarp/front.png and /dev/null differ diff --git a/gfx/pics/magikarp/shiny.pal b/gfx/pics/magikarp/shiny.pal deleted file mode 100644 index 24fb00761..000000000 --- a/gfx/pics/magikarp/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 24, 00 - RGB 16, 16, 00 - diff --git a/gfx/pics/magmar/anim0.asm b/gfx/pics/magmar/anim0.asm deleted file mode 100644 index 8fde5d3b5..000000000 --- a/gfx/pics/magmar/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 16 - setrepeat 3 - frame 2, 07 - frame 3, 07 - dorepeat 2 - endanim -; 0xd0fd7 diff --git a/gfx/pics/magmar/anim1.asm b/gfx/pics/magmar/anim1.asm deleted file mode 100644 index 784bdcd3d..000000000 --- a/gfx/pics/magmar/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd1d93 diff --git a/gfx/pics/magmar/back.2bpp.lz.6916c87b b/gfx/pics/magmar/back.2bpp.lz.6916c87b deleted file mode 100644 index 9b44bab34..000000000 Binary files a/gfx/pics/magmar/back.2bpp.lz.6916c87b and /dev/null differ diff --git a/gfx/pics/magmar/back.png b/gfx/pics/magmar/back.png deleted file mode 100644 index a1ab94d0b..000000000 Binary files a/gfx/pics/magmar/back.png and /dev/null differ diff --git a/gfx/pics/magmar/front.animated.2bpp.lz.0048e21c b/gfx/pics/magmar/front.animated.2bpp.lz.0048e21c deleted file mode 100644 index 178afc45f..000000000 Binary files a/gfx/pics/magmar/front.animated.2bpp.lz.0048e21c and /dev/null differ diff --git a/gfx/pics/magmar/front.png b/gfx/pics/magmar/front.png deleted file mode 100644 index 386cef0a5..000000000 Binary files a/gfx/pics/magmar/front.png and /dev/null differ diff --git a/gfx/pics/magmar/shiny.pal b/gfx/pics/magmar/shiny.pal deleted file mode 100644 index 0ccf2a2dd..000000000 --- a/gfx/pics/magmar/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 14, 30 - RGB 24, 04, 14 - diff --git a/gfx/pics/magnemite/anim0.asm b/gfx/pics/magnemite/anim0.asm deleted file mode 100644 index 4f038b0ed..000000000 --- a/gfx/pics/magnemite/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 1, 08 - frame 2, 08 - frame 3, 08 - frame 0, 08 - dorepeat 1 - endanim -; 0xd0d5c diff --git a/gfx/pics/magnemite/anim1.asm b/gfx/pics/magnemite/anim1.asm deleted file mode 100644 index a41239563..000000000 --- a/gfx/pics/magnemite/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 4, 08 - frame 5, 08 - frame 6, 08 - dorepeat 1 - endanim -; 0xd1be4 diff --git a/gfx/pics/magnemite/back.2bpp.lz.e00bd515 b/gfx/pics/magnemite/back.2bpp.lz.e00bd515 deleted file mode 100644 index f5cb4f801..000000000 Binary files a/gfx/pics/magnemite/back.2bpp.lz.e00bd515 and /dev/null differ diff --git a/gfx/pics/magnemite/back.png b/gfx/pics/magnemite/back.png deleted file mode 100644 index a41bbc584..000000000 Binary files a/gfx/pics/magnemite/back.png and /dev/null differ diff --git a/gfx/pics/magnemite/front.animated.2bpp.lz.e4b07135 b/gfx/pics/magnemite/front.animated.2bpp.lz.e4b07135 deleted file mode 100644 index fb221be89..000000000 Binary files a/gfx/pics/magnemite/front.animated.2bpp.lz.e4b07135 and /dev/null differ diff --git a/gfx/pics/magnemite/front.png b/gfx/pics/magnemite/front.png deleted file mode 100644 index e42c951de..000000000 Binary files a/gfx/pics/magnemite/front.png and /dev/null differ diff --git a/gfx/pics/magnemite/shiny.pal b/gfx/pics/magnemite/shiny.pal deleted file mode 100644 index 1ebbee13f..000000000 --- a/gfx/pics/magnemite/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 20, 19 - RGB 20, 07, 07 - diff --git a/gfx/pics/magneton/anim0.asm b/gfx/pics/magneton/anim0.asm deleted file mode 100644 index 26b34d4ec..000000000 --- a/gfx/pics/magneton/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 08 - frame 2, 08 - frame 3, 08 - frame 4, 08 - frame 5, 08 - frame 6, 08 - frame 7, 08 - frame 1, 04 - frame 2, 04 - frame 3, 04 - endanim -; 0xd0d71 diff --git a/gfx/pics/magneton/anim1.asm b/gfx/pics/magneton/anim1.asm deleted file mode 100644 index 6045d8fae..000000000 --- a/gfx/pics/magneton/anim1.asm +++ /dev/null @@ -1,9 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 8, 10 - dorepeat 1 - frame 1, 24 - frame 2, 24 - frame 3, 24 - endanim -; 0xd1bf3 diff --git a/gfx/pics/magneton/back.2bpp.lz.f7a7089b b/gfx/pics/magneton/back.2bpp.lz.f7a7089b deleted file mode 100644 index c029f8cef..000000000 Binary files a/gfx/pics/magneton/back.2bpp.lz.f7a7089b and /dev/null differ diff --git a/gfx/pics/magneton/back.png b/gfx/pics/magneton/back.png deleted file mode 100644 index 1203c90d0..000000000 Binary files a/gfx/pics/magneton/back.png and /dev/null differ diff --git a/gfx/pics/magneton/front.animated.2bpp.lz.cd3b65a6 b/gfx/pics/magneton/front.animated.2bpp.lz.cd3b65a6 deleted file mode 100644 index f7b7a0be0..000000000 Binary files a/gfx/pics/magneton/front.animated.2bpp.lz.cd3b65a6 and /dev/null differ diff --git a/gfx/pics/magneton/front.png b/gfx/pics/magneton/front.png deleted file mode 100644 index fa77862fd..000000000 Binary files a/gfx/pics/magneton/front.png and /dev/null differ diff --git a/gfx/pics/magneton/shiny.pal b/gfx/pics/magneton/shiny.pal deleted file mode 100644 index 54c3a94ac..000000000 --- a/gfx/pics/magneton/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 16, 18 - RGB 18, 11, 11 - diff --git a/gfx/pics/mankey/anim0.asm b/gfx/pics/mankey/anim0.asm deleted file mode 100644 index 7d6ef1fa5..000000000 --- a/gfx/pics/mankey/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 24 - setrepeat 3 - frame 0, 08 - frame 2, 08 - dorepeat 2 - endanim -; 0xd0bff diff --git a/gfx/pics/mankey/anim1.asm b/gfx/pics/mankey/anim1.asm deleted file mode 100644 index c5874fc6d..000000000 --- a/gfx/pics/mankey/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1aeb diff --git a/gfx/pics/mankey/back.2bpp.lz.42cb1b61 b/gfx/pics/mankey/back.2bpp.lz.42cb1b61 deleted file mode 100644 index 62989a377..000000000 Binary files a/gfx/pics/mankey/back.2bpp.lz.42cb1b61 and /dev/null differ diff --git a/gfx/pics/mankey/back.png b/gfx/pics/mankey/back.png deleted file mode 100644 index ba4901eaa..000000000 Binary files a/gfx/pics/mankey/back.png and /dev/null differ diff --git a/gfx/pics/mankey/front.animated.2bpp.lz.48eac19a b/gfx/pics/mankey/front.animated.2bpp.lz.48eac19a deleted file mode 100644 index 03d014d87..000000000 Binary files a/gfx/pics/mankey/front.animated.2bpp.lz.48eac19a and /dev/null differ diff --git a/gfx/pics/mankey/front.png b/gfx/pics/mankey/front.png deleted file mode 100644 index 1c0c21485..000000000 Binary files a/gfx/pics/mankey/front.png and /dev/null differ diff --git a/gfx/pics/mankey/shiny.pal b/gfx/pics/mankey/shiny.pal deleted file mode 100644 index 455125489..000000000 --- a/gfx/pics/mankey/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 22, 11 - RGB 20, 16, 07 - diff --git a/gfx/pics/mantine/anim0.asm b/gfx/pics/mantine/anim0.asm deleted file mode 100644 index d0a51de3e..000000000 --- a/gfx/pics/mantine/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 15 - frame 2, 15 - frame 3, 15 - frame 0, 15 - frame 4, 15 - frame 0, 15 - frame 5, 15 - endanim -; 0xd1539 diff --git a/gfx/pics/mantine/anim1.asm b/gfx/pics/mantine/anim1.asm deleted file mode 100644 index f552b1f09..000000000 --- a/gfx/pics/mantine/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 6, 08 - dorepeat 1 - endanim -; 0xd212f diff --git a/gfx/pics/mantine/back.2bpp.lz.1320b7f3 b/gfx/pics/mantine/back.2bpp.lz.1320b7f3 deleted file mode 100644 index 3378e2df5..000000000 Binary files a/gfx/pics/mantine/back.2bpp.lz.1320b7f3 and /dev/null differ diff --git a/gfx/pics/mantine/back.png b/gfx/pics/mantine/back.png deleted file mode 100644 index dfb363f40..000000000 Binary files a/gfx/pics/mantine/back.png and /dev/null differ diff --git a/gfx/pics/mantine/front.animated.2bpp.lz.9eb40d04 b/gfx/pics/mantine/front.animated.2bpp.lz.9eb40d04 deleted file mode 100644 index 6ebc14050..000000000 Binary files a/gfx/pics/mantine/front.animated.2bpp.lz.9eb40d04 and /dev/null differ diff --git a/gfx/pics/mantine/front.png b/gfx/pics/mantine/front.png deleted file mode 100644 index 1102eb41b..000000000 Binary files a/gfx/pics/mantine/front.png and /dev/null differ diff --git a/gfx/pics/mantine/shiny.pal b/gfx/pics/mantine/shiny.pal deleted file mode 100644 index cd743d8ba..000000000 --- a/gfx/pics/mantine/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 27, 31 - RGB 06, 17, 31 - diff --git a/gfx/pics/mareep/anim0.asm b/gfx/pics/mareep/anim0.asm deleted file mode 100644 index e74a78cad..000000000 --- a/gfx/pics/mareep/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 08 - frame 0, 07 - frame 1, 05 - setrepeat 2 - frame 0, 06 - frame 2, 06 - dorepeat 4 - endanim -; 0xd12dc diff --git a/gfx/pics/mareep/anim1.asm b/gfx/pics/mareep/anim1.asm deleted file mode 100644 index 21d7a79f8..000000000 --- a/gfx/pics/mareep/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 2, 07 - dorepeat 1 - endanim -; 0xd1fa2 diff --git a/gfx/pics/mareep/back.2bpp.lz.b9bdc89c b/gfx/pics/mareep/back.2bpp.lz.b9bdc89c deleted file mode 100644 index e703d450f..000000000 Binary files a/gfx/pics/mareep/back.2bpp.lz.b9bdc89c and /dev/null differ diff --git a/gfx/pics/mareep/back.png b/gfx/pics/mareep/back.png deleted file mode 100644 index f0a89696c..000000000 Binary files a/gfx/pics/mareep/back.png and /dev/null differ diff --git a/gfx/pics/mareep/front.animated.2bpp.lz.f660483d b/gfx/pics/mareep/front.animated.2bpp.lz.f660483d deleted file mode 100644 index 0245a96cd..000000000 Binary files a/gfx/pics/mareep/front.animated.2bpp.lz.f660483d and /dev/null differ diff --git a/gfx/pics/mareep/front.png b/gfx/pics/mareep/front.png deleted file mode 100644 index 3ab91d605..000000000 Binary files a/gfx/pics/mareep/front.png and /dev/null differ diff --git a/gfx/pics/mareep/shiny.pal b/gfx/pics/mareep/shiny.pal deleted file mode 100644 index 7e4fe925b..000000000 --- a/gfx/pics/mareep/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 16, 31 - RGB 10, 05, 19 - diff --git a/gfx/pics/marill/anim0.asm b/gfx/pics/marill/anim0.asm deleted file mode 100644 index 5b8c7fc2a..000000000 --- a/gfx/pics/marill/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 10 - frame 2, 36 - frame 3, 10 - setrepeat 3 - frame 0, 10 - frame 3, 10 - dorepeat 4 - endanim -; 0xd131a diff --git a/gfx/pics/marill/anim1.asm b/gfx/pics/marill/anim1.asm deleted file mode 100644 index 3be2dd1dc..000000000 --- a/gfx/pics/marill/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 4, 40 - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 2 - endanim -; 0xd1fca diff --git a/gfx/pics/marill/back.2bpp.lz.87e2be16 b/gfx/pics/marill/back.2bpp.lz.87e2be16 deleted file mode 100644 index 699fdaf6c..000000000 Binary files a/gfx/pics/marill/back.2bpp.lz.87e2be16 and /dev/null differ diff --git a/gfx/pics/marill/back.png b/gfx/pics/marill/back.png deleted file mode 100644 index 59af13b35..000000000 Binary files a/gfx/pics/marill/back.png and /dev/null differ diff --git a/gfx/pics/marill/front.animated.2bpp.lz.7f742686 b/gfx/pics/marill/front.animated.2bpp.lz.7f742686 deleted file mode 100644 index abe4c982a..000000000 Binary files a/gfx/pics/marill/front.animated.2bpp.lz.7f742686 and /dev/null differ diff --git a/gfx/pics/marill/front.png b/gfx/pics/marill/front.png deleted file mode 100644 index 5b07959aa..000000000 Binary files a/gfx/pics/marill/front.png and /dev/null differ diff --git a/gfx/pics/marill/shiny.pal b/gfx/pics/marill/shiny.pal deleted file mode 100644 index e75fe9208..000000000 --- a/gfx/pics/marill/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 08, 23, 11 - RGB 31, 03, 30 - diff --git a/gfx/pics/marowak/anim0.asm b/gfx/pics/marowak/anim0.asm deleted file mode 100644 index 23c9d2f92..000000000 --- a/gfx/pics/marowak/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 3 - frame 1, 07 - frame 2, 07 - dorepeat 1 - setrepeat 2 - frame 3, 07 - frame 4, 07 - dorepeat 5 - endanim -; 0xd0eb0 diff --git a/gfx/pics/marowak/anim1.asm b/gfx/pics/marowak/anim1.asm deleted file mode 100644 index 5cdcd7594..000000000 --- a/gfx/pics/marowak/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 15 - frame 5, 15 - dorepeat 1 - endanim -; 0xd1ccc diff --git a/gfx/pics/marowak/back.2bpp.lz.055ba40e b/gfx/pics/marowak/back.2bpp.lz.055ba40e deleted file mode 100644 index 90a297b3d..000000000 Binary files a/gfx/pics/marowak/back.2bpp.lz.055ba40e and /dev/null differ diff --git a/gfx/pics/marowak/back.png b/gfx/pics/marowak/back.png deleted file mode 100644 index e10e17dc2..000000000 Binary files a/gfx/pics/marowak/back.png and /dev/null differ diff --git a/gfx/pics/marowak/front.animated.2bpp.lz.ef1553a0 b/gfx/pics/marowak/front.animated.2bpp.lz.ef1553a0 deleted file mode 100644 index 59f984bcd..000000000 Binary files a/gfx/pics/marowak/front.animated.2bpp.lz.ef1553a0 and /dev/null differ diff --git a/gfx/pics/marowak/front.png b/gfx/pics/marowak/front.png deleted file mode 100644 index 4007d0486..000000000 Binary files a/gfx/pics/marowak/front.png and /dev/null differ diff --git a/gfx/pics/marowak/shiny.pal b/gfx/pics/marowak/shiny.pal deleted file mode 100644 index 2f2093469..000000000 --- a/gfx/pics/marowak/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 21, 15 - RGB 14, 15, 04 - diff --git a/gfx/pics/meganium/anim0.asm b/gfx/pics/meganium/anim0.asm deleted file mode 100644 index adf80db8f..000000000 --- a/gfx/pics/meganium/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 0, 06 - frame 1, 10 - frame 2, 26 - frame 1, 12 - frame 0, 08 - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 6 - endanim -; 0xd117f diff --git a/gfx/pics/meganium/anim1.asm b/gfx/pics/meganium/anim1.asm deleted file mode 100644 index f28c9d97a..000000000 --- a/gfx/pics/meganium/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1eb1 diff --git a/gfx/pics/meganium/back.2bpp.lz.d25a5edb b/gfx/pics/meganium/back.2bpp.lz.d25a5edb deleted file mode 100644 index 718f66f87..000000000 Binary files a/gfx/pics/meganium/back.2bpp.lz.d25a5edb and /dev/null differ diff --git a/gfx/pics/meganium/back.png b/gfx/pics/meganium/back.png deleted file mode 100644 index 5f51bdbff..000000000 Binary files a/gfx/pics/meganium/back.png and /dev/null differ diff --git a/gfx/pics/meganium/front.animated.2bpp.lz.fe0b9df4 b/gfx/pics/meganium/front.animated.2bpp.lz.fe0b9df4 deleted file mode 100644 index 84f600d60..000000000 Binary files a/gfx/pics/meganium/front.animated.2bpp.lz.fe0b9df4 and /dev/null differ diff --git a/gfx/pics/meganium/front.png b/gfx/pics/meganium/front.png deleted file mode 100644 index f520626a9..000000000 Binary files a/gfx/pics/meganium/front.png and /dev/null differ diff --git a/gfx/pics/meganium/shiny.pal b/gfx/pics/meganium/shiny.pal deleted file mode 100644 index b09a172f6..000000000 --- a/gfx/pics/meganium/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 24, 00 - RGB 28, 12, 05 - diff --git a/gfx/pics/meowth/anim0.asm b/gfx/pics/meowth/anim0.asm deleted file mode 100644 index ff95e9c6d..000000000 --- a/gfx/pics/meowth/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 24 - setrepeat 2 - frame 2, 14 - frame 3, 14 - dorepeat 2 - endanim -; 0xd0bbf diff --git a/gfx/pics/meowth/anim1.asm b/gfx/pics/meowth/anim1.asm deleted file mode 100644 index 7f1e9eba8..000000000 --- a/gfx/pics/meowth/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd1ac7 diff --git a/gfx/pics/meowth/back.2bpp.lz.4196bd91 b/gfx/pics/meowth/back.2bpp.lz.4196bd91 deleted file mode 100644 index 205b106e9..000000000 Binary files a/gfx/pics/meowth/back.2bpp.lz.4196bd91 and /dev/null differ diff --git a/gfx/pics/meowth/back.png b/gfx/pics/meowth/back.png deleted file mode 100644 index 3883a636b..000000000 Binary files a/gfx/pics/meowth/back.png and /dev/null differ diff --git a/gfx/pics/meowth/front.animated.2bpp.lz.144f12f0 b/gfx/pics/meowth/front.animated.2bpp.lz.144f12f0 deleted file mode 100644 index 87ff35366..000000000 Binary files a/gfx/pics/meowth/front.animated.2bpp.lz.144f12f0 and /dev/null differ diff --git a/gfx/pics/meowth/front.png b/gfx/pics/meowth/front.png deleted file mode 100644 index 55c5bf38a..000000000 Binary files a/gfx/pics/meowth/front.png and /dev/null differ diff --git a/gfx/pics/meowth/shiny.pal b/gfx/pics/meowth/shiny.pal deleted file mode 100644 index 3ca34fc76..000000000 --- a/gfx/pics/meowth/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 22, 12 - RGB 26, 02, 18 - diff --git a/gfx/pics/metapod/anim0.asm b/gfx/pics/metapod/anim0.asm deleted file mode 100644 index da76c7094..000000000 --- a/gfx/pics/metapod/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 12 - frame 2, 24 - frame 1, 12 - endanim -; 0xd091c diff --git a/gfx/pics/metapod/anim1.asm b/gfx/pics/metapod/anim1.asm deleted file mode 100644 index e22d46cb7..000000000 --- a/gfx/pics/metapod/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1904 diff --git a/gfx/pics/metapod/back.2bpp.lz.b580afc8 b/gfx/pics/metapod/back.2bpp.lz.b580afc8 deleted file mode 100644 index a2a446960..000000000 Binary files a/gfx/pics/metapod/back.2bpp.lz.b580afc8 and /dev/null differ diff --git a/gfx/pics/metapod/back.png b/gfx/pics/metapod/back.png deleted file mode 100644 index 7906fb6b7..000000000 Binary files a/gfx/pics/metapod/back.png and /dev/null differ diff --git a/gfx/pics/metapod/front.animated.2bpp.lz.5025baa2 b/gfx/pics/metapod/front.animated.2bpp.lz.5025baa2 deleted file mode 100644 index 1dcd7a501..000000000 Binary files a/gfx/pics/metapod/front.animated.2bpp.lz.5025baa2 and /dev/null differ diff --git a/gfx/pics/metapod/front.png b/gfx/pics/metapod/front.png deleted file mode 100644 index d67b1c516..000000000 Binary files a/gfx/pics/metapod/front.png and /dev/null differ diff --git a/gfx/pics/metapod/shiny.pal b/gfx/pics/metapod/shiny.pal deleted file mode 100644 index 4d0b72658..000000000 --- a/gfx/pics/metapod/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 28, 19, 13 - RGB 24, 14, 00 - diff --git a/gfx/pics/mew/anim0.asm b/gfx/pics/mew/anim0.asm deleted file mode 100644 index b01e307de..000000000 --- a/gfx/pics/mew/anim0.asm +++ /dev/null @@ -1,18 +0,0 @@ - frame 1, 07 - frame 2, 07 - frame 3, 06 - frame 2, 06 - frame 3, 05 - frame 2, 05 - setrepeat 3 - frame 3, 03 - frame 2, 03 - dorepeat 7 - setrepeat 2 - frame 3, 25 - frame 2, 20 - dorepeat 11 - frame 0, 15 - frame 4, 15 - endanim -; 0xd1154 diff --git a/gfx/pics/mew/anim1.asm b/gfx/pics/mew/anim1.asm deleted file mode 100644 index c22e552cb..000000000 --- a/gfx/pics/mew/anim1.asm +++ /dev/null @@ -1,9 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - frame 0, 10 - frame 4, 20 - dorepeat 1 - endanim -; 0xd1e96 diff --git a/gfx/pics/mew/back.2bpp.lz.9947d6eb b/gfx/pics/mew/back.2bpp.lz.9947d6eb deleted file mode 100644 index 388a8de9e..000000000 Binary files a/gfx/pics/mew/back.2bpp.lz.9947d6eb and /dev/null differ diff --git a/gfx/pics/mew/back.png b/gfx/pics/mew/back.png deleted file mode 100644 index 310328a39..000000000 Binary files a/gfx/pics/mew/back.png and /dev/null differ diff --git a/gfx/pics/mew/front.animated.2bpp.lz.b6da9713 b/gfx/pics/mew/front.animated.2bpp.lz.b6da9713 deleted file mode 100644 index 240965783..000000000 Binary files a/gfx/pics/mew/front.animated.2bpp.lz.b6da9713 and /dev/null differ diff --git a/gfx/pics/mew/front.png b/gfx/pics/mew/front.png deleted file mode 100644 index 2a93d8303..000000000 Binary files a/gfx/pics/mew/front.png and /dev/null differ diff --git a/gfx/pics/mew/shiny.pal b/gfx/pics/mew/shiny.pal deleted file mode 100644 index 9b1a1cced..000000000 --- a/gfx/pics/mew/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 24, 31 - RGB 07, 11, 26 - diff --git a/gfx/pics/mewtwo/anim0.asm b/gfx/pics/mewtwo/anim0.asm deleted file mode 100644 index 78682c111..000000000 --- a/gfx/pics/mewtwo/anim0.asm +++ /dev/null @@ -1,17 +0,0 @@ - frame 3, 08 - setrepeat 2 - frame 2, 04 - frame 3, 02 - dorepeat 2 - setrepeat 3 - frame 4, 02 - frame 3, 02 - dorepeat 6 - setrepeat 5 - frame 5, 02 - frame 3, 01 - dorepeat 10 - frame 5, 14 - frame 3, 04 - endanim -; 0xd1133 diff --git a/gfx/pics/mewtwo/anim1.asm b/gfx/pics/mewtwo/anim1.asm deleted file mode 100644 index a80a56899..000000000 --- a/gfx/pics/mewtwo/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 1, 06 - dorepeat 1 - endanim -; 0xd1e87 diff --git a/gfx/pics/mewtwo/back.2bpp.lz.a7d2c077 b/gfx/pics/mewtwo/back.2bpp.lz.a7d2c077 deleted file mode 100644 index 3be56c470..000000000 Binary files a/gfx/pics/mewtwo/back.2bpp.lz.a7d2c077 and /dev/null differ diff --git a/gfx/pics/mewtwo/back.png b/gfx/pics/mewtwo/back.png deleted file mode 100644 index e9675aaad..000000000 Binary files a/gfx/pics/mewtwo/back.png and /dev/null differ diff --git a/gfx/pics/mewtwo/front.animated.2bpp.lz.45e8b40d b/gfx/pics/mewtwo/front.animated.2bpp.lz.45e8b40d deleted file mode 100644 index 35cc2c378..000000000 Binary files a/gfx/pics/mewtwo/front.animated.2bpp.lz.45e8b40d and /dev/null differ diff --git a/gfx/pics/mewtwo/front.png b/gfx/pics/mewtwo/front.png deleted file mode 100644 index 07ab0771b..000000000 Binary files a/gfx/pics/mewtwo/front.png and /dev/null differ diff --git a/gfx/pics/mewtwo/shiny.pal b/gfx/pics/mewtwo/shiny.pal deleted file mode 100644 index c5dec4c3b..000000000 --- a/gfx/pics/mewtwo/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 21, 22 - RGB 15, 15, 00 - diff --git a/gfx/pics/miltank/anim0.asm b/gfx/pics/miltank/anim0.asm deleted file mode 100644 index 6d12f2d5d..000000000 --- a/gfx/pics/miltank/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 10 - setrepeat 2 - frame 2, 09 - frame 1, 09 - dorepeat 2 - frame 3, 05 - endanim -; 0xd15fa diff --git a/gfx/pics/miltank/anim1.asm b/gfx/pics/miltank/anim1.asm deleted file mode 100644 index a6a76db7b..000000000 --- a/gfx/pics/miltank/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd21b8 diff --git a/gfx/pics/miltank/back.2bpp.lz.b7787e72 b/gfx/pics/miltank/back.2bpp.lz.b7787e72 deleted file mode 100644 index 150f65c54..000000000 Binary files a/gfx/pics/miltank/back.2bpp.lz.b7787e72 and /dev/null differ diff --git a/gfx/pics/miltank/back.png b/gfx/pics/miltank/back.png deleted file mode 100644 index 28c4a906f..000000000 Binary files a/gfx/pics/miltank/back.png and /dev/null differ diff --git a/gfx/pics/miltank/front.animated.2bpp.lz.91da7c3b b/gfx/pics/miltank/front.animated.2bpp.lz.91da7c3b deleted file mode 100644 index 969d04fcd..000000000 Binary files a/gfx/pics/miltank/front.animated.2bpp.lz.91da7c3b and /dev/null differ diff --git a/gfx/pics/miltank/front.png b/gfx/pics/miltank/front.png deleted file mode 100644 index b0965c8f6..000000000 Binary files a/gfx/pics/miltank/front.png and /dev/null differ diff --git a/gfx/pics/miltank/shiny.pal b/gfx/pics/miltank/shiny.pal deleted file mode 100644 index 37792fe7e..000000000 --- a/gfx/pics/miltank/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 22, 26 - RGB 29, 10, 13 - diff --git a/gfx/pics/misdreavus/anim0.asm b/gfx/pics/misdreavus/anim0.asm deleted file mode 100644 index d833c96fb..000000000 --- a/gfx/pics/misdreavus/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 18 - frame 2, 13 - frame 3, 13 - endanim -; 0xd13e9 diff --git a/gfx/pics/misdreavus/anim1.asm b/gfx/pics/misdreavus/anim1.asm deleted file mode 100644 index 3f0ee9517..000000000 --- a/gfx/pics/misdreavus/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 4, 08 - frame 0, 08 - dorepeat 1 - endanim -; 0xd205d diff --git a/gfx/pics/misdreavus/back.2bpp.lz.8bdebfce b/gfx/pics/misdreavus/back.2bpp.lz.8bdebfce deleted file mode 100644 index 5cf96e821..000000000 Binary files a/gfx/pics/misdreavus/back.2bpp.lz.8bdebfce and /dev/null differ diff --git a/gfx/pics/misdreavus/back.png b/gfx/pics/misdreavus/back.png deleted file mode 100644 index 890f1da22..000000000 Binary files a/gfx/pics/misdreavus/back.png and /dev/null differ diff --git a/gfx/pics/misdreavus/front.animated.2bpp.lz.5f73baa2 b/gfx/pics/misdreavus/front.animated.2bpp.lz.5f73baa2 deleted file mode 100644 index 76f5c6919..000000000 Binary files a/gfx/pics/misdreavus/front.animated.2bpp.lz.5f73baa2 and /dev/null differ diff --git a/gfx/pics/misdreavus/front.png b/gfx/pics/misdreavus/front.png deleted file mode 100644 index 05c2dd338..000000000 Binary files a/gfx/pics/misdreavus/front.png and /dev/null differ diff --git a/gfx/pics/misdreavus/shiny.pal b/gfx/pics/misdreavus/shiny.pal deleted file mode 100644 index dbd1aac54..000000000 --- a/gfx/pics/misdreavus/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 25, 03 - RGB 15, 14, 03 - diff --git a/gfx/pics/moltres/anim0.asm b/gfx/pics/moltres/anim0.asm deleted file mode 100644 index 220626749..000000000 --- a/gfx/pics/moltres/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 1, 10 - frame 5, 10 - frame 2, 10 - frame 3, 10 - frame 4, 10 - frame 0, 10 - frame 1, 10 - frame 5, 10 - frame 1, 10 - frame 0, 12 - frame 1, 12 - endanim -; 0xd10e3 diff --git a/gfx/pics/moltres/anim1.asm b/gfx/pics/moltres/anim1.asm deleted file mode 100644 index 258191b6e..000000000 --- a/gfx/pics/moltres/anim1.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 6, 05 - frame 0, 05 - frame 7, 05 - frame 1, 05 - frame 0, 12 - frame 1, 12 - frame 5, 12 - endanim -; 0xd1e57 diff --git a/gfx/pics/moltres/back.2bpp.lz.356242c8 b/gfx/pics/moltres/back.2bpp.lz.356242c8 deleted file mode 100644 index 542a73138..000000000 Binary files a/gfx/pics/moltres/back.2bpp.lz.356242c8 and /dev/null differ diff --git a/gfx/pics/moltres/back.png b/gfx/pics/moltres/back.png deleted file mode 100644 index b8df5c699..000000000 Binary files a/gfx/pics/moltres/back.png and /dev/null differ diff --git a/gfx/pics/moltres/front.animated.2bpp.lz.281bc0ec b/gfx/pics/moltres/front.animated.2bpp.lz.281bc0ec deleted file mode 100644 index ec03e4653..000000000 Binary files a/gfx/pics/moltres/front.animated.2bpp.lz.281bc0ec and /dev/null differ diff --git a/gfx/pics/moltres/front.png b/gfx/pics/moltres/front.png deleted file mode 100644 index fa41824b6..000000000 Binary files a/gfx/pics/moltres/front.png and /dev/null differ diff --git a/gfx/pics/moltres/shiny.pal b/gfx/pics/moltres/shiny.pal deleted file mode 100644 index 523732d45..000000000 --- a/gfx/pics/moltres/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 11, 14 - RGB 21, 01, 00 - diff --git a/gfx/pics/mr__mime/anim0.asm b/gfx/pics/mr__mime/anim0.asm deleted file mode 100644 index fcb597a5a..000000000 --- a/gfx/pics/mr__mime/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 08 - frame 2, 08 - frame 8, 08 - frame 3, 08 - frame 4, 08 - frame 5, 08 - frame 7, 08 - frame 0, 32 - frame 6, 06 - endanim -; 0xd0f99 diff --git a/gfx/pics/mr__mime/anim1.asm b/gfx/pics/mr__mime/anim1.asm deleted file mode 100644 index c3747ac1e..000000000 --- a/gfx/pics/mr__mime/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 6, 06 - dorepeat 1 - endanim -; 0xd1d6f diff --git a/gfx/pics/mr__mime/back.2bpp.lz.0fb88006 b/gfx/pics/mr__mime/back.2bpp.lz.0fb88006 deleted file mode 100644 index eb1647580..000000000 Binary files a/gfx/pics/mr__mime/back.2bpp.lz.0fb88006 and /dev/null differ diff --git a/gfx/pics/mr__mime/back.png b/gfx/pics/mr__mime/back.png deleted file mode 100644 index 6deab1929..000000000 Binary files a/gfx/pics/mr__mime/back.png and /dev/null differ diff --git a/gfx/pics/mr__mime/front.animated.2bpp.lz.f948d1b8 b/gfx/pics/mr__mime/front.animated.2bpp.lz.f948d1b8 deleted file mode 100644 index 48555cbe0..000000000 Binary files a/gfx/pics/mr__mime/front.animated.2bpp.lz.f948d1b8 and /dev/null differ diff --git a/gfx/pics/mr__mime/front.png b/gfx/pics/mr__mime/front.png deleted file mode 100644 index 578a0286b..000000000 Binary files a/gfx/pics/mr__mime/front.png and /dev/null differ diff --git a/gfx/pics/mr__mime/shiny.pal b/gfx/pics/mr__mime/shiny.pal deleted file mode 100644 index d9a2accd2..000000000 --- a/gfx/pics/mr__mime/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 11, 31 - RGB 17, 19, 00 - diff --git a/gfx/pics/muk/anim0.asm b/gfx/pics/muk/anim0.asm deleted file mode 100644 index 1bacba421..000000000 --- a/gfx/pics/muk/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 12 - frame 2, 12 - frame 3, 12 - frame 1, 12 - endanim -; 0xd0dbc diff --git a/gfx/pics/muk/anim1.asm b/gfx/pics/muk/anim1.asm deleted file mode 100644 index db37bf515..000000000 --- a/gfx/pics/muk/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 12 - frame 4, 12 - dorepeat 1 - endanim -; 0xd1c40 diff --git a/gfx/pics/muk/back.2bpp.lz.a1f2f370 b/gfx/pics/muk/back.2bpp.lz.a1f2f370 deleted file mode 100644 index 63a6aa8de..000000000 Binary files a/gfx/pics/muk/back.2bpp.lz.a1f2f370 and /dev/null differ diff --git a/gfx/pics/muk/back.png b/gfx/pics/muk/back.png deleted file mode 100644 index e610da01c..000000000 Binary files a/gfx/pics/muk/back.png and /dev/null differ diff --git a/gfx/pics/muk/front.animated.2bpp.lz.530363b2 b/gfx/pics/muk/front.animated.2bpp.lz.530363b2 deleted file mode 100644 index 3a4280270..000000000 Binary files a/gfx/pics/muk/front.animated.2bpp.lz.530363b2 and /dev/null differ diff --git a/gfx/pics/muk/front.png b/gfx/pics/muk/front.png deleted file mode 100644 index c4369d8a6..000000000 Binary files a/gfx/pics/muk/front.png and /dev/null differ diff --git a/gfx/pics/muk/shiny.pal b/gfx/pics/muk/shiny.pal deleted file mode 100644 index 34c8de27e..000000000 --- a/gfx/pics/muk/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 20, 09 - RGB 10, 13, 03 - diff --git a/gfx/pics/murkrow/anim0.asm b/gfx/pics/murkrow/anim0.asm deleted file mode 100644 index 8f0ca6a72..000000000 --- a/gfx/pics/murkrow/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 2, 10 - setrepeat 2 - frame 1, 06 - frame 2, 06 - dorepeat 2 - frame 1, 07 - frame 0, 07 - frame 1, 07 - endanim -; 0xd13cf diff --git a/gfx/pics/murkrow/anim1.asm b/gfx/pics/murkrow/anim1.asm deleted file mode 100644 index 85e2f9c56..000000000 --- a/gfx/pics/murkrow/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 1 - endanim -; 0xd204f diff --git a/gfx/pics/murkrow/back.2bpp.lz.0c347b5b b/gfx/pics/murkrow/back.2bpp.lz.0c347b5b deleted file mode 100644 index b99287081..000000000 Binary files a/gfx/pics/murkrow/back.2bpp.lz.0c347b5b and /dev/null differ diff --git a/gfx/pics/murkrow/back.png b/gfx/pics/murkrow/back.png deleted file mode 100644 index 255471a39..000000000 Binary files a/gfx/pics/murkrow/back.png and /dev/null differ diff --git a/gfx/pics/murkrow/front.animated.2bpp.lz.5d2805e8 b/gfx/pics/murkrow/front.animated.2bpp.lz.5d2805e8 deleted file mode 100644 index e7ae99387..000000000 Binary files a/gfx/pics/murkrow/front.animated.2bpp.lz.5d2805e8 and /dev/null differ diff --git a/gfx/pics/murkrow/front.png b/gfx/pics/murkrow/front.png deleted file mode 100644 index b17cf2d6c..000000000 Binary files a/gfx/pics/murkrow/front.png and /dev/null differ diff --git a/gfx/pics/murkrow/shiny.pal b/gfx/pics/murkrow/shiny.pal deleted file mode 100644 index 8f015f0fe..000000000 --- a/gfx/pics/murkrow/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 31, 03 - RGB 20, 02, 22 - diff --git a/gfx/pics/natu/anim0.asm b/gfx/pics/natu/anim0.asm deleted file mode 100644 index 22c2659db..000000000 --- a/gfx/pics/natu/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 10 - frame 2, 10 - frame 3, 25 - frame 2, 10 - endanim -; 0xd12bc diff --git a/gfx/pics/natu/anim1.asm b/gfx/pics/natu/anim1.asm deleted file mode 100644 index a4a974877..000000000 --- a/gfx/pics/natu/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 4, 35 - endanim -; 0xd1f86 diff --git a/gfx/pics/natu/back.2bpp.lz.c8339fb4 b/gfx/pics/natu/back.2bpp.lz.c8339fb4 deleted file mode 100644 index b4ba45c14..000000000 Binary files a/gfx/pics/natu/back.2bpp.lz.c8339fb4 and /dev/null differ diff --git a/gfx/pics/natu/back.png b/gfx/pics/natu/back.png deleted file mode 100644 index 923e34230..000000000 Binary files a/gfx/pics/natu/back.png and /dev/null differ diff --git a/gfx/pics/natu/front.animated.2bpp.lz.997efaf6 b/gfx/pics/natu/front.animated.2bpp.lz.997efaf6 deleted file mode 100644 index adebc8879..000000000 Binary files a/gfx/pics/natu/front.animated.2bpp.lz.997efaf6 and /dev/null differ diff --git a/gfx/pics/natu/front.png b/gfx/pics/natu/front.png deleted file mode 100644 index 4360e5b60..000000000 Binary files a/gfx/pics/natu/front.png and /dev/null differ diff --git a/gfx/pics/natu/shiny.pal b/gfx/pics/natu/shiny.pal deleted file mode 100644 index 0ee2b82af..000000000 --- a/gfx/pics/natu/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 30, 19 - RGB 21, 21, 10 - diff --git a/gfx/pics/nidoking/anim0.asm b/gfx/pics/nidoking/anim0.asm deleted file mode 100644 index a32945d49..000000000 --- a/gfx/pics/nidoking/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 1, 12 - frame 2, 36 - frame 1, 12 - endanim -; 0xd0a8f diff --git a/gfx/pics/nidoking/anim1.asm b/gfx/pics/nidoking/anim1.asm deleted file mode 100644 index 4e56028e1..000000000 --- a/gfx/pics/nidoking/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1a13 diff --git a/gfx/pics/nidoking/back.2bpp.lz.93211604 b/gfx/pics/nidoking/back.2bpp.lz.93211604 deleted file mode 100644 index b3f35b5a1..000000000 Binary files a/gfx/pics/nidoking/back.2bpp.lz.93211604 and /dev/null differ diff --git a/gfx/pics/nidoking/back.png b/gfx/pics/nidoking/back.png deleted file mode 100644 index d5af2af2e..000000000 Binary files a/gfx/pics/nidoking/back.png and /dev/null differ diff --git a/gfx/pics/nidoking/front.animated.2bpp.lz.bd38fa1e b/gfx/pics/nidoking/front.animated.2bpp.lz.bd38fa1e deleted file mode 100644 index aad75774c..000000000 Binary files a/gfx/pics/nidoking/front.animated.2bpp.lz.bd38fa1e and /dev/null differ diff --git a/gfx/pics/nidoking/front.png b/gfx/pics/nidoking/front.png deleted file mode 100644 index 1ed2d18bd..000000000 Binary files a/gfx/pics/nidoking/front.png and /dev/null differ diff --git a/gfx/pics/nidoking/shiny.pal b/gfx/pics/nidoking/shiny.pal deleted file mode 100644 index 61991fb6f..000000000 --- a/gfx/pics/nidoking/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 13, 17, 31 - RGB 15, 09, 23 - diff --git a/gfx/pics/nidoqueen/anim0.asm b/gfx/pics/nidoqueen/anim0.asm deleted file mode 100644 index bd9d8eee8..000000000 --- a/gfx/pics/nidoqueen/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 05 - frame 2, 10 - frame 3, 10 - frame 4, 10 - frame 3, 10 - frame 1, 10 - frame 0, 10 - frame 5, 10 - endanim -; 0xd0a64 diff --git a/gfx/pics/nidoqueen/anim1.asm b/gfx/pics/nidoqueen/anim1.asm deleted file mode 100644 index 1cc934c42..000000000 --- a/gfx/pics/nidoqueen/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 6, 50 - setrepeat 2 - frame 0, 07 - frame 6, 07 - dorepeat 2 - endanim -; 0xd19f4 diff --git a/gfx/pics/nidoqueen/back.2bpp.lz.f1eb0f0c b/gfx/pics/nidoqueen/back.2bpp.lz.f1eb0f0c deleted file mode 100644 index b363f089e..000000000 Binary files a/gfx/pics/nidoqueen/back.2bpp.lz.f1eb0f0c and /dev/null differ diff --git a/gfx/pics/nidoqueen/back.png b/gfx/pics/nidoqueen/back.png deleted file mode 100644 index 9d250b32c..000000000 Binary files a/gfx/pics/nidoqueen/back.png and /dev/null differ diff --git a/gfx/pics/nidoqueen/front.animated.2bpp.lz.0bf11b0a b/gfx/pics/nidoqueen/front.animated.2bpp.lz.0bf11b0a deleted file mode 100644 index d02a553d5..000000000 Binary files a/gfx/pics/nidoqueen/front.animated.2bpp.lz.0bf11b0a and /dev/null differ diff --git a/gfx/pics/nidoqueen/front.png b/gfx/pics/nidoqueen/front.png deleted file mode 100644 index 5aaee10c2..000000000 Binary files a/gfx/pics/nidoqueen/front.png and /dev/null differ diff --git a/gfx/pics/nidoqueen/shiny.pal b/gfx/pics/nidoqueen/shiny.pal deleted file mode 100644 index b27c118a6..000000000 --- a/gfx/pics/nidoqueen/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 16, 31 - RGB 11, 13, 08 - diff --git a/gfx/pics/nidoran_f/anim0.asm b/gfx/pics/nidoran_f/anim0.asm deleted file mode 100644 index 623db13d1..000000000 --- a/gfx/pics/nidoran_f/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 04 - frame 2, 19 - setrepeat 3 - frame 3, 05 - frame 0, 05 - dorepeat 3 - endanim -; 0xd0a44 diff --git a/gfx/pics/nidoran_f/anim1.asm b/gfx/pics/nidoran_f/anim1.asm deleted file mode 100644 index 348179aac..000000000 --- a/gfx/pics/nidoran_f/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd19e0 diff --git a/gfx/pics/nidoran_f/back.2bpp.lz.9b6990f1 b/gfx/pics/nidoran_f/back.2bpp.lz.9b6990f1 deleted file mode 100644 index df43f06a1..000000000 Binary files a/gfx/pics/nidoran_f/back.2bpp.lz.9b6990f1 and /dev/null differ diff --git a/gfx/pics/nidoran_f/back.png b/gfx/pics/nidoran_f/back.png deleted file mode 100644 index 9fcaf581c..000000000 Binary files a/gfx/pics/nidoran_f/back.png and /dev/null differ diff --git a/gfx/pics/nidoran_f/front.animated.2bpp.lz.0a4602e7 b/gfx/pics/nidoran_f/front.animated.2bpp.lz.0a4602e7 deleted file mode 100644 index 477857691..000000000 Binary files a/gfx/pics/nidoran_f/front.animated.2bpp.lz.0a4602e7 and /dev/null differ diff --git a/gfx/pics/nidoran_f/front.png b/gfx/pics/nidoran_f/front.png deleted file mode 100644 index fa14f1dfc..000000000 Binary files a/gfx/pics/nidoran_f/front.png and /dev/null differ diff --git a/gfx/pics/nidoran_f/shiny.pal b/gfx/pics/nidoran_f/shiny.pal deleted file mode 100644 index 06dc1de15..000000000 --- a/gfx/pics/nidoran_f/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 17, 28 - RGB 05, 17, 01 - diff --git a/gfx/pics/nidoran_m/anim0.asm b/gfx/pics/nidoran_m/anim0.asm deleted file mode 100644 index 9b8a38133..000000000 --- a/gfx/pics/nidoran_m/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 12 - frame 2, 22 - setrepeat 3 - frame 0, 06 - frame 1, 06 - dorepeat 3 - endanim -; 0xd0a71 diff --git a/gfx/pics/nidoran_m/anim1.asm b/gfx/pics/nidoran_m/anim1.asm deleted file mode 100644 index 20b437f6a..000000000 --- a/gfx/pics/nidoran_m/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd19fd diff --git a/gfx/pics/nidoran_m/back.2bpp.lz.c9e54720 b/gfx/pics/nidoran_m/back.2bpp.lz.c9e54720 deleted file mode 100644 index 4b3be9a60..000000000 Binary files a/gfx/pics/nidoran_m/back.2bpp.lz.c9e54720 and /dev/null differ diff --git a/gfx/pics/nidoran_m/back.png b/gfx/pics/nidoran_m/back.png deleted file mode 100644 index f7ee2491b..000000000 Binary files a/gfx/pics/nidoran_m/back.png and /dev/null differ diff --git a/gfx/pics/nidoran_m/front.animated.2bpp.lz.b121beaa b/gfx/pics/nidoran_m/front.animated.2bpp.lz.b121beaa deleted file mode 100644 index 661dadada..000000000 Binary files a/gfx/pics/nidoran_m/front.animated.2bpp.lz.b121beaa and /dev/null differ diff --git a/gfx/pics/nidoran_m/front.png b/gfx/pics/nidoran_m/front.png deleted file mode 100644 index 86f5904a4..000000000 Binary files a/gfx/pics/nidoran_m/front.png and /dev/null differ diff --git a/gfx/pics/nidoran_m/shiny.pal b/gfx/pics/nidoran_m/shiny.pal deleted file mode 100644 index 771fd4e31..000000000 --- a/gfx/pics/nidoran_m/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 21, 31 - RGB 17, 08, 15 - diff --git a/gfx/pics/nidorina/anim0.asm b/gfx/pics/nidorina/anim0.asm deleted file mode 100644 index 6ab079db4..000000000 --- a/gfx/pics/nidorina/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 3, 20 - setrepeat 2 - frame 0, 06 - frame 1, 12 - frame 0, 03 - frame 2, 06 - dorepeat 2 - endanim -; 0xd0a53 diff --git a/gfx/pics/nidorina/anim1.asm b/gfx/pics/nidorina/anim1.asm deleted file mode 100644 index 6afb1cbc8..000000000 --- a/gfx/pics/nidorina/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 04 - frame 4, 04 - dorepeat 1 - endanim -; 0xd19e9 diff --git a/gfx/pics/nidorina/back.2bpp.lz.a00ecf4a b/gfx/pics/nidorina/back.2bpp.lz.a00ecf4a deleted file mode 100644 index 141d61f81..000000000 Binary files a/gfx/pics/nidorina/back.2bpp.lz.a00ecf4a and /dev/null differ diff --git a/gfx/pics/nidorina/back.png b/gfx/pics/nidorina/back.png deleted file mode 100644 index d334bfaab..000000000 Binary files a/gfx/pics/nidorina/back.png and /dev/null differ diff --git a/gfx/pics/nidorina/front.animated.2bpp.lz.51532540 b/gfx/pics/nidorina/front.animated.2bpp.lz.51532540 deleted file mode 100644 index 04523a52b..000000000 Binary files a/gfx/pics/nidorina/front.animated.2bpp.lz.51532540 and /dev/null differ diff --git a/gfx/pics/nidorina/front.png b/gfx/pics/nidorina/front.png deleted file mode 100644 index c3e49f8e1..000000000 Binary files a/gfx/pics/nidorina/front.png and /dev/null differ diff --git a/gfx/pics/nidorina/shiny.pal b/gfx/pics/nidorina/shiny.pal deleted file mode 100644 index ae93e6242..000000000 --- a/gfx/pics/nidorina/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 17, 30 - RGB 06, 15, 10 - diff --git a/gfx/pics/nidorino/anim0.asm b/gfx/pics/nidorino/anim0.asm deleted file mode 100644 index 16a6cb1dc..000000000 --- a/gfx/pics/nidorino/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 10 - frame 6, 30 - frame 0, 05 - frame 5, 07 - frame 0, 10 - setrepeat 2 - frame 0, 06 - frame 2, 06 - frame 3, 06 - dorepeat 6 - endanim -; 0xd0a86 diff --git a/gfx/pics/nidorino/anim1.asm b/gfx/pics/nidorino/anim1.asm deleted file mode 100644 index 40e17f454..000000000 --- a/gfx/pics/nidorino/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 3 - frame 4, 06 - frame 5, 06 - dorepeat 1 - frame 0, 06 - frame 4, 06 - endanim -; 0xd1a0a diff --git a/gfx/pics/nidorino/back.2bpp.lz.8504fdd1 b/gfx/pics/nidorino/back.2bpp.lz.8504fdd1 deleted file mode 100644 index 6e6a841e9..000000000 Binary files a/gfx/pics/nidorino/back.2bpp.lz.8504fdd1 and /dev/null differ diff --git a/gfx/pics/nidorino/back.png b/gfx/pics/nidorino/back.png deleted file mode 100644 index b40dd9aaf..000000000 Binary files a/gfx/pics/nidorino/back.png and /dev/null differ diff --git a/gfx/pics/nidorino/front.animated.2bpp.lz.ba11ef23 b/gfx/pics/nidorino/front.animated.2bpp.lz.ba11ef23 deleted file mode 100644 index 228c93b52..000000000 Binary files a/gfx/pics/nidorino/front.animated.2bpp.lz.ba11ef23 and /dev/null differ diff --git a/gfx/pics/nidorino/front.png b/gfx/pics/nidorino/front.png deleted file mode 100644 index 86d37de47..000000000 Binary files a/gfx/pics/nidorino/front.png and /dev/null differ diff --git a/gfx/pics/nidorino/shiny.pal b/gfx/pics/nidorino/shiny.pal deleted file mode 100644 index b6d2e6fe9..000000000 --- a/gfx/pics/nidorino/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 23, 31 - RGB 23, 04, 25 - diff --git a/gfx/pics/ninetales/anim0.asm b/gfx/pics/ninetales/anim0.asm deleted file mode 100644 index 0d691ee9d..000000000 --- a/gfx/pics/ninetales/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 07 - frame 1, 08 - frame 2, 09 - frame 3, 09 - frame 4, 10 - frame 3, 12 - frame 2, 10 - frame 1, 08 - endanim -; 0xd0acb diff --git a/gfx/pics/ninetales/anim1.asm b/gfx/pics/ninetales/anim1.asm deleted file mode 100644 index 68d1e8051..000000000 --- a/gfx/pics/ninetales/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 5, 06 - dorepeat 1 - endanim -; 0xd1a3d diff --git a/gfx/pics/ninetales/back.2bpp.lz.999b3894 b/gfx/pics/ninetales/back.2bpp.lz.999b3894 deleted file mode 100644 index e6b264033..000000000 Binary files a/gfx/pics/ninetales/back.2bpp.lz.999b3894 and /dev/null differ diff --git a/gfx/pics/ninetales/back.png b/gfx/pics/ninetales/back.png deleted file mode 100644 index 98af16d8a..000000000 Binary files a/gfx/pics/ninetales/back.png and /dev/null differ diff --git a/gfx/pics/ninetales/front.animated.2bpp.lz.eef934ff b/gfx/pics/ninetales/front.animated.2bpp.lz.eef934ff deleted file mode 100644 index 4865c6d82..000000000 Binary files a/gfx/pics/ninetales/front.animated.2bpp.lz.eef934ff and /dev/null differ diff --git a/gfx/pics/ninetales/front.png b/gfx/pics/ninetales/front.png deleted file mode 100644 index 0bfeed4eb..000000000 Binary files a/gfx/pics/ninetales/front.png and /dev/null differ diff --git a/gfx/pics/ninetales/shiny.pal b/gfx/pics/ninetales/shiny.pal deleted file mode 100644 index 6b0dafcc8..000000000 --- a/gfx/pics/ninetales/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 22, 25 - RGB 17, 17, 23 - diff --git a/gfx/pics/noctowl/anim0.asm b/gfx/pics/noctowl/anim0.asm deleted file mode 100644 index ce19c30a5..000000000 --- a/gfx/pics/noctowl/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 04 - frame 1, 20 - frame 3, 24 - frame 2, 20 - setrepeat 3 - frame 4, 06 - frame 2, 06 - dorepeat 5 - endanim -; 0xd1219 diff --git a/gfx/pics/noctowl/anim1.asm b/gfx/pics/noctowl/anim1.asm deleted file mode 100644 index 4fe81f336..000000000 --- a/gfx/pics/noctowl/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 1 - endanim -; 0xd1f11 diff --git a/gfx/pics/noctowl/back.2bpp.lz.9c8ac57f b/gfx/pics/noctowl/back.2bpp.lz.9c8ac57f deleted file mode 100644 index 9ef83c86e..000000000 Binary files a/gfx/pics/noctowl/back.2bpp.lz.9c8ac57f and /dev/null differ diff --git a/gfx/pics/noctowl/back.png b/gfx/pics/noctowl/back.png deleted file mode 100644 index 6f7237943..000000000 Binary files a/gfx/pics/noctowl/back.png and /dev/null differ diff --git a/gfx/pics/noctowl/front.animated.2bpp.lz.7d6594fe b/gfx/pics/noctowl/front.animated.2bpp.lz.7d6594fe deleted file mode 100644 index cd0d1313b..000000000 Binary files a/gfx/pics/noctowl/front.animated.2bpp.lz.7d6594fe and /dev/null differ diff --git a/gfx/pics/noctowl/front.png b/gfx/pics/noctowl/front.png deleted file mode 100644 index bbc8b1623..000000000 Binary files a/gfx/pics/noctowl/front.png and /dev/null differ diff --git a/gfx/pics/noctowl/shiny.pal b/gfx/pics/noctowl/shiny.pal deleted file mode 100644 index d53a230e7..000000000 --- a/gfx/pics/noctowl/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 23, 04 - RGB 23, 10, 06 - diff --git a/gfx/pics/octillery/anim0.asm b/gfx/pics/octillery/anim0.asm deleted file mode 100644 index 2405d46a1..000000000 --- a/gfx/pics/octillery/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 12 - frame 1, 24 - setrepeat 4 - frame 2, 05 - frame 0, 05 - dorepeat 3 - endanim -; 0xd1515 diff --git a/gfx/pics/octillery/anim1.asm b/gfx/pics/octillery/anim1.asm deleted file mode 100644 index 0903a867a..000000000 --- a/gfx/pics/octillery/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd211d diff --git a/gfx/pics/octillery/back.2bpp.lz.48b6e47d b/gfx/pics/octillery/back.2bpp.lz.48b6e47d deleted file mode 100644 index 2d12597ca..000000000 Binary files a/gfx/pics/octillery/back.2bpp.lz.48b6e47d and /dev/null differ diff --git a/gfx/pics/octillery/back.png b/gfx/pics/octillery/back.png deleted file mode 100644 index 8717ea071..000000000 Binary files a/gfx/pics/octillery/back.png and /dev/null differ diff --git a/gfx/pics/octillery/front.animated.2bpp.lz.de99954b b/gfx/pics/octillery/front.animated.2bpp.lz.de99954b deleted file mode 100644 index 9ffec9b38..000000000 Binary files a/gfx/pics/octillery/front.animated.2bpp.lz.de99954b and /dev/null differ diff --git a/gfx/pics/octillery/front.png b/gfx/pics/octillery/front.png deleted file mode 100644 index a2359dc98..000000000 Binary files a/gfx/pics/octillery/front.png and /dev/null differ diff --git a/gfx/pics/octillery/shiny.pal b/gfx/pics/octillery/shiny.pal deleted file mode 100644 index a5bdc9b71..000000000 --- a/gfx/pics/octillery/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 28, 14 - RGB 20, 18, 03 - diff --git a/gfx/pics/oddish/anim0.asm b/gfx/pics/oddish/anim0.asm deleted file mode 100644 index 338771fce..000000000 --- a/gfx/pics/oddish/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 10 - frame 2, 20 - frame 1, 07 - frame 4, 05 - frame 0, 15 - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 6 - endanim -; 0xd0b20 diff --git a/gfx/pics/oddish/anim1.asm b/gfx/pics/oddish/anim1.asm deleted file mode 100644 index 92d041ff5..000000000 --- a/gfx/pics/oddish/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd1a6c diff --git a/gfx/pics/oddish/back.2bpp.lz.4f9ec682 b/gfx/pics/oddish/back.2bpp.lz.4f9ec682 deleted file mode 100644 index 81ba4e5f3..000000000 Binary files a/gfx/pics/oddish/back.2bpp.lz.4f9ec682 and /dev/null differ diff --git a/gfx/pics/oddish/back.png b/gfx/pics/oddish/back.png deleted file mode 100644 index 11f40353d..000000000 Binary files a/gfx/pics/oddish/back.png and /dev/null differ diff --git a/gfx/pics/oddish/front.animated.2bpp.lz.ea2e0dcd b/gfx/pics/oddish/front.animated.2bpp.lz.ea2e0dcd deleted file mode 100644 index 3864c0b7a..000000000 Binary files a/gfx/pics/oddish/front.animated.2bpp.lz.ea2e0dcd and /dev/null differ diff --git a/gfx/pics/oddish/front.png b/gfx/pics/oddish/front.png deleted file mode 100644 index c49334613..000000000 Binary files a/gfx/pics/oddish/front.png and /dev/null differ diff --git a/gfx/pics/oddish/shiny.pal b/gfx/pics/oddish/shiny.pal deleted file mode 100644 index 6e1d339b4..000000000 --- a/gfx/pics/oddish/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 26, 04 - RGB 08, 18, 11 - diff --git a/gfx/pics/omanyte/anim0.asm b/gfx/pics/omanyte/anim0.asm deleted file mode 100644 index 5863efecc..000000000 --- a/gfx/pics/omanyte/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 08 - frame 2, 22 - frame 1, 08 - endanim -; 0xd1075 diff --git a/gfx/pics/omanyte/anim1.asm b/gfx/pics/omanyte/anim1.asm deleted file mode 100644 index ffdce5abd..000000000 --- a/gfx/pics/omanyte/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1e03 diff --git a/gfx/pics/omanyte/back.2bpp.lz.f442a670 b/gfx/pics/omanyte/back.2bpp.lz.f442a670 deleted file mode 100644 index 0ee462eaf..000000000 Binary files a/gfx/pics/omanyte/back.2bpp.lz.f442a670 and /dev/null differ diff --git a/gfx/pics/omanyte/back.png b/gfx/pics/omanyte/back.png deleted file mode 100644 index 0c3fb8eb7..000000000 Binary files a/gfx/pics/omanyte/back.png and /dev/null differ diff --git a/gfx/pics/omanyte/front.animated.2bpp.lz.15b343dc b/gfx/pics/omanyte/front.animated.2bpp.lz.15b343dc deleted file mode 100644 index 7673b2390..000000000 Binary files a/gfx/pics/omanyte/front.animated.2bpp.lz.15b343dc and /dev/null differ diff --git a/gfx/pics/omanyte/front.png b/gfx/pics/omanyte/front.png deleted file mode 100644 index 1e47c7800..000000000 Binary files a/gfx/pics/omanyte/front.png and /dev/null differ diff --git a/gfx/pics/omanyte/shiny.pal b/gfx/pics/omanyte/shiny.pal deleted file mode 100644 index cc1531b57..000000000 --- a/gfx/pics/omanyte/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 19, 10 - RGB 12, 11, 11 - diff --git a/gfx/pics/omastar/anim0.asm b/gfx/pics/omastar/anim0.asm deleted file mode 100644 index 76d8c3aa8..000000000 --- a/gfx/pics/omastar/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 10 - frame 2, 40 - frame 1, 06 - endanim -; 0xd107c diff --git a/gfx/pics/omastar/anim1.asm b/gfx/pics/omastar/anim1.asm deleted file mode 100644 index 60bcf04d2..000000000 --- a/gfx/pics/omastar/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 11 - frame 3, 11 - dorepeat 1 - endanim -; 0xd1e0c diff --git a/gfx/pics/omastar/back.2bpp.lz.c75932db b/gfx/pics/omastar/back.2bpp.lz.c75932db deleted file mode 100644 index b41a828c5..000000000 Binary files a/gfx/pics/omastar/back.2bpp.lz.c75932db and /dev/null differ diff --git a/gfx/pics/omastar/back.png b/gfx/pics/omastar/back.png deleted file mode 100644 index c6ff219e7..000000000 Binary files a/gfx/pics/omastar/back.png and /dev/null differ diff --git a/gfx/pics/omastar/front.animated.2bpp.lz.b3f6c3dc b/gfx/pics/omastar/front.animated.2bpp.lz.b3f6c3dc deleted file mode 100644 index 544e2d87b..000000000 Binary files a/gfx/pics/omastar/front.animated.2bpp.lz.b3f6c3dc and /dev/null differ diff --git a/gfx/pics/omastar/front.png b/gfx/pics/omastar/front.png deleted file mode 100644 index 382bb5417..000000000 Binary files a/gfx/pics/omastar/front.png and /dev/null differ diff --git a/gfx/pics/omastar/shiny.pal b/gfx/pics/omastar/shiny.pal deleted file mode 100644 index 2b8017338..000000000 --- a/gfx/pics/omastar/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 28, 02 - RGB 12, 11, 15 - diff --git a/gfx/pics/onix/anim0.asm b/gfx/pics/onix/anim0.asm deleted file mode 100644 index a5b18f5b6..000000000 --- a/gfx/pics/onix/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 2 - frame 1, 12 - frame 2, 12 - frame 3, 12 - dorepeat 1 - frame 4, 12 - frame 5, 12 - frame 6, 12 - endanim -; 0xd0e08 diff --git a/gfx/pics/onix/anim1.asm b/gfx/pics/onix/anim1.asm deleted file mode 100644 index e4ae7acac..000000000 --- a/gfx/pics/onix/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 7, 10 - frame 8, 10 - dorepeat 1 - endanim -; 0xd1c74 diff --git a/gfx/pics/onix/back.2bpp.lz.cb580eb9 b/gfx/pics/onix/back.2bpp.lz.cb580eb9 deleted file mode 100644 index 05df1a96b..000000000 Binary files a/gfx/pics/onix/back.2bpp.lz.cb580eb9 and /dev/null differ diff --git a/gfx/pics/onix/back.png b/gfx/pics/onix/back.png deleted file mode 100644 index 6aa7be5bc..000000000 Binary files a/gfx/pics/onix/back.png and /dev/null differ diff --git a/gfx/pics/onix/front.animated.2bpp.lz.84b7e9ef b/gfx/pics/onix/front.animated.2bpp.lz.84b7e9ef deleted file mode 100644 index dc3bfca6e..000000000 Binary files a/gfx/pics/onix/front.animated.2bpp.lz.84b7e9ef and /dev/null differ diff --git a/gfx/pics/onix/front.png b/gfx/pics/onix/front.png deleted file mode 100644 index 188378160..000000000 Binary files a/gfx/pics/onix/front.png and /dev/null differ diff --git a/gfx/pics/onix/shiny.pal b/gfx/pics/onix/shiny.pal deleted file mode 100644 index 66935962c..000000000 --- a/gfx/pics/onix/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 21, 04 - RGB 14, 11, 07 - diff --git a/gfx/pics/palette_pointers.asm b/gfx/pics/palette_pointers.asm deleted file mode 100644 index 7756e8e7e..000000000 --- a/gfx/pics/palette_pointers.asm +++ /dev/null @@ -1,541 +0,0 @@ -PokemonPalettes: ; a8ce - -; 000 - RGB 30, 22, 17 - RGB 16, 14, 19 -; 000 shiny - RGB 30, 22, 17 - RGB 16, 14, 19 - -BulbasaurPalette: INCLUDE "gfx/pics/bulbasaur/normal.pal" -BulbasaurShinyPalette: INCLUDE "gfx/pics/bulbasaur/shiny.pal" -IvysaurPalette: INCLUDE "gfx/pics/ivysaur/normal.pal" -IvysaurShinyPalette: INCLUDE "gfx/pics/ivysaur/shiny.pal" -VenusaurPalette: INCLUDE "gfx/pics/venusaur/normal.pal" -VenusaurShinyPalette: INCLUDE "gfx/pics/venusaur/shiny.pal" -CharmanderPalette: INCLUDE "gfx/pics/charmander/normal.pal" -CharmanderShinyPalette: INCLUDE "gfx/pics/charmander/shiny.pal" -CharmeleonPalette: INCLUDE "gfx/pics/charmeleon/normal.pal" -CharmeleonShinyPalette: INCLUDE "gfx/pics/charmeleon/shiny.pal" -CharizardPalette: INCLUDE "gfx/pics/charizard/normal.pal" -CharizardShinyPalette: INCLUDE "gfx/pics/charizard/shiny.pal" -SquirtlePalette: INCLUDE "gfx/pics/squirtle/normal.pal" -SquirtleShinyPalette: INCLUDE "gfx/pics/squirtle/shiny.pal" -WartortlePalette: INCLUDE "gfx/pics/wartortle/normal.pal" -WartortleShinyPalette: INCLUDE "gfx/pics/wartortle/shiny.pal" -BlastoisePalette: INCLUDE "gfx/pics/blastoise/normal.pal" -BlastoiseShinyPalette: INCLUDE "gfx/pics/blastoise/shiny.pal" -CaterpiePalette: INCLUDE "gfx/pics/caterpie/normal.pal" -CaterpieShinyPalette: INCLUDE "gfx/pics/caterpie/shiny.pal" -MetapodPalette: INCLUDE "gfx/pics/metapod/normal.pal" -MetapodShinyPalette: INCLUDE "gfx/pics/metapod/shiny.pal" -ButterfreePalette: INCLUDE "gfx/pics/butterfree/normal.pal" -ButterfreeShinyPalette: INCLUDE "gfx/pics/butterfree/shiny.pal" -WeedlePalette: INCLUDE "gfx/pics/weedle/normal.pal" -WeedleShinyPalette: INCLUDE "gfx/pics/weedle/shiny.pal" -KakunaPalette: INCLUDE "gfx/pics/kakuna/normal.pal" -KakunaShinyPalette: INCLUDE "gfx/pics/kakuna/shiny.pal" -BeedrillPalette: INCLUDE "gfx/pics/beedrill/normal.pal" -BeedrillShinyPalette: INCLUDE "gfx/pics/beedrill/shiny.pal" -PidgeyPalette: INCLUDE "gfx/pics/pidgey/normal.pal" -PidgeyShinyPalette: INCLUDE "gfx/pics/pidgey/shiny.pal" -PidgeottoPalette: INCLUDE "gfx/pics/pidgeotto/normal.pal" -PidgeottoShinyPalette: INCLUDE "gfx/pics/pidgeotto/shiny.pal" -PidgeotPalette: INCLUDE "gfx/pics/pidgeot/normal.pal" -PidgeotShinyPalette: INCLUDE "gfx/pics/pidgeot/shiny.pal" -RattataPalette: INCLUDE "gfx/pics/rattata/normal.pal" -RattataShinyPalette: INCLUDE "gfx/pics/rattata/shiny.pal" -RaticatePalette: INCLUDE "gfx/pics/raticate/normal.pal" -RaticateShinyPalette: INCLUDE "gfx/pics/raticate/shiny.pal" -SpearowPalette: INCLUDE "gfx/pics/spearow/normal.pal" -SpearowShinyPalette: INCLUDE "gfx/pics/spearow/shiny.pal" -FearowPalette: INCLUDE "gfx/pics/fearow/normal.pal" -FearowShinyPalette: INCLUDE "gfx/pics/fearow/shiny.pal" -EkansPalette: INCLUDE "gfx/pics/ekans/normal.pal" -EkansShinyPalette: INCLUDE "gfx/pics/ekans/shiny.pal" -ArbokPalette: INCLUDE "gfx/pics/arbok/normal.pal" -ArbokShinyPalette: INCLUDE "gfx/pics/arbok/shiny.pal" -PikachuPalette: INCLUDE "gfx/pics/pikachu/normal.pal" -PikachuShinyPalette: INCLUDE "gfx/pics/pikachu/shiny.pal" -RaichuPalette: INCLUDE "gfx/pics/raichu/normal.pal" -RaichuShinyPalette: INCLUDE "gfx/pics/raichu/shiny.pal" -SandshrewPalette: INCLUDE "gfx/pics/sandshrew/normal.pal" -SandshrewShinyPalette: INCLUDE "gfx/pics/sandshrew/shiny.pal" -SandslashPalette: INCLUDE "gfx/pics/sandslash/normal.pal" -SandslashShinyPalette: INCLUDE "gfx/pics/sandslash/shiny.pal" -NidoranFPalette: INCLUDE "gfx/pics/nidoran_f/normal.pal" -NidoranFShinyPalette: INCLUDE "gfx/pics/nidoran_f/shiny.pal" -NidorinaPalette: INCLUDE "gfx/pics/nidorina/normal.pal" -NidorinaShinyPalette: INCLUDE "gfx/pics/nidorina/shiny.pal" -NidoqueenPalette: INCLUDE "gfx/pics/nidoqueen/normal.pal" -NidoqueenShinyPalette: INCLUDE "gfx/pics/nidoqueen/shiny.pal" -NidoranMPalette: INCLUDE "gfx/pics/nidoran_m/normal.pal" -NidoranMShinyPalette: INCLUDE "gfx/pics/nidoran_m/shiny.pal" -NidorinoPalette: INCLUDE "gfx/pics/nidorino/normal.pal" -NidorinoShinyPalette: INCLUDE "gfx/pics/nidorino/shiny.pal" -NidokingPalette: INCLUDE "gfx/pics/nidoking/normal.pal" -NidokingShinyPalette: INCLUDE "gfx/pics/nidoking/shiny.pal" -ClefairyPalette: INCLUDE "gfx/pics/clefairy/normal.pal" -ClefairyShinyPalette: INCLUDE "gfx/pics/clefairy/shiny.pal" -ClefablePalette: INCLUDE "gfx/pics/clefable/normal.pal" -ClefableShinyPalette: INCLUDE "gfx/pics/clefable/shiny.pal" -VulpixPalette: INCLUDE "gfx/pics/vulpix/normal.pal" -VulpixShinyPalette: INCLUDE "gfx/pics/vulpix/shiny.pal" -NinetalesPalette: INCLUDE "gfx/pics/ninetales/normal.pal" -NinetalesShinyPalette: INCLUDE "gfx/pics/ninetales/shiny.pal" -JigglypuffPalette: INCLUDE "gfx/pics/jigglypuff/normal.pal" -JigglypuffShinyPalette: INCLUDE "gfx/pics/jigglypuff/shiny.pal" -WigglytuffPalette: INCLUDE "gfx/pics/wigglytuff/normal.pal" -WigglytuffShinyPalette: INCLUDE "gfx/pics/wigglytuff/shiny.pal" -ZubatPalette: INCLUDE "gfx/pics/zubat/normal.pal" -ZubatShinyPalette: INCLUDE "gfx/pics/zubat/shiny.pal" -GolbatPalette: INCLUDE "gfx/pics/golbat/normal.pal" -GolbatShinyPalette: INCLUDE "gfx/pics/golbat/shiny.pal" -OddishPalette: INCLUDE "gfx/pics/oddish/normal.pal" -OddishShinyPalette: INCLUDE "gfx/pics/oddish/shiny.pal" -GloomPalette: INCLUDE "gfx/pics/gloom/normal.pal" -GloomShinyPalette: INCLUDE "gfx/pics/gloom/shiny.pal" -VileplumePalette: INCLUDE "gfx/pics/vileplume/normal.pal" -VileplumeShinyPalette: INCLUDE "gfx/pics/vileplume/shiny.pal" -ParasPalette: INCLUDE "gfx/pics/paras/normal.pal" -ParasShinyPalette: INCLUDE "gfx/pics/paras/shiny.pal" -ParasectPalette: INCLUDE "gfx/pics/parasect/normal.pal" -ParasectShinyPalette: INCLUDE "gfx/pics/parasect/shiny.pal" -VenonatPalette: INCLUDE "gfx/pics/venonat/normal.pal" -VenonatShinyPalette: INCLUDE "gfx/pics/venonat/shiny.pal" -VenomothPalette: INCLUDE "gfx/pics/venomoth/normal.pal" -VenomothShinyPalette: INCLUDE "gfx/pics/venomoth/shiny.pal" -DiglettPalette: INCLUDE "gfx/pics/diglett/normal.pal" -DiglettShinyPalette: INCLUDE "gfx/pics/diglett/shiny.pal" -DugtrioPalette: INCLUDE "gfx/pics/dugtrio/normal.pal" -DugtrioShinyPalette: INCLUDE "gfx/pics/dugtrio/shiny.pal" -MeowthPalette: INCLUDE "gfx/pics/meowth/normal.pal" -MeowthShinyPalette: INCLUDE "gfx/pics/meowth/shiny.pal" -PersianPalette: INCLUDE "gfx/pics/persian/normal.pal" -PersianShinyPalette: INCLUDE "gfx/pics/persian/shiny.pal" -PsyduckPalette: INCLUDE "gfx/pics/psyduck/normal.pal" -PsyduckShinyPalette: INCLUDE "gfx/pics/psyduck/shiny.pal" -GolduckPalette: INCLUDE "gfx/pics/golduck/normal.pal" -GolduckShinyPalette: INCLUDE "gfx/pics/golduck/shiny.pal" -MankeyPalette: INCLUDE "gfx/pics/mankey/normal.pal" -MankeyShinyPalette: INCLUDE "gfx/pics/mankey/shiny.pal" -PrimeapePalette: INCLUDE "gfx/pics/primeape/normal.pal" -PrimeapeShinyPalette: INCLUDE "gfx/pics/primeape/shiny.pal" -GrowlithePalette: INCLUDE "gfx/pics/growlithe/normal.pal" -GrowlitheShinyPalette: INCLUDE "gfx/pics/growlithe/shiny.pal" -ArcaninePalette: INCLUDE "gfx/pics/arcanine/normal.pal" -ArcanineShinyPalette: INCLUDE "gfx/pics/arcanine/shiny.pal" -PoliwagPalette: INCLUDE "gfx/pics/poliwag/normal.pal" -PoliwagShinyPalette: INCLUDE "gfx/pics/poliwag/shiny.pal" -PoliwhirlPalette: INCLUDE "gfx/pics/poliwhirl/normal.pal" -PoliwhirlShinyPalette: INCLUDE "gfx/pics/poliwhirl/shiny.pal" -PoliwrathPalette: INCLUDE "gfx/pics/poliwrath/normal.pal" -PoliwrathShinyPalette: INCLUDE "gfx/pics/poliwrath/shiny.pal" -AbraPalette: INCLUDE "gfx/pics/abra/normal.pal" -AbraShinyPalette: INCLUDE "gfx/pics/abra/shiny.pal" -KadabraPalette: INCLUDE "gfx/pics/kadabra/normal.pal" -KadabraShinyPalette: INCLUDE "gfx/pics/kadabra/shiny.pal" -AlakazamPalette: INCLUDE "gfx/pics/alakazam/normal.pal" -AlakazamShinyPalette: INCLUDE "gfx/pics/alakazam/shiny.pal" -MachopPalette: INCLUDE "gfx/pics/machop/normal.pal" -MachopShinyPalette: INCLUDE "gfx/pics/machop/shiny.pal" -MachokePalette: INCLUDE "gfx/pics/machoke/normal.pal" -MachokeShinyPalette: INCLUDE "gfx/pics/machoke/shiny.pal" -MachampPalette: INCLUDE "gfx/pics/machamp/normal.pal" -MachampShinyPalette: INCLUDE "gfx/pics/machamp/shiny.pal" -BellsproutPalette: INCLUDE "gfx/pics/bellsprout/normal.pal" -BellsproutShinyPalette: INCLUDE "gfx/pics/bellsprout/shiny.pal" -WeepinbellPalette: INCLUDE "gfx/pics/weepinbell/normal.pal" -WeepinbellShinyPalette: INCLUDE "gfx/pics/weepinbell/shiny.pal" -VictreebelPalette: INCLUDE "gfx/pics/victreebel/normal.pal" -VictreebelShinyPalette: INCLUDE "gfx/pics/victreebel/shiny.pal" -TentacoolPalette: INCLUDE "gfx/pics/tentacool/normal.pal" -TentacoolShinyPalette: INCLUDE "gfx/pics/tentacool/shiny.pal" -TentacruelPalette: INCLUDE "gfx/pics/tentacruel/normal.pal" -TentacruelShinyPalette: INCLUDE "gfx/pics/tentacruel/shiny.pal" -GeodudePalette: INCLUDE "gfx/pics/geodude/normal.pal" -GeodudeShinyPalette: INCLUDE "gfx/pics/geodude/shiny.pal" -GravelerPalette: INCLUDE "gfx/pics/graveler/normal.pal" -GravelerShinyPalette: INCLUDE "gfx/pics/graveler/shiny.pal" -GolemPalette: INCLUDE "gfx/pics/golem/normal.pal" -GolemShinyPalette: INCLUDE "gfx/pics/golem/shiny.pal" -PonytaPalette: INCLUDE "gfx/pics/ponyta/normal.pal" -PonytaShinyPalette: INCLUDE "gfx/pics/ponyta/shiny.pal" -RapidashPalette: INCLUDE "gfx/pics/rapidash/normal.pal" -RapidashShinyPalette: INCLUDE "gfx/pics/rapidash/shiny.pal" -SlowpokePalette: INCLUDE "gfx/pics/slowpoke/normal.pal" -SlowpokeShinyPalette: INCLUDE "gfx/pics/slowpoke/shiny.pal" -SlowbroPalette: INCLUDE "gfx/pics/slowbro/normal.pal" -SlowbroShinyPalette: INCLUDE "gfx/pics/slowbro/shiny.pal" -MagnemitePalette: INCLUDE "gfx/pics/magnemite/normal.pal" -MagnemiteShinyPalette: INCLUDE "gfx/pics/magnemite/shiny.pal" -MagnetonPalette: INCLUDE "gfx/pics/magneton/normal.pal" -MagnetonShinyPalette: INCLUDE "gfx/pics/magneton/shiny.pal" -FarfetchDPalette: INCLUDE "gfx/pics/farfetch_d/normal.pal" -FarfetchDShinyPalette: INCLUDE "gfx/pics/farfetch_d/shiny.pal" -DoduoPalette: INCLUDE "gfx/pics/doduo/normal.pal" -DoduoShinyPalette: INCLUDE "gfx/pics/doduo/shiny.pal" -DodrioPalette: INCLUDE "gfx/pics/dodrio/normal.pal" -DodrioShinyPalette: INCLUDE "gfx/pics/dodrio/shiny.pal" -SeelPalette: INCLUDE "gfx/pics/seel/normal.pal" -SeelShinyPalette: INCLUDE "gfx/pics/seel/shiny.pal" -DewgongPalette: INCLUDE "gfx/pics/dewgong/normal.pal" -DewgongShinyPalette: INCLUDE "gfx/pics/dewgong/shiny.pal" -GrimerPalette: INCLUDE "gfx/pics/grimer/normal.pal" -GrimerShinyPalette: INCLUDE "gfx/pics/grimer/shiny.pal" -MukPalette: INCLUDE "gfx/pics/muk/normal.pal" -MukShinyPalette: INCLUDE "gfx/pics/muk/shiny.pal" -ShellderPalette: INCLUDE "gfx/pics/shellder/normal.pal" -ShellderShinyPalette: INCLUDE "gfx/pics/shellder/shiny.pal" -CloysterPalette: INCLUDE "gfx/pics/cloyster/normal.pal" -CloysterShinyPalette: INCLUDE "gfx/pics/cloyster/shiny.pal" -GastlyPalette: INCLUDE "gfx/pics/gastly/normal.pal" -GastlyShinyPalette: INCLUDE "gfx/pics/gastly/shiny.pal" -HaunterPalette: INCLUDE "gfx/pics/haunter/normal.pal" -HaunterShinyPalette: INCLUDE "gfx/pics/haunter/shiny.pal" -GengarPalette: INCLUDE "gfx/pics/gengar/normal.pal" -GengarShinyPalette: INCLUDE "gfx/pics/gengar/shiny.pal" -OnixPalette: INCLUDE "gfx/pics/onix/normal.pal" -OnixShinyPalette: INCLUDE "gfx/pics/onix/shiny.pal" -DrowzeePalette: INCLUDE "gfx/pics/drowzee/normal.pal" -DrowzeeShinyPalette: INCLUDE "gfx/pics/drowzee/shiny.pal" -HypnoPalette: INCLUDE "gfx/pics/hypno/normal.pal" -HypnoShinyPalette: INCLUDE "gfx/pics/hypno/shiny.pal" -KrabbyPalette: INCLUDE "gfx/pics/krabby/normal.pal" -KrabbyShinyPalette: INCLUDE "gfx/pics/krabby/shiny.pal" -KinglerPalette: INCLUDE "gfx/pics/kingler/normal.pal" -KinglerShinyPalette: INCLUDE "gfx/pics/kingler/shiny.pal" -VoltorbPalette: INCLUDE "gfx/pics/voltorb/normal.pal" -VoltorbShinyPalette: INCLUDE "gfx/pics/voltorb/shiny.pal" -ElectrodePalette: INCLUDE "gfx/pics/electrode/normal.pal" -ElectrodeShinyPalette: INCLUDE "gfx/pics/electrode/shiny.pal" -ExeggcutePalette: INCLUDE "gfx/pics/exeggcute/normal.pal" -ExeggcuteShinyPalette: INCLUDE "gfx/pics/exeggcute/shiny.pal" -ExeggutorPalette: INCLUDE "gfx/pics/exeggutor/normal.pal" -ExeggutorShinyPalette: INCLUDE "gfx/pics/exeggutor/shiny.pal" -CubonePalette: INCLUDE "gfx/pics/cubone/normal.pal" -CuboneShinyPalette: INCLUDE "gfx/pics/cubone/shiny.pal" -MarowakPalette: INCLUDE "gfx/pics/marowak/normal.pal" -MarowakShinyPalette: INCLUDE "gfx/pics/marowak/shiny.pal" -HitmonleePalette: INCLUDE "gfx/pics/hitmonlee/normal.pal" -HitmonleeShinyPalette: INCLUDE "gfx/pics/hitmonlee/shiny.pal" -HitmonchanPalette: INCLUDE "gfx/pics/hitmonchan/normal.pal" -HitmonchanShinyPalette: INCLUDE "gfx/pics/hitmonchan/shiny.pal" -LickitungPalette: INCLUDE "gfx/pics/lickitung/normal.pal" -LickitungShinyPalette: INCLUDE "gfx/pics/lickitung/shiny.pal" -KoffingPalette: INCLUDE "gfx/pics/koffing/normal.pal" -KoffingShinyPalette: INCLUDE "gfx/pics/koffing/shiny.pal" -WeezingPalette: INCLUDE "gfx/pics/weezing/normal.pal" -WeezingShinyPalette: INCLUDE "gfx/pics/weezing/shiny.pal" -RhyhornPalette: INCLUDE "gfx/pics/rhyhorn/normal.pal" -RhyhornShinyPalette: INCLUDE "gfx/pics/rhyhorn/shiny.pal" -RhydonPalette: INCLUDE "gfx/pics/rhydon/normal.pal" -RhydonShinyPalette: INCLUDE "gfx/pics/rhydon/shiny.pal" -ChanseyPalette: INCLUDE "gfx/pics/chansey/normal.pal" -ChanseyShinyPalette: INCLUDE "gfx/pics/chansey/shiny.pal" -TangelaPalette: INCLUDE "gfx/pics/tangela/normal.pal" -TangelaShinyPalette: INCLUDE "gfx/pics/tangela/shiny.pal" -KangaskhanPalette: INCLUDE "gfx/pics/kangaskhan/normal.pal" -KangaskhanShinyPalette: INCLUDE "gfx/pics/kangaskhan/shiny.pal" -HorseaPalette: INCLUDE "gfx/pics/horsea/normal.pal" -HorseaShinyPalette: INCLUDE "gfx/pics/horsea/shiny.pal" -SeadraPalette: INCLUDE "gfx/pics/seadra/normal.pal" -SeadraShinyPalette: INCLUDE "gfx/pics/seadra/shiny.pal" -GoldeenPalette: INCLUDE "gfx/pics/goldeen/normal.pal" -GoldeenShinyPalette: INCLUDE "gfx/pics/goldeen/shiny.pal" -SeakingPalette: INCLUDE "gfx/pics/seaking/normal.pal" -SeakingShinyPalette: INCLUDE "gfx/pics/seaking/shiny.pal" -StaryuPalette: INCLUDE "gfx/pics/staryu/normal.pal" -StaryuShinyPalette: INCLUDE "gfx/pics/staryu/shiny.pal" -StarmiePalette: INCLUDE "gfx/pics/starmie/normal.pal" -StarmieShinyPalette: INCLUDE "gfx/pics/starmie/shiny.pal" -MrMimePalette: INCLUDE "gfx/pics/mr__mime/normal.pal" -MrMimeShinyPalette: INCLUDE "gfx/pics/mr__mime/shiny.pal" -ScytherPalette: INCLUDE "gfx/pics/scyther/normal.pal" -ScytherShinyPalette: INCLUDE "gfx/pics/scyther/shiny.pal" -JynxPalette: INCLUDE "gfx/pics/jynx/normal.pal" -JynxShinyPalette: INCLUDE "gfx/pics/jynx/shiny.pal" -ElectabuzzPalette: INCLUDE "gfx/pics/electabuzz/normal.pal" -ElectabuzzShinyPalette: INCLUDE "gfx/pics/electabuzz/shiny.pal" -MagmarPalette: INCLUDE "gfx/pics/magmar/normal.pal" -MagmarShinyPalette: INCLUDE "gfx/pics/magmar/shiny.pal" -PinsirPalette: INCLUDE "gfx/pics/pinsir/normal.pal" -PinsirShinyPalette: INCLUDE "gfx/pics/pinsir/shiny.pal" -TaurosPalette: INCLUDE "gfx/pics/tauros/normal.pal" -TaurosShinyPalette: INCLUDE "gfx/pics/tauros/shiny.pal" -MagikarpPalette: INCLUDE "gfx/pics/magikarp/normal.pal" -MagikarpShinyPalette: INCLUDE "gfx/pics/magikarp/shiny.pal" -GyaradosPalette: INCLUDE "gfx/pics/gyarados/normal.pal" -GyaradosShinyPalette: INCLUDE "gfx/pics/gyarados/shiny.pal" -LaprasPalette: INCLUDE "gfx/pics/lapras/normal.pal" -LaprasShinyPalette: INCLUDE "gfx/pics/lapras/shiny.pal" -DittoPalette: INCLUDE "gfx/pics/ditto/normal.pal" -DittoShinyPalette: INCLUDE "gfx/pics/ditto/shiny.pal" -EeveePalette: INCLUDE "gfx/pics/eevee/normal.pal" -EeveeShinyPalette: INCLUDE "gfx/pics/eevee/shiny.pal" -VaporeonPalette: INCLUDE "gfx/pics/vaporeon/normal.pal" -VaporeonShinyPalette: INCLUDE "gfx/pics/vaporeon/shiny.pal" -JolteonPalette: INCLUDE "gfx/pics/jolteon/normal.pal" -JolteonShinyPalette: INCLUDE "gfx/pics/jolteon/shiny.pal" -FlareonPalette: INCLUDE "gfx/pics/flareon/normal.pal" -FlareonShinyPalette: INCLUDE "gfx/pics/flareon/shiny.pal" -PorygonPalette: INCLUDE "gfx/pics/porygon/normal.pal" -PorygonShinyPalette: INCLUDE "gfx/pics/porygon/shiny.pal" -OmanytePalette: INCLUDE "gfx/pics/omanyte/normal.pal" -OmanyteShinyPalette: INCLUDE "gfx/pics/omanyte/shiny.pal" -OmastarPalette: INCLUDE "gfx/pics/omastar/normal.pal" -OmastarShinyPalette: INCLUDE "gfx/pics/omastar/shiny.pal" -KabutoPalette: INCLUDE "gfx/pics/kabuto/normal.pal" -KabutoShinyPalette: INCLUDE "gfx/pics/kabuto/shiny.pal" -KabutopsPalette: INCLUDE "gfx/pics/kabutops/normal.pal" -KabutopsShinyPalette: INCLUDE "gfx/pics/kabutops/shiny.pal" -AerodactylPalette: INCLUDE "gfx/pics/aerodactyl/normal.pal" -AerodactylShinyPalette: INCLUDE "gfx/pics/aerodactyl/shiny.pal" -SnorlaxPalette: INCLUDE "gfx/pics/snorlax/normal.pal" -SnorlaxShinyPalette: INCLUDE "gfx/pics/snorlax/shiny.pal" -ArticunoPalette: INCLUDE "gfx/pics/articuno/normal.pal" -ArticunoShinyPalette: INCLUDE "gfx/pics/articuno/shiny.pal" -ZapdosPalette: INCLUDE "gfx/pics/zapdos/normal.pal" -ZapdosShinyPalette: INCLUDE "gfx/pics/zapdos/shiny.pal" -MoltresPalette: INCLUDE "gfx/pics/moltres/normal.pal" -MoltresShinyPalette: INCLUDE "gfx/pics/moltres/shiny.pal" -DratiniPalette: INCLUDE "gfx/pics/dratini/normal.pal" -DratiniShinyPalette: INCLUDE "gfx/pics/dratini/shiny.pal" -DragonairPalette: INCLUDE "gfx/pics/dragonair/normal.pal" -DragonairShinyPalette: INCLUDE "gfx/pics/dragonair/shiny.pal" -DragonitePalette: INCLUDE "gfx/pics/dragonite/normal.pal" -DragoniteShinyPalette: INCLUDE "gfx/pics/dragonite/shiny.pal" -MewtwoPalette: INCLUDE "gfx/pics/mewtwo/normal.pal" -MewtwoShinyPalette: INCLUDE "gfx/pics/mewtwo/shiny.pal" -MewPalette: INCLUDE "gfx/pics/mew/normal.pal" -MewShinyPalette: INCLUDE "gfx/pics/mew/shiny.pal" -ChikoritaPalette: INCLUDE "gfx/pics/chikorita/normal.pal" -ChikoritaShinyPalette: INCLUDE "gfx/pics/chikorita/shiny.pal" -BayleefPalette: INCLUDE "gfx/pics/bayleef/normal.pal" -BayleefShinyPalette: INCLUDE "gfx/pics/bayleef/shiny.pal" -MeganiumPalette: INCLUDE "gfx/pics/meganium/normal.pal" -MeganiumShinyPalette: INCLUDE "gfx/pics/meganium/shiny.pal" -CyndaquilPalette: INCLUDE "gfx/pics/cyndaquil/normal.pal" -CyndaquilShinyPalette: INCLUDE "gfx/pics/cyndaquil/shiny.pal" -QuilavaPalette: INCLUDE "gfx/pics/quilava/normal.pal" -QuilavaShinyPalette: INCLUDE "gfx/pics/quilava/shiny.pal" -TyphlosionPalette: INCLUDE "gfx/pics/typhlosion/normal.pal" -TyphlosionShinyPalette: INCLUDE "gfx/pics/typhlosion/shiny.pal" -TotodilePalette: INCLUDE "gfx/pics/totodile/normal.pal" -TotodileShinyPalette: INCLUDE "gfx/pics/totodile/shiny.pal" -CroconawPalette: INCLUDE "gfx/pics/croconaw/normal.pal" -CroconawShinyPalette: INCLUDE "gfx/pics/croconaw/shiny.pal" -FeraligatrPalette: INCLUDE "gfx/pics/feraligatr/normal.pal" -FeraligatrShinyPalette: INCLUDE "gfx/pics/feraligatr/shiny.pal" -SentretPalette: INCLUDE "gfx/pics/sentret/normal.pal" -SentretShinyPalette: INCLUDE "gfx/pics/sentret/shiny.pal" -FurretPalette: INCLUDE "gfx/pics/furret/normal.pal" -FurretShinyPalette: INCLUDE "gfx/pics/furret/shiny.pal" -HoothootPalette: INCLUDE "gfx/pics/hoothoot/normal.pal" -HoothootShinyPalette: INCLUDE "gfx/pics/hoothoot/shiny.pal" -NoctowlPalette: INCLUDE "gfx/pics/noctowl/normal.pal" -NoctowlShinyPalette: INCLUDE "gfx/pics/noctowl/shiny.pal" -LedybaPalette: INCLUDE "gfx/pics/ledyba/normal.pal" -LedybaShinyPalette: INCLUDE "gfx/pics/ledyba/shiny.pal" -LedianPalette: INCLUDE "gfx/pics/ledian/normal.pal" -LedianShinyPalette: INCLUDE "gfx/pics/ledian/shiny.pal" -SpinarakPalette: INCLUDE "gfx/pics/spinarak/normal.pal" -SpinarakShinyPalette: INCLUDE "gfx/pics/spinarak/shiny.pal" -AriadosPalette: INCLUDE "gfx/pics/ariados/normal.pal" -AriadosShinyPalette: INCLUDE "gfx/pics/ariados/shiny.pal" -CrobatPalette: INCLUDE "gfx/pics/crobat/normal.pal" -CrobatShinyPalette: INCLUDE "gfx/pics/crobat/shiny.pal" -ChinchouPalette: INCLUDE "gfx/pics/chinchou/normal.pal" -ChinchouShinyPalette: INCLUDE "gfx/pics/chinchou/shiny.pal" -LanturnPalette: INCLUDE "gfx/pics/lanturn/normal.pal" -LanturnShinyPalette: INCLUDE "gfx/pics/lanturn/shiny.pal" -PichuPalette: INCLUDE "gfx/pics/pichu/normal.pal" -PichuShinyPalette: INCLUDE "gfx/pics/pichu/shiny.pal" -CleffaPalette: INCLUDE "gfx/pics/cleffa/normal.pal" -CleffaShinyPalette: INCLUDE "gfx/pics/cleffa/shiny.pal" -IgglybuffPalette: INCLUDE "gfx/pics/igglybuff/normal.pal" -IgglybuffShinyPalette: INCLUDE "gfx/pics/igglybuff/shiny.pal" -TogepiPalette: INCLUDE "gfx/pics/togepi/normal.pal" -TogepiShinyPalette: INCLUDE "gfx/pics/togepi/shiny.pal" -TogeticPalette: INCLUDE "gfx/pics/togetic/normal.pal" -TogeticShinyPalette: INCLUDE "gfx/pics/togetic/shiny.pal" -NatuPalette: INCLUDE "gfx/pics/natu/normal.pal" -NatuShinyPalette: INCLUDE "gfx/pics/natu/shiny.pal" -XatuPalette: INCLUDE "gfx/pics/xatu/normal.pal" -XatuShinyPalette: INCLUDE "gfx/pics/xatu/shiny.pal" -MareepPalette: INCLUDE "gfx/pics/mareep/normal.pal" -MareepShinyPalette: INCLUDE "gfx/pics/mareep/shiny.pal" -FlaaffyPalette: INCLUDE "gfx/pics/flaaffy/normal.pal" -FlaaffyShinyPalette: INCLUDE "gfx/pics/flaaffy/shiny.pal" -AmpharosPalette: INCLUDE "gfx/pics/ampharos/normal.pal" -AmpharosShinyPalette: INCLUDE "gfx/pics/ampharos/shiny.pal" -BellossomPalette: INCLUDE "gfx/pics/bellossom/normal.pal" -BellossomShinyPalette: INCLUDE "gfx/pics/bellossom/shiny.pal" -MarillPalette: INCLUDE "gfx/pics/marill/normal.pal" -MarillShinyPalette: INCLUDE "gfx/pics/marill/shiny.pal" -AzumarillPalette: INCLUDE "gfx/pics/azumarill/normal.pal" -AzumarillShinyPalette: INCLUDE "gfx/pics/azumarill/shiny.pal" -SudowoodoPalette: INCLUDE "gfx/pics/sudowoodo/normal.pal" -SudowoodoShinyPalette: INCLUDE "gfx/pics/sudowoodo/shiny.pal" -PolitoedPalette: INCLUDE "gfx/pics/politoed/normal.pal" -PolitoedShinyPalette: INCLUDE "gfx/pics/politoed/shiny.pal" -HoppipPalette: INCLUDE "gfx/pics/hoppip/normal.pal" -HoppipShinyPalette: INCLUDE "gfx/pics/hoppip/shiny.pal" -SkiploomPalette: INCLUDE "gfx/pics/skiploom/normal.pal" -SkiploomShinyPalette: INCLUDE "gfx/pics/skiploom/shiny.pal" -JumpluffPalette: INCLUDE "gfx/pics/jumpluff/normal.pal" -JumpluffShinyPalette: INCLUDE "gfx/pics/jumpluff/shiny.pal" -AipomPalette: INCLUDE "gfx/pics/aipom/normal.pal" -AipomShinyPalette: INCLUDE "gfx/pics/aipom/shiny.pal" -SunkernPalette: INCLUDE "gfx/pics/sunkern/normal.pal" -SunkernShinyPalette: INCLUDE "gfx/pics/sunkern/shiny.pal" -SunfloraPalette: INCLUDE "gfx/pics/sunflora/normal.pal" -SunfloraShinyPalette: INCLUDE "gfx/pics/sunflora/shiny.pal" -YanmaPalette: INCLUDE "gfx/pics/yanma/normal.pal" -YanmaShinyPalette: INCLUDE "gfx/pics/yanma/shiny.pal" -WooperPalette: INCLUDE "gfx/pics/wooper/normal.pal" -WooperShinyPalette: INCLUDE "gfx/pics/wooper/shiny.pal" -QuagsirePalette: INCLUDE "gfx/pics/quagsire/normal.pal" -QuagsireShinyPalette: INCLUDE "gfx/pics/quagsire/shiny.pal" -EspeonPalette: INCLUDE "gfx/pics/espeon/normal.pal" -EspeonShinyPalette: INCLUDE "gfx/pics/espeon/shiny.pal" -UmbreonPalette: INCLUDE "gfx/pics/umbreon/normal.pal" -UmbreonShinyPalette: INCLUDE "gfx/pics/umbreon/shiny.pal" -MurkrowPalette: INCLUDE "gfx/pics/murkrow/normal.pal" -MurkrowShinyPalette: INCLUDE "gfx/pics/murkrow/shiny.pal" -SlowkingPalette: INCLUDE "gfx/pics/slowking/normal.pal" -SlowkingShinyPalette: INCLUDE "gfx/pics/slowking/shiny.pal" -MisdreavusPalette: INCLUDE "gfx/pics/misdreavus/normal.pal" -MisdreavusShinyPalette: INCLUDE "gfx/pics/misdreavus/shiny.pal" -UnownPalette: INCLUDE "gfx/pics/unown/normal.pal" -UnownShinyPalette: INCLUDE "gfx/pics/unown/shiny.pal" -WobbuffetPalette: INCLUDE "gfx/pics/wobbuffet/normal.pal" -WobbuffetShinyPalette: INCLUDE "gfx/pics/wobbuffet/shiny.pal" -GirafarigPalette: INCLUDE "gfx/pics/girafarig/normal.pal" -GirafarigShinyPalette: INCLUDE "gfx/pics/girafarig/shiny.pal" -PinecoPalette: INCLUDE "gfx/pics/pineco/normal.pal" -PinecoShinyPalette: INCLUDE "gfx/pics/pineco/shiny.pal" -ForretressPalette: INCLUDE "gfx/pics/forretress/normal.pal" -ForretressShinyPalette: INCLUDE "gfx/pics/forretress/shiny.pal" -DunsparcePalette: INCLUDE "gfx/pics/dunsparce/normal.pal" -DunsparceShinyPalette: INCLUDE "gfx/pics/dunsparce/shiny.pal" -GligarPalette: INCLUDE "gfx/pics/gligar/normal.pal" -GligarShinyPalette: INCLUDE "gfx/pics/gligar/shiny.pal" -SteelixPalette: INCLUDE "gfx/pics/steelix/normal.pal" -SteelixShinyPalette: INCLUDE "gfx/pics/steelix/shiny.pal" -SnubbullPalette: INCLUDE "gfx/pics/snubbull/normal.pal" -SnubbullShinyPalette: INCLUDE "gfx/pics/snubbull/shiny.pal" -GranbullPalette: INCLUDE "gfx/pics/granbull/normal.pal" -GranbullShinyPalette: INCLUDE "gfx/pics/granbull/shiny.pal" -QwilfishPalette: INCLUDE "gfx/pics/qwilfish/normal.pal" -QwilfishShinyPalette: INCLUDE "gfx/pics/qwilfish/shiny.pal" -ScizorPalette: INCLUDE "gfx/pics/scizor/normal.pal" -ScizorShinyPalette: INCLUDE "gfx/pics/scizor/shiny.pal" -ShucklePalette: INCLUDE "gfx/pics/shuckle/normal.pal" -ShuckleShinyPalette: INCLUDE "gfx/pics/shuckle/shiny.pal" -HeracrossPalette: INCLUDE "gfx/pics/heracross/normal.pal" -HeracrossShinyPalette: INCLUDE "gfx/pics/heracross/shiny.pal" -SneaselPalette: INCLUDE "gfx/pics/sneasel/normal.pal" -SneaselShinyPalette: INCLUDE "gfx/pics/sneasel/shiny.pal" -TeddiursaPalette: INCLUDE "gfx/pics/teddiursa/normal.pal" -TeddiursaShinyPalette: INCLUDE "gfx/pics/teddiursa/shiny.pal" -UrsaringPalette: INCLUDE "gfx/pics/ursaring/normal.pal" -UrsaringShinyPalette: INCLUDE "gfx/pics/ursaring/shiny.pal" -SlugmaPalette: INCLUDE "gfx/pics/slugma/normal.pal" -SlugmaShinyPalette: INCLUDE "gfx/pics/slugma/shiny.pal" -MagcargoPalette: INCLUDE "gfx/pics/magcargo/normal.pal" -MagcargoShinyPalette: INCLUDE "gfx/pics/magcargo/shiny.pal" -SwinubPalette: INCLUDE "gfx/pics/swinub/normal.pal" -SwinubShinyPalette: INCLUDE "gfx/pics/swinub/shiny.pal" -PiloswinePalette: INCLUDE "gfx/pics/piloswine/normal.pal" -PiloswineShinyPalette: INCLUDE "gfx/pics/piloswine/shiny.pal" -CorsolaPalette: INCLUDE "gfx/pics/corsola/normal.pal" -CorsolaShinyPalette: INCLUDE "gfx/pics/corsola/shiny.pal" -RemoraidPalette: INCLUDE "gfx/pics/remoraid/normal.pal" -RemoraidShinyPalette: INCLUDE "gfx/pics/remoraid/shiny.pal" -OctilleryPalette: INCLUDE "gfx/pics/octillery/normal.pal" -OctilleryShinyPalette: INCLUDE "gfx/pics/octillery/shiny.pal" -DelibirdPalette: INCLUDE "gfx/pics/delibird/normal.pal" -DelibirdShinyPalette: INCLUDE "gfx/pics/delibird/shiny.pal" -MantinePalette: INCLUDE "gfx/pics/mantine/normal.pal" -MantineShinyPalette: INCLUDE "gfx/pics/mantine/shiny.pal" -SkarmoryPalette: INCLUDE "gfx/pics/skarmory/normal.pal" -SkarmoryShinyPalette: INCLUDE "gfx/pics/skarmory/shiny.pal" -HoundourPalette: INCLUDE "gfx/pics/houndour/normal.pal" -HoundourShinyPalette: INCLUDE "gfx/pics/houndour/shiny.pal" -HoundoomPalette: INCLUDE "gfx/pics/houndoom/normal.pal" -HoundoomShinyPalette: INCLUDE "gfx/pics/houndoom/shiny.pal" -KingdraPalette: INCLUDE "gfx/pics/kingdra/normal.pal" -KingdraShinyPalette: INCLUDE "gfx/pics/kingdra/shiny.pal" -PhanpyPalette: INCLUDE "gfx/pics/phanpy/normal.pal" -PhanpyShinyPalette: INCLUDE "gfx/pics/phanpy/shiny.pal" -DonphanPalette: INCLUDE "gfx/pics/donphan/normal.pal" -DonphanShinyPalette: INCLUDE "gfx/pics/donphan/shiny.pal" -Porygon2Palette: INCLUDE "gfx/pics/porygon2/normal.pal" -Porygon2ShinyPalette: INCLUDE "gfx/pics/porygon2/shiny.pal" -StantlerPalette: INCLUDE "gfx/pics/stantler/normal.pal" -StantlerShinyPalette: INCLUDE "gfx/pics/stantler/shiny.pal" -SmearglePalette: INCLUDE "gfx/pics/smeargle/normal.pal" -SmeargleShinyPalette: INCLUDE "gfx/pics/smeargle/shiny.pal" -TyroguePalette: INCLUDE "gfx/pics/tyrogue/normal.pal" -TyrogueShinyPalette: INCLUDE "gfx/pics/tyrogue/shiny.pal" -HitmontopPalette: INCLUDE "gfx/pics/hitmontop/normal.pal" -HitmontopShinyPalette: INCLUDE "gfx/pics/hitmontop/shiny.pal" -SmoochumPalette: INCLUDE "gfx/pics/smoochum/normal.pal" -SmoochumShinyPalette: INCLUDE "gfx/pics/smoochum/shiny.pal" -ElekidPalette: INCLUDE "gfx/pics/elekid/normal.pal" -ElekidShinyPalette: INCLUDE "gfx/pics/elekid/shiny.pal" -MagbyPalette: INCLUDE "gfx/pics/magby/normal.pal" -MagbyShinyPalette: INCLUDE "gfx/pics/magby/shiny.pal" -MiltankPalette: INCLUDE "gfx/pics/miltank/normal.pal" -MiltankShinyPalette: INCLUDE "gfx/pics/miltank/shiny.pal" -BlisseyPalette: INCLUDE "gfx/pics/blissey/normal.pal" -BlisseyShinyPalette: INCLUDE "gfx/pics/blissey/shiny.pal" -RaikouPalette: INCLUDE "gfx/pics/raikou/normal.pal" -RaikouShinyPalette: INCLUDE "gfx/pics/raikou/shiny.pal" -EnteiPalette: INCLUDE "gfx/pics/entei/normal.pal" -EnteiShinyPalette: INCLUDE "gfx/pics/entei/shiny.pal" -SuicunePalette: INCLUDE "gfx/pics/suicune/normal.pal" -SuicuneShinyPalette: INCLUDE "gfx/pics/suicune/shiny.pal" -LarvitarPalette: INCLUDE "gfx/pics/larvitar/normal.pal" -LarvitarShinyPalette: INCLUDE "gfx/pics/larvitar/shiny.pal" -PupitarPalette: INCLUDE "gfx/pics/pupitar/normal.pal" -PupitarShinyPalette: INCLUDE "gfx/pics/pupitar/shiny.pal" -TyranitarPalette: INCLUDE "gfx/pics/tyranitar/normal.pal" -TyranitarShinyPalette: INCLUDE "gfx/pics/tyranitar/shiny.pal" -LugiaPalette: INCLUDE "gfx/pics/lugia/normal.pal" -LugiaShinyPalette: INCLUDE "gfx/pics/lugia/shiny.pal" -HoOhPalette: INCLUDE "gfx/pics/ho_oh/normal.pal" -HoOhShinyPalette: INCLUDE "gfx/pics/ho_oh/shiny.pal" -CelebiPalette: INCLUDE "gfx/pics/celebi/normal.pal" -CelebiShinyPalette: INCLUDE "gfx/pics/celebi/shiny.pal" - -; 252 - RGB 30, 26, 11 - RGB 23, 16, 00 -; 252 shiny - RGB 30, 26, 11 - RGB 23, 16, 00 - -; Egg - RGB 30, 26, 11 - RGB 23, 16, 00 -; Egg shiny - RGB 30, 26, 11 - RGB 23, 16, 00 - -; 254 - RGB 30, 26, 11 - RGB 23, 16, 00 -; 254 shiny - RGB 30, 26, 11 - RGB 23, 16, 00 - -; 255 - RGB 23, 23, 23 - RGB 17, 17, 17 -; 255 shiny - RGB 23, 23, 23 - RGB 17, 17, 17 - -; b0ce diff --git a/gfx/pics/paras/anim0.asm b/gfx/pics/paras/anim0.asm deleted file mode 100644 index 6fcc935e9..000000000 --- a/gfx/pics/paras/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 10 - frame 1, 14 - frame 2, 32 - frame 1, 08 - endanim -; 0xd0b4f diff --git a/gfx/pics/paras/anim1.asm b/gfx/pics/paras/anim1.asm deleted file mode 100644 index 3ce495f04..000000000 --- a/gfx/pics/paras/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1a8b diff --git a/gfx/pics/paras/back.2bpp.lz.b5a4d1e2 b/gfx/pics/paras/back.2bpp.lz.b5a4d1e2 deleted file mode 100644 index d6c3d4a62..000000000 Binary files a/gfx/pics/paras/back.2bpp.lz.b5a4d1e2 and /dev/null differ diff --git a/gfx/pics/paras/back.png b/gfx/pics/paras/back.png deleted file mode 100644 index 4962bde38..000000000 Binary files a/gfx/pics/paras/back.png and /dev/null differ diff --git a/gfx/pics/paras/front.animated.2bpp.lz.37a2c2f8 b/gfx/pics/paras/front.animated.2bpp.lz.37a2c2f8 deleted file mode 100644 index 927c831d0..000000000 Binary files a/gfx/pics/paras/front.animated.2bpp.lz.37a2c2f8 and /dev/null differ diff --git a/gfx/pics/paras/front.png b/gfx/pics/paras/front.png deleted file mode 100644 index 9e67fdc9e..000000000 Binary files a/gfx/pics/paras/front.png and /dev/null differ diff --git a/gfx/pics/paras/shiny.pal b/gfx/pics/paras/shiny.pal deleted file mode 100644 index 7a63c68d7..000000000 --- a/gfx/pics/paras/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 19, 03 - RGB 14, 13, 01 - diff --git a/gfx/pics/parasect/anim0.asm b/gfx/pics/parasect/anim0.asm deleted file mode 100644 index e9e253cee..000000000 --- a/gfx/pics/parasect/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - setrepeat 2 - frame 1, 08 - frame 2, 10 - frame 1, 08 - frame 0, 10 - dorepeat 1 - frame 4, 20 - setrepeat 3 - frame 0, 04 - frame 4, 04 - dorepeat 8 - endanim -; 0xd0b66 diff --git a/gfx/pics/parasect/anim1.asm b/gfx/pics/parasect/anim1.asm deleted file mode 100644 index 8275690a6..000000000 --- a/gfx/pics/parasect/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 5, 30 - frame 0, 05 - frame 4, 20 - endanim -; 0xd1a92 diff --git a/gfx/pics/parasect/back.2bpp.lz.ed08ef08 b/gfx/pics/parasect/back.2bpp.lz.ed08ef08 deleted file mode 100644 index a63677ff7..000000000 Binary files a/gfx/pics/parasect/back.2bpp.lz.ed08ef08 and /dev/null differ diff --git a/gfx/pics/parasect/back.png b/gfx/pics/parasect/back.png deleted file mode 100644 index c0707e7b5..000000000 Binary files a/gfx/pics/parasect/back.png and /dev/null differ diff --git a/gfx/pics/parasect/front.animated.2bpp.lz.f78f9f36 b/gfx/pics/parasect/front.animated.2bpp.lz.f78f9f36 deleted file mode 100644 index f1743d07e..000000000 Binary files a/gfx/pics/parasect/front.animated.2bpp.lz.f78f9f36 and /dev/null differ diff --git a/gfx/pics/parasect/front.png b/gfx/pics/parasect/front.png deleted file mode 100644 index 165d0a012..000000000 Binary files a/gfx/pics/parasect/front.png and /dev/null differ diff --git a/gfx/pics/parasect/shiny.pal b/gfx/pics/parasect/shiny.pal deleted file mode 100644 index 343a793bb..000000000 --- a/gfx/pics/parasect/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 21, 09 - RGB 18, 16, 05 - diff --git a/gfx/pics/persian/anim0.asm b/gfx/pics/persian/anim0.asm deleted file mode 100644 index ae771c09c..000000000 --- a/gfx/pics/persian/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 4, 12 - frame 1, 32 - frame 0, 12 - frame 2, 10 - frame 3, 08 - frame 2, 10 - frame 3, 08 - frame 2, 06 - endanim -; 0xd0bd0 diff --git a/gfx/pics/persian/anim1.asm b/gfx/pics/persian/anim1.asm deleted file mode 100644 index ca9129bfa..000000000 --- a/gfx/pics/persian/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd1ad0 diff --git a/gfx/pics/persian/back.2bpp.lz.0e1c1c9a b/gfx/pics/persian/back.2bpp.lz.0e1c1c9a deleted file mode 100644 index e615d47fb..000000000 Binary files a/gfx/pics/persian/back.2bpp.lz.0e1c1c9a and /dev/null differ diff --git a/gfx/pics/persian/back.png b/gfx/pics/persian/back.png deleted file mode 100644 index 476964b80..000000000 Binary files a/gfx/pics/persian/back.png and /dev/null differ diff --git a/gfx/pics/persian/front.animated.2bpp.lz.0e6a2521 b/gfx/pics/persian/front.animated.2bpp.lz.0e6a2521 deleted file mode 100644 index 1f13a0cca..000000000 Binary files a/gfx/pics/persian/front.animated.2bpp.lz.0e6a2521 and /dev/null differ diff --git a/gfx/pics/persian/front.png b/gfx/pics/persian/front.png deleted file mode 100644 index e9a2be761..000000000 Binary files a/gfx/pics/persian/front.png and /dev/null differ diff --git a/gfx/pics/persian/shiny.pal b/gfx/pics/persian/shiny.pal deleted file mode 100644 index 6ede92a01..000000000 --- a/gfx/pics/persian/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 28, 10 - RGB 28, 09, 27 - diff --git a/gfx/pics/phanpy/anim0.asm b/gfx/pics/phanpy/anim0.asm deleted file mode 100644 index 7ec513762..000000000 --- a/gfx/pics/phanpy/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 10 - frame 2, 10 - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 3 - endanim -; 0xd157e diff --git a/gfx/pics/phanpy/anim1.asm b/gfx/pics/phanpy/anim1.asm deleted file mode 100644 index 43148da49..000000000 --- a/gfx/pics/phanpy/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2160 diff --git a/gfx/pics/phanpy/back.2bpp.lz.a5c509b8 b/gfx/pics/phanpy/back.2bpp.lz.a5c509b8 deleted file mode 100644 index cef1bf442..000000000 Binary files a/gfx/pics/phanpy/back.2bpp.lz.a5c509b8 and /dev/null differ diff --git a/gfx/pics/phanpy/back.png b/gfx/pics/phanpy/back.png deleted file mode 100644 index 5efafc74b..000000000 Binary files a/gfx/pics/phanpy/back.png and /dev/null differ diff --git a/gfx/pics/phanpy/front.animated.2bpp.lz.53b49445 b/gfx/pics/phanpy/front.animated.2bpp.lz.53b49445 deleted file mode 100644 index d919487b8..000000000 Binary files a/gfx/pics/phanpy/front.animated.2bpp.lz.53b49445 and /dev/null differ diff --git a/gfx/pics/phanpy/front.png b/gfx/pics/phanpy/front.png deleted file mode 100644 index e2e0eeb14..000000000 Binary files a/gfx/pics/phanpy/front.png and /dev/null differ diff --git a/gfx/pics/phanpy/shiny.pal b/gfx/pics/phanpy/shiny.pal deleted file mode 100644 index 64b15d904..000000000 --- a/gfx/pics/phanpy/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 24, 25 - RGB 24, 01, 06 - diff --git a/gfx/pics/pic_pointers.asm b/gfx/pics/pic_pointers.asm deleted file mode 100644 index 58631e09a..000000000 --- a/gfx/pics/pic_pointers.asm +++ /dev/null @@ -1,511 +0,0 @@ -PicPointers:: -; entries correspond to constants/pokemon_constants.asm, two apiece - dba_pic BulbasaurFrontpic - dba_pic BulbasaurBackpic - dba_pic IvysaurFrontpic - dba_pic IvysaurBackpic - dba_pic VenusaurFrontpic - dba_pic VenusaurBackpic - dba_pic CharmanderFrontpic - dba_pic CharmanderBackpic - dba_pic CharmeleonFrontpic - dba_pic CharmeleonBackpic - dba_pic CharizardFrontpic - dba_pic CharizardBackpic - dba_pic SquirtleFrontpic - dba_pic SquirtleBackpic - dba_pic WartortleFrontpic - dba_pic WartortleBackpic - dba_pic BlastoiseFrontpic - dba_pic BlastoiseBackpic - dba_pic CaterpieFrontpic - dba_pic CaterpieBackpic - dba_pic MetapodFrontpic - dba_pic MetapodBackpic - dba_pic ButterfreeFrontpic - dba_pic ButterfreeBackpic - dba_pic WeedleFrontpic - dba_pic WeedleBackpic - dba_pic KakunaFrontpic - dba_pic KakunaBackpic - dba_pic BeedrillFrontpic - dba_pic BeedrillBackpic - dba_pic PidgeyFrontpic - dba_pic PidgeyBackpic - dba_pic PidgeottoFrontpic - dba_pic PidgeottoBackpic - dba_pic PidgeotFrontpic - dba_pic PidgeotBackpic - dba_pic RattataFrontpic - dba_pic RattataBackpic - dba_pic RaticateFrontpic - dba_pic RaticateBackpic - dba_pic SpearowFrontpic - dba_pic SpearowBackpic - dba_pic FearowFrontpic - dba_pic FearowBackpic - dba_pic EkansFrontpic - dba_pic EkansBackpic - dba_pic ArbokFrontpic - dba_pic ArbokBackpic - dba_pic PikachuFrontpic - dba_pic PikachuBackpic - dba_pic RaichuFrontpic - dba_pic RaichuBackpic - dba_pic SandshrewFrontpic - dba_pic SandshrewBackpic - dba_pic SandslashFrontpic - dba_pic SandslashBackpic - dba_pic NidoranFFrontpic - dba_pic NidoranFBackpic - dba_pic NidorinaFrontpic - dba_pic NidorinaBackpic - dba_pic NidoqueenFrontpic - dba_pic NidoqueenBackpic - dba_pic NidoranMFrontpic - dba_pic NidoranMBackpic - dba_pic NidorinoFrontpic - dba_pic NidorinoBackpic - dba_pic NidokingFrontpic - dba_pic NidokingBackpic - dba_pic ClefairyFrontpic - dba_pic ClefairyBackpic - dba_pic ClefableFrontpic - dba_pic ClefableBackpic - dba_pic VulpixFrontpic - dba_pic VulpixBackpic - dba_pic NinetalesFrontpic - dba_pic NinetalesBackpic - dba_pic JigglypuffFrontpic - dba_pic JigglypuffBackpic - dba_pic WigglytuffFrontpic - dba_pic WigglytuffBackpic - dba_pic ZubatFrontpic - dba_pic ZubatBackpic - dba_pic GolbatFrontpic - dba_pic GolbatBackpic - dba_pic OddishFrontpic - dba_pic OddishBackpic - dba_pic GloomFrontpic - dba_pic GloomBackpic - dba_pic VileplumeFrontpic - dba_pic VileplumeBackpic - dba_pic ParasFrontpic - dba_pic ParasBackpic - dba_pic ParasectFrontpic - dba_pic ParasectBackpic - dba_pic VenonatFrontpic - dba_pic VenonatBackpic - dba_pic VenomothFrontpic - dba_pic VenomothBackpic - dba_pic DiglettFrontpic - dba_pic DiglettBackpic - dba_pic DugtrioFrontpic - dba_pic DugtrioBackpic - dba_pic MeowthFrontpic - dba_pic MeowthBackpic - dba_pic PersianFrontpic - dba_pic PersianBackpic - dba_pic PsyduckFrontpic - dba_pic PsyduckBackpic - dba_pic GolduckFrontpic - dba_pic GolduckBackpic - dba_pic MankeyFrontpic - dba_pic MankeyBackpic - dba_pic PrimeapeFrontpic - dba_pic PrimeapeBackpic - dba_pic GrowlitheFrontpic - dba_pic GrowlitheBackpic - dba_pic ArcanineFrontpic - dba_pic ArcanineBackpic - dba_pic PoliwagFrontpic - dba_pic PoliwagBackpic - dba_pic PoliwhirlFrontpic - dba_pic PoliwhirlBackpic - dba_pic PoliwrathFrontpic - dba_pic PoliwrathBackpic - dba_pic AbraFrontpic - dba_pic AbraBackpic - dba_pic KadabraFrontpic - dba_pic KadabraBackpic - dba_pic AlakazamFrontpic - dba_pic AlakazamBackpic - dba_pic MachopFrontpic - dba_pic MachopBackpic - dba_pic MachokeFrontpic - dba_pic MachokeBackpic - dba_pic MachampFrontpic - dba_pic MachampBackpic - dba_pic BellsproutFrontpic - dba_pic BellsproutBackpic - dba_pic WeepinbellFrontpic - dba_pic WeepinbellBackpic - dba_pic VictreebelFrontpic - dba_pic VictreebelBackpic - dba_pic TentacoolFrontpic - dba_pic TentacoolBackpic - dba_pic TentacruelFrontpic - dba_pic TentacruelBackpic - dba_pic GeodudeFrontpic - dba_pic GeodudeBackpic - dba_pic GravelerFrontpic - dba_pic GravelerBackpic - dba_pic GolemFrontpic - dba_pic GolemBackpic - dba_pic PonytaFrontpic - dba_pic PonytaBackpic - dba_pic RapidashFrontpic - dba_pic RapidashBackpic - dba_pic SlowpokeFrontpic - dba_pic SlowpokeBackpic - dba_pic SlowbroFrontpic - dba_pic SlowbroBackpic - dba_pic MagnemiteFrontpic - dba_pic MagnemiteBackpic - dba_pic MagnetonFrontpic - dba_pic MagnetonBackpic - dba_pic FarfetchDFrontpic - dba_pic FarfetchDBackpic - dba_pic DoduoFrontpic - dba_pic DoduoBackpic - dba_pic DodrioFrontpic - dba_pic DodrioBackpic - dba_pic SeelFrontpic - dba_pic SeelBackpic - dba_pic DewgongFrontpic - dba_pic DewgongBackpic - dba_pic GrimerFrontpic - dba_pic GrimerBackpic - dba_pic MukFrontpic - dba_pic MukBackpic - dba_pic ShellderFrontpic - dba_pic ShellderBackpic - dba_pic CloysterFrontpic - dba_pic CloysterBackpic - dba_pic GastlyFrontpic - dba_pic GastlyBackpic - dba_pic HaunterFrontpic - dba_pic HaunterBackpic - dba_pic GengarFrontpic - dba_pic GengarBackpic - dba_pic OnixFrontpic - dba_pic OnixBackpic - dba_pic DrowzeeFrontpic - dba_pic DrowzeeBackpic - dba_pic HypnoFrontpic - dba_pic HypnoBackpic - dba_pic KrabbyFrontpic - dba_pic KrabbyBackpic - dba_pic KinglerFrontpic - dba_pic KinglerBackpic - dba_pic VoltorbFrontpic - dba_pic VoltorbBackpic - dba_pic ElectrodeFrontpic - dba_pic ElectrodeBackpic - dba_pic ExeggcuteFrontpic - dba_pic ExeggcuteBackpic - dba_pic ExeggutorFrontpic - dba_pic ExeggutorBackpic - dba_pic CuboneFrontpic - dba_pic CuboneBackpic - dba_pic MarowakFrontpic - dba_pic MarowakBackpic - dba_pic HitmonleeFrontpic - dba_pic HitmonleeBackpic - dba_pic HitmonchanFrontpic - dba_pic HitmonchanBackpic - dba_pic LickitungFrontpic - dba_pic LickitungBackpic - dba_pic KoffingFrontpic - dba_pic KoffingBackpic - dba_pic WeezingFrontpic - dba_pic WeezingBackpic - dba_pic RhyhornFrontpic - dba_pic RhyhornBackpic - dba_pic RhydonFrontpic - dba_pic RhydonBackpic - dba_pic ChanseyFrontpic - dba_pic ChanseyBackpic - dba_pic TangelaFrontpic - dba_pic TangelaBackpic - dba_pic KangaskhanFrontpic - dba_pic KangaskhanBackpic - dba_pic HorseaFrontpic - dba_pic HorseaBackpic - dba_pic SeadraFrontpic - dba_pic SeadraBackpic - dba_pic GoldeenFrontpic - dba_pic GoldeenBackpic - dba_pic SeakingFrontpic - dba_pic SeakingBackpic - dba_pic StaryuFrontpic - dba_pic StaryuBackpic - dba_pic StarmieFrontpic - dba_pic StarmieBackpic - dba_pic MrMimeFrontpic - dba_pic MrMimeBackpic - dba_pic ScytherFrontpic - dba_pic ScytherBackpic - dba_pic JynxFrontpic - dba_pic JynxBackpic - dba_pic ElectabuzzFrontpic - dba_pic ElectabuzzBackpic - dba_pic MagmarFrontpic - dba_pic MagmarBackpic - dba_pic PinsirFrontpic - dba_pic PinsirBackpic - dba_pic TaurosFrontpic - dba_pic TaurosBackpic - dba_pic MagikarpFrontpic - dba_pic MagikarpBackpic - dba_pic GyaradosFrontpic - dba_pic GyaradosBackpic - dba_pic LaprasFrontpic - dba_pic LaprasBackpic - dba_pic DittoFrontpic - dba_pic DittoBackpic - dba_pic EeveeFrontpic - dba_pic EeveeBackpic - dba_pic VaporeonFrontpic - dba_pic VaporeonBackpic - dba_pic JolteonFrontpic - dba_pic JolteonBackpic - dba_pic FlareonFrontpic - dba_pic FlareonBackpic - dba_pic PorygonFrontpic - dba_pic PorygonBackpic - dba_pic OmanyteFrontpic - dba_pic OmanyteBackpic - dba_pic OmastarFrontpic - dba_pic OmastarBackpic - dba_pic KabutoFrontpic - dba_pic KabutoBackpic - dba_pic KabutopsFrontpic - dba_pic KabutopsBackpic - dba_pic AerodactylFrontpic - dba_pic AerodactylBackpic - dba_pic SnorlaxFrontpic - dba_pic SnorlaxBackpic - dba_pic ArticunoFrontpic - dba_pic ArticunoBackpic - dba_pic ZapdosFrontpic - dba_pic ZapdosBackpic - dba_pic MoltresFrontpic - dba_pic MoltresBackpic - dba_pic DratiniFrontpic - dba_pic DratiniBackpic - dba_pic DragonairFrontpic - dba_pic DragonairBackpic - dba_pic DragoniteFrontpic - dba_pic DragoniteBackpic - dba_pic MewtwoFrontpic - dba_pic MewtwoBackpic - dba_pic MewFrontpic - dba_pic MewBackpic - dba_pic ChikoritaFrontpic - dba_pic ChikoritaBackpic - dba_pic BayleefFrontpic - dba_pic BayleefBackpic - dba_pic MeganiumFrontpic - dba_pic MeganiumBackpic - dba_pic CyndaquilFrontpic - dba_pic CyndaquilBackpic - dba_pic QuilavaFrontpic - dba_pic QuilavaBackpic - dba_pic TyphlosionFrontpic - dba_pic TyphlosionBackpic - dba_pic TotodileFrontpic - dba_pic TotodileBackpic - dba_pic CroconawFrontpic - dba_pic CroconawBackpic - dba_pic FeraligatrFrontpic - dba_pic FeraligatrBackpic - dba_pic SentretFrontpic - dba_pic SentretBackpic - dba_pic FurretFrontpic - dba_pic FurretBackpic - dba_pic HoothootFrontpic - dba_pic HoothootBackpic - dba_pic NoctowlFrontpic - dba_pic NoctowlBackpic - dba_pic LedybaFrontpic - dba_pic LedybaBackpic - dba_pic LedianFrontpic - dba_pic LedianBackpic - dba_pic SpinarakFrontpic - dba_pic SpinarakBackpic - dba_pic AriadosFrontpic - dba_pic AriadosBackpic - dba_pic CrobatFrontpic - dba_pic CrobatBackpic - dba_pic ChinchouFrontpic - dba_pic ChinchouBackpic - dba_pic LanturnFrontpic - dba_pic LanturnBackpic - dba_pic PichuFrontpic - dba_pic PichuBackpic - dba_pic CleffaFrontpic - dba_pic CleffaBackpic - dba_pic IgglybuffFrontpic - dba_pic IgglybuffBackpic - dba_pic TogepiFrontpic - dba_pic TogepiBackpic - dba_pic TogeticFrontpic - dba_pic TogeticBackpic - dba_pic NatuFrontpic - dba_pic NatuBackpic - dba_pic XatuFrontpic - dba_pic XatuBackpic - dba_pic MareepFrontpic - dba_pic MareepBackpic - dba_pic FlaaffyFrontpic - dba_pic FlaaffyBackpic - dba_pic AmpharosFrontpic - dba_pic AmpharosBackpic - dba_pic BellossomFrontpic - dba_pic BellossomBackpic - dba_pic MarillFrontpic - dba_pic MarillBackpic - dba_pic AzumarillFrontpic - dba_pic AzumarillBackpic - dba_pic SudowoodoFrontpic - dba_pic SudowoodoBackpic - dba_pic PolitoedFrontpic - dba_pic PolitoedBackpic - dba_pic HoppipFrontpic - dba_pic HoppipBackpic - dba_pic SkiploomFrontpic - dba_pic SkiploomBackpic - dba_pic JumpluffFrontpic - dba_pic JumpluffBackpic - dba_pic AipomFrontpic - dba_pic AipomBackpic - dba_pic SunkernFrontpic - dba_pic SunkernBackpic - dba_pic SunfloraFrontpic - dba_pic SunfloraBackpic - dba_pic YanmaFrontpic - dba_pic YanmaBackpic - dba_pic WooperFrontpic - dba_pic WooperBackpic - dba_pic QuagsireFrontpic - dba_pic QuagsireBackpic - dba_pic EspeonFrontpic - dba_pic EspeonBackpic - dba_pic UmbreonFrontpic - dba_pic UmbreonBackpic - dba_pic MurkrowFrontpic - dba_pic MurkrowBackpic - dba_pic SlowkingFrontpic - dba_pic SlowkingBackpic - dba_pic MisdreavusFrontpic - dba_pic MisdreavusBackpic - - ; Unown pics have their own table. See UnownPicPointers - dbw -1, -1 - dbw -1, -1 - - dba_pic WobbuffetFrontpic - dba_pic WobbuffetBackpic - dba_pic GirafarigFrontpic - dba_pic GirafarigBackpic - dba_pic PinecoFrontpic - dba_pic PinecoBackpic - dba_pic ForretressFrontpic - dba_pic ForretressBackpic - dba_pic DunsparceFrontpic - dba_pic DunsparceBackpic - dba_pic GligarFrontpic - dba_pic GligarBackpic - dba_pic SteelixFrontpic - dba_pic SteelixBackpic - dba_pic SnubbullFrontpic - dba_pic SnubbullBackpic - dba_pic GranbullFrontpic - dba_pic GranbullBackpic - dba_pic QwilfishFrontpic - dba_pic QwilfishBackpic - dba_pic ScizorFrontpic - dba_pic ScizorBackpic - dba_pic ShuckleFrontpic - dba_pic ShuckleBackpic - dba_pic HeracrossFrontpic - dba_pic HeracrossBackpic - dba_pic SneaselFrontpic - dba_pic SneaselBackpic - dba_pic TeddiursaFrontpic - dba_pic TeddiursaBackpic - dba_pic UrsaringFrontpic - dba_pic UrsaringBackpic - dba_pic SlugmaFrontpic - dba_pic SlugmaBackpic - dba_pic MagcargoFrontpic - dba_pic MagcargoBackpic - dba_pic SwinubFrontpic - dba_pic SwinubBackpic - dba_pic PiloswineFrontpic - dba_pic PiloswineBackpic - dba_pic CorsolaFrontpic - dba_pic CorsolaBackpic - dba_pic RemoraidFrontpic - dba_pic RemoraidBackpic - dba_pic OctilleryFrontpic - dba_pic OctilleryBackpic - dba_pic DelibirdFrontpic - dba_pic DelibirdBackpic - dba_pic MantineFrontpic - dba_pic MantineBackpic - dba_pic SkarmoryFrontpic - dba_pic SkarmoryBackpic - dba_pic HoundourFrontpic - dba_pic HoundourBackpic - dba_pic HoundoomFrontpic - dba_pic HoundoomBackpic - dba_pic KingdraFrontpic - dba_pic KingdraBackpic - dba_pic PhanpyFrontpic - dba_pic PhanpyBackpic - dba_pic DonphanFrontpic - dba_pic DonphanBackpic - dba_pic Porygon2Frontpic - dba_pic Porygon2Backpic - dba_pic StantlerFrontpic - dba_pic StantlerBackpic - dba_pic SmeargleFrontpic - dba_pic SmeargleBackpic - dba_pic TyrogueFrontpic - dba_pic TyrogueBackpic - dba_pic HitmontopFrontpic - dba_pic HitmontopBackpic - dba_pic SmoochumFrontpic - dba_pic SmoochumBackpic - dba_pic ElekidFrontpic - dba_pic ElekidBackpic - dba_pic MagbyFrontpic - dba_pic MagbyBackpic - dba_pic MiltankFrontpic - dba_pic MiltankBackpic - dba_pic BlisseyFrontpic - dba_pic BlisseyBackpic - dba_pic RaikouFrontpic - dba_pic RaikouBackpic - dba_pic EnteiFrontpic - dba_pic EnteiBackpic - dba_pic SuicuneFrontpic - dba_pic SuicuneBackpic - dba_pic LarvitarFrontpic - dba_pic LarvitarBackpic - dba_pic PupitarFrontpic - dba_pic PupitarBackpic - dba_pic TyranitarFrontpic - dba_pic TyranitarBackpic - dba_pic LugiaFrontpic - dba_pic LugiaBackpic - dba_pic HoOhFrontpic - dba_pic HoOhBackpic - dba_pic CelebiFrontpic - dba_pic CelebiBackpic - dbw -1, -1 ; unused - dbw -1, -1 ; unused - dba_pic EggPic - dbw -1, -1 ; unused diff --git a/gfx/pics/pichu/anim0.asm b/gfx/pics/pichu/anim0.asm deleted file mode 100644 index 50a1ae73c..000000000 --- a/gfx/pics/pichu/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 1, 22 - frame 2, 12 - frame 4, 08 - endanim -; 0xd1289 diff --git a/gfx/pics/pichu/anim1.asm b/gfx/pics/pichu/anim1.asm deleted file mode 100644 index dd39adcab..000000000 --- a/gfx/pics/pichu/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 04 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1f5f diff --git a/gfx/pics/pichu/back.2bpp.lz.c5580983 b/gfx/pics/pichu/back.2bpp.lz.c5580983 deleted file mode 100644 index 61ab083b3..000000000 Binary files a/gfx/pics/pichu/back.2bpp.lz.c5580983 and /dev/null differ diff --git a/gfx/pics/pichu/back.png b/gfx/pics/pichu/back.png deleted file mode 100644 index 830cf34f4..000000000 Binary files a/gfx/pics/pichu/back.png and /dev/null differ diff --git a/gfx/pics/pichu/front.animated.2bpp.lz.9c1c3bef b/gfx/pics/pichu/front.animated.2bpp.lz.9c1c3bef deleted file mode 100644 index 06712d244..000000000 Binary files a/gfx/pics/pichu/front.animated.2bpp.lz.9c1c3bef and /dev/null differ diff --git a/gfx/pics/pichu/front.png b/gfx/pics/pichu/front.png deleted file mode 100644 index 1557f73fb..000000000 Binary files a/gfx/pics/pichu/front.png and /dev/null differ diff --git a/gfx/pics/pichu/shiny.pal b/gfx/pics/pichu/shiny.pal deleted file mode 100644 index a89172f54..000000000 --- a/gfx/pics/pichu/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 17, 00 - RGB 20, 02, 11 - diff --git a/gfx/pics/pidgeot/anim0.asm b/gfx/pics/pidgeot/anim0.asm deleted file mode 100644 index 34d5d3a98..000000000 --- a/gfx/pics/pidgeot/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 12 - frame 1, 32 - setrepeat 2 - frame 0, 06 - frame 2, 06 - dorepeat 3 - endanim -; 0xd0987 diff --git a/gfx/pics/pidgeot/anim1.asm b/gfx/pics/pidgeot/anim1.asm deleted file mode 100644 index 6ba60e83e..000000000 --- a/gfx/pics/pidgeot/anim1.asm +++ /dev/null @@ -1,9 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - frame 2, 06 - frame 0, 06 - frame 2, 06 - endanim -; 0xd1961 diff --git a/gfx/pics/pidgeot/back.2bpp.lz.7d9e44a5 b/gfx/pics/pidgeot/back.2bpp.lz.7d9e44a5 deleted file mode 100644 index a464dd7d1..000000000 Binary files a/gfx/pics/pidgeot/back.2bpp.lz.7d9e44a5 and /dev/null differ diff --git a/gfx/pics/pidgeot/back.png b/gfx/pics/pidgeot/back.png deleted file mode 100644 index a452584e4..000000000 Binary files a/gfx/pics/pidgeot/back.png and /dev/null differ diff --git a/gfx/pics/pidgeot/front.animated.2bpp.lz.c161ad71 b/gfx/pics/pidgeot/front.animated.2bpp.lz.c161ad71 deleted file mode 100644 index f5cbb3f56..000000000 Binary files a/gfx/pics/pidgeot/front.animated.2bpp.lz.c161ad71 and /dev/null differ diff --git a/gfx/pics/pidgeot/front.png b/gfx/pics/pidgeot/front.png deleted file mode 100644 index a3e598a28..000000000 Binary files a/gfx/pics/pidgeot/front.png and /dev/null differ diff --git a/gfx/pics/pidgeot/shiny.pal b/gfx/pics/pidgeot/shiny.pal deleted file mode 100644 index 68eefb13f..000000000 --- a/gfx/pics/pidgeot/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 20, 14 - RGB 15, 17, 02 - diff --git a/gfx/pics/pidgeotto/anim0.asm b/gfx/pics/pidgeotto/anim0.asm deleted file mode 100644 index 53008855f..000000000 --- a/gfx/pics/pidgeotto/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 07 - frame 2, 07 - frame 3, 07 - frame 2, 30 - setrepeat 2 - frame 3, 06 - frame 2, 06 - dorepeat 5 - frame 2, 20 - endanim -; 0xd097a diff --git a/gfx/pics/pidgeotto/anim1.asm b/gfx/pics/pidgeotto/anim1.asm deleted file mode 100644 index 95a27bb15..000000000 --- a/gfx/pics/pidgeotto/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd1952 diff --git a/gfx/pics/pidgeotto/back.2bpp.lz.8a0dd470 b/gfx/pics/pidgeotto/back.2bpp.lz.8a0dd470 deleted file mode 100644 index d766747ef..000000000 Binary files a/gfx/pics/pidgeotto/back.2bpp.lz.8a0dd470 and /dev/null differ diff --git a/gfx/pics/pidgeotto/back.png b/gfx/pics/pidgeotto/back.png deleted file mode 100644 index 46c5970a4..000000000 Binary files a/gfx/pics/pidgeotto/back.png and /dev/null differ diff --git a/gfx/pics/pidgeotto/front.animated.2bpp.lz.8ce78b51 b/gfx/pics/pidgeotto/front.animated.2bpp.lz.8ce78b51 deleted file mode 100644 index 0fc3a94fd..000000000 Binary files a/gfx/pics/pidgeotto/front.animated.2bpp.lz.8ce78b51 and /dev/null differ diff --git a/gfx/pics/pidgeotto/front.png b/gfx/pics/pidgeotto/front.png deleted file mode 100644 index cdf3f1a28..000000000 Binary files a/gfx/pics/pidgeotto/front.png and /dev/null differ diff --git a/gfx/pics/pidgeotto/shiny.pal b/gfx/pics/pidgeotto/shiny.pal deleted file mode 100644 index 56a28e867..000000000 --- a/gfx/pics/pidgeotto/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 19, 05 - RGB 19, 14, 05 - diff --git a/gfx/pics/pidgey/anim0.asm b/gfx/pics/pidgey/anim0.asm deleted file mode 100644 index 4ca6553d2..000000000 --- a/gfx/pics/pidgey/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 0, 02 - frame 3, 06 - frame 0, 12 - setrepeat 3 - frame 0, 04 - frame 1, 03 - frame 2, 04 - frame 1, 03 - dorepeat 4 - endanim -; 0xd0967 diff --git a/gfx/pics/pidgey/anim1.asm b/gfx/pics/pidgey/anim1.asm deleted file mode 100644 index 25a55fb45..000000000 --- a/gfx/pics/pidgey/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 1, 04 - frame 2, 06 - frame 1, 04 - dorepeat 1 - endanim -; 0xd1949 diff --git a/gfx/pics/pidgey/back.2bpp.lz.027129e8 b/gfx/pics/pidgey/back.2bpp.lz.027129e8 deleted file mode 100644 index 48669456e..000000000 Binary files a/gfx/pics/pidgey/back.2bpp.lz.027129e8 and /dev/null differ diff --git a/gfx/pics/pidgey/back.png b/gfx/pics/pidgey/back.png deleted file mode 100644 index 7ab2fe5fc..000000000 Binary files a/gfx/pics/pidgey/back.png and /dev/null differ diff --git a/gfx/pics/pidgey/front.animated.2bpp.lz.9acd46ca b/gfx/pics/pidgey/front.animated.2bpp.lz.9acd46ca deleted file mode 100644 index 03c579dbf..000000000 Binary files a/gfx/pics/pidgey/front.animated.2bpp.lz.9acd46ca and /dev/null differ diff --git a/gfx/pics/pidgey/front.png b/gfx/pics/pidgey/front.png deleted file mode 100644 index c65e7494d..000000000 Binary files a/gfx/pics/pidgey/front.png and /dev/null differ diff --git a/gfx/pics/pidgey/shiny.pal b/gfx/pics/pidgey/shiny.pal deleted file mode 100644 index e209bc93f..000000000 --- a/gfx/pics/pidgey/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 28, 12 - RGB 20, 19, 08 - diff --git a/gfx/pics/pikachu/anim0.asm b/gfx/pics/pikachu/anim0.asm deleted file mode 100644 index 6a1ac0954..000000000 --- a/gfx/pics/pikachu/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 07 - setrepeat 2 - frame 2, 07 - frame 3, 07 - dorepeat 2 - frame 2, 26 - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 7 - endanim -; 0xd0a02 diff --git a/gfx/pics/pikachu/anim1.asm b/gfx/pics/pikachu/anim1.asm deleted file mode 100644 index 0454a2855..000000000 --- a/gfx/pics/pikachu/anim1.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 3 - frame 0, 05 - frame 5, 05 - dorepeat 1 - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 5 - endanim -; 0xd19ba diff --git a/gfx/pics/pikachu/back.2bpp.lz.98998807 b/gfx/pics/pikachu/back.2bpp.lz.98998807 deleted file mode 100644 index 3f74382ae..000000000 Binary files a/gfx/pics/pikachu/back.2bpp.lz.98998807 and /dev/null differ diff --git a/gfx/pics/pikachu/back.png b/gfx/pics/pikachu/back.png deleted file mode 100644 index 5438e0e5a..000000000 Binary files a/gfx/pics/pikachu/back.png and /dev/null differ diff --git a/gfx/pics/pikachu/front.animated.2bpp.lz.9c100565 b/gfx/pics/pikachu/front.animated.2bpp.lz.9c100565 deleted file mode 100644 index 1dbea0496..000000000 Binary files a/gfx/pics/pikachu/front.animated.2bpp.lz.9c100565 and /dev/null differ diff --git a/gfx/pics/pikachu/front.png b/gfx/pics/pikachu/front.png deleted file mode 100644 index 07dcb4da6..000000000 Binary files a/gfx/pics/pikachu/front.png and /dev/null differ diff --git a/gfx/pics/pikachu/shiny.pal b/gfx/pics/pikachu/shiny.pal deleted file mode 100644 index a89172f54..000000000 --- a/gfx/pics/pikachu/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 17, 00 - RGB 20, 02, 11 - diff --git a/gfx/pics/piloswine/anim0.asm b/gfx/pics/piloswine/anim0.asm deleted file mode 100644 index 5b57b3ef9..000000000 --- a/gfx/pics/piloswine/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 20 - frame 2, 10 - frame 3, 10 - endanim -; 0xd14f6 diff --git a/gfx/pics/piloswine/anim1.asm b/gfx/pics/piloswine/anim1.asm deleted file mode 100644 index c1cba5ee2..000000000 --- a/gfx/pics/piloswine/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 12 - frame 3, 12 - dorepeat 1 - endanim -; 0xd2102 diff --git a/gfx/pics/piloswine/back.2bpp.lz.6fe7da21 b/gfx/pics/piloswine/back.2bpp.lz.6fe7da21 deleted file mode 100644 index 2bdbd05b7..000000000 Binary files a/gfx/pics/piloswine/back.2bpp.lz.6fe7da21 and /dev/null differ diff --git a/gfx/pics/piloswine/back.png b/gfx/pics/piloswine/back.png deleted file mode 100644 index b2963e86f..000000000 Binary files a/gfx/pics/piloswine/back.png and /dev/null differ diff --git a/gfx/pics/piloswine/front.animated.2bpp.lz.f6f37ed2 b/gfx/pics/piloswine/front.animated.2bpp.lz.f6f37ed2 deleted file mode 100644 index 45b87144e..000000000 Binary files a/gfx/pics/piloswine/front.animated.2bpp.lz.f6f37ed2 and /dev/null differ diff --git a/gfx/pics/piloswine/front.png b/gfx/pics/piloswine/front.png deleted file mode 100644 index 822759c1c..000000000 Binary files a/gfx/pics/piloswine/front.png and /dev/null differ diff --git a/gfx/pics/piloswine/shiny.pal b/gfx/pics/piloswine/shiny.pal deleted file mode 100644 index 3afb0539d..000000000 --- a/gfx/pics/piloswine/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 19, 00 - RGB 19, 11, 00 - diff --git a/gfx/pics/pineco/anim0.asm b/gfx/pics/pineco/anim0.asm deleted file mode 100644 index 4579032ec..000000000 --- a/gfx/pics/pineco/anim0.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 1, 06 - frame 2, 18 - endanim -; 0xd1421 diff --git a/gfx/pics/pineco/anim1.asm b/gfx/pics/pineco/anim1.asm deleted file mode 100644 index f1b4e949e..000000000 --- a/gfx/pics/pineco/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd2077 diff --git a/gfx/pics/pineco/back.2bpp.lz.70df8ca3 b/gfx/pics/pineco/back.2bpp.lz.70df8ca3 deleted file mode 100644 index f4baaadb9..000000000 Binary files a/gfx/pics/pineco/back.2bpp.lz.70df8ca3 and /dev/null differ diff --git a/gfx/pics/pineco/back.png b/gfx/pics/pineco/back.png deleted file mode 100644 index ae6299015..000000000 Binary files a/gfx/pics/pineco/back.png and /dev/null differ diff --git a/gfx/pics/pineco/front.animated.2bpp.lz.82d91497 b/gfx/pics/pineco/front.animated.2bpp.lz.82d91497 deleted file mode 100644 index c36a27807..000000000 Binary files a/gfx/pics/pineco/front.animated.2bpp.lz.82d91497 and /dev/null differ diff --git a/gfx/pics/pineco/front.png b/gfx/pics/pineco/front.png deleted file mode 100644 index 2d91d5932..000000000 Binary files a/gfx/pics/pineco/front.png and /dev/null differ diff --git a/gfx/pics/pineco/shiny.pal b/gfx/pics/pineco/shiny.pal deleted file mode 100644 index 33ee632d5..000000000 --- a/gfx/pics/pineco/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 31, 05 - RGB 28, 10, 05 - diff --git a/gfx/pics/pinsir/anim0.asm b/gfx/pics/pinsir/anim0.asm deleted file mode 100644 index f45752006..000000000 --- a/gfx/pics/pinsir/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 12 - frame 2, 08 - setrepeat 2 - frame 3, 12 - frame 4, 12 - dorepeat 3 - endanim -; 0xd0fe4 diff --git a/gfx/pics/pinsir/anim1.asm b/gfx/pics/pinsir/anim1.asm deleted file mode 100644 index 73895c2e0..000000000 --- a/gfx/pics/pinsir/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 08 - frame 1, 08 - dorepeat 1 - endanim -; 0xd1d9c diff --git a/gfx/pics/pinsir/back.2bpp.lz.09ac7dd4 b/gfx/pics/pinsir/back.2bpp.lz.09ac7dd4 deleted file mode 100644 index 8803c8a0a..000000000 Binary files a/gfx/pics/pinsir/back.2bpp.lz.09ac7dd4 and /dev/null differ diff --git a/gfx/pics/pinsir/back.png b/gfx/pics/pinsir/back.png deleted file mode 100644 index 978ba561b..000000000 Binary files a/gfx/pics/pinsir/back.png and /dev/null differ diff --git a/gfx/pics/pinsir/front.animated.2bpp.lz.1e3839f2 b/gfx/pics/pinsir/front.animated.2bpp.lz.1e3839f2 deleted file mode 100644 index d2ec9ecd9..000000000 Binary files a/gfx/pics/pinsir/front.animated.2bpp.lz.1e3839f2 and /dev/null differ diff --git a/gfx/pics/pinsir/front.png b/gfx/pics/pinsir/front.png deleted file mode 100644 index 5bd4c4cee..000000000 Binary files a/gfx/pics/pinsir/front.png and /dev/null differ diff --git a/gfx/pics/pinsir/shiny.pal b/gfx/pics/pinsir/shiny.pal deleted file mode 100644 index 4f586775a..000000000 --- a/gfx/pics/pinsir/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 23, 09 - RGB 11, 11, 15 - diff --git a/gfx/pics/politoed/anim0.asm b/gfx/pics/politoed/anim0.asm deleted file mode 100644 index 72347714f..000000000 --- a/gfx/pics/politoed/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 04 - frame 1, 08 - setrepeat 3 - frame 2, 07 - frame 3, 07 - dorepeat 3 - frame 1, 08 - endanim -; 0xd1345 diff --git a/gfx/pics/politoed/anim1.asm b/gfx/pics/politoed/anim1.asm deleted file mode 100644 index 8ec01df37..000000000 --- a/gfx/pics/politoed/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd1fe5 diff --git a/gfx/pics/politoed/back.2bpp.lz.7873e52f b/gfx/pics/politoed/back.2bpp.lz.7873e52f deleted file mode 100644 index 2c492fcaf..000000000 Binary files a/gfx/pics/politoed/back.2bpp.lz.7873e52f and /dev/null differ diff --git a/gfx/pics/politoed/back.png b/gfx/pics/politoed/back.png deleted file mode 100644 index 4376ca6ae..000000000 Binary files a/gfx/pics/politoed/back.png and /dev/null differ diff --git a/gfx/pics/politoed/front.animated.2bpp.lz.408a9c1a b/gfx/pics/politoed/front.animated.2bpp.lz.408a9c1a deleted file mode 100644 index 8890a7ed4..000000000 Binary files a/gfx/pics/politoed/front.animated.2bpp.lz.408a9c1a and /dev/null differ diff --git a/gfx/pics/politoed/front.png b/gfx/pics/politoed/front.png deleted file mode 100644 index 03aa089e3..000000000 Binary files a/gfx/pics/politoed/front.png and /dev/null differ diff --git a/gfx/pics/politoed/shiny.pal b/gfx/pics/politoed/shiny.pal deleted file mode 100644 index 1ba49cbc5..000000000 --- a/gfx/pics/politoed/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 19, 31 - RGB 11, 16, 15 - diff --git a/gfx/pics/poliwag/anim0.asm b/gfx/pics/poliwag/anim0.asm deleted file mode 100644 index 8446897c0..000000000 --- a/gfx/pics/poliwag/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 12 - frame 3, 24 - setrepeat 2 - frame 0, 08 - frame 1, 08 - dorepeat 3 - endanim -; 0xd0c33 diff --git a/gfx/pics/poliwag/anim1.asm b/gfx/pics/poliwag/anim1.asm deleted file mode 100644 index 839e57e87..000000000 --- a/gfx/pics/poliwag/anim1.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 4, 06 - dorepeat 1 - setrepeat 2 - frame 0, 10 - frame 2, 10 - dorepeat 5 - endanim -; 0xd1b1d diff --git a/gfx/pics/poliwag/back.2bpp.lz.35b9ee20 b/gfx/pics/poliwag/back.2bpp.lz.35b9ee20 deleted file mode 100644 index 58d039d16..000000000 Binary files a/gfx/pics/poliwag/back.2bpp.lz.35b9ee20 and /dev/null differ diff --git a/gfx/pics/poliwag/back.png b/gfx/pics/poliwag/back.png deleted file mode 100644 index 44348236e..000000000 Binary files a/gfx/pics/poliwag/back.png and /dev/null differ diff --git a/gfx/pics/poliwag/front.animated.2bpp.lz.c7d26488 b/gfx/pics/poliwag/front.animated.2bpp.lz.c7d26488 deleted file mode 100644 index df9741516..000000000 Binary files a/gfx/pics/poliwag/front.animated.2bpp.lz.c7d26488 and /dev/null differ diff --git a/gfx/pics/poliwag/front.png b/gfx/pics/poliwag/front.png deleted file mode 100644 index c61c98fff..000000000 Binary files a/gfx/pics/poliwag/front.png and /dev/null differ diff --git a/gfx/pics/poliwag/shiny.pal b/gfx/pics/poliwag/shiny.pal deleted file mode 100644 index a6dbd0cfd..000000000 --- a/gfx/pics/poliwag/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 26, 08, 17 - RGB 08, 08, 29 - diff --git a/gfx/pics/poliwhirl/anim0.asm b/gfx/pics/poliwhirl/anim0.asm deleted file mode 100644 index 14cb89029..000000000 --- a/gfx/pics/poliwhirl/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 07 - frame 2, 05 - setrepeat 2 - frame 3, 10 - frame 4, 10 - dorepeat 3 - frame 2, 16 - endanim -; 0xd0c42 diff --git a/gfx/pics/poliwhirl/anim1.asm b/gfx/pics/poliwhirl/anim1.asm deleted file mode 100644 index 72ba07245..000000000 --- a/gfx/pics/poliwhirl/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 5, 05 - dorepeat 1 - endanim -; 0xd1b26 diff --git a/gfx/pics/poliwhirl/back.2bpp.lz.76564593 b/gfx/pics/poliwhirl/back.2bpp.lz.76564593 deleted file mode 100644 index a78a2cfff..000000000 Binary files a/gfx/pics/poliwhirl/back.2bpp.lz.76564593 and /dev/null differ diff --git a/gfx/pics/poliwhirl/back.png b/gfx/pics/poliwhirl/back.png deleted file mode 100644 index 51e374cb7..000000000 Binary files a/gfx/pics/poliwhirl/back.png and /dev/null differ diff --git a/gfx/pics/poliwhirl/front.animated.2bpp.lz.9a36033f b/gfx/pics/poliwhirl/front.animated.2bpp.lz.9a36033f deleted file mode 100644 index b06f41441..000000000 Binary files a/gfx/pics/poliwhirl/front.animated.2bpp.lz.9a36033f and /dev/null differ diff --git a/gfx/pics/poliwhirl/front.png b/gfx/pics/poliwhirl/front.png deleted file mode 100644 index 0419f4f9e..000000000 Binary files a/gfx/pics/poliwhirl/front.png and /dev/null differ diff --git a/gfx/pics/poliwhirl/shiny.pal b/gfx/pics/poliwhirl/shiny.pal deleted file mode 100644 index 1a5ee7b27..000000000 --- a/gfx/pics/poliwhirl/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 09, 16, 26 - RGB 08, 10, 31 - diff --git a/gfx/pics/poliwrath/anim0.asm b/gfx/pics/poliwrath/anim0.asm deleted file mode 100644 index 2b5fb0eef..000000000 --- a/gfx/pics/poliwrath/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 3, 24 - frame 0, 12 - setrepeat 2 - frame 1, 08 - frame 2, 08 - dorepeat 3 - endanim -; 0xd0c4f diff --git a/gfx/pics/poliwrath/anim1.asm b/gfx/pics/poliwrath/anim1.asm deleted file mode 100644 index f709ea35c..000000000 --- a/gfx/pics/poliwrath/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1b2f diff --git a/gfx/pics/poliwrath/back.2bpp.lz.240e911e b/gfx/pics/poliwrath/back.2bpp.lz.240e911e deleted file mode 100644 index eab9164aa..000000000 Binary files a/gfx/pics/poliwrath/back.2bpp.lz.240e911e and /dev/null differ diff --git a/gfx/pics/poliwrath/back.png b/gfx/pics/poliwrath/back.png deleted file mode 100644 index fe6216970..000000000 Binary files a/gfx/pics/poliwrath/back.png and /dev/null differ diff --git a/gfx/pics/poliwrath/front.animated.2bpp.lz.fb1157ec b/gfx/pics/poliwrath/front.animated.2bpp.lz.fb1157ec deleted file mode 100644 index 601937221..000000000 Binary files a/gfx/pics/poliwrath/front.animated.2bpp.lz.fb1157ec and /dev/null differ diff --git a/gfx/pics/poliwrath/front.png b/gfx/pics/poliwrath/front.png deleted file mode 100644 index a1271b9e2..000000000 Binary files a/gfx/pics/poliwrath/front.png and /dev/null differ diff --git a/gfx/pics/poliwrath/shiny.pal b/gfx/pics/poliwrath/shiny.pal deleted file mode 100644 index f9da6007b..000000000 --- a/gfx/pics/poliwrath/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 11, 24, 26 - RGB 08, 17, 15 - diff --git a/gfx/pics/ponyta/anim0.asm b/gfx/pics/ponyta/anim0.asm deleted file mode 100644 index 34c3a82b6..000000000 --- a/gfx/pics/ponyta/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 07 - frame 2, 07 - frame 1, 07 - frame 2, 07 - frame 0, 18 - frame 3, 06 - frame 0, 06 - frame 3, 06 - endanim -; 0xd0d18 diff --git a/gfx/pics/ponyta/anim1.asm b/gfx/pics/ponyta/anim1.asm deleted file mode 100644 index 10c9f42dd..000000000 --- a/gfx/pics/ponyta/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 4, 06 - frame 0, 06 - frame 5, 06 - endanim -; 0xd1bc4 diff --git a/gfx/pics/ponyta/back.2bpp.lz.10ddc7ea b/gfx/pics/ponyta/back.2bpp.lz.10ddc7ea deleted file mode 100644 index 5d7ecaa93..000000000 Binary files a/gfx/pics/ponyta/back.2bpp.lz.10ddc7ea and /dev/null differ diff --git a/gfx/pics/ponyta/back.png b/gfx/pics/ponyta/back.png deleted file mode 100644 index 42b1190c6..000000000 Binary files a/gfx/pics/ponyta/back.png and /dev/null differ diff --git a/gfx/pics/ponyta/front.animated.2bpp.lz.2c8708d6 b/gfx/pics/ponyta/front.animated.2bpp.lz.2c8708d6 deleted file mode 100644 index 5d3aa48db..000000000 Binary files a/gfx/pics/ponyta/front.animated.2bpp.lz.2c8708d6 and /dev/null differ diff --git a/gfx/pics/ponyta/front.png b/gfx/pics/ponyta/front.png deleted file mode 100644 index a83fbfb15..000000000 Binary files a/gfx/pics/ponyta/front.png and /dev/null differ diff --git a/gfx/pics/ponyta/shiny.pal b/gfx/pics/ponyta/shiny.pal deleted file mode 100644 index 0358f40dd..000000000 --- a/gfx/pics/ponyta/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 19, 16 - RGB 19, 13, 12 - diff --git a/gfx/pics/porygon/anim0.asm b/gfx/pics/porygon/anim0.asm deleted file mode 100644 index 0246a5621..000000000 --- a/gfx/pics/porygon/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - setrepeat 3 - frame 1, 03 - frame 0, 03 - dorepeat 1 - frame 1, 25 - frame 2, 06 - frame 1, 06 - endanim -; 0xd106e diff --git a/gfx/pics/porygon/anim1.asm b/gfx/pics/porygon/anim1.asm deleted file mode 100644 index 89af5d13f..000000000 --- a/gfx/pics/porygon/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 1 - endanim -; 0xd1dfa diff --git a/gfx/pics/porygon/back.2bpp.lz.b3d71350 b/gfx/pics/porygon/back.2bpp.lz.b3d71350 deleted file mode 100644 index 5f0a47032..000000000 Binary files a/gfx/pics/porygon/back.2bpp.lz.b3d71350 and /dev/null differ diff --git a/gfx/pics/porygon/back.png b/gfx/pics/porygon/back.png deleted file mode 100644 index 6833d9206..000000000 Binary files a/gfx/pics/porygon/back.png and /dev/null differ diff --git a/gfx/pics/porygon/front.animated.2bpp.lz.70fc1333 b/gfx/pics/porygon/front.animated.2bpp.lz.70fc1333 deleted file mode 100644 index 734305a14..000000000 Binary files a/gfx/pics/porygon/front.animated.2bpp.lz.70fc1333 and /dev/null differ diff --git a/gfx/pics/porygon/front.png b/gfx/pics/porygon/front.png deleted file mode 100644 index ef4a1d782..000000000 Binary files a/gfx/pics/porygon/front.png and /dev/null differ diff --git a/gfx/pics/porygon/shiny.pal b/gfx/pics/porygon/shiny.pal deleted file mode 100644 index bea4751bf..000000000 --- a/gfx/pics/porygon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 03, 27 - RGB 12, 11, 25 - diff --git a/gfx/pics/porygon2/anim0.asm b/gfx/pics/porygon2/anim0.asm deleted file mode 100644 index b94920e29..000000000 --- a/gfx/pics/porygon2/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 1, 06 - frame 2, 08 - frame 0, 06 - dorepeat 1 - endanim -; 0xd1592 diff --git a/gfx/pics/porygon2/anim1.asm b/gfx/pics/porygon2/anim1.asm deleted file mode 100644 index b3a029047..000000000 --- a/gfx/pics/porygon2/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 3, 30 - endanim -; 0xd216c diff --git a/gfx/pics/porygon2/back.2bpp.lz.5bba6e40 b/gfx/pics/porygon2/back.2bpp.lz.5bba6e40 deleted file mode 100644 index 5be528963..000000000 Binary files a/gfx/pics/porygon2/back.2bpp.lz.5bba6e40 and /dev/null differ diff --git a/gfx/pics/porygon2/back.png b/gfx/pics/porygon2/back.png deleted file mode 100644 index a8d7ed4e6..000000000 Binary files a/gfx/pics/porygon2/back.png and /dev/null differ diff --git a/gfx/pics/porygon2/front.animated.2bpp.lz.a6410e75 b/gfx/pics/porygon2/front.animated.2bpp.lz.a6410e75 deleted file mode 100644 index 5e66bb54d..000000000 Binary files a/gfx/pics/porygon2/front.animated.2bpp.lz.a6410e75 and /dev/null differ diff --git a/gfx/pics/porygon2/front.png b/gfx/pics/porygon2/front.png deleted file mode 100644 index 16e8d44e6..000000000 Binary files a/gfx/pics/porygon2/front.png and /dev/null differ diff --git a/gfx/pics/porygon2/shiny.pal b/gfx/pics/porygon2/shiny.pal deleted file mode 100644 index 3b0c4dabe..000000000 --- a/gfx/pics/porygon2/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 19, 24 - RGB 08, 11, 23 - diff --git a/gfx/pics/primeape/anim0.asm b/gfx/pics/primeape/anim0.asm deleted file mode 100644 index a2a427059..000000000 --- a/gfx/pics/primeape/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 5 - frame 1, 08 - frame 4, 08 - dorepeat 1 - frame 2, 05 - frame 3, 25 - endanim -; 0xd0c0c diff --git a/gfx/pics/primeape/anim1.asm b/gfx/pics/primeape/anim1.asm deleted file mode 100644 index 7d1c8a2d7..000000000 --- a/gfx/pics/primeape/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 2, 10 - frame 0, 25 - setrepeat 3 - frame 2, 06 - frame 3, 06 - dorepeat 3 - endanim -; 0xd1af8 diff --git a/gfx/pics/primeape/back.2bpp.lz.690e407d b/gfx/pics/primeape/back.2bpp.lz.690e407d deleted file mode 100644 index c0937a9ae..000000000 Binary files a/gfx/pics/primeape/back.2bpp.lz.690e407d and /dev/null differ diff --git a/gfx/pics/primeape/back.png b/gfx/pics/primeape/back.png deleted file mode 100644 index 172c67b57..000000000 Binary files a/gfx/pics/primeape/back.png and /dev/null differ diff --git a/gfx/pics/primeape/front.animated.2bpp.lz.218352ec b/gfx/pics/primeape/front.animated.2bpp.lz.218352ec deleted file mode 100644 index 8f513878f..000000000 Binary files a/gfx/pics/primeape/front.animated.2bpp.lz.218352ec and /dev/null differ diff --git a/gfx/pics/primeape/front.png b/gfx/pics/primeape/front.png deleted file mode 100644 index 94c2cedba..000000000 Binary files a/gfx/pics/primeape/front.png and /dev/null differ diff --git a/gfx/pics/primeape/shiny.pal b/gfx/pics/primeape/shiny.pal deleted file mode 100644 index ee3d37e93..000000000 --- a/gfx/pics/primeape/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 17, 06 - RGB 16, 16, 06 - diff --git a/gfx/pics/psyduck/anim0.asm b/gfx/pics/psyduck/anim0.asm deleted file mode 100644 index da6f3aec6..000000000 --- a/gfx/pics/psyduck/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - frame 1, 28 - setrepeat 2 - frame 0, 14 - frame 2, 14 - dorepeat 3 - endanim -; 0xd0bdd diff --git a/gfx/pics/psyduck/anim1.asm b/gfx/pics/psyduck/anim1.asm deleted file mode 100644 index 2fabc5b19..000000000 --- a/gfx/pics/psyduck/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 1, 10 - dorepeat 1 - endanim -; 0xd1ad9 diff --git a/gfx/pics/psyduck/back.2bpp.lz.d68cddb2 b/gfx/pics/psyduck/back.2bpp.lz.d68cddb2 deleted file mode 100644 index d627a146c..000000000 Binary files a/gfx/pics/psyduck/back.2bpp.lz.d68cddb2 and /dev/null differ diff --git a/gfx/pics/psyduck/back.png b/gfx/pics/psyduck/back.png deleted file mode 100644 index e2aab20b1..000000000 Binary files a/gfx/pics/psyduck/back.png and /dev/null differ diff --git a/gfx/pics/psyduck/front.animated.2bpp.lz.e4efd065 b/gfx/pics/psyduck/front.animated.2bpp.lz.e4efd065 deleted file mode 100644 index 7988f1b0c..000000000 Binary files a/gfx/pics/psyduck/front.animated.2bpp.lz.e4efd065 and /dev/null differ diff --git a/gfx/pics/psyduck/front.png b/gfx/pics/psyduck/front.png deleted file mode 100644 index a207b04d8..000000000 Binary files a/gfx/pics/psyduck/front.png and /dev/null differ diff --git a/gfx/pics/psyduck/shiny.pal b/gfx/pics/psyduck/shiny.pal deleted file mode 100644 index 27cbf08c4..000000000 --- a/gfx/pics/psyduck/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 19, 31 - RGB 10, 11, 20 - diff --git a/gfx/pics/pupitar/anim0.asm b/gfx/pics/pupitar/anim0.asm deleted file mode 100644 index c3ea44bc9..000000000 --- a/gfx/pics/pupitar/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 25 - setrepeat 2 - frame 0, 04 - frame 1, 04 - frame 2, 04 - dorepeat 2 - endanim -; 0xd164a diff --git a/gfx/pics/pupitar/anim1.asm b/gfx/pics/pupitar/anim1.asm deleted file mode 100644 index efc0f3bb4..000000000 --- a/gfx/pics/pupitar/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 04 - frame 1, 04 - frame 2, 04 - dorepeat 1 - endanim -; 0xd21f6 diff --git a/gfx/pics/pupitar/back.2bpp.lz.100020c1 b/gfx/pics/pupitar/back.2bpp.lz.100020c1 deleted file mode 100644 index 46cf0e240..000000000 Binary files a/gfx/pics/pupitar/back.2bpp.lz.100020c1 and /dev/null differ diff --git a/gfx/pics/pupitar/back.png b/gfx/pics/pupitar/back.png deleted file mode 100644 index ae19688ab..000000000 Binary files a/gfx/pics/pupitar/back.png and /dev/null differ diff --git a/gfx/pics/pupitar/front.animated.2bpp.lz.418c0962 b/gfx/pics/pupitar/front.animated.2bpp.lz.418c0962 deleted file mode 100644 index c39582db6..000000000 Binary files a/gfx/pics/pupitar/front.animated.2bpp.lz.418c0962 and /dev/null differ diff --git a/gfx/pics/pupitar/front.png b/gfx/pics/pupitar/front.png deleted file mode 100644 index afc1897d1..000000000 Binary files a/gfx/pics/pupitar/front.png and /dev/null differ diff --git a/gfx/pics/pupitar/shiny.pal b/gfx/pics/pupitar/shiny.pal deleted file mode 100644 index a8c6cb74f..000000000 --- a/gfx/pics/pupitar/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 11, 28 - RGB 15, 06, 06 - diff --git a/gfx/pics/quagsire/anim0.asm b/gfx/pics/quagsire/anim0.asm deleted file mode 100644 index 852780069..000000000 --- a/gfx/pics/quagsire/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 09 - frame 2, 12 - frame 3, 09 - frame 4, 09 - endanim -; 0xd13a0 diff --git a/gfx/pics/quagsire/anim1.asm b/gfx/pics/quagsire/anim1.asm deleted file mode 100644 index f5c2ed31b..000000000 --- a/gfx/pics/quagsire/anim1.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 2, 35 - frame 1, 08 - endanim -; 0xd2034 diff --git a/gfx/pics/quagsire/back.2bpp.lz.64b2ec05 b/gfx/pics/quagsire/back.2bpp.lz.64b2ec05 deleted file mode 100644 index 543ce394f..000000000 Binary files a/gfx/pics/quagsire/back.2bpp.lz.64b2ec05 and /dev/null differ diff --git a/gfx/pics/quagsire/back.png b/gfx/pics/quagsire/back.png deleted file mode 100644 index d83a1b810..000000000 Binary files a/gfx/pics/quagsire/back.png and /dev/null differ diff --git a/gfx/pics/quagsire/front.animated.2bpp.lz.bd292a94 b/gfx/pics/quagsire/front.animated.2bpp.lz.bd292a94 deleted file mode 100644 index d1f42f064..000000000 Binary files a/gfx/pics/quagsire/front.animated.2bpp.lz.bd292a94 and /dev/null differ diff --git a/gfx/pics/quagsire/front.png b/gfx/pics/quagsire/front.png deleted file mode 100644 index d64fe3709..000000000 Binary files a/gfx/pics/quagsire/front.png and /dev/null differ diff --git a/gfx/pics/quagsire/shiny.pal b/gfx/pics/quagsire/shiny.pal deleted file mode 100644 index 05ed0f64a..000000000 --- a/gfx/pics/quagsire/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 21, 26 - RGB 28, 04, 30 - diff --git a/gfx/pics/questionmark/front.2bpp.lz.14c284f5 b/gfx/pics/questionmark/front.2bpp.lz.14c284f5 deleted file mode 100644 index cd2f7f22e..000000000 Binary files a/gfx/pics/questionmark/front.2bpp.lz.14c284f5 and /dev/null differ diff --git a/gfx/pics/questionmark/front.png b/gfx/pics/questionmark/front.png deleted file mode 100644 index e2b681c73..000000000 Binary files a/gfx/pics/questionmark/front.png and /dev/null differ diff --git a/gfx/pics/quilava/anim0.asm b/gfx/pics/quilava/anim0.asm deleted file mode 100644 index b5df67978..000000000 --- a/gfx/pics/quilava/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 4, 06 - frame 0, 04 - frame 1, 12 - frame 2, 22 - frame 4, 12 - frame 0, 10 - frame 4, 08 - endanim -; 0xd11a3 diff --git a/gfx/pics/quilava/anim1.asm b/gfx/pics/quilava/anim1.asm deleted file mode 100644 index 09f187796..000000000 --- a/gfx/pics/quilava/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1ec3 diff --git a/gfx/pics/quilava/back.2bpp.lz.500906e1 b/gfx/pics/quilava/back.2bpp.lz.500906e1 deleted file mode 100644 index 8514a77c7..000000000 Binary files a/gfx/pics/quilava/back.2bpp.lz.500906e1 and /dev/null differ diff --git a/gfx/pics/quilava/back.png b/gfx/pics/quilava/back.png deleted file mode 100644 index 79b50b9b0..000000000 Binary files a/gfx/pics/quilava/back.png and /dev/null differ diff --git a/gfx/pics/quilava/front.animated.2bpp.lz.f42f4c67 b/gfx/pics/quilava/front.animated.2bpp.lz.f42f4c67 deleted file mode 100644 index 33aebb81c..000000000 Binary files a/gfx/pics/quilava/front.animated.2bpp.lz.f42f4c67 and /dev/null differ diff --git a/gfx/pics/quilava/front.png b/gfx/pics/quilava/front.png deleted file mode 100644 index 96ccbb551..000000000 Binary files a/gfx/pics/quilava/front.png and /dev/null differ diff --git a/gfx/pics/quilava/shiny.pal b/gfx/pics/quilava/shiny.pal deleted file mode 100644 index 5b3df0b4e..000000000 --- a/gfx/pics/quilava/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 23, 09 - RGB 22, 00, 19 - diff --git a/gfx/pics/qwilfish/anim0.asm b/gfx/pics/qwilfish/anim0.asm deleted file mode 100644 index 6e5d62d04..000000000 --- a/gfx/pics/qwilfish/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 05 - frame 2, 20 - setrepeat 2 - frame 0, 11 - frame 3, 11 - dorepeat 3 - endanim -; 0xd147c diff --git a/gfx/pics/qwilfish/anim1.asm b/gfx/pics/qwilfish/anim1.asm deleted file mode 100644 index 4330e80cc..000000000 --- a/gfx/pics/qwilfish/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 13 - frame 1, 13 - dorepeat 1 - endanim -; 0xd20b0 diff --git a/gfx/pics/qwilfish/back.2bpp.lz.b2bb83c6 b/gfx/pics/qwilfish/back.2bpp.lz.b2bb83c6 deleted file mode 100644 index 09f793f47..000000000 Binary files a/gfx/pics/qwilfish/back.2bpp.lz.b2bb83c6 and /dev/null differ diff --git a/gfx/pics/qwilfish/back.png b/gfx/pics/qwilfish/back.png deleted file mode 100644 index 107af1018..000000000 Binary files a/gfx/pics/qwilfish/back.png and /dev/null differ diff --git a/gfx/pics/qwilfish/front.animated.2bpp.lz.9e79c033 b/gfx/pics/qwilfish/front.animated.2bpp.lz.9e79c033 deleted file mode 100644 index 02370c7ba..000000000 Binary files a/gfx/pics/qwilfish/front.animated.2bpp.lz.9e79c033 and /dev/null differ diff --git a/gfx/pics/qwilfish/front.png b/gfx/pics/qwilfish/front.png deleted file mode 100644 index 15a0415cb..000000000 Binary files a/gfx/pics/qwilfish/front.png and /dev/null differ diff --git a/gfx/pics/qwilfish/shiny.pal b/gfx/pics/qwilfish/shiny.pal deleted file mode 100644 index 97c36795e..000000000 --- a/gfx/pics/qwilfish/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 21, 22 - RGB 18, 00, 11 - diff --git a/gfx/pics/raichu/anim0.asm b/gfx/pics/raichu/anim0.asm deleted file mode 100644 index a7312c7ae..000000000 --- a/gfx/pics/raichu/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - frame 1, 06 - frame 2, 06 - frame 3, 28 - frame 2, 10 - frame 1, 08 - endanim -; 0xd0a0f diff --git a/gfx/pics/raichu/anim1.asm b/gfx/pics/raichu/anim1.asm deleted file mode 100644 index 87f07ce9c..000000000 --- a/gfx/pics/raichu/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 4, 06 - frame 0, 04 - frame 4, 04 - endanim -; 0xd19c3 diff --git a/gfx/pics/raichu/back.2bpp.lz.fa4c7423 b/gfx/pics/raichu/back.2bpp.lz.fa4c7423 deleted file mode 100644 index 912c378e8..000000000 Binary files a/gfx/pics/raichu/back.2bpp.lz.fa4c7423 and /dev/null differ diff --git a/gfx/pics/raichu/back.png b/gfx/pics/raichu/back.png deleted file mode 100644 index 36a0df5f3..000000000 Binary files a/gfx/pics/raichu/back.png and /dev/null differ diff --git a/gfx/pics/raichu/front.animated.2bpp.lz.25f943cb b/gfx/pics/raichu/front.animated.2bpp.lz.25f943cb deleted file mode 100644 index 84115fb00..000000000 Binary files a/gfx/pics/raichu/front.animated.2bpp.lz.25f943cb and /dev/null differ diff --git a/gfx/pics/raichu/front.png b/gfx/pics/raichu/front.png deleted file mode 100644 index 06bbf12bb..000000000 Binary files a/gfx/pics/raichu/front.png and /dev/null differ diff --git a/gfx/pics/raichu/shiny.pal b/gfx/pics/raichu/shiny.pal deleted file mode 100644 index 0491d1ee2..000000000 --- a/gfx/pics/raichu/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 19, 20 - RGB 24, 19, 02 - diff --git a/gfx/pics/raikou/anim0.asm b/gfx/pics/raikou/anim0.asm deleted file mode 100644 index 91931b3ef..000000000 --- a/gfx/pics/raikou/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 06 - setrepeat 5 - frame 2, 03 - frame 3, 03 - dorepeat 2 - frame 2, 35 - endanim -; 0xd1614 diff --git a/gfx/pics/raikou/anim1.asm b/gfx/pics/raikou/anim1.asm deleted file mode 100644 index ec54577cd..000000000 --- a/gfx/pics/raikou/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 4, 20 - frame 5, 08 - frame 6, 08 - frame 4, 05 - frame 6, 05 - frame 4, 30 - endanim -; 0xd21ce diff --git a/gfx/pics/raikou/back.2bpp.lz.657ddfaf b/gfx/pics/raikou/back.2bpp.lz.657ddfaf deleted file mode 100644 index 23fd5c471..000000000 Binary files a/gfx/pics/raikou/back.2bpp.lz.657ddfaf and /dev/null differ diff --git a/gfx/pics/raikou/back.png b/gfx/pics/raikou/back.png deleted file mode 100644 index 0214e673c..000000000 Binary files a/gfx/pics/raikou/back.png and /dev/null differ diff --git a/gfx/pics/raikou/front.animated.2bpp.lz.464b6fd7 b/gfx/pics/raikou/front.animated.2bpp.lz.464b6fd7 deleted file mode 100644 index dba4517aa..000000000 Binary files a/gfx/pics/raikou/front.animated.2bpp.lz.464b6fd7 and /dev/null differ diff --git a/gfx/pics/raikou/front.png b/gfx/pics/raikou/front.png deleted file mode 100644 index 4854f2571..000000000 Binary files a/gfx/pics/raikou/front.png and /dev/null differ diff --git a/gfx/pics/raikou/shiny.pal b/gfx/pics/raikou/shiny.pal deleted file mode 100644 index 509a54c48..000000000 --- a/gfx/pics/raikou/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 15, 00 - RGB 25, 21, 00 - diff --git a/gfx/pics/rapidash/anim0.asm b/gfx/pics/rapidash/anim0.asm deleted file mode 100644 index 6fe29db8f..000000000 --- a/gfx/pics/rapidash/anim0.asm +++ /dev/null @@ -1,14 +0,0 @@ - frame 0, 10 - frame 2, 36 - frame 0, 05 - frame 1, 05 - frame 2, 07 - frame 0, 06 - frame 1, 05 - frame 0, 07 - setrepeat 4 - frame 2, 12 - frame 3, 12 - dorepeat 9 - endanim -; 0xd0d31 diff --git a/gfx/pics/rapidash/anim1.asm b/gfx/pics/rapidash/anim1.asm deleted file mode 100644 index 0105673c9..000000000 --- a/gfx/pics/rapidash/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 4, 06 - frame 0, 06 - frame 4, 06 - endanim -; 0xd1bcd diff --git a/gfx/pics/rapidash/back.2bpp.lz.fdd1946c b/gfx/pics/rapidash/back.2bpp.lz.fdd1946c deleted file mode 100644 index 3854c29e5..000000000 Binary files a/gfx/pics/rapidash/back.2bpp.lz.fdd1946c and /dev/null differ diff --git a/gfx/pics/rapidash/back.png b/gfx/pics/rapidash/back.png deleted file mode 100644 index 70de0e5ec..000000000 Binary files a/gfx/pics/rapidash/back.png and /dev/null differ diff --git a/gfx/pics/rapidash/front.animated.2bpp.lz.d5ac5a96 b/gfx/pics/rapidash/front.animated.2bpp.lz.d5ac5a96 deleted file mode 100644 index 231e312fb..000000000 Binary files a/gfx/pics/rapidash/front.animated.2bpp.lz.d5ac5a96 and /dev/null differ diff --git a/gfx/pics/rapidash/front.png b/gfx/pics/rapidash/front.png deleted file mode 100644 index 7930fd606..000000000 Binary files a/gfx/pics/rapidash/front.png and /dev/null differ diff --git a/gfx/pics/rapidash/shiny.pal b/gfx/pics/rapidash/shiny.pal deleted file mode 100644 index f6ae96e3c..000000000 --- a/gfx/pics/rapidash/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 19, 20 - RGB 17, 10, 27 - diff --git a/gfx/pics/raticate/anim0.asm b/gfx/pics/raticate/anim0.asm deleted file mode 100644 index ad6450f27..000000000 --- a/gfx/pics/raticate/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 2, 24 - setrepeat 2 - frame 0, 04 - frame 1, 04 - dorepeat 2 - endanim -; 0xd09a3 diff --git a/gfx/pics/raticate/anim1.asm b/gfx/pics/raticate/anim1.asm deleted file mode 100644 index 3ff83aa1c..000000000 --- a/gfx/pics/raticate/anim1.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 2 - frame 0, 04 - frame 3, 04 - dorepeat 1 - setrepeat 2 - frame 0, 04 - frame 1, 04 - dorepeat 5 - endanim -; 0xd197b diff --git a/gfx/pics/raticate/back.2bpp.lz.b2a77d02 b/gfx/pics/raticate/back.2bpp.lz.b2a77d02 deleted file mode 100644 index 4e69587dd..000000000 Binary files a/gfx/pics/raticate/back.2bpp.lz.b2a77d02 and /dev/null differ diff --git a/gfx/pics/raticate/back.png b/gfx/pics/raticate/back.png deleted file mode 100644 index fbeef9a41..000000000 Binary files a/gfx/pics/raticate/back.png and /dev/null differ diff --git a/gfx/pics/raticate/front.animated.2bpp.lz.ef1a4689 b/gfx/pics/raticate/front.animated.2bpp.lz.ef1a4689 deleted file mode 100644 index 5b426cbdd..000000000 Binary files a/gfx/pics/raticate/front.animated.2bpp.lz.ef1a4689 and /dev/null differ diff --git a/gfx/pics/raticate/front.png b/gfx/pics/raticate/front.png deleted file mode 100644 index 37695c19d..000000000 Binary files a/gfx/pics/raticate/front.png and /dev/null differ diff --git a/gfx/pics/raticate/shiny.pal b/gfx/pics/raticate/shiny.pal deleted file mode 100644 index a0c0f5546..000000000 --- a/gfx/pics/raticate/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 25, 15 - RGB 26, 16, 03 - diff --git a/gfx/pics/rattata/anim0.asm b/gfx/pics/rattata/anim0.asm deleted file mode 100644 index 0c72f16f9..000000000 --- a/gfx/pics/rattata/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 02 - frame 2, 02 - frame 3, 12 - frame 0, 10 - setrepeat 3 - frame 0, 05 - frame 4, 05 - dorepeat 5 - endanim -; 0xd0998 diff --git a/gfx/pics/rattata/anim1.asm b/gfx/pics/rattata/anim1.asm deleted file mode 100644 index a760b136e..000000000 --- a/gfx/pics/rattata/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd196a diff --git a/gfx/pics/rattata/back.2bpp.lz.86979cd5 b/gfx/pics/rattata/back.2bpp.lz.86979cd5 deleted file mode 100644 index a06c5f1f8..000000000 Binary files a/gfx/pics/rattata/back.2bpp.lz.86979cd5 and /dev/null differ diff --git a/gfx/pics/rattata/back.png b/gfx/pics/rattata/back.png deleted file mode 100644 index 355f16b4b..000000000 Binary files a/gfx/pics/rattata/back.png and /dev/null differ diff --git a/gfx/pics/rattata/front.animated.2bpp.lz.5bdaea2b b/gfx/pics/rattata/front.animated.2bpp.lz.5bdaea2b deleted file mode 100644 index 7bb18d542..000000000 Binary files a/gfx/pics/rattata/front.animated.2bpp.lz.5bdaea2b and /dev/null differ diff --git a/gfx/pics/rattata/front.png b/gfx/pics/rattata/front.png deleted file mode 100644 index cb556cbdb..000000000 Binary files a/gfx/pics/rattata/front.png and /dev/null differ diff --git a/gfx/pics/rattata/shiny.pal b/gfx/pics/rattata/shiny.pal deleted file mode 100644 index 834a29cf0..000000000 --- a/gfx/pics/rattata/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 23, 19 - RGB 20, 17, 13 - diff --git a/gfx/pics/remoraid/anim0.asm b/gfx/pics/remoraid/anim0.asm deleted file mode 100644 index 5fca75d12..000000000 --- a/gfx/pics/remoraid/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 05 - frame 2, 10 - frame 3, 10 - endanim -; 0xd1508 diff --git a/gfx/pics/remoraid/anim1.asm b/gfx/pics/remoraid/anim1.asm deleted file mode 100644 index cb14bb7a7..000000000 --- a/gfx/pics/remoraid/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 1, 07 - frame 4, 07 - dorepeat 1 - endanim -; 0xd2114 diff --git a/gfx/pics/remoraid/back.2bpp.lz.8a6e4f29 b/gfx/pics/remoraid/back.2bpp.lz.8a6e4f29 deleted file mode 100644 index 414d65a14..000000000 Binary files a/gfx/pics/remoraid/back.2bpp.lz.8a6e4f29 and /dev/null differ diff --git a/gfx/pics/remoraid/back.png b/gfx/pics/remoraid/back.png deleted file mode 100644 index 2abcc55e0..000000000 Binary files a/gfx/pics/remoraid/back.png and /dev/null differ diff --git a/gfx/pics/remoraid/front.animated.2bpp.lz.4eaf1230 b/gfx/pics/remoraid/front.animated.2bpp.lz.4eaf1230 deleted file mode 100644 index 6d702b4a1..000000000 Binary files a/gfx/pics/remoraid/front.animated.2bpp.lz.4eaf1230 and /dev/null differ diff --git a/gfx/pics/remoraid/front.png b/gfx/pics/remoraid/front.png deleted file mode 100644 index d92ff5838..000000000 Binary files a/gfx/pics/remoraid/front.png and /dev/null differ diff --git a/gfx/pics/remoraid/shiny.pal b/gfx/pics/remoraid/shiny.pal deleted file mode 100644 index 669e14e4a..000000000 --- a/gfx/pics/remoraid/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 11, 14 - RGB 09, 09, 08 - diff --git a/gfx/pics/rhydon/anim0.asm b/gfx/pics/rhydon/anim0.asm deleted file mode 100644 index 77d736a55..000000000 --- a/gfx/pics/rhydon/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 08 - frame 1, 34 - frame 4, 10 - frame 2, 10 - setrepeat 16 - frame 3, 02 - frame 2, 02 - dorepeat 5 - endanim -; 0xd0f15 diff --git a/gfx/pics/rhydon/anim1.asm b/gfx/pics/rhydon/anim1.asm deleted file mode 100644 index b572a54ed..000000000 --- a/gfx/pics/rhydon/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1d0d diff --git a/gfx/pics/rhydon/back.2bpp.lz.4a3ea4af b/gfx/pics/rhydon/back.2bpp.lz.4a3ea4af deleted file mode 100644 index b626f4ce6..000000000 Binary files a/gfx/pics/rhydon/back.2bpp.lz.4a3ea4af and /dev/null differ diff --git a/gfx/pics/rhydon/back.png b/gfx/pics/rhydon/back.png deleted file mode 100644 index 4b6f89869..000000000 Binary files a/gfx/pics/rhydon/back.png and /dev/null differ diff --git a/gfx/pics/rhydon/front.animated.2bpp.lz.7257fc4f b/gfx/pics/rhydon/front.animated.2bpp.lz.7257fc4f deleted file mode 100644 index 0ad1c221b..000000000 Binary files a/gfx/pics/rhydon/front.animated.2bpp.lz.7257fc4f and /dev/null differ diff --git a/gfx/pics/rhydon/front.png b/gfx/pics/rhydon/front.png deleted file mode 100644 index 18a5f0aed..000000000 Binary files a/gfx/pics/rhydon/front.png and /dev/null differ diff --git a/gfx/pics/rhydon/shiny.pal b/gfx/pics/rhydon/shiny.pal deleted file mode 100644 index b036be1f3..000000000 --- a/gfx/pics/rhydon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 21, 21 - RGB 12, 12, 17 - diff --git a/gfx/pics/rhyhorn/anim0.asm b/gfx/pics/rhyhorn/anim0.asm deleted file mode 100644 index b966557c4..000000000 --- a/gfx/pics/rhyhorn/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 05 - frame 2, 13 - frame 1, 40 - endanim -; 0xd0f04 diff --git a/gfx/pics/rhyhorn/anim1.asm b/gfx/pics/rhyhorn/anim1.asm deleted file mode 100644 index 66e53642e..000000000 --- a/gfx/pics/rhyhorn/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 13 - frame 3, 13 - dorepeat 1 - endanim -; 0xd1d04 diff --git a/gfx/pics/rhyhorn/back.2bpp.lz.b9a8e755 b/gfx/pics/rhyhorn/back.2bpp.lz.b9a8e755 deleted file mode 100644 index bfcafdcb4..000000000 Binary files a/gfx/pics/rhyhorn/back.2bpp.lz.b9a8e755 and /dev/null differ diff --git a/gfx/pics/rhyhorn/back.png b/gfx/pics/rhyhorn/back.png deleted file mode 100644 index d2f6aa62f..000000000 Binary files a/gfx/pics/rhyhorn/back.png and /dev/null differ diff --git a/gfx/pics/rhyhorn/front.animated.2bpp.lz.bdfdf7dc b/gfx/pics/rhyhorn/front.animated.2bpp.lz.bdfdf7dc deleted file mode 100644 index 62a2e8919..000000000 Binary files a/gfx/pics/rhyhorn/front.animated.2bpp.lz.bdfdf7dc and /dev/null differ diff --git a/gfx/pics/rhyhorn/front.png b/gfx/pics/rhyhorn/front.png deleted file mode 100644 index e053a9703..000000000 Binary files a/gfx/pics/rhyhorn/front.png and /dev/null differ diff --git a/gfx/pics/rhyhorn/shiny.pal b/gfx/pics/rhyhorn/shiny.pal deleted file mode 100644 index 4b11a7f20..000000000 --- a/gfx/pics/rhyhorn/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 15, 17 - RGB 15, 11, 13 - diff --git a/gfx/pics/sandshrew/anim0.asm b/gfx/pics/sandshrew/anim0.asm deleted file mode 100644 index 01827dda4..000000000 --- a/gfx/pics/sandshrew/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 1 - frame 0, 20 - frame 1, 08 - frame 2, 08 - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 8 - endanim -; 0xd0a26 diff --git a/gfx/pics/sandshrew/anim1.asm b/gfx/pics/sandshrew/anim1.asm deleted file mode 100644 index 545b445bd..000000000 --- a/gfx/pics/sandshrew/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 5, 07 - dorepeat 1 - frame 4, 13 - endanim -; 0xd19ce diff --git a/gfx/pics/sandshrew/back.2bpp.lz.7655193f b/gfx/pics/sandshrew/back.2bpp.lz.7655193f deleted file mode 100644 index 63ddb82a1..000000000 Binary files a/gfx/pics/sandshrew/back.2bpp.lz.7655193f and /dev/null differ diff --git a/gfx/pics/sandshrew/back.png b/gfx/pics/sandshrew/back.png deleted file mode 100644 index c23af0677..000000000 Binary files a/gfx/pics/sandshrew/back.png and /dev/null differ diff --git a/gfx/pics/sandshrew/front.animated.2bpp.lz.758def3d b/gfx/pics/sandshrew/front.animated.2bpp.lz.758def3d deleted file mode 100644 index 3d1da3087..000000000 Binary files a/gfx/pics/sandshrew/front.animated.2bpp.lz.758def3d and /dev/null differ diff --git a/gfx/pics/sandshrew/front.png b/gfx/pics/sandshrew/front.png deleted file mode 100644 index 44b69f12b..000000000 Binary files a/gfx/pics/sandshrew/front.png and /dev/null differ diff --git a/gfx/pics/sandshrew/shiny.pal b/gfx/pics/sandshrew/shiny.pal deleted file mode 100644 index 86d48731e..000000000 --- a/gfx/pics/sandshrew/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 16, 10 - RGB 11, 08, 15 - diff --git a/gfx/pics/sandslash/anim0.asm b/gfx/pics/sandslash/anim0.asm deleted file mode 100644 index 040c0c429..000000000 --- a/gfx/pics/sandslash/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 06 - frame 1, 14 - frame 0, 12 - frame 4, 07 - frame 2, 08 - frame 0, 12 - frame 4, 07 - frame 2, 08 - endanim -; 0xd0a37 diff --git a/gfx/pics/sandslash/anim1.asm b/gfx/pics/sandslash/anim1.asm deleted file mode 100644 index b3480762d..000000000 --- a/gfx/pics/sandslash/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 08 - frame 3, 06 - frame 0, 04 - frame 3, 04 - endanim -; 0xd19d7 diff --git a/gfx/pics/sandslash/back.2bpp.lz.2999f4c6 b/gfx/pics/sandslash/back.2bpp.lz.2999f4c6 deleted file mode 100644 index 52bb7ce7d..000000000 Binary files a/gfx/pics/sandslash/back.2bpp.lz.2999f4c6 and /dev/null differ diff --git a/gfx/pics/sandslash/back.png b/gfx/pics/sandslash/back.png deleted file mode 100644 index 43704ad08..000000000 Binary files a/gfx/pics/sandslash/back.png and /dev/null differ diff --git a/gfx/pics/sandslash/front.animated.2bpp.lz.d6498722 b/gfx/pics/sandslash/front.animated.2bpp.lz.d6498722 deleted file mode 100644 index cdffe9baf..000000000 Binary files a/gfx/pics/sandslash/front.animated.2bpp.lz.d6498722 and /dev/null differ diff --git a/gfx/pics/sandslash/front.png b/gfx/pics/sandslash/front.png deleted file mode 100644 index adda651e1..000000000 Binary files a/gfx/pics/sandslash/front.png and /dev/null differ diff --git a/gfx/pics/sandslash/shiny.pal b/gfx/pics/sandslash/shiny.pal deleted file mode 100644 index db584124b..000000000 --- a/gfx/pics/sandslash/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 18, 04 - RGB 21, 06, 01 - diff --git a/gfx/pics/scizor/anim0.asm b/gfx/pics/scizor/anim0.asm deleted file mode 100644 index d269c91d1..000000000 --- a/gfx/pics/scizor/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 06 - frame 5, 22 - setrepeat 3 - frame 2, 06 - frame 1, 06 - frame 3, 06 - dorepeat 3 - frame 6, 18 - endanim -; 0xd148d diff --git a/gfx/pics/scizor/anim1.asm b/gfx/pics/scizor/anim1.asm deleted file mode 100644 index 744d6cafc..000000000 --- a/gfx/pics/scizor/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd20b9 diff --git a/gfx/pics/scizor/back.2bpp.lz.85149f27 b/gfx/pics/scizor/back.2bpp.lz.85149f27 deleted file mode 100644 index 5a02e7000..000000000 Binary files a/gfx/pics/scizor/back.2bpp.lz.85149f27 and /dev/null differ diff --git a/gfx/pics/scizor/back.png b/gfx/pics/scizor/back.png deleted file mode 100644 index 53cef907e..000000000 Binary files a/gfx/pics/scizor/back.png and /dev/null differ diff --git a/gfx/pics/scizor/front.animated.2bpp.lz.afd0131a b/gfx/pics/scizor/front.animated.2bpp.lz.afd0131a deleted file mode 100644 index e7d506f48..000000000 Binary files a/gfx/pics/scizor/front.animated.2bpp.lz.afd0131a and /dev/null differ diff --git a/gfx/pics/scizor/front.png b/gfx/pics/scizor/front.png deleted file mode 100644 index 2adfb879f..000000000 Binary files a/gfx/pics/scizor/front.png and /dev/null differ diff --git a/gfx/pics/scizor/shiny.pal b/gfx/pics/scizor/shiny.pal deleted file mode 100644 index e4f5cf30e..000000000 --- a/gfx/pics/scizor/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 22, 08 - RGB 06, 14, 07 - diff --git a/gfx/pics/scyther/anim0.asm b/gfx/pics/scyther/anim0.asm deleted file mode 100644 index 572161065..000000000 --- a/gfx/pics/scyther/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 05 - frame 2, 18 - frame 3, 06 - setrepeat 7 - frame 4, 04 - frame 5, 04 - dorepeat 4 - endanim -; 0xd0fa8 diff --git a/gfx/pics/scyther/anim1.asm b/gfx/pics/scyther/anim1.asm deleted file mode 100644 index e251a964d..000000000 --- a/gfx/pics/scyther/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 8 - frame 0, 04 - frame 6, 04 - dorepeat 1 - endanim -; 0xd1d78 diff --git a/gfx/pics/scyther/back.2bpp.lz.1d7f8a87 b/gfx/pics/scyther/back.2bpp.lz.1d7f8a87 deleted file mode 100644 index 421fc4ed0..000000000 Binary files a/gfx/pics/scyther/back.2bpp.lz.1d7f8a87 and /dev/null differ diff --git a/gfx/pics/scyther/back.png b/gfx/pics/scyther/back.png deleted file mode 100644 index 6af485895..000000000 Binary files a/gfx/pics/scyther/back.png and /dev/null differ diff --git a/gfx/pics/scyther/front.animated.2bpp.lz.86d1a281 b/gfx/pics/scyther/front.animated.2bpp.lz.86d1a281 deleted file mode 100644 index 02773fc11..000000000 Binary files a/gfx/pics/scyther/front.animated.2bpp.lz.86d1a281 and /dev/null differ diff --git a/gfx/pics/scyther/front.png b/gfx/pics/scyther/front.png deleted file mode 100644 index 088adc5a4..000000000 Binary files a/gfx/pics/scyther/front.png and /dev/null differ diff --git a/gfx/pics/scyther/shiny.pal b/gfx/pics/scyther/shiny.pal deleted file mode 100644 index 550d6dece..000000000 --- a/gfx/pics/scyther/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 17, 24, 00 - RGB 28, 09, 00 - diff --git a/gfx/pics/seadra/anim0.asm b/gfx/pics/seadra/anim0.asm deleted file mode 100644 index d06adbdb0..000000000 --- a/gfx/pics/seadra/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 1, 10 - frame 2, 10 - dorepeat 1 - endanim -; 0xd0f54 diff --git a/gfx/pics/seadra/anim1.asm b/gfx/pics/seadra/anim1.asm deleted file mode 100644 index d4c171276..000000000 --- a/gfx/pics/seadra/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 1, 10 - frame 3, 10 - dorepeat 1 - endanim -; 0xd1d40 diff --git a/gfx/pics/seadra/back.2bpp.lz.354a02e4 b/gfx/pics/seadra/back.2bpp.lz.354a02e4 deleted file mode 100644 index ba9025832..000000000 Binary files a/gfx/pics/seadra/back.2bpp.lz.354a02e4 and /dev/null differ diff --git a/gfx/pics/seadra/back.png b/gfx/pics/seadra/back.png deleted file mode 100644 index 45ea0bd90..000000000 Binary files a/gfx/pics/seadra/back.png and /dev/null differ diff --git a/gfx/pics/seadra/front.animated.2bpp.lz.efa9c88c b/gfx/pics/seadra/front.animated.2bpp.lz.efa9c88c deleted file mode 100644 index 6d63f3645..000000000 Binary files a/gfx/pics/seadra/front.animated.2bpp.lz.efa9c88c and /dev/null differ diff --git a/gfx/pics/seadra/front.png b/gfx/pics/seadra/front.png deleted file mode 100644 index 00a2a827d..000000000 Binary files a/gfx/pics/seadra/front.png and /dev/null differ diff --git a/gfx/pics/seadra/shiny.pal b/gfx/pics/seadra/shiny.pal deleted file mode 100644 index 7dab3b2ec..000000000 --- a/gfx/pics/seadra/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 11, 27 - RGB 10, 04, 29 - diff --git a/gfx/pics/seaking/anim0.asm b/gfx/pics/seaking/anim0.asm deleted file mode 100644 index a147346e2..000000000 --- a/gfx/pics/seaking/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 3 - frame 0, 12 - frame 1, 12 - frame 2, 12 - dorepeat 1 - endanim -; 0xd0f6c diff --git a/gfx/pics/seaking/anim1.asm b/gfx/pics/seaking/anim1.asm deleted file mode 100644 index 3d949a4bb..000000000 --- a/gfx/pics/seaking/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 15 - frame 3, 15 - frame 4, 15 - dorepeat 1 - endanim -; 0xd1d54 diff --git a/gfx/pics/seaking/back.2bpp.lz.3e699249 b/gfx/pics/seaking/back.2bpp.lz.3e699249 deleted file mode 100644 index 328a1fb55..000000000 Binary files a/gfx/pics/seaking/back.2bpp.lz.3e699249 and /dev/null differ diff --git a/gfx/pics/seaking/back.png b/gfx/pics/seaking/back.png deleted file mode 100644 index 121608b9f..000000000 Binary files a/gfx/pics/seaking/back.png and /dev/null differ diff --git a/gfx/pics/seaking/front.animated.2bpp.lz.fb4eb288 b/gfx/pics/seaking/front.animated.2bpp.lz.fb4eb288 deleted file mode 100644 index e204f1025..000000000 Binary files a/gfx/pics/seaking/front.animated.2bpp.lz.fb4eb288 and /dev/null differ diff --git a/gfx/pics/seaking/front.png b/gfx/pics/seaking/front.png deleted file mode 100644 index 7b06f5a27..000000000 Binary files a/gfx/pics/seaking/front.png and /dev/null differ diff --git a/gfx/pics/seaking/shiny.pal b/gfx/pics/seaking/shiny.pal deleted file mode 100644 index be7291e84..000000000 --- a/gfx/pics/seaking/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 27, 18 - RGB 26, 22, 02 - diff --git a/gfx/pics/seel/anim0.asm b/gfx/pics/seel/anim0.asm deleted file mode 100644 index ea92a35be..000000000 --- a/gfx/pics/seel/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 06 - frame 2, 32 - setrepeat 2 - frame 0, 10 - frame 1, 10 - dorepeat 3 - endanim -; 0xd0d9f diff --git a/gfx/pics/seel/anim1.asm b/gfx/pics/seel/anim1.asm deleted file mode 100644 index c601e55e5..000000000 --- a/gfx/pics/seel/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 2, 12 - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 2 - endanim -; 0xd1c1b diff --git a/gfx/pics/seel/back.2bpp.lz.518a4d40 b/gfx/pics/seel/back.2bpp.lz.518a4d40 deleted file mode 100644 index 0d5b89dae..000000000 Binary files a/gfx/pics/seel/back.2bpp.lz.518a4d40 and /dev/null differ diff --git a/gfx/pics/seel/back.png b/gfx/pics/seel/back.png deleted file mode 100644 index 45c050d44..000000000 Binary files a/gfx/pics/seel/back.png and /dev/null differ diff --git a/gfx/pics/seel/front.animated.2bpp.lz.2dc48023 b/gfx/pics/seel/front.animated.2bpp.lz.2dc48023 deleted file mode 100644 index c8f1343d6..000000000 Binary files a/gfx/pics/seel/front.animated.2bpp.lz.2dc48023 and /dev/null differ diff --git a/gfx/pics/seel/front.png b/gfx/pics/seel/front.png deleted file mode 100644 index a25d50d2f..000000000 Binary files a/gfx/pics/seel/front.png and /dev/null differ diff --git a/gfx/pics/seel/shiny.pal b/gfx/pics/seel/shiny.pal deleted file mode 100644 index bee98179f..000000000 --- a/gfx/pics/seel/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 19, 22 - RGB 29, 07, 05 - diff --git a/gfx/pics/sentret/anim0.asm b/gfx/pics/sentret/anim0.asm deleted file mode 100644 index 8080c7303..000000000 --- a/gfx/pics/sentret/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 15 - frame 1, 15 - dorepeat 1 - endanim -; 0xd11e6 diff --git a/gfx/pics/sentret/anim1.asm b/gfx/pics/sentret/anim1.asm deleted file mode 100644 index 9fcaecad0..000000000 --- a/gfx/pics/sentret/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 2, 07 - dorepeat 1 - endanim -; 0xd1ef2 diff --git a/gfx/pics/sentret/back.2bpp.lz.c19b7f3b b/gfx/pics/sentret/back.2bpp.lz.c19b7f3b deleted file mode 100644 index 511ba5465..000000000 Binary files a/gfx/pics/sentret/back.2bpp.lz.c19b7f3b and /dev/null differ diff --git a/gfx/pics/sentret/back.png b/gfx/pics/sentret/back.png deleted file mode 100644 index ce452af47..000000000 Binary files a/gfx/pics/sentret/back.png and /dev/null differ diff --git a/gfx/pics/sentret/front.animated.2bpp.lz.07c594c0 b/gfx/pics/sentret/front.animated.2bpp.lz.07c594c0 deleted file mode 100644 index 229aa430c..000000000 Binary files a/gfx/pics/sentret/front.animated.2bpp.lz.07c594c0 and /dev/null differ diff --git a/gfx/pics/sentret/front.png b/gfx/pics/sentret/front.png deleted file mode 100644 index 6e080188a..000000000 Binary files a/gfx/pics/sentret/front.png and /dev/null differ diff --git a/gfx/pics/sentret/shiny.pal b/gfx/pics/sentret/shiny.pal deleted file mode 100644 index 86ba2ffba..000000000 --- a/gfx/pics/sentret/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 19, 02 - RGB 21, 05, 20 - diff --git a/gfx/pics/shellder/anim0.asm b/gfx/pics/shellder/anim0.asm deleted file mode 100644 index 71aa3d358..000000000 --- a/gfx/pics/shellder/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd0dc5 diff --git a/gfx/pics/shellder/anim1.asm b/gfx/pics/shellder/anim1.asm deleted file mode 100644 index c32e9d19c..000000000 --- a/gfx/pics/shellder/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 2, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1c49 diff --git a/gfx/pics/shellder/back.2bpp.lz.61e27953 b/gfx/pics/shellder/back.2bpp.lz.61e27953 deleted file mode 100644 index f0d93b8a8..000000000 Binary files a/gfx/pics/shellder/back.2bpp.lz.61e27953 and /dev/null differ diff --git a/gfx/pics/shellder/back.png b/gfx/pics/shellder/back.png deleted file mode 100644 index be61dc743..000000000 Binary files a/gfx/pics/shellder/back.png and /dev/null differ diff --git a/gfx/pics/shellder/front.animated.2bpp.lz.df57d475 b/gfx/pics/shellder/front.animated.2bpp.lz.df57d475 deleted file mode 100644 index 5a444cfa6..000000000 Binary files a/gfx/pics/shellder/front.animated.2bpp.lz.df57d475 and /dev/null differ diff --git a/gfx/pics/shellder/front.png b/gfx/pics/shellder/front.png deleted file mode 100644 index ff863bb56..000000000 Binary files a/gfx/pics/shellder/front.png and /dev/null differ diff --git a/gfx/pics/shellder/shiny.pal b/gfx/pics/shellder/shiny.pal deleted file mode 100644 index 21c389b28..000000000 --- a/gfx/pics/shellder/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 17, 07 - RGB 21, 09, 04 - diff --git a/gfx/pics/shuckle/anim0.asm b/gfx/pics/shuckle/anim0.asm deleted file mode 100644 index 148d2bf7d..000000000 --- a/gfx/pics/shuckle/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 07 - frame 2, 07 - frame 3, 12 - frame 1, 07 - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 5 - endanim -; 0xd149e diff --git a/gfx/pics/shuckle/anim1.asm b/gfx/pics/shuckle/anim1.asm deleted file mode 100644 index 4dd072951..000000000 --- a/gfx/pics/shuckle/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd20c2 diff --git a/gfx/pics/shuckle/back.2bpp.lz.8d66899b b/gfx/pics/shuckle/back.2bpp.lz.8d66899b deleted file mode 100644 index 1cc4efcea..000000000 Binary files a/gfx/pics/shuckle/back.2bpp.lz.8d66899b and /dev/null differ diff --git a/gfx/pics/shuckle/back.png b/gfx/pics/shuckle/back.png deleted file mode 100644 index 9e38480d7..000000000 Binary files a/gfx/pics/shuckle/back.png and /dev/null differ diff --git a/gfx/pics/shuckle/front.animated.2bpp.lz.dee153d4 b/gfx/pics/shuckle/front.animated.2bpp.lz.dee153d4 deleted file mode 100644 index 95e78302a..000000000 Binary files a/gfx/pics/shuckle/front.animated.2bpp.lz.dee153d4 and /dev/null differ diff --git a/gfx/pics/shuckle/front.png b/gfx/pics/shuckle/front.png deleted file mode 100644 index 5220fe21d..000000000 Binary files a/gfx/pics/shuckle/front.png and /dev/null differ diff --git a/gfx/pics/shuckle/shiny.pal b/gfx/pics/shuckle/shiny.pal deleted file mode 100644 index 63b3644ab..000000000 --- a/gfx/pics/shuckle/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 22, 05 - RGB 15, 07, 31 - diff --git a/gfx/pics/skarmory/anim0.asm b/gfx/pics/skarmory/anim0.asm deleted file mode 100644 index 64c2bfaf0..000000000 --- a/gfx/pics/skarmory/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 3 - frame 1, 09 - frame 2, 09 - dorepeat 1 - frame 1, 08 - endanim -; 0xd1544 diff --git a/gfx/pics/skarmory/anim1.asm b/gfx/pics/skarmory/anim1.asm deleted file mode 100644 index 1853c881f..000000000 --- a/gfx/pics/skarmory/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd2138 diff --git a/gfx/pics/skarmory/back.2bpp.lz.f5e2e2e4 b/gfx/pics/skarmory/back.2bpp.lz.f5e2e2e4 deleted file mode 100644 index fca13d16a..000000000 Binary files a/gfx/pics/skarmory/back.2bpp.lz.f5e2e2e4 and /dev/null differ diff --git a/gfx/pics/skarmory/back.png b/gfx/pics/skarmory/back.png deleted file mode 100644 index 7005cb336..000000000 Binary files a/gfx/pics/skarmory/back.png and /dev/null differ diff --git a/gfx/pics/skarmory/front.animated.2bpp.lz.7de4675e b/gfx/pics/skarmory/front.animated.2bpp.lz.7de4675e deleted file mode 100644 index e53f5a9ef..000000000 Binary files a/gfx/pics/skarmory/front.animated.2bpp.lz.7de4675e and /dev/null differ diff --git a/gfx/pics/skarmory/front.png b/gfx/pics/skarmory/front.png deleted file mode 100644 index 68e39d93d..000000000 Binary files a/gfx/pics/skarmory/front.png and /dev/null differ diff --git a/gfx/pics/skarmory/shiny.pal b/gfx/pics/skarmory/shiny.pal deleted file mode 100644 index 80c53554d..000000000 --- a/gfx/pics/skarmory/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 22, 13 - RGB 05, 15, 01 - diff --git a/gfx/pics/skiploom/anim0.asm b/gfx/pics/skiploom/anim0.asm deleted file mode 100644 index 2ab6422e5..000000000 --- a/gfx/pics/skiploom/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 04 - frame 1, 10 - frame 2, 14 - frame 3, 14 - endanim -; 0xd1357 diff --git a/gfx/pics/skiploom/anim1.asm b/gfx/pics/skiploom/anim1.asm deleted file mode 100644 index d26d1717e..000000000 --- a/gfx/pics/skiploom/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1ff9 diff --git a/gfx/pics/skiploom/back.2bpp.lz.54e87a0c b/gfx/pics/skiploom/back.2bpp.lz.54e87a0c deleted file mode 100644 index 8b197406c..000000000 Binary files a/gfx/pics/skiploom/back.2bpp.lz.54e87a0c and /dev/null differ diff --git a/gfx/pics/skiploom/back.png b/gfx/pics/skiploom/back.png deleted file mode 100644 index ffe1de918..000000000 Binary files a/gfx/pics/skiploom/back.png and /dev/null differ diff --git a/gfx/pics/skiploom/front.animated.2bpp.lz.6436d556 b/gfx/pics/skiploom/front.animated.2bpp.lz.6436d556 deleted file mode 100644 index f48561c76..000000000 Binary files a/gfx/pics/skiploom/front.animated.2bpp.lz.6436d556 and /dev/null differ diff --git a/gfx/pics/skiploom/front.png b/gfx/pics/skiploom/front.png deleted file mode 100644 index 313b5c9f3..000000000 Binary files a/gfx/pics/skiploom/front.png and /dev/null differ diff --git a/gfx/pics/skiploom/shiny.pal b/gfx/pics/skiploom/shiny.pal deleted file mode 100644 index 3165d8ee7..000000000 --- a/gfx/pics/skiploom/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 24, 03 - RGB 18, 00, 20 - diff --git a/gfx/pics/slowbro/anim0.asm b/gfx/pics/slowbro/anim0.asm deleted file mode 100644 index cc288a464..000000000 --- a/gfx/pics/slowbro/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 0, 04 - frame 1, 08 - frame 0, 28 - frame 1, 12 - setrepeat 2 - frame 2, 10 - frame 3, 10 - dorepeat 5 - frame 2, 24 - frame 0, 10 - frame 4, 10 - endanim -; 0xd0d4f diff --git a/gfx/pics/slowbro/anim1.asm b/gfx/pics/slowbro/anim1.asm deleted file mode 100644 index 9e793ee00..000000000 --- a/gfx/pics/slowbro/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd1bd9 diff --git a/gfx/pics/slowbro/back.2bpp.lz.3676b1f1 b/gfx/pics/slowbro/back.2bpp.lz.3676b1f1 deleted file mode 100644 index af1d60999..000000000 Binary files a/gfx/pics/slowbro/back.2bpp.lz.3676b1f1 and /dev/null differ diff --git a/gfx/pics/slowbro/back.png b/gfx/pics/slowbro/back.png deleted file mode 100644 index 10c4b20e3..000000000 Binary files a/gfx/pics/slowbro/back.png and /dev/null differ diff --git a/gfx/pics/slowbro/front.animated.2bpp.lz.257e2e84 b/gfx/pics/slowbro/front.animated.2bpp.lz.257e2e84 deleted file mode 100644 index 0a6d1ac2c..000000000 Binary files a/gfx/pics/slowbro/front.animated.2bpp.lz.257e2e84 and /dev/null differ diff --git a/gfx/pics/slowbro/front.png b/gfx/pics/slowbro/front.png deleted file mode 100644 index de0280bbf..000000000 Binary files a/gfx/pics/slowbro/front.png and /dev/null differ diff --git a/gfx/pics/slowbro/shiny.pal b/gfx/pics/slowbro/shiny.pal deleted file mode 100644 index 7c1a1e020..000000000 --- a/gfx/pics/slowbro/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 10, 31 - RGB 18, 18, 00 - diff --git a/gfx/pics/slowking/anim0.asm b/gfx/pics/slowking/anim0.asm deleted file mode 100644 index d7ab700bd..000000000 --- a/gfx/pics/slowking/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 07 - frame 2, 25 - frame 3, 35 - frame 1, 07 - frame 2, 25 - setrepeat 2 - frame 0, 06 - frame 1, 06 - dorepeat 6 - endanim -; 0xd13e2 diff --git a/gfx/pics/slowking/anim1.asm b/gfx/pics/slowking/anim1.asm deleted file mode 100644 index 36fd7cd7a..000000000 --- a/gfx/pics/slowking/anim1.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 1, 07 - frame 2, 50 - endanim -; 0xd2054 diff --git a/gfx/pics/slowking/back.2bpp.lz.a90de69e b/gfx/pics/slowking/back.2bpp.lz.a90de69e deleted file mode 100644 index e6342e434..000000000 Binary files a/gfx/pics/slowking/back.2bpp.lz.a90de69e and /dev/null differ diff --git a/gfx/pics/slowking/back.png b/gfx/pics/slowking/back.png deleted file mode 100644 index a2308a98a..000000000 Binary files a/gfx/pics/slowking/back.png and /dev/null differ diff --git a/gfx/pics/slowking/front.animated.2bpp.lz.4c2f7140 b/gfx/pics/slowking/front.animated.2bpp.lz.4c2f7140 deleted file mode 100644 index 2f9bd1654..000000000 Binary files a/gfx/pics/slowking/front.animated.2bpp.lz.4c2f7140 and /dev/null differ diff --git a/gfx/pics/slowking/front.png b/gfx/pics/slowking/front.png deleted file mode 100644 index d648e8f0c..000000000 Binary files a/gfx/pics/slowking/front.png and /dev/null differ diff --git a/gfx/pics/slowking/shiny.pal b/gfx/pics/slowking/shiny.pal deleted file mode 100644 index 6a893a090..000000000 --- a/gfx/pics/slowking/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 10, 31 - RGB 09, 05, 31 - diff --git a/gfx/pics/slowpoke/anim0.asm b/gfx/pics/slowpoke/anim0.asm deleted file mode 100644 index fa391743c..000000000 --- a/gfx/pics/slowpoke/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 05 - frame 2, 28 - frame 1, 10 - endanim -; 0xd0d38 diff --git a/gfx/pics/slowpoke/anim1.asm b/gfx/pics/slowpoke/anim1.asm deleted file mode 100644 index 805a281c5..000000000 --- a/gfx/pics/slowpoke/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 3, 20 - endanim -; 0xd1bd0 diff --git a/gfx/pics/slowpoke/back.2bpp.lz.f2d1bb5c b/gfx/pics/slowpoke/back.2bpp.lz.f2d1bb5c deleted file mode 100644 index cdaa2178d..000000000 Binary files a/gfx/pics/slowpoke/back.2bpp.lz.f2d1bb5c and /dev/null differ diff --git a/gfx/pics/slowpoke/back.png b/gfx/pics/slowpoke/back.png deleted file mode 100644 index 8672dde51..000000000 Binary files a/gfx/pics/slowpoke/back.png and /dev/null differ diff --git a/gfx/pics/slowpoke/front.animated.2bpp.lz.42347014 b/gfx/pics/slowpoke/front.animated.2bpp.lz.42347014 deleted file mode 100644 index 23d8e22f2..000000000 Binary files a/gfx/pics/slowpoke/front.animated.2bpp.lz.42347014 and /dev/null differ diff --git a/gfx/pics/slowpoke/front.png b/gfx/pics/slowpoke/front.png deleted file mode 100644 index 009619adf..000000000 Binary files a/gfx/pics/slowpoke/front.png and /dev/null differ diff --git a/gfx/pics/slowpoke/shiny.pal b/gfx/pics/slowpoke/shiny.pal deleted file mode 100644 index a70e0d0ed..000000000 --- a/gfx/pics/slowpoke/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 11, 26 - RGB 17, 00, 31 - diff --git a/gfx/pics/slugma/anim0.asm b/gfx/pics/slugma/anim0.asm deleted file mode 100644 index 1c867ec37..000000000 --- a/gfx/pics/slugma/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 12 - frame 2, 10 - frame 3, 06 - frame 4, 14 - frame 6, 12 - frame 7, 10 - frame 8, 06 - frame 0, 14 - endanim -; 0xd14d9 diff --git a/gfx/pics/slugma/anim1.asm b/gfx/pics/slugma/anim1.asm deleted file mode 100644 index 5bfe4e799..000000000 --- a/gfx/pics/slugma/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 1 - endanim -; 0xd20ed diff --git a/gfx/pics/slugma/back.2bpp.lz.dc25c77a b/gfx/pics/slugma/back.2bpp.lz.dc25c77a deleted file mode 100644 index 949fbc218..000000000 Binary files a/gfx/pics/slugma/back.2bpp.lz.dc25c77a and /dev/null differ diff --git a/gfx/pics/slugma/back.png b/gfx/pics/slugma/back.png deleted file mode 100644 index f0fedc230..000000000 Binary files a/gfx/pics/slugma/back.png and /dev/null differ diff --git a/gfx/pics/slugma/front.animated.2bpp.lz.c1a44906 b/gfx/pics/slugma/front.animated.2bpp.lz.c1a44906 deleted file mode 100644 index 4c9a0078e..000000000 Binary files a/gfx/pics/slugma/front.animated.2bpp.lz.c1a44906 and /dev/null differ diff --git a/gfx/pics/slugma/front.png b/gfx/pics/slugma/front.png deleted file mode 100644 index ce63adac6..000000000 Binary files a/gfx/pics/slugma/front.png and /dev/null differ diff --git a/gfx/pics/slugma/shiny.pal b/gfx/pics/slugma/shiny.pal deleted file mode 100644 index b66ef094d..000000000 --- a/gfx/pics/slugma/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 21, 21 - RGB 11, 11, 11 - diff --git a/gfx/pics/smeargle/anim0.asm b/gfx/pics/smeargle/anim0.asm deleted file mode 100644 index 2144197fc..000000000 --- a/gfx/pics/smeargle/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 2, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd15ac diff --git a/gfx/pics/smeargle/anim1.asm b/gfx/pics/smeargle/anim1.asm deleted file mode 100644 index 178b14959..000000000 --- a/gfx/pics/smeargle/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd217e diff --git a/gfx/pics/smeargle/back.2bpp.lz.2de2de8c b/gfx/pics/smeargle/back.2bpp.lz.2de2de8c deleted file mode 100644 index eb96bfd07..000000000 Binary files a/gfx/pics/smeargle/back.2bpp.lz.2de2de8c and /dev/null differ diff --git a/gfx/pics/smeargle/back.png b/gfx/pics/smeargle/back.png deleted file mode 100644 index 22ba83c3c..000000000 Binary files a/gfx/pics/smeargle/back.png and /dev/null differ diff --git a/gfx/pics/smeargle/front.animated.2bpp.lz.82ec0f51 b/gfx/pics/smeargle/front.animated.2bpp.lz.82ec0f51 deleted file mode 100644 index 81be921d5..000000000 Binary files a/gfx/pics/smeargle/front.animated.2bpp.lz.82ec0f51 and /dev/null differ diff --git a/gfx/pics/smeargle/front.png b/gfx/pics/smeargle/front.png deleted file mode 100644 index 2c4a90508..000000000 Binary files a/gfx/pics/smeargle/front.png and /dev/null differ diff --git a/gfx/pics/smeargle/shiny.pal b/gfx/pics/smeargle/shiny.pal deleted file mode 100644 index 3b0290ba1..000000000 --- a/gfx/pics/smeargle/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 24, 25, 08 - RGB 09, 23, 02 - diff --git a/gfx/pics/smoochum/anim0.asm b/gfx/pics/smoochum/anim0.asm deleted file mode 100644 index 39f5e7ebe..000000000 --- a/gfx/pics/smoochum/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 06 - frame 2, 08 - frame 3, 24 - endanim -; 0xd15cd diff --git a/gfx/pics/smoochum/anim1.asm b/gfx/pics/smoochum/anim1.asm deleted file mode 100644 index 5ba02f113..000000000 --- a/gfx/pics/smoochum/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 1, 06 - dorepeat 1 - endanim -; 0xd219b diff --git a/gfx/pics/smoochum/back.2bpp.lz.af01f906 b/gfx/pics/smoochum/back.2bpp.lz.af01f906 deleted file mode 100644 index 52c256c16..000000000 Binary files a/gfx/pics/smoochum/back.2bpp.lz.af01f906 and /dev/null differ diff --git a/gfx/pics/smoochum/back.png b/gfx/pics/smoochum/back.png deleted file mode 100644 index e5167842e..000000000 Binary files a/gfx/pics/smoochum/back.png and /dev/null differ diff --git a/gfx/pics/smoochum/front.animated.2bpp.lz.5977720b b/gfx/pics/smoochum/front.animated.2bpp.lz.5977720b deleted file mode 100644 index cd4b75761..000000000 Binary files a/gfx/pics/smoochum/front.animated.2bpp.lz.5977720b and /dev/null differ diff --git a/gfx/pics/smoochum/front.png b/gfx/pics/smoochum/front.png deleted file mode 100644 index 49ba75639..000000000 Binary files a/gfx/pics/smoochum/front.png and /dev/null differ diff --git a/gfx/pics/smoochum/shiny.pal b/gfx/pics/smoochum/shiny.pal deleted file mode 100644 index ee3baba53..000000000 --- a/gfx/pics/smoochum/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 26, 07 - RGB 31, 12, 25 - diff --git a/gfx/pics/sneasel/anim0.asm b/gfx/pics/sneasel/anim0.asm deleted file mode 100644 index 5b7f3fb79..000000000 --- a/gfx/pics/sneasel/anim0.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 1, 04 - frame 2, 30 - endanim -; 0xd14aa diff --git a/gfx/pics/sneasel/anim1.asm b/gfx/pics/sneasel/anim1.asm deleted file mode 100644 index 1d3e3a41d..000000000 --- a/gfx/pics/sneasel/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 3, 24 - frame 0, 09 - frame 4, 08 - endanim -; 0xd20d2 diff --git a/gfx/pics/sneasel/back.2bpp.lz.5298828d b/gfx/pics/sneasel/back.2bpp.lz.5298828d deleted file mode 100644 index be5ad2304..000000000 Binary files a/gfx/pics/sneasel/back.2bpp.lz.5298828d and /dev/null differ diff --git a/gfx/pics/sneasel/back.png b/gfx/pics/sneasel/back.png deleted file mode 100644 index 4b1921c2a..000000000 Binary files a/gfx/pics/sneasel/back.png and /dev/null differ diff --git a/gfx/pics/sneasel/front.animated.2bpp.lz.8f7db3e9 b/gfx/pics/sneasel/front.animated.2bpp.lz.8f7db3e9 deleted file mode 100644 index 4add5f2e0..000000000 Binary files a/gfx/pics/sneasel/front.animated.2bpp.lz.8f7db3e9 and /dev/null differ diff --git a/gfx/pics/sneasel/front.png b/gfx/pics/sneasel/front.png deleted file mode 100644 index 958d314d9..000000000 Binary files a/gfx/pics/sneasel/front.png and /dev/null differ diff --git a/gfx/pics/sneasel/shiny.pal b/gfx/pics/sneasel/shiny.pal deleted file mode 100644 index 951cc3786..000000000 --- a/gfx/pics/sneasel/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 28, 28, 09 - RGB 31, 09, 31 - diff --git a/gfx/pics/snorlax/anim0.asm b/gfx/pics/snorlax/anim0.asm deleted file mode 100644 index 3825f3bca..000000000 --- a/gfx/pics/snorlax/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 10 - frame 2, 43 - frame 1, 10 - frame 0, 15 - setrepeat 2 - frame 0, 09 - frame 3, 09 - dorepeat 5 - endanim -; 0xd10b2 diff --git a/gfx/pics/snorlax/anim1.asm b/gfx/pics/snorlax/anim1.asm deleted file mode 100644 index 4969f8f1f..000000000 --- a/gfx/pics/snorlax/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 3, 10 - dorepeat 1 - endanim -; 0xd1e34 diff --git a/gfx/pics/snorlax/back.2bpp.lz.90570272 b/gfx/pics/snorlax/back.2bpp.lz.90570272 deleted file mode 100644 index dfbfcbb50..000000000 Binary files a/gfx/pics/snorlax/back.2bpp.lz.90570272 and /dev/null differ diff --git a/gfx/pics/snorlax/back.png b/gfx/pics/snorlax/back.png deleted file mode 100644 index 8493ee5ef..000000000 Binary files a/gfx/pics/snorlax/back.png and /dev/null differ diff --git a/gfx/pics/snorlax/front.animated.2bpp.lz.8253357b b/gfx/pics/snorlax/front.animated.2bpp.lz.8253357b deleted file mode 100644 index 7c610f46c..000000000 Binary files a/gfx/pics/snorlax/front.animated.2bpp.lz.8253357b and /dev/null differ diff --git a/gfx/pics/snorlax/front.png b/gfx/pics/snorlax/front.png deleted file mode 100644 index e328c4ca6..000000000 Binary files a/gfx/pics/snorlax/front.png and /dev/null differ diff --git a/gfx/pics/snorlax/shiny.pal b/gfx/pics/snorlax/shiny.pal deleted file mode 100644 index 9a3ed5d55..000000000 --- a/gfx/pics/snorlax/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 22, 11 - RGB 09, 07, 31 - diff --git a/gfx/pics/snubbull/anim0.asm b/gfx/pics/snubbull/anim0.asm deleted file mode 100644 index d97f9b354..000000000 --- a/gfx/pics/snubbull/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - setrepeat 2 - frame 1, 07 - frame 2, 09 - frame 3, 09 - dorepeat 1 - setrepeat 3 - frame 4, 08 - frame 0, 08 - dorepeat 6 - endanim -; 0xd1462 diff --git a/gfx/pics/snubbull/anim1.asm b/gfx/pics/snubbull/anim1.asm deleted file mode 100644 index 08cae5b71..000000000 --- a/gfx/pics/snubbull/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 4, 12 - frame 5, 12 - dorepeat 1 - endanim -; 0xd209e diff --git a/gfx/pics/snubbull/back.2bpp.lz.26eaaa5d b/gfx/pics/snubbull/back.2bpp.lz.26eaaa5d deleted file mode 100644 index 5b020db5e..000000000 Binary files a/gfx/pics/snubbull/back.2bpp.lz.26eaaa5d and /dev/null differ diff --git a/gfx/pics/snubbull/back.png b/gfx/pics/snubbull/back.png deleted file mode 100644 index 2c9635344..000000000 Binary files a/gfx/pics/snubbull/back.png and /dev/null differ diff --git a/gfx/pics/snubbull/front.animated.2bpp.lz.a1b4eb88 b/gfx/pics/snubbull/front.animated.2bpp.lz.a1b4eb88 deleted file mode 100644 index 69a534e2c..000000000 Binary files a/gfx/pics/snubbull/front.animated.2bpp.lz.a1b4eb88 and /dev/null differ diff --git a/gfx/pics/snubbull/front.png b/gfx/pics/snubbull/front.png deleted file mode 100644 index ee352f0e3..000000000 Binary files a/gfx/pics/snubbull/front.png and /dev/null differ diff --git a/gfx/pics/snubbull/shiny.pal b/gfx/pics/snubbull/shiny.pal deleted file mode 100644 index 04cda49ec..000000000 --- a/gfx/pics/snubbull/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 21, 24 - RGB 26, 00, 26 - diff --git a/gfx/pics/spearow/anim0.asm b/gfx/pics/spearow/anim0.asm deleted file mode 100644 index 35780c784..000000000 --- a/gfx/pics/spearow/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 06 - frame 2, 09 - frame 1, 25 - frame 0, 25 - frame 3, 10 - setrepeat 4 - frame 3, 04 - frame 4, 04 - dorepeat 6 - endanim -; 0xd09b6 diff --git a/gfx/pics/spearow/anim1.asm b/gfx/pics/spearow/anim1.asm deleted file mode 100644 index ed487ecc3..000000000 --- a/gfx/pics/spearow/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 3 - frame 1, 06 - frame 5, 06 - dorepeat 1 - frame 6, 07 - endanim -; 0xd1986 diff --git a/gfx/pics/spearow/back.2bpp.lz.b8e760aa b/gfx/pics/spearow/back.2bpp.lz.b8e760aa deleted file mode 100644 index 9411f32bd..000000000 Binary files a/gfx/pics/spearow/back.2bpp.lz.b8e760aa and /dev/null differ diff --git a/gfx/pics/spearow/back.png b/gfx/pics/spearow/back.png deleted file mode 100644 index e25a137a2..000000000 Binary files a/gfx/pics/spearow/back.png and /dev/null differ diff --git a/gfx/pics/spearow/front.animated.2bpp.lz.59d61986 b/gfx/pics/spearow/front.animated.2bpp.lz.59d61986 deleted file mode 100644 index 8def69a01..000000000 Binary files a/gfx/pics/spearow/front.animated.2bpp.lz.59d61986 and /dev/null differ diff --git a/gfx/pics/spearow/front.png b/gfx/pics/spearow/front.png deleted file mode 100644 index 85c2e7e23..000000000 Binary files a/gfx/pics/spearow/front.png and /dev/null differ diff --git a/gfx/pics/spearow/shiny.pal b/gfx/pics/spearow/shiny.pal deleted file mode 100644 index 188394e5f..000000000 --- a/gfx/pics/spearow/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 26, 00 - RGB 24, 13, 01 - diff --git a/gfx/pics/spinarak/anim0.asm b/gfx/pics/spinarak/anim0.asm deleted file mode 100644 index be299fc49..000000000 --- a/gfx/pics/spinarak/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 07 - frame 2, 12 - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 3 - endanim -; 0xd1240 diff --git a/gfx/pics/spinarak/anim1.asm b/gfx/pics/spinarak/anim1.asm deleted file mode 100644 index c605578ef..000000000 --- a/gfx/pics/spinarak/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd1f2e diff --git a/gfx/pics/spinarak/back.2bpp.lz.14002836 b/gfx/pics/spinarak/back.2bpp.lz.14002836 deleted file mode 100644 index 3fa2e3b12..000000000 Binary files a/gfx/pics/spinarak/back.2bpp.lz.14002836 and /dev/null differ diff --git a/gfx/pics/spinarak/back.png b/gfx/pics/spinarak/back.png deleted file mode 100644 index 52f9eb053..000000000 Binary files a/gfx/pics/spinarak/back.png and /dev/null differ diff --git a/gfx/pics/spinarak/front.animated.2bpp.lz.31ab6868 b/gfx/pics/spinarak/front.animated.2bpp.lz.31ab6868 deleted file mode 100644 index edbe6e1ce..000000000 Binary files a/gfx/pics/spinarak/front.animated.2bpp.lz.31ab6868 and /dev/null differ diff --git a/gfx/pics/spinarak/front.png b/gfx/pics/spinarak/front.png deleted file mode 100644 index e35c28646..000000000 Binary files a/gfx/pics/spinarak/front.png and /dev/null differ diff --git a/gfx/pics/spinarak/shiny.pal b/gfx/pics/spinarak/shiny.pal deleted file mode 100644 index 931425e3c..000000000 --- a/gfx/pics/spinarak/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 12, 31 - RGB 20, 09, 31 - diff --git a/gfx/pics/squirtle/anim0.asm b/gfx/pics/squirtle/anim0.asm deleted file mode 100644 index 9969d4263..000000000 --- a/gfx/pics/squirtle/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 3, 10 - setrepeat 2 - frame 1, 09 - frame 2, 05 - dorepeat 2 - frame 1, 10 - frame 3, 15 - frame 4, 05 - endanim -; 0xd08f2 diff --git a/gfx/pics/squirtle/anim1.asm b/gfx/pics/squirtle/anim1.asm deleted file mode 100644 index de24c37a6..000000000 --- a/gfx/pics/squirtle/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 5, 05 - dorepeat 1 - endanim -; 0xd18de diff --git a/gfx/pics/squirtle/back.2bpp.lz.76295ae8 b/gfx/pics/squirtle/back.2bpp.lz.76295ae8 deleted file mode 100644 index a8fa8d3fd..000000000 Binary files a/gfx/pics/squirtle/back.2bpp.lz.76295ae8 and /dev/null differ diff --git a/gfx/pics/squirtle/back.png b/gfx/pics/squirtle/back.png deleted file mode 100644 index 231dfa1bb..000000000 Binary files a/gfx/pics/squirtle/back.png and /dev/null differ diff --git a/gfx/pics/squirtle/front.animated.2bpp.lz.9b6f9ec9 b/gfx/pics/squirtle/front.animated.2bpp.lz.9b6f9ec9 deleted file mode 100644 index 175cc5e0d..000000000 Binary files a/gfx/pics/squirtle/front.animated.2bpp.lz.9b6f9ec9 and /dev/null differ diff --git a/gfx/pics/squirtle/front.png b/gfx/pics/squirtle/front.png deleted file mode 100644 index fd8f05fa9..000000000 Binary files a/gfx/pics/squirtle/front.png and /dev/null differ diff --git a/gfx/pics/squirtle/shiny.pal b/gfx/pics/squirtle/shiny.pal deleted file mode 100644 index 8df9f8263..000000000 --- a/gfx/pics/squirtle/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 13, 23, 08 - RGB 17, 25, 30 - diff --git a/gfx/pics/stantler/anim0.asm b/gfx/pics/stantler/anim0.asm deleted file mode 100644 index 8f4c133d8..000000000 --- a/gfx/pics/stantler/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 14 - frame 0, 12 - frame 1, 14 - frame 0, 22 - frame 2, 08 - frame 0, 08 - frame 2, 08 - endanim -; 0xd15a1 diff --git a/gfx/pics/stantler/anim1.asm b/gfx/pics/stantler/anim1.asm deleted file mode 100644 index 7444d761a..000000000 --- a/gfx/pics/stantler/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd2175 diff --git a/gfx/pics/stantler/back.2bpp.lz.16502aac b/gfx/pics/stantler/back.2bpp.lz.16502aac deleted file mode 100644 index a0ab53039..000000000 Binary files a/gfx/pics/stantler/back.2bpp.lz.16502aac and /dev/null differ diff --git a/gfx/pics/stantler/back.png b/gfx/pics/stantler/back.png deleted file mode 100644 index 90e7b4a65..000000000 Binary files a/gfx/pics/stantler/back.png and /dev/null differ diff --git a/gfx/pics/stantler/front.animated.2bpp.lz.46b7dd06 b/gfx/pics/stantler/front.animated.2bpp.lz.46b7dd06 deleted file mode 100644 index 87a56e667..000000000 Binary files a/gfx/pics/stantler/front.animated.2bpp.lz.46b7dd06 and /dev/null differ diff --git a/gfx/pics/stantler/front.png b/gfx/pics/stantler/front.png deleted file mode 100644 index ac8628445..000000000 Binary files a/gfx/pics/stantler/front.png and /dev/null differ diff --git a/gfx/pics/stantler/shiny.pal b/gfx/pics/stantler/shiny.pal deleted file mode 100644 index efdc404e9..000000000 --- a/gfx/pics/stantler/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 20, 07 - RGB 20, 05, 01 - diff --git a/gfx/pics/starmie/anim0.asm b/gfx/pics/starmie/anim0.asm deleted file mode 100644 index c81477807..000000000 --- a/gfx/pics/starmie/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 5 - frame 0, 06 - frame 1, 06 - dorepeat 1 - frame 2, 07 - frame 3, 07 - endanim -; 0xd0f86 diff --git a/gfx/pics/starmie/anim1.asm b/gfx/pics/starmie/anim1.asm deleted file mode 100644 index 7508e6e10..000000000 --- a/gfx/pics/starmie/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 2, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1d66 diff --git a/gfx/pics/starmie/back.2bpp.lz.a8923741 b/gfx/pics/starmie/back.2bpp.lz.a8923741 deleted file mode 100644 index 8085f0f44..000000000 Binary files a/gfx/pics/starmie/back.2bpp.lz.a8923741 and /dev/null differ diff --git a/gfx/pics/starmie/back.png b/gfx/pics/starmie/back.png deleted file mode 100644 index f4e67e4fa..000000000 Binary files a/gfx/pics/starmie/back.png and /dev/null differ diff --git a/gfx/pics/starmie/front.animated.2bpp.lz.522b6699 b/gfx/pics/starmie/front.animated.2bpp.lz.522b6699 deleted file mode 100644 index b9019f6c6..000000000 Binary files a/gfx/pics/starmie/front.animated.2bpp.lz.522b6699 and /dev/null differ diff --git a/gfx/pics/starmie/front.png b/gfx/pics/starmie/front.png deleted file mode 100644 index 2378c948b..000000000 Binary files a/gfx/pics/starmie/front.png and /dev/null differ diff --git a/gfx/pics/starmie/shiny.pal b/gfx/pics/starmie/shiny.pal deleted file mode 100644 index c9932cd86..000000000 --- a/gfx/pics/starmie/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 09, 11 - RGB 11, 11, 31 - diff --git a/gfx/pics/staryu/anim0.asm b/gfx/pics/staryu/anim0.asm deleted file mode 100644 index d257949e7..000000000 --- a/gfx/pics/staryu/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 24 - frame 0, 08 - frame 1, 12 - frame 2, 04 - frame 3, 04 - frame 2, 04 - endanim -; 0xd0f79 diff --git a/gfx/pics/staryu/anim1.asm b/gfx/pics/staryu/anim1.asm deleted file mode 100644 index 184806574..000000000 --- a/gfx/pics/staryu/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 04 - frame 2, 04 - frame 3, 04 - dorepeat 1 - endanim -; 0xd1d5f diff --git a/gfx/pics/staryu/back.2bpp.lz.79ea9d00 b/gfx/pics/staryu/back.2bpp.lz.79ea9d00 deleted file mode 100644 index 65366eb7c..000000000 Binary files a/gfx/pics/staryu/back.2bpp.lz.79ea9d00 and /dev/null differ diff --git a/gfx/pics/staryu/back.png b/gfx/pics/staryu/back.png deleted file mode 100644 index 9cab96362..000000000 Binary files a/gfx/pics/staryu/back.png and /dev/null differ diff --git a/gfx/pics/staryu/front.animated.2bpp.lz.22f1d06b b/gfx/pics/staryu/front.animated.2bpp.lz.22f1d06b deleted file mode 100644 index 8d0bdacb9..000000000 Binary files a/gfx/pics/staryu/front.animated.2bpp.lz.22f1d06b and /dev/null differ diff --git a/gfx/pics/staryu/front.png b/gfx/pics/staryu/front.png deleted file mode 100644 index 74949a9b1..000000000 Binary files a/gfx/pics/staryu/front.png and /dev/null differ diff --git a/gfx/pics/staryu/shiny.pal b/gfx/pics/staryu/shiny.pal deleted file mode 100644 index 11546faee..000000000 --- a/gfx/pics/staryu/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 16, 19 - RGB 08, 13, 30 - diff --git a/gfx/pics/steelix/anim0.asm b/gfx/pics/steelix/anim0.asm deleted file mode 100644 index 9acb2af0a..000000000 --- a/gfx/pics/steelix/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 14 - frame 2, 18 - frame 3, 28 - frame 2, 08 - frame 1, 06 - endanim -; 0xd144f diff --git a/gfx/pics/steelix/anim1.asm b/gfx/pics/steelix/anim1.asm deleted file mode 100644 index 3c1de78fb..000000000 --- a/gfx/pics/steelix/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd2095 diff --git a/gfx/pics/steelix/back.2bpp.lz.f3c03e61 b/gfx/pics/steelix/back.2bpp.lz.f3c03e61 deleted file mode 100644 index e4cb2d6dc..000000000 Binary files a/gfx/pics/steelix/back.2bpp.lz.f3c03e61 and /dev/null differ diff --git a/gfx/pics/steelix/back.png b/gfx/pics/steelix/back.png deleted file mode 100644 index 6788dacd9..000000000 Binary files a/gfx/pics/steelix/back.png and /dev/null differ diff --git a/gfx/pics/steelix/front.animated.2bpp.lz.42f3f8d1 b/gfx/pics/steelix/front.animated.2bpp.lz.42f3f8d1 deleted file mode 100644 index 2da642f04..000000000 Binary files a/gfx/pics/steelix/front.animated.2bpp.lz.42f3f8d1 and /dev/null differ diff --git a/gfx/pics/steelix/front.png b/gfx/pics/steelix/front.png deleted file mode 100644 index 30df74f27..000000000 Binary files a/gfx/pics/steelix/front.png and /dev/null differ diff --git a/gfx/pics/steelix/shiny.pal b/gfx/pics/steelix/shiny.pal deleted file mode 100644 index d929c214f..000000000 --- a/gfx/pics/steelix/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 15, 03 - RGB 15, 08, 08 - diff --git a/gfx/pics/sudowoodo/anim0.asm b/gfx/pics/sudowoodo/anim0.asm deleted file mode 100644 index 8e974a074..000000000 --- a/gfx/pics/sudowoodo/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 1, 10 - frame 2, 10 - frame 1, 10 - dorepeat 1 - endanim -; 0xd1336 diff --git a/gfx/pics/sudowoodo/anim1.asm b/gfx/pics/sudowoodo/anim1.asm deleted file mode 100644 index e42e960f9..000000000 --- a/gfx/pics/sudowoodo/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 09 - frame 3, 09 - dorepeat 1 - endanim -; 0xd1fdc diff --git a/gfx/pics/sudowoodo/back.2bpp.lz.728036c6 b/gfx/pics/sudowoodo/back.2bpp.lz.728036c6 deleted file mode 100644 index c10731ea9..000000000 Binary files a/gfx/pics/sudowoodo/back.2bpp.lz.728036c6 and /dev/null differ diff --git a/gfx/pics/sudowoodo/back.png b/gfx/pics/sudowoodo/back.png deleted file mode 100644 index cd7466ac3..000000000 Binary files a/gfx/pics/sudowoodo/back.png and /dev/null differ diff --git a/gfx/pics/sudowoodo/front.animated.2bpp.lz.b0f04991 b/gfx/pics/sudowoodo/front.animated.2bpp.lz.b0f04991 deleted file mode 100644 index 160f800cf..000000000 Binary files a/gfx/pics/sudowoodo/front.animated.2bpp.lz.b0f04991 and /dev/null differ diff --git a/gfx/pics/sudowoodo/front.png b/gfx/pics/sudowoodo/front.png deleted file mode 100644 index cc794899a..000000000 Binary files a/gfx/pics/sudowoodo/front.png and /dev/null differ diff --git a/gfx/pics/sudowoodo/shiny.pal b/gfx/pics/sudowoodo/shiny.pal deleted file mode 100644 index b82128b50..000000000 --- a/gfx/pics/sudowoodo/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 20, 08 - RGB 29, 03, 12 - diff --git a/gfx/pics/suicune/anim0.asm b/gfx/pics/suicune/anim0.asm deleted file mode 100644 index 0f2528116..000000000 --- a/gfx/pics/suicune/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 1, 10 - frame 2, 10 - frame 3, 10 - frame 4, 10 - frame 5, 10 - setrepeat 2 - frame 6, 03 - frame 7, 03 - frame 8, 03 - frame 0, 03 - dorepeat 6 - endanim -; 0xd1634 diff --git a/gfx/pics/suicune/anim1.asm b/gfx/pics/suicune/anim1.asm deleted file mode 100644 index 9e018683a..000000000 --- a/gfx/pics/suicune/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 9, 35 - setrepeat 2 - frame 0, 06 - frame 9, 06 - dorepeat 2 - endanim -; 0xd21e2 diff --git a/gfx/pics/suicune/back.2bpp.lz.5c49d112 b/gfx/pics/suicune/back.2bpp.lz.5c49d112 deleted file mode 100644 index a8106fbb4..000000000 Binary files a/gfx/pics/suicune/back.2bpp.lz.5c49d112 and /dev/null differ diff --git a/gfx/pics/suicune/back.png b/gfx/pics/suicune/back.png deleted file mode 100644 index b02456055..000000000 Binary files a/gfx/pics/suicune/back.png and /dev/null differ diff --git a/gfx/pics/suicune/front.animated.2bpp.lz.64698c0a b/gfx/pics/suicune/front.animated.2bpp.lz.64698c0a deleted file mode 100644 index cbc9dfdbf..000000000 Binary files a/gfx/pics/suicune/front.animated.2bpp.lz.64698c0a and /dev/null differ diff --git a/gfx/pics/suicune/front.png b/gfx/pics/suicune/front.png deleted file mode 100644 index f369cff81..000000000 Binary files a/gfx/pics/suicune/front.png and /dev/null differ diff --git a/gfx/pics/suicune/shiny.pal b/gfx/pics/suicune/shiny.pal deleted file mode 100644 index 776effbc3..000000000 --- a/gfx/pics/suicune/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 25, 24, 31 - RGB 16, 19, 24 - diff --git a/gfx/pics/sunflora/anim0.asm b/gfx/pics/sunflora/anim0.asm deleted file mode 100644 index aad8ddadd..000000000 --- a/gfx/pics/sunflora/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 12 - frame 2, 06 - frame 3, 16 - endanim -; 0xd137b diff --git a/gfx/pics/sunflora/anim1.asm b/gfx/pics/sunflora/anim1.asm deleted file mode 100644 index e78d5449e..000000000 --- a/gfx/pics/sunflora/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 4, 08 - dorepeat 1 - endanim -; 0xd201d diff --git a/gfx/pics/sunflora/back.2bpp.lz.9d0684f0 b/gfx/pics/sunflora/back.2bpp.lz.9d0684f0 deleted file mode 100644 index 3fb3432ba..000000000 Binary files a/gfx/pics/sunflora/back.2bpp.lz.9d0684f0 and /dev/null differ diff --git a/gfx/pics/sunflora/back.png b/gfx/pics/sunflora/back.png deleted file mode 100644 index e30eca3b0..000000000 Binary files a/gfx/pics/sunflora/back.png and /dev/null differ diff --git a/gfx/pics/sunflora/front.animated.2bpp.lz.258c3e67 b/gfx/pics/sunflora/front.animated.2bpp.lz.258c3e67 deleted file mode 100644 index 1026c3719..000000000 Binary files a/gfx/pics/sunflora/front.animated.2bpp.lz.258c3e67 and /dev/null differ diff --git a/gfx/pics/sunflora/front.png b/gfx/pics/sunflora/front.png deleted file mode 100644 index 377124363..000000000 Binary files a/gfx/pics/sunflora/front.png and /dev/null differ diff --git a/gfx/pics/sunflora/shiny.pal b/gfx/pics/sunflora/shiny.pal deleted file mode 100644 index a52ad6f96..000000000 --- a/gfx/pics/sunflora/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 31, 04 - RGB 18, 18, 00 - diff --git a/gfx/pics/sunkern/anim0.asm b/gfx/pics/sunkern/anim0.asm deleted file mode 100644 index c282b1fb2..000000000 --- a/gfx/pics/sunkern/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 24 - setrepeat 3 - frame 0, 04 - frame 2, 04 - dorepeat 2 - endanim -; 0xd1374 diff --git a/gfx/pics/sunkern/anim1.asm b/gfx/pics/sunkern/anim1.asm deleted file mode 100644 index f92d267a1..000000000 --- a/gfx/pics/sunkern/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd2014 diff --git a/gfx/pics/sunkern/back.2bpp.lz.d28f6303 b/gfx/pics/sunkern/back.2bpp.lz.d28f6303 deleted file mode 100644 index a9ba0f738..000000000 Binary files a/gfx/pics/sunkern/back.2bpp.lz.d28f6303 and /dev/null differ diff --git a/gfx/pics/sunkern/back.png b/gfx/pics/sunkern/back.png deleted file mode 100644 index f6a12a830..000000000 Binary files a/gfx/pics/sunkern/back.png and /dev/null differ diff --git a/gfx/pics/sunkern/front.animated.2bpp.lz.316c5261 b/gfx/pics/sunkern/front.animated.2bpp.lz.316c5261 deleted file mode 100644 index 77a21af73..000000000 Binary files a/gfx/pics/sunkern/front.animated.2bpp.lz.316c5261 and /dev/null differ diff --git a/gfx/pics/sunkern/front.png b/gfx/pics/sunkern/front.png deleted file mode 100644 index 5bc994e6d..000000000 Binary files a/gfx/pics/sunkern/front.png and /dev/null differ diff --git a/gfx/pics/sunkern/shiny.pal b/gfx/pics/sunkern/shiny.pal deleted file mode 100644 index 3215a861c..000000000 --- a/gfx/pics/sunkern/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 31, 01 - RGB 14, 22, 00 - diff --git a/gfx/pics/swinub/anim0.asm b/gfx/pics/swinub/anim0.asm deleted file mode 100644 index f1d93138a..000000000 --- a/gfx/pics/swinub/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 24 - setrepeat 2 - frame 0, 09 - frame 2, 09 - dorepeat 2 - endanim -; 0xd14ef diff --git a/gfx/pics/swinub/anim1.asm b/gfx/pics/swinub/anim1.asm deleted file mode 100644 index 5fe97a2ba..000000000 --- a/gfx/pics/swinub/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 1 - endanim -; 0xd20f9 diff --git a/gfx/pics/swinub/back.2bpp.lz.1ebbfabf b/gfx/pics/swinub/back.2bpp.lz.1ebbfabf deleted file mode 100644 index 51b90aae2..000000000 Binary files a/gfx/pics/swinub/back.2bpp.lz.1ebbfabf and /dev/null differ diff --git a/gfx/pics/swinub/back.png b/gfx/pics/swinub/back.png deleted file mode 100644 index 254b08e27..000000000 Binary files a/gfx/pics/swinub/back.png and /dev/null differ diff --git a/gfx/pics/swinub/front.animated.2bpp.lz.228147a5 b/gfx/pics/swinub/front.animated.2bpp.lz.228147a5 deleted file mode 100644 index 00171e0f3..000000000 Binary files a/gfx/pics/swinub/front.animated.2bpp.lz.228147a5 and /dev/null differ diff --git a/gfx/pics/swinub/front.png b/gfx/pics/swinub/front.png deleted file mode 100644 index 52fcadade..000000000 Binary files a/gfx/pics/swinub/front.png and /dev/null differ diff --git a/gfx/pics/swinub/shiny.pal b/gfx/pics/swinub/shiny.pal deleted file mode 100644 index 4e3eadacb..000000000 --- a/gfx/pics/swinub/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 18, 30 - RGB 31, 06, 04 - diff --git a/gfx/pics/tangela/anim0.asm b/gfx/pics/tangela/anim0.asm deleted file mode 100644 index 57a237afe..000000000 --- a/gfx/pics/tangela/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 36 - frame 0, 24 - frame 2, 10 - endanim -; 0xd0f2d diff --git a/gfx/pics/tangela/anim1.asm b/gfx/pics/tangela/anim1.asm deleted file mode 100644 index 7d8b2550f..000000000 --- a/gfx/pics/tangela/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 2, 06 - dorepeat 1 - endanim -; 0xd1d1f diff --git a/gfx/pics/tangela/back.2bpp.lz.435194a6 b/gfx/pics/tangela/back.2bpp.lz.435194a6 deleted file mode 100644 index 9ad73a0b6..000000000 Binary files a/gfx/pics/tangela/back.2bpp.lz.435194a6 and /dev/null differ diff --git a/gfx/pics/tangela/back.png b/gfx/pics/tangela/back.png deleted file mode 100644 index edbe07de1..000000000 Binary files a/gfx/pics/tangela/back.png and /dev/null differ diff --git a/gfx/pics/tangela/front.animated.2bpp.lz.7cb3fed8 b/gfx/pics/tangela/front.animated.2bpp.lz.7cb3fed8 deleted file mode 100644 index 345732b84..000000000 Binary files a/gfx/pics/tangela/front.animated.2bpp.lz.7cb3fed8 and /dev/null differ diff --git a/gfx/pics/tangela/front.png b/gfx/pics/tangela/front.png deleted file mode 100644 index 23c506929..000000000 Binary files a/gfx/pics/tangela/front.png and /dev/null differ diff --git a/gfx/pics/tangela/shiny.pal b/gfx/pics/tangela/shiny.pal deleted file mode 100644 index 089ec35c4..000000000 --- a/gfx/pics/tangela/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 30, 00 - RGB 17, 06, 06 - diff --git a/gfx/pics/tauros/anim0.asm b/gfx/pics/tauros/anim0.asm deleted file mode 100644 index 52c9264c3..000000000 --- a/gfx/pics/tauros/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 0, 08 - frame 3, 10 - frame 1, 28 - frame 0, 12 - setrepeat 3 - frame 2, 11 - frame 3, 11 - dorepeat 5 - frame 1, 07 - endanim -; 0xd0ff7 diff --git a/gfx/pics/tauros/anim1.asm b/gfx/pics/tauros/anim1.asm deleted file mode 100644 index ab6608d0d..000000000 --- a/gfx/pics/tauros/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd1da5 diff --git a/gfx/pics/tauros/back.2bpp.lz.f487c586 b/gfx/pics/tauros/back.2bpp.lz.f487c586 deleted file mode 100644 index 219aee479..000000000 Binary files a/gfx/pics/tauros/back.2bpp.lz.f487c586 and /dev/null differ diff --git a/gfx/pics/tauros/back.png b/gfx/pics/tauros/back.png deleted file mode 100644 index 9345301d3..000000000 Binary files a/gfx/pics/tauros/back.png and /dev/null differ diff --git a/gfx/pics/tauros/front.animated.2bpp.lz.982dd0db b/gfx/pics/tauros/front.animated.2bpp.lz.982dd0db deleted file mode 100644 index d395b145b..000000000 Binary files a/gfx/pics/tauros/front.animated.2bpp.lz.982dd0db and /dev/null differ diff --git a/gfx/pics/tauros/front.png b/gfx/pics/tauros/front.png deleted file mode 100644 index 535526411..000000000 Binary files a/gfx/pics/tauros/front.png and /dev/null differ diff --git a/gfx/pics/tauros/shiny.pal b/gfx/pics/tauros/shiny.pal deleted file mode 100644 index cc360615c..000000000 --- a/gfx/pics/tauros/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 27, 14 - RGB 09, 14, 10 - diff --git a/gfx/pics/teddiursa/anim0.asm b/gfx/pics/teddiursa/anim0.asm deleted file mode 100644 index 78bbeae60..000000000 --- a/gfx/pics/teddiursa/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 08 - frame 2, 28 - frame 0, 24 - setrepeat 3 - frame 0, 10 - frame 3, 10 - dorepeat 4 - endanim -; 0xd14b9 diff --git a/gfx/pics/teddiursa/anim1.asm b/gfx/pics/teddiursa/anim1.asm deleted file mode 100644 index 85cae5284..000000000 --- a/gfx/pics/teddiursa/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 4, 06 - dorepeat 1 - endanim -; 0xd20db diff --git a/gfx/pics/teddiursa/back.2bpp.lz.53f6e34e b/gfx/pics/teddiursa/back.2bpp.lz.53f6e34e deleted file mode 100644 index a6d267ef8..000000000 Binary files a/gfx/pics/teddiursa/back.2bpp.lz.53f6e34e and /dev/null differ diff --git a/gfx/pics/teddiursa/back.png b/gfx/pics/teddiursa/back.png deleted file mode 100644 index 0d4640318..000000000 Binary files a/gfx/pics/teddiursa/back.png and /dev/null differ diff --git a/gfx/pics/teddiursa/front.animated.2bpp.lz.5f9648c7 b/gfx/pics/teddiursa/front.animated.2bpp.lz.5f9648c7 deleted file mode 100644 index 40c22315e..000000000 Binary files a/gfx/pics/teddiursa/front.animated.2bpp.lz.5f9648c7 and /dev/null differ diff --git a/gfx/pics/teddiursa/front.png b/gfx/pics/teddiursa/front.png deleted file mode 100644 index 83dd4896d..000000000 Binary files a/gfx/pics/teddiursa/front.png and /dev/null differ diff --git a/gfx/pics/teddiursa/shiny.pal b/gfx/pics/teddiursa/shiny.pal deleted file mode 100644 index f3b997329..000000000 --- a/gfx/pics/teddiursa/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 29, 10 - RGB 13, 20, 01 - diff --git a/gfx/pics/tentacool/anim0.asm b/gfx/pics/tentacool/anim0.asm deleted file mode 100644 index 19b7d3a14..000000000 --- a/gfx/pics/tentacool/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 09 - frame 2, 05 - frame 4, 10 - frame 5, 16 - endanim -; 0xd0cd3 diff --git a/gfx/pics/tentacool/anim1.asm b/gfx/pics/tentacool/anim1.asm deleted file mode 100644 index 4e9ba0b11..000000000 --- a/gfx/pics/tentacool/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - endanim -; 0xd1b95 diff --git a/gfx/pics/tentacool/back.2bpp.lz.ae7b2102 b/gfx/pics/tentacool/back.2bpp.lz.ae7b2102 deleted file mode 100644 index c0b615905..000000000 Binary files a/gfx/pics/tentacool/back.2bpp.lz.ae7b2102 and /dev/null differ diff --git a/gfx/pics/tentacool/back.png b/gfx/pics/tentacool/back.png deleted file mode 100644 index 7a7724189..000000000 Binary files a/gfx/pics/tentacool/back.png and /dev/null differ diff --git a/gfx/pics/tentacool/front.animated.2bpp.lz.7a86457c b/gfx/pics/tentacool/front.animated.2bpp.lz.7a86457c deleted file mode 100644 index 57916e4e9..000000000 Binary files a/gfx/pics/tentacool/front.animated.2bpp.lz.7a86457c and /dev/null differ diff --git a/gfx/pics/tentacool/front.png b/gfx/pics/tentacool/front.png deleted file mode 100644 index 1e4684719..000000000 Binary files a/gfx/pics/tentacool/front.png and /dev/null differ diff --git a/gfx/pics/tentacool/shiny.pal b/gfx/pics/tentacool/shiny.pal deleted file mode 100644 index 1fec33a22..000000000 --- a/gfx/pics/tentacool/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 19, 31 - RGB 08, 19, 13 - diff --git a/gfx/pics/tentacruel/anim0.asm b/gfx/pics/tentacruel/anim0.asm deleted file mode 100644 index 4fed8e9d4..000000000 --- a/gfx/pics/tentacruel/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 2, 15 - frame 1, 23 - dorepeat 1 - frame 2, 08 - endanim -; 0xd0cde diff --git a/gfx/pics/tentacruel/anim1.asm b/gfx/pics/tentacruel/anim1.asm deleted file mode 100644 index fd8d510b4..000000000 --- a/gfx/pics/tentacruel/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 2, 20 - setrepeat 7 - frame 2, 03 - frame 3, 03 - dorepeat 2 - endanim -; 0xd1ba0 diff --git a/gfx/pics/tentacruel/back.2bpp.lz.0e344f19 b/gfx/pics/tentacruel/back.2bpp.lz.0e344f19 deleted file mode 100644 index 89d7a492d..000000000 Binary files a/gfx/pics/tentacruel/back.2bpp.lz.0e344f19 and /dev/null differ diff --git a/gfx/pics/tentacruel/back.png b/gfx/pics/tentacruel/back.png deleted file mode 100644 index 4430f740f..000000000 Binary files a/gfx/pics/tentacruel/back.png and /dev/null differ diff --git a/gfx/pics/tentacruel/front.animated.2bpp.lz.f13e5904 b/gfx/pics/tentacruel/front.animated.2bpp.lz.f13e5904 deleted file mode 100644 index ec6f4c2c8..000000000 Binary files a/gfx/pics/tentacruel/front.animated.2bpp.lz.f13e5904 and /dev/null differ diff --git a/gfx/pics/tentacruel/front.png b/gfx/pics/tentacruel/front.png deleted file mode 100644 index fad5553fe..000000000 Binary files a/gfx/pics/tentacruel/front.png and /dev/null differ diff --git a/gfx/pics/tentacruel/shiny.pal b/gfx/pics/tentacruel/shiny.pal deleted file mode 100644 index afe40aff6..000000000 --- a/gfx/pics/tentacruel/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 17, 20, 31 - RGB 05, 20, 00 - diff --git a/gfx/pics/togepi/anim0.asm b/gfx/pics/togepi/anim0.asm deleted file mode 100644 index a09192323..000000000 --- a/gfx/pics/togepi/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 1, 12 - dorepeat 1 - frame 0, 06 - frame 2, 06 - endanim -; 0xd12a6 diff --git a/gfx/pics/togepi/anim1.asm b/gfx/pics/togepi/anim1.asm deleted file mode 100644 index e3bd76591..000000000 --- a/gfx/pics/togepi/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 2, 06 - dorepeat 1 - endanim -; 0xd1f7a diff --git a/gfx/pics/togepi/back.2bpp.lz.0e22cc02 b/gfx/pics/togepi/back.2bpp.lz.0e22cc02 deleted file mode 100644 index ed6fab2ec..000000000 Binary files a/gfx/pics/togepi/back.2bpp.lz.0e22cc02 and /dev/null differ diff --git a/gfx/pics/togepi/back.png b/gfx/pics/togepi/back.png deleted file mode 100644 index de6bc8a40..000000000 Binary files a/gfx/pics/togepi/back.png and /dev/null differ diff --git a/gfx/pics/togepi/front.animated.2bpp.lz.0cf7ba07 b/gfx/pics/togepi/front.animated.2bpp.lz.0cf7ba07 deleted file mode 100644 index 8ceaf38bf..000000000 Binary files a/gfx/pics/togepi/front.animated.2bpp.lz.0cf7ba07 and /dev/null differ diff --git a/gfx/pics/togepi/front.png b/gfx/pics/togepi/front.png deleted file mode 100644 index 3fc23b9d7..000000000 Binary files a/gfx/pics/togepi/front.png and /dev/null differ diff --git a/gfx/pics/togepi/shiny.pal b/gfx/pics/togepi/shiny.pal deleted file mode 100644 index 6e194e5d9..000000000 --- a/gfx/pics/togepi/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 30, 26, 11 - RGB 08, 15, 31 - diff --git a/gfx/pics/togetic/anim0.asm b/gfx/pics/togetic/anim0.asm deleted file mode 100644 index cd1ac8f9b..000000000 --- a/gfx/pics/togetic/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 2, 09 - frame 1, 09 - setrepeat 2 - frame 5, 09 - frame 4, 09 - dorepeat 3 - endanim -; 0xd12b3 diff --git a/gfx/pics/togetic/anim1.asm b/gfx/pics/togetic/anim1.asm deleted file mode 100644 index 543befa82..000000000 --- a/gfx/pics/togetic/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1f83 diff --git a/gfx/pics/togetic/back.2bpp.lz.62cbb330 b/gfx/pics/togetic/back.2bpp.lz.62cbb330 deleted file mode 100644 index 134d5718a..000000000 Binary files a/gfx/pics/togetic/back.2bpp.lz.62cbb330 and /dev/null differ diff --git a/gfx/pics/togetic/back.png b/gfx/pics/togetic/back.png deleted file mode 100644 index 9a92e0970..000000000 Binary files a/gfx/pics/togetic/back.png and /dev/null differ diff --git a/gfx/pics/togetic/front.animated.2bpp.lz.5797583e b/gfx/pics/togetic/front.animated.2bpp.lz.5797583e deleted file mode 100644 index 13e98ae1d..000000000 Binary files a/gfx/pics/togetic/front.animated.2bpp.lz.5797583e and /dev/null differ diff --git a/gfx/pics/togetic/front.png b/gfx/pics/togetic/front.png deleted file mode 100644 index 9851c9011..000000000 Binary files a/gfx/pics/togetic/front.png and /dev/null differ diff --git a/gfx/pics/togetic/shiny.pal b/gfx/pics/togetic/shiny.pal deleted file mode 100644 index 10e7182f5..000000000 --- a/gfx/pics/togetic/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 24, 08 - RGB 02, 16, 31 - diff --git a/gfx/pics/totodile/anim0.asm b/gfx/pics/totodile/anim0.asm deleted file mode 100644 index c320f4646..000000000 --- a/gfx/pics/totodile/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 3 - frame 1, 10 - frame 2, 10 - dorepeat 1 - setrepeat 3 - frame 0, 10 - frame 2, 10 - dorepeat 5 - endanim -; 0xd11c7 diff --git a/gfx/pics/totodile/anim1.asm b/gfx/pics/totodile/anim1.asm deleted file mode 100644 index 35379db93..000000000 --- a/gfx/pics/totodile/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 35 - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 2 - endanim -; 0xd1ed7 diff --git a/gfx/pics/totodile/back.2bpp.lz.ab6bc2a1 b/gfx/pics/totodile/back.2bpp.lz.ab6bc2a1 deleted file mode 100644 index 6d73c934f..000000000 Binary files a/gfx/pics/totodile/back.2bpp.lz.ab6bc2a1 and /dev/null differ diff --git a/gfx/pics/totodile/back.png b/gfx/pics/totodile/back.png deleted file mode 100644 index 5cf6adf42..000000000 Binary files a/gfx/pics/totodile/back.png and /dev/null differ diff --git a/gfx/pics/totodile/front.animated.2bpp.lz.afce8cd0 b/gfx/pics/totodile/front.animated.2bpp.lz.afce8cd0 deleted file mode 100644 index 8e1ebd2f5..000000000 Binary files a/gfx/pics/totodile/front.animated.2bpp.lz.afce8cd0 and /dev/null differ diff --git a/gfx/pics/totodile/front.png b/gfx/pics/totodile/front.png deleted file mode 100644 index 634d04189..000000000 Binary files a/gfx/pics/totodile/front.png and /dev/null differ diff --git a/gfx/pics/totodile/shiny.pal b/gfx/pics/totodile/shiny.pal deleted file mode 100644 index c947fe43a..000000000 --- a/gfx/pics/totodile/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 26, 15 - RGB 14, 09, 28 - diff --git a/gfx/pics/typhlosion/anim0.asm b/gfx/pics/typhlosion/anim0.asm deleted file mode 100644 index bb4b30d6c..000000000 --- a/gfx/pics/typhlosion/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 1, 08 - setrepeat 6 - frame 2, 04 - frame 3, 04 - dorepeat 2 - setrepeat 2 - frame 5, 03 - frame 1, 03 - dorepeat 6 - endanim -; 0xd11b6 diff --git a/gfx/pics/typhlosion/anim1.asm b/gfx/pics/typhlosion/anim1.asm deleted file mode 100644 index 2f7ed3abc..000000000 --- a/gfx/pics/typhlosion/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 08 - dorepeat 1 - endanim -; 0xd1ecc diff --git a/gfx/pics/typhlosion/back.2bpp.lz.83be0292 b/gfx/pics/typhlosion/back.2bpp.lz.83be0292 deleted file mode 100644 index 592306fa6..000000000 Binary files a/gfx/pics/typhlosion/back.2bpp.lz.83be0292 and /dev/null differ diff --git a/gfx/pics/typhlosion/back.png b/gfx/pics/typhlosion/back.png deleted file mode 100644 index 1808f3089..000000000 Binary files a/gfx/pics/typhlosion/back.png and /dev/null differ diff --git a/gfx/pics/typhlosion/front.animated.2bpp.lz.65adc1e1 b/gfx/pics/typhlosion/front.animated.2bpp.lz.65adc1e1 deleted file mode 100644 index 9dba415ad..000000000 Binary files a/gfx/pics/typhlosion/front.animated.2bpp.lz.65adc1e1 and /dev/null differ diff --git a/gfx/pics/typhlosion/front.png b/gfx/pics/typhlosion/front.png deleted file mode 100644 index aef81a01b..000000000 Binary files a/gfx/pics/typhlosion/front.png and /dev/null differ diff --git a/gfx/pics/typhlosion/shiny.pal b/gfx/pics/typhlosion/shiny.pal deleted file mode 100644 index 5b3df0b4e..000000000 --- a/gfx/pics/typhlosion/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 29, 23, 09 - RGB 22, 00, 19 - diff --git a/gfx/pics/tyranitar/anim0.asm b/gfx/pics/tyranitar/anim0.asm deleted file mode 100644 index f345bdd8e..000000000 --- a/gfx/pics/tyranitar/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 14 - frame 2, 16 - frame 3, 16 - frame 1, 14 - frame 4, 16 - frame 0, 16 - frame 4, 16 - endanim -; 0xd1659 diff --git a/gfx/pics/tyranitar/anim1.asm b/gfx/pics/tyranitar/anim1.asm deleted file mode 100644 index 29788fd1d..000000000 --- a/gfx/pics/tyranitar/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 5, 08 - dorepeat 1 - endanim -; 0xd21ff diff --git a/gfx/pics/tyranitar/back.2bpp.lz.05b022c9 b/gfx/pics/tyranitar/back.2bpp.lz.05b022c9 deleted file mode 100644 index 572e56d69..000000000 Binary files a/gfx/pics/tyranitar/back.2bpp.lz.05b022c9 and /dev/null differ diff --git a/gfx/pics/tyranitar/back.png b/gfx/pics/tyranitar/back.png deleted file mode 100644 index 07f6d1b57..000000000 Binary files a/gfx/pics/tyranitar/back.png and /dev/null differ diff --git a/gfx/pics/tyranitar/front.animated.2bpp.lz.e0e9187e b/gfx/pics/tyranitar/front.animated.2bpp.lz.e0e9187e deleted file mode 100644 index 07d48a5fe..000000000 Binary files a/gfx/pics/tyranitar/front.animated.2bpp.lz.e0e9187e and /dev/null differ diff --git a/gfx/pics/tyranitar/front.png b/gfx/pics/tyranitar/front.png deleted file mode 100644 index 4b1ba3416..000000000 Binary files a/gfx/pics/tyranitar/front.png and /dev/null differ diff --git a/gfx/pics/tyranitar/shiny.pal b/gfx/pics/tyranitar/shiny.pal deleted file mode 100644 index 4eebd8b4f..000000000 --- a/gfx/pics/tyranitar/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 21, 18, 15 - RGB 19, 01, 31 - diff --git a/gfx/pics/tyrogue/anim0.asm b/gfx/pics/tyrogue/anim0.asm deleted file mode 100644 index e1470d816..000000000 --- a/gfx/pics/tyrogue/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 08 - setrepeat 4 - frame 2, 05 - frame 3, 06 - dorepeat 2 - endanim -; 0xd15b7 diff --git a/gfx/pics/tyrogue/anim1.asm b/gfx/pics/tyrogue/anim1.asm deleted file mode 100644 index da73f62e3..000000000 --- a/gfx/pics/tyrogue/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 4, 05 - dorepeat 1 - endanim -; 0xd2187 diff --git a/gfx/pics/tyrogue/back.2bpp.lz.5d84cef1 b/gfx/pics/tyrogue/back.2bpp.lz.5d84cef1 deleted file mode 100644 index 9c9a0babc..000000000 Binary files a/gfx/pics/tyrogue/back.2bpp.lz.5d84cef1 and /dev/null differ diff --git a/gfx/pics/tyrogue/back.png b/gfx/pics/tyrogue/back.png deleted file mode 100644 index 22c1d61c4..000000000 Binary files a/gfx/pics/tyrogue/back.png and /dev/null differ diff --git a/gfx/pics/tyrogue/front.animated.2bpp.lz.a3790421 b/gfx/pics/tyrogue/front.animated.2bpp.lz.a3790421 deleted file mode 100644 index 8245825fb..000000000 Binary files a/gfx/pics/tyrogue/front.animated.2bpp.lz.a3790421 and /dev/null differ diff --git a/gfx/pics/tyrogue/front.png b/gfx/pics/tyrogue/front.png deleted file mode 100644 index af8af4a4e..000000000 Binary files a/gfx/pics/tyrogue/front.png and /dev/null differ diff --git a/gfx/pics/tyrogue/shiny.pal b/gfx/pics/tyrogue/shiny.pal deleted file mode 100644 index 53e0a5c1e..000000000 --- a/gfx/pics/tyrogue/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 19, 18 - RGB 09, 13, 29 - diff --git a/gfx/pics/umbreon/anim0.asm b/gfx/pics/umbreon/anim0.asm deleted file mode 100644 index 541539979..000000000 --- a/gfx/pics/umbreon/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 07 - frame 2, 30 - setrepeat 2 - frame 2, 08 - frame 3, 08 - dorepeat 3 - frame 2, 30 - endanim -; 0xd13be diff --git a/gfx/pics/umbreon/anim1.asm b/gfx/pics/umbreon/anim1.asm deleted file mode 100644 index adb0158e2..000000000 --- a/gfx/pics/umbreon/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 04 - frame 4, 04 - dorepeat 1 - endanim -; 0xd2046 diff --git a/gfx/pics/umbreon/back.2bpp.lz.55e50b8c b/gfx/pics/umbreon/back.2bpp.lz.55e50b8c deleted file mode 100644 index cf39af2c6..000000000 Binary files a/gfx/pics/umbreon/back.2bpp.lz.55e50b8c and /dev/null differ diff --git a/gfx/pics/umbreon/back.png b/gfx/pics/umbreon/back.png deleted file mode 100644 index f1cce4fc8..000000000 Binary files a/gfx/pics/umbreon/back.png and /dev/null differ diff --git a/gfx/pics/umbreon/front.animated.2bpp.lz.b484be57 b/gfx/pics/umbreon/front.animated.2bpp.lz.b484be57 deleted file mode 100644 index 64a338138..000000000 Binary files a/gfx/pics/umbreon/front.animated.2bpp.lz.b484be57 and /dev/null differ diff --git a/gfx/pics/umbreon/front.png b/gfx/pics/umbreon/front.png deleted file mode 100644 index c1bf9c2f8..000000000 Binary files a/gfx/pics/umbreon/front.png and /dev/null differ diff --git a/gfx/pics/umbreon/shiny.pal b/gfx/pics/umbreon/shiny.pal deleted file mode 100644 index 9173bbb15..000000000 --- a/gfx/pics/umbreon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 10, 11, 31 - RGB 06, 07, 05 - diff --git a/gfx/pics/unown/anim0.asm b/gfx/pics/unown/anim0.asm deleted file mode 100644 index 510d2751c..000000000 --- a/gfx/pics/unown/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 05 - frame 2, 05 - frame 3, 05 - frame 4, 05 - frame 5, 05 - frame 6, 05 - frame 7, 05 - frame 8, 05 - frame 9, 05 - frame 10, 05 - endanim -; 0xd13fe diff --git a/gfx/pics/unown/anim1.asm b/gfx/pics/unown/anim1.asm deleted file mode 100644 index 3d0f65488..000000000 --- a/gfx/pics/unown/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 11, 05 - dorepeat 1 - endanim -; 0xd2066 diff --git a/gfx/pics/unown/bitmask.asm b/gfx/pics/unown/bitmask.asm deleted file mode 100644 index f0ae4e5b2..000000000 --- a/gfx/pics/unown/bitmask.asm +++ /dev/null @@ -1,31 +0,0 @@ -; 0 - db %00100000 - db %10101100 - db %01100111 - db %00000000 -; 1 - db %10100000 - db %10111100 - db %01100111 - db %00000000 -; 2 - db %10000000 - db %00110000 - db %00000100 - db %00000000 -; 3 - db %10100000 - db %10111100 - db %00100101 - db %00000000 -; 4 - db %00100000 - db %10101100 - db %00100101 - db %00000000 -; 5 - db %00000000 - db %00010000 - db %00000000 - db %00000000 -; 0xd36ab diff --git a/gfx/pics/unown/frames.asm b/gfx/pics/unown/frames.asm deleted file mode 100644 index ca996e90a..000000000 --- a/gfx/pics/unown/frames.asm +++ /dev/null @@ -1,45 +0,0 @@ - dw .frame1 - dw .frame2 - dw .frame3 - dw .frame4 - dw .frame5 - dw .frame6 - dw .frame7 - dw .frame8 - dw .frame9 - dw .frame10 - dw .frame11 -.frame1 - db $00 ; bitmask - db $19, $1a, $1b, $1c, $00, $1d, $1e, $1f, $00, $20 -.frame2 - db $00 ; bitmask - db $19, $1a, $1b, $21, $00, $1d, $1e, $22, $00, $20 -.frame3 - db $01 ; bitmask - db $23, $24, $25, $26, $27, $1c, $00, $28, $29, $1f, $2a, $2b -.frame4 - db $01 ; bitmask - db $23, $24, $25, $26, $27, $21, $00, $28, $29, $22, $2a, $2b -.frame5 - db $02 ; bitmask - db $24, $27, $1c, $1f -.frame6 - db $02 ; bitmask - db $24, $27, $21, $22 -.frame7 - db $03 ; bitmask - db $19, $24, $1a, $1b, $27, $1c, $00, $2c, $1f, $2d -.frame8 - db $03 ; bitmask - db $19, $24, $1a, $1b, $27, $21, $00, $2c, $22, $2d -.frame9 - db $04 ; bitmask - db $23, $25, $2e, $1c, $00, $2f, $1f, $2d -.frame10 - db $04 ; bitmask - db $23, $25, $2e, $21, $00, $2f, $22, $2d -.frame11 - db $05 ; bitmask - db $27 -; 0xd8e5e diff --git a/gfx/pics/unown/normal.pal b/gfx/pics/unown/normal.pal deleted file mode 100644 index 19f5252a7..000000000 --- a/gfx/pics/unown/normal.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 15, 15, 16 - RGB 07, 07, 08 - diff --git a/gfx/pics/unown/shiny.pal b/gfx/pics/unown/shiny.pal deleted file mode 100644 index 6a30f11e6..000000000 --- a/gfx/pics/unown/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 19, 31 - RGB 02, 11, 31 - diff --git a/gfx/pics/unown_a/anim0.asm b/gfx/pics/unown_a/anim0.asm deleted file mode 100644 index 7243ed0fb..000000000 --- a/gfx/pics/unown_a/anim0.asm +++ /dev/null @@ -1,13 +0,0 @@ - frame 0, 08 - frame 1, 08 - frame 2, 24 - frame 1, 08 - frame 0, 08 - setrepeat 2 - frame 3, 07 - frame 0, 07 - frame 4, 07 - frame 0, 07 - dorepeat 6 - endanim -; 0xd2274 diff --git a/gfx/pics/unown_a/anim1.asm b/gfx/pics/unown_a/anim1.asm deleted file mode 100644 index d995ba44d..000000000 --- a/gfx/pics/unown_a/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 5, 06 - dorepeat 1 - endanim -; 0xd240e diff --git a/gfx/pics/unown_a/back.2bpp.lz.b8389572 b/gfx/pics/unown_a/back.2bpp.lz.b8389572 deleted file mode 100644 index 08833e3e2..000000000 Binary files a/gfx/pics/unown_a/back.2bpp.lz.b8389572 and /dev/null differ diff --git a/gfx/pics/unown_a/back.png b/gfx/pics/unown_a/back.png deleted file mode 100644 index 48f7c0200..000000000 Binary files a/gfx/pics/unown_a/back.png and /dev/null differ diff --git a/gfx/pics/unown_a/front.animated.2bpp.lz.47e16756 b/gfx/pics/unown_a/front.animated.2bpp.lz.47e16756 deleted file mode 100644 index 6f0639575..000000000 Binary files a/gfx/pics/unown_a/front.animated.2bpp.lz.47e16756 and /dev/null differ diff --git a/gfx/pics/unown_a/front.png b/gfx/pics/unown_a/front.png deleted file mode 100644 index 1949bdc9a..000000000 Binary files a/gfx/pics/unown_a/front.png and /dev/null differ diff --git a/gfx/pics/unown_anim_pointers.asm b/gfx/pics/unown_anim_pointers.asm deleted file mode 100644 index 46aa757e4..000000000 --- a/gfx/pics/unown_anim_pointers.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownAnimationPointers: - dw UnownAAnimation - dw UnownBAnimation - dw UnownCAnimation - dw UnownDAnimation - dw UnownEAnimation - dw UnownFAnimation - dw UnownGAnimation - dw UnownHAnimation - dw UnownIAnimation - dw UnownJAnimation - dw UnownKAnimation - dw UnownLAnimation - dw UnownMAnimation - dw UnownNAnimation - dw UnownOAnimation - dw UnownPAnimation - dw UnownQAnimation - dw UnownRAnimation - dw UnownSAnimation - dw UnownTAnimation - dw UnownUAnimation - dw UnownVAnimation - dw UnownWAnimation - dw UnownXAnimation - dw UnownYAnimation - dw UnownZAnimation diff --git a/gfx/pics/unown_anims.asm b/gfx/pics/unown_anims.asm deleted file mode 100644 index 3f988c2f6..000000000 --- a/gfx/pics/unown_anims.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownAnimations: -UnownAAnimation: INCLUDE "gfx/pics/unown_a/anim0.asm" -UnownBAnimation: INCLUDE "gfx/pics/unown_b/anim0.asm" -UnownCAnimation: INCLUDE "gfx/pics/unown_c/anim0.asm" -UnownDAnimation: INCLUDE "gfx/pics/unown_d/anim0.asm" -UnownEAnimation: INCLUDE "gfx/pics/unown_e/anim0.asm" -UnownFAnimation: INCLUDE "gfx/pics/unown_f/anim0.asm" -UnownGAnimation: INCLUDE "gfx/pics/unown_g/anim0.asm" -UnownHAnimation: INCLUDE "gfx/pics/unown_h/anim0.asm" -UnownIAnimation: INCLUDE "gfx/pics/unown_i/anim0.asm" -UnownJAnimation: INCLUDE "gfx/pics/unown_j/anim0.asm" -UnownKAnimation: INCLUDE "gfx/pics/unown_k/anim0.asm" -UnownLAnimation: INCLUDE "gfx/pics/unown_l/anim0.asm" -UnownMAnimation: INCLUDE "gfx/pics/unown_m/anim0.asm" -UnownNAnimation: INCLUDE "gfx/pics/unown_n/anim0.asm" -UnownOAnimation: INCLUDE "gfx/pics/unown_o/anim0.asm" -UnownPAnimation: INCLUDE "gfx/pics/unown_p/anim0.asm" -UnownQAnimation: INCLUDE "gfx/pics/unown_q/anim0.asm" -UnownRAnimation: INCLUDE "gfx/pics/unown_r/anim0.asm" -UnownSAnimation: INCLUDE "gfx/pics/unown_s/anim0.asm" -UnownTAnimation: INCLUDE "gfx/pics/unown_t/anim0.asm" -UnownUAnimation: INCLUDE "gfx/pics/unown_u/anim0.asm" -UnownVAnimation: INCLUDE "gfx/pics/unown_v/anim0.asm" -UnownWAnimation: INCLUDE "gfx/pics/unown_w/anim0.asm" -UnownXAnimation: INCLUDE "gfx/pics/unown_x/anim0.asm" -UnownYAnimation: INCLUDE "gfx/pics/unown_y/anim0.asm" -UnownZAnimation: INCLUDE "gfx/pics/unown_z/anim0.asm" diff --git a/gfx/pics/unown_b/anim0.asm b/gfx/pics/unown_b/anim0.asm deleted file mode 100644 index 7683b9e84..000000000 --- a/gfx/pics/unown_b/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 08 - frame 2, 18 - frame 3, 06 - setrepeat 3 - frame 4, 04 - frame 5, 04 - dorepeat 4 - endanim -; 0xd2283 diff --git a/gfx/pics/unown_b/anim1.asm b/gfx/pics/unown_b/anim1.asm deleted file mode 100644 index b8e03b299..000000000 --- a/gfx/pics/unown_b/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 03 - frame 6, 04 - dorepeat 1 - endanim -; 0xd2417 diff --git a/gfx/pics/unown_b/back.2bpp.lz.72a0840f b/gfx/pics/unown_b/back.2bpp.lz.72a0840f deleted file mode 100644 index 46375f630..000000000 Binary files a/gfx/pics/unown_b/back.2bpp.lz.72a0840f and /dev/null differ diff --git a/gfx/pics/unown_b/back.png b/gfx/pics/unown_b/back.png deleted file mode 100644 index 3ceaba03c..000000000 Binary files a/gfx/pics/unown_b/back.png and /dev/null differ diff --git a/gfx/pics/unown_b/front.animated.2bpp.lz.5742d494 b/gfx/pics/unown_b/front.animated.2bpp.lz.5742d494 deleted file mode 100644 index 661c64a9e..000000000 Binary files a/gfx/pics/unown_b/front.animated.2bpp.lz.5742d494 and /dev/null differ diff --git a/gfx/pics/unown_b/front.png b/gfx/pics/unown_b/front.png deleted file mode 100644 index 9858a26ba..000000000 Binary files a/gfx/pics/unown_b/front.png and /dev/null differ diff --git a/gfx/pics/unown_bitmask_pointers.asm b/gfx/pics/unown_bitmask_pointers.asm deleted file mode 100644 index a20db9700..000000000 --- a/gfx/pics/unown_bitmask_pointers.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownBitmasksPointers: - dw UnownABitmasks - dw UnownBBitmasks - dw UnownCBitmasks - dw UnownDBitmasks - dw UnownEBitmasks - dw UnownFBitmasks - dw UnownGBitmasks - dw UnownHBitmasks - dw UnownIBitmasks - dw UnownJBitmasks - dw UnownKBitmasks - dw UnownLBitmasks - dw UnownMBitmasks - dw UnownNBitmasks - dw UnownOBitmasks - dw UnownPBitmasks - dw UnownQBitmasks - dw UnownRBitmasks - dw UnownSBitmasks - dw UnownTBitmasks - dw UnownUBitmasks - dw UnownVBitmasks - dw UnownWBitmasks - dw UnownXBitmasks - dw UnownYBitmasks - dw UnownZBitmasks diff --git a/gfx/pics/unown_bitmasks.asm b/gfx/pics/unown_bitmasks.asm deleted file mode 100644 index 5df6b7463..000000000 --- a/gfx/pics/unown_bitmasks.asm +++ /dev/null @@ -1,26 +0,0 @@ -UnownABitmasks: INCLUDE "gfx/pics/unown_a/bitmask.asm" -UnownBBitmasks: INCLUDE "gfx/pics/unown_b/bitmask.asm" -UnownCBitmasks: INCLUDE "gfx/pics/unown_c/bitmask.asm" -UnownDBitmasks: INCLUDE "gfx/pics/unown_d/bitmask.asm" -UnownEBitmasks: INCLUDE "gfx/pics/unown_e/bitmask.asm" -UnownFBitmasks: INCLUDE "gfx/pics/unown_f/bitmask.asm" -UnownGBitmasks: INCLUDE "gfx/pics/unown_g/bitmask.asm" -UnownHBitmasks: INCLUDE "gfx/pics/unown_h/bitmask.asm" -UnownIBitmasks: INCLUDE "gfx/pics/unown_i/bitmask.asm" -UnownJBitmasks: INCLUDE "gfx/pics/unown_j/bitmask.asm" -UnownKBitmasks: INCLUDE "gfx/pics/unown_k/bitmask.asm" -UnownLBitmasks: INCLUDE "gfx/pics/unown_l/bitmask.asm" -UnownMBitmasks: INCLUDE "gfx/pics/unown_m/bitmask.asm" -UnownNBitmasks: INCLUDE "gfx/pics/unown_n/bitmask.asm" -UnownOBitmasks: INCLUDE "gfx/pics/unown_o/bitmask.asm" -UnownPBitmasks: INCLUDE "gfx/pics/unown_p/bitmask.asm" -UnownQBitmasks: INCLUDE "gfx/pics/unown_q/bitmask.asm" -UnownRBitmasks: INCLUDE "gfx/pics/unown_r/bitmask.asm" -UnownSBitmasks: INCLUDE "gfx/pics/unown_s/bitmask.asm" -UnownTBitmasks: INCLUDE "gfx/pics/unown_t/bitmask.asm" -UnownUBitmasks: INCLUDE "gfx/pics/unown_u/bitmask.asm" -UnownVBitmasks: INCLUDE "gfx/pics/unown_v/bitmask.asm" -UnownWBitmasks: INCLUDE "gfx/pics/unown_w/bitmask.asm" -UnownXBitmasks: INCLUDE "gfx/pics/unown_x/bitmask.asm" -UnownYBitmasks: INCLUDE "gfx/pics/unown_y/bitmask.asm" -UnownZBitmasks: INCLUDE "gfx/pics/unown_z/bitmask.asm" diff --git a/gfx/pics/unown_c/anim0.asm b/gfx/pics/unown_c/anim0.asm deleted file mode 100644 index 1e8b894ab..000000000 --- a/gfx/pics/unown_c/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 05 - frame 1, 05 - frame 2, 05 - setrepeat 2 - frame 3, 04 - frame 2, 04 - dorepeat 4 - endanim -; 0xd2292 diff --git a/gfx/pics/unown_c/anim1.asm b/gfx/pics/unown_c/anim1.asm deleted file mode 100644 index fcf07ced3..000000000 --- a/gfx/pics/unown_c/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd2420 diff --git a/gfx/pics/unown_c/back.2bpp.lz.f92b665a b/gfx/pics/unown_c/back.2bpp.lz.f92b665a deleted file mode 100644 index 796ba6d6a..000000000 Binary files a/gfx/pics/unown_c/back.2bpp.lz.f92b665a and /dev/null differ diff --git a/gfx/pics/unown_c/back.png b/gfx/pics/unown_c/back.png deleted file mode 100644 index 7f7655dd7..000000000 Binary files a/gfx/pics/unown_c/back.png and /dev/null differ diff --git a/gfx/pics/unown_c/front.animated.2bpp.lz.5fef639b b/gfx/pics/unown_c/front.animated.2bpp.lz.5fef639b deleted file mode 100644 index 18fb3b48b..000000000 Binary files a/gfx/pics/unown_c/front.animated.2bpp.lz.5fef639b and /dev/null differ diff --git a/gfx/pics/unown_c/front.png b/gfx/pics/unown_c/front.png deleted file mode 100644 index 057fffdc7..000000000 Binary files a/gfx/pics/unown_c/front.png and /dev/null differ diff --git a/gfx/pics/unown_d/anim0.asm b/gfx/pics/unown_d/anim0.asm deleted file mode 100644 index 51c3b2de1..000000000 --- a/gfx/pics/unown_d/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 2, 10 - frame 0, 08 - frame 1, 10 - frame 0, 08 - dorepeat 1 - endanim -; 0xd229f diff --git a/gfx/pics/unown_d/anim1.asm b/gfx/pics/unown_d/anim1.asm deleted file mode 100644 index 17604ce36..000000000 --- a/gfx/pics/unown_d/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2429 diff --git a/gfx/pics/unown_d/back.2bpp.lz.c8213d32 b/gfx/pics/unown_d/back.2bpp.lz.c8213d32 deleted file mode 100644 index 8a967332f..000000000 Binary files a/gfx/pics/unown_d/back.2bpp.lz.c8213d32 and /dev/null differ diff --git a/gfx/pics/unown_d/back.png b/gfx/pics/unown_d/back.png deleted file mode 100644 index 443c7c589..000000000 Binary files a/gfx/pics/unown_d/back.png and /dev/null differ diff --git a/gfx/pics/unown_d/front.animated.2bpp.lz.7810a57f b/gfx/pics/unown_d/front.animated.2bpp.lz.7810a57f deleted file mode 100644 index d8004662d..000000000 Binary files a/gfx/pics/unown_d/front.animated.2bpp.lz.7810a57f and /dev/null differ diff --git a/gfx/pics/unown_d/front.png b/gfx/pics/unown_d/front.png deleted file mode 100644 index df2114a35..000000000 Binary files a/gfx/pics/unown_d/front.png and /dev/null differ diff --git a/gfx/pics/unown_e/anim0.asm b/gfx/pics/unown_e/anim0.asm deleted file mode 100644 index 0a58feb4d..000000000 --- a/gfx/pics/unown_e/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 05 - frame 1, 06 - frame 0, 05 - setrepeat 2 - frame 2, 03 - frame 0, 02 - dorepeat 4 - endanim -; 0xd22ae diff --git a/gfx/pics/unown_e/anim1.asm b/gfx/pics/unown_e/anim1.asm deleted file mode 100644 index 53db93c1f..000000000 --- a/gfx/pics/unown_e/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2432 diff --git a/gfx/pics/unown_e/back.2bpp.lz.777a8ecd b/gfx/pics/unown_e/back.2bpp.lz.777a8ecd deleted file mode 100644 index dfc768a1e..000000000 Binary files a/gfx/pics/unown_e/back.2bpp.lz.777a8ecd and /dev/null differ diff --git a/gfx/pics/unown_e/back.png b/gfx/pics/unown_e/back.png deleted file mode 100644 index 567ebcfb2..000000000 Binary files a/gfx/pics/unown_e/back.png and /dev/null differ diff --git a/gfx/pics/unown_e/front.animated.2bpp.lz.83f43ff7 b/gfx/pics/unown_e/front.animated.2bpp.lz.83f43ff7 deleted file mode 100644 index 5358f5ff9..000000000 Binary files a/gfx/pics/unown_e/front.animated.2bpp.lz.83f43ff7 and /dev/null differ diff --git a/gfx/pics/unown_e/front.png b/gfx/pics/unown_e/front.png deleted file mode 100644 index 36d98fe38..000000000 Binary files a/gfx/pics/unown_e/front.png and /dev/null differ diff --git a/gfx/pics/unown_extra_pointers.asm b/gfx/pics/unown_extra_pointers.asm deleted file mode 100644 index 5b466064d..000000000 --- a/gfx/pics/unown_extra_pointers.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownAnimationExtraPointers: - dw UnownAAnimationExtra - dw UnownBAnimationExtra - dw UnownCAnimationExtra - dw UnownDAnimationExtra - dw UnownEAnimationExtra - dw UnownFAnimationExtra - dw UnownGAnimationExtra - dw UnownHAnimationExtra - dw UnownIAnimationExtra - dw UnownJAnimationExtra - dw UnownKAnimationExtra - dw UnownLAnimationExtra - dw UnownMAnimationExtra - dw UnownNAnimationExtra - dw UnownOAnimationExtra - dw UnownPAnimationExtra - dw UnownQAnimationExtra - dw UnownRAnimationExtra - dw UnownSAnimationExtra - dw UnownTAnimationExtra - dw UnownUAnimationExtra - dw UnownVAnimationExtra - dw UnownWAnimationExtra - dw UnownXAnimationExtra - dw UnownYAnimationExtra - dw UnownZAnimationExtra diff --git a/gfx/pics/unown_extras.asm b/gfx/pics/unown_extras.asm deleted file mode 100644 index 2609afe46..000000000 --- a/gfx/pics/unown_extras.asm +++ /dev/null @@ -1,26 +0,0 @@ -UnownAAnimationExtra: INCLUDE "gfx/pics/unown_a/anim1.asm" -UnownBAnimationExtra: INCLUDE "gfx/pics/unown_b/anim1.asm" -UnownCAnimationExtra: INCLUDE "gfx/pics/unown_c/anim1.asm" -UnownDAnimationExtra: INCLUDE "gfx/pics/unown_d/anim1.asm" -UnownEAnimationExtra: INCLUDE "gfx/pics/unown_e/anim1.asm" -UnownFAnimationExtra: INCLUDE "gfx/pics/unown_f/anim1.asm" -UnownGAnimationExtra: INCLUDE "gfx/pics/unown_g/anim1.asm" -UnownHAnimationExtra: INCLUDE "gfx/pics/unown_h/anim1.asm" -UnownIAnimationExtra: INCLUDE "gfx/pics/unown_i/anim1.asm" -UnownJAnimationExtra: INCLUDE "gfx/pics/unown_j/anim1.asm" -UnownKAnimationExtra: INCLUDE "gfx/pics/unown_k/anim1.asm" -UnownLAnimationExtra: INCLUDE "gfx/pics/unown_l/anim1.asm" -UnownMAnimationExtra: INCLUDE "gfx/pics/unown_m/anim1.asm" -UnownNAnimationExtra: INCLUDE "gfx/pics/unown_n/anim1.asm" -UnownOAnimationExtra: INCLUDE "gfx/pics/unown_o/anim1.asm" -UnownPAnimationExtra: INCLUDE "gfx/pics/unown_p/anim1.asm" -UnownQAnimationExtra: INCLUDE "gfx/pics/unown_q/anim1.asm" -UnownRAnimationExtra: INCLUDE "gfx/pics/unown_r/anim1.asm" -UnownSAnimationExtra: INCLUDE "gfx/pics/unown_s/anim1.asm" -UnownTAnimationExtra: INCLUDE "gfx/pics/unown_t/anim1.asm" -UnownUAnimationExtra: INCLUDE "gfx/pics/unown_u/anim1.asm" -UnownVAnimationExtra: INCLUDE "gfx/pics/unown_v/anim1.asm" -UnownWAnimationExtra: INCLUDE "gfx/pics/unown_w/anim1.asm" -UnownXAnimationExtra: INCLUDE "gfx/pics/unown_x/anim1.asm" -UnownYAnimationExtra: INCLUDE "gfx/pics/unown_y/anim1.asm" -UnownZAnimationExtra: INCLUDE "gfx/pics/unown_z/anim1.asm" diff --git a/gfx/pics/unown_f/anim0.asm b/gfx/pics/unown_f/anim0.asm deleted file mode 100644 index f81c298a6..000000000 --- a/gfx/pics/unown_f/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - setrepeat 2 - frame 1, 11 - frame 2, 11 - dorepeat 1 - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 5 - endanim -; 0xd22bf diff --git a/gfx/pics/unown_f/anim1.asm b/gfx/pics/unown_f/anim1.asm deleted file mode 100644 index a75176981..000000000 --- a/gfx/pics/unown_f/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd243b diff --git a/gfx/pics/unown_f/back.2bpp.lz.3fe1c85a b/gfx/pics/unown_f/back.2bpp.lz.3fe1c85a deleted file mode 100644 index 47e54ab66..000000000 Binary files a/gfx/pics/unown_f/back.2bpp.lz.3fe1c85a and /dev/null differ diff --git a/gfx/pics/unown_f/back.png b/gfx/pics/unown_f/back.png deleted file mode 100644 index de60198da..000000000 Binary files a/gfx/pics/unown_f/back.png and /dev/null differ diff --git a/gfx/pics/unown_f/front.animated.2bpp.lz.ec888954 b/gfx/pics/unown_f/front.animated.2bpp.lz.ec888954 deleted file mode 100644 index 4e0339419..000000000 Binary files a/gfx/pics/unown_f/front.animated.2bpp.lz.ec888954 and /dev/null differ diff --git a/gfx/pics/unown_f/front.png b/gfx/pics/unown_f/front.png deleted file mode 100644 index f47dcb53b..000000000 Binary files a/gfx/pics/unown_f/front.png and /dev/null differ diff --git a/gfx/pics/unown_frame_pointers.asm b/gfx/pics/unown_frame_pointers.asm deleted file mode 100644 index 8907f5303..000000000 --- a/gfx/pics/unown_frame_pointers.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownFramesPointers: - dw UnownAFrames - dw UnownBFrames - dw UnownCFrames - dw UnownDFrames - dw UnownEFrames - dw UnownFFrames - dw UnownGFrames - dw UnownHFrames - dw UnownIFrames - dw UnownJFrames - dw UnownKFrames - dw UnownLFrames - dw UnownMFrames - dw UnownNFrames - dw UnownOFrames - dw UnownPFrames - dw UnownQFrames - dw UnownRFrames - dw UnownSFrames - dw UnownTFrames - dw UnownUFrames - dw UnownVFrames - dw UnownWFrames - dw UnownXFrames - dw UnownYFrames - dw UnownZFrames diff --git a/gfx/pics/unown_frames.asm b/gfx/pics/unown_frames.asm deleted file mode 100644 index 402f22efa..000000000 --- a/gfx/pics/unown_frames.asm +++ /dev/null @@ -1,27 +0,0 @@ -UnownsFrames: -UnownAFrames: INCLUDE "gfx/pics/unown_a/frames.asm" -UnownBFrames: INCLUDE "gfx/pics/unown_b/frames.asm" -UnownCFrames: INCLUDE "gfx/pics/unown_c/frames.asm" -UnownDFrames: INCLUDE "gfx/pics/unown_d/frames.asm" -UnownEFrames: INCLUDE "gfx/pics/unown_e/frames.asm" -UnownFFrames: INCLUDE "gfx/pics/unown_f/frames.asm" -UnownGFrames: INCLUDE "gfx/pics/unown_g/frames.asm" -UnownHFrames: INCLUDE "gfx/pics/unown_h/frames.asm" -UnownIFrames: INCLUDE "gfx/pics/unown_i/frames.asm" -UnownJFrames: INCLUDE "gfx/pics/unown_j/frames.asm" -UnownKFrames: INCLUDE "gfx/pics/unown_k/frames.asm" -UnownLFrames: INCLUDE "gfx/pics/unown_l/frames.asm" -UnownMFrames: INCLUDE "gfx/pics/unown_m/frames.asm" -UnownNFrames: INCLUDE "gfx/pics/unown_n/frames.asm" -UnownOFrames: INCLUDE "gfx/pics/unown_o/frames.asm" -UnownPFrames: INCLUDE "gfx/pics/unown_p/frames.asm" -UnownQFrames: INCLUDE "gfx/pics/unown_q/frames.asm" -UnownRFrames: INCLUDE "gfx/pics/unown_r/frames.asm" -UnownSFrames: INCLUDE "gfx/pics/unown_s/frames.asm" -UnownTFrames: INCLUDE "gfx/pics/unown_t/frames.asm" -UnownUFrames: INCLUDE "gfx/pics/unown_u/frames.asm" -UnownVFrames: INCLUDE "gfx/pics/unown_v/frames.asm" -UnownWFrames: INCLUDE "gfx/pics/unown_w/frames.asm" -UnownXFrames: INCLUDE "gfx/pics/unown_x/frames.asm" -UnownYFrames: INCLUDE "gfx/pics/unown_y/frames.asm" -UnownZFrames: INCLUDE "gfx/pics/unown_z/frames.asm" diff --git a/gfx/pics/unown_g/anim0.asm b/gfx/pics/unown_g/anim0.asm deleted file mode 100644 index 48100274f..000000000 --- a/gfx/pics/unown_g/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 1, 06 - frame 2, 06 - frame 0, 06 - dorepeat 1 - endanim -; 0xd22ca diff --git a/gfx/pics/unown_g/anim1.asm b/gfx/pics/unown_g/anim1.asm deleted file mode 100644 index 45906aed4..000000000 --- a/gfx/pics/unown_g/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2444 diff --git a/gfx/pics/unown_g/back.2bpp.lz.91650439 b/gfx/pics/unown_g/back.2bpp.lz.91650439 deleted file mode 100644 index 1f380f3ba..000000000 Binary files a/gfx/pics/unown_g/back.2bpp.lz.91650439 and /dev/null differ diff --git a/gfx/pics/unown_g/back.png b/gfx/pics/unown_g/back.png deleted file mode 100644 index b31728f31..000000000 Binary files a/gfx/pics/unown_g/back.png and /dev/null differ diff --git a/gfx/pics/unown_g/front.animated.2bpp.lz.c0b74162 b/gfx/pics/unown_g/front.animated.2bpp.lz.c0b74162 deleted file mode 100644 index 0e6e343f9..000000000 Binary files a/gfx/pics/unown_g/front.animated.2bpp.lz.c0b74162 and /dev/null differ diff --git a/gfx/pics/unown_g/front.png b/gfx/pics/unown_g/front.png deleted file mode 100644 index 1439f4d7e..000000000 Binary files a/gfx/pics/unown_g/front.png and /dev/null differ diff --git a/gfx/pics/unown_h/anim0.asm b/gfx/pics/unown_h/anim0.asm deleted file mode 100644 index fdee3822b..000000000 --- a/gfx/pics/unown_h/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - frame 5, 12 - frame 1, 06 - frame 2, 04 - frame 3, 03 - frame 4, 02 - frame 1, 02 - frame 2, 02 - frame 3, 02 - frame 4, 02 - endanim -; 0xd22dd diff --git a/gfx/pics/unown_h/anim1.asm b/gfx/pics/unown_h/anim1.asm deleted file mode 100644 index e6fb90d5e..000000000 --- a/gfx/pics/unown_h/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 5, 05 - dorepeat 1 - endanim -; 0xd244d diff --git a/gfx/pics/unown_h/back.2bpp.lz.78421e5b b/gfx/pics/unown_h/back.2bpp.lz.78421e5b deleted file mode 100644 index 926bf5757..000000000 Binary files a/gfx/pics/unown_h/back.2bpp.lz.78421e5b and /dev/null differ diff --git a/gfx/pics/unown_h/back.png b/gfx/pics/unown_h/back.png deleted file mode 100644 index abf0b39e5..000000000 Binary files a/gfx/pics/unown_h/back.png and /dev/null differ diff --git a/gfx/pics/unown_h/front.animated.2bpp.lz.9a6afeb9 b/gfx/pics/unown_h/front.animated.2bpp.lz.9a6afeb9 deleted file mode 100644 index be2d0293c..000000000 Binary files a/gfx/pics/unown_h/front.animated.2bpp.lz.9a6afeb9 and /dev/null differ diff --git a/gfx/pics/unown_h/front.png b/gfx/pics/unown_h/front.png deleted file mode 100644 index 3c644c7da..000000000 Binary files a/gfx/pics/unown_h/front.png and /dev/null differ diff --git a/gfx/pics/unown_i/anim0.asm b/gfx/pics/unown_i/anim0.asm deleted file mode 100644 index 38e19a0c9..000000000 --- a/gfx/pics/unown_i/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 1, 06 - frame 0, 05 - frame 2, 06 - frame 0, 05 - dorepeat 1 - endanim -; 0xd22ea diff --git a/gfx/pics/unown_i/anim1.asm b/gfx/pics/unown_i/anim1.asm deleted file mode 100644 index 1d5ce67ad..000000000 --- a/gfx/pics/unown_i/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2456 diff --git a/gfx/pics/unown_i/back.2bpp.lz.7feb4b30 b/gfx/pics/unown_i/back.2bpp.lz.7feb4b30 deleted file mode 100644 index 7dcea181f..000000000 Binary files a/gfx/pics/unown_i/back.2bpp.lz.7feb4b30 and /dev/null differ diff --git a/gfx/pics/unown_i/back.png b/gfx/pics/unown_i/back.png deleted file mode 100644 index 0d861d9f8..000000000 Binary files a/gfx/pics/unown_i/back.png and /dev/null differ diff --git a/gfx/pics/unown_i/front.animated.2bpp.lz.f5e7f816 b/gfx/pics/unown_i/front.animated.2bpp.lz.f5e7f816 deleted file mode 100644 index dfd89c266..000000000 Binary files a/gfx/pics/unown_i/front.animated.2bpp.lz.f5e7f816 and /dev/null differ diff --git a/gfx/pics/unown_i/front.png b/gfx/pics/unown_i/front.png deleted file mode 100644 index 971439d5a..000000000 Binary files a/gfx/pics/unown_i/front.png and /dev/null differ diff --git a/gfx/pics/unown_j/anim0.asm b/gfx/pics/unown_j/anim0.asm deleted file mode 100644 index 3a7467d45..000000000 --- a/gfx/pics/unown_j/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 03 - frame 1, 05 - frame 2, 07 - frame 1, 05 - dorepeat 1 - endanim -; 0xd22f7 diff --git a/gfx/pics/unown_j/anim1.asm b/gfx/pics/unown_j/anim1.asm deleted file mode 100644 index d46b36028..000000000 --- a/gfx/pics/unown_j/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd245f diff --git a/gfx/pics/unown_j/back.2bpp.lz.b0f3bec2 b/gfx/pics/unown_j/back.2bpp.lz.b0f3bec2 deleted file mode 100644 index c0eabf3ba..000000000 Binary files a/gfx/pics/unown_j/back.2bpp.lz.b0f3bec2 and /dev/null differ diff --git a/gfx/pics/unown_j/back.png b/gfx/pics/unown_j/back.png deleted file mode 100644 index 93df2154c..000000000 Binary files a/gfx/pics/unown_j/back.png and /dev/null differ diff --git a/gfx/pics/unown_j/front.animated.2bpp.lz.d8bf9223 b/gfx/pics/unown_j/front.animated.2bpp.lz.d8bf9223 deleted file mode 100644 index ec8e536d3..000000000 Binary files a/gfx/pics/unown_j/front.animated.2bpp.lz.d8bf9223 and /dev/null differ diff --git a/gfx/pics/unown_j/front.png b/gfx/pics/unown_j/front.png deleted file mode 100644 index 03316dc6e..000000000 Binary files a/gfx/pics/unown_j/front.png and /dev/null differ diff --git a/gfx/pics/unown_k/anim0.asm b/gfx/pics/unown_k/anim0.asm deleted file mode 100644 index 0948f212d..000000000 --- a/gfx/pics/unown_k/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 1, 07 - frame 2, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd2304 diff --git a/gfx/pics/unown_k/anim1.asm b/gfx/pics/unown_k/anim1.asm deleted file mode 100644 index 8f8a4acb1..000000000 --- a/gfx/pics/unown_k/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2468 diff --git a/gfx/pics/unown_k/back.2bpp.lz.745fda48 b/gfx/pics/unown_k/back.2bpp.lz.745fda48 deleted file mode 100644 index 0f4e8fda7..000000000 Binary files a/gfx/pics/unown_k/back.2bpp.lz.745fda48 and /dev/null differ diff --git a/gfx/pics/unown_k/back.png b/gfx/pics/unown_k/back.png deleted file mode 100644 index 1fbb8b041..000000000 Binary files a/gfx/pics/unown_k/back.png and /dev/null differ diff --git a/gfx/pics/unown_k/front.animated.2bpp.lz.fb25b385 b/gfx/pics/unown_k/front.animated.2bpp.lz.fb25b385 deleted file mode 100644 index b617e898c..000000000 Binary files a/gfx/pics/unown_k/front.animated.2bpp.lz.fb25b385 and /dev/null differ diff --git a/gfx/pics/unown_k/front.png b/gfx/pics/unown_k/front.png deleted file mode 100644 index ce6b81e9f..000000000 Binary files a/gfx/pics/unown_k/front.png and /dev/null differ diff --git a/gfx/pics/unown_l/anim0.asm b/gfx/pics/unown_l/anim0.asm deleted file mode 100644 index 7b4e5e21c..000000000 --- a/gfx/pics/unown_l/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 1, 06 - frame 2, 07 - frame 1, 06 - dorepeat 1 - frame 0, 10 - frame 3, 11 - frame 4, 12 - frame 3, 11 - endanim -; 0xd2319 diff --git a/gfx/pics/unown_l/anim1.asm b/gfx/pics/unown_l/anim1.asm deleted file mode 100644 index 859dec2ec..000000000 --- a/gfx/pics/unown_l/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 5, 05 - dorepeat 1 - endanim -; 0xd2471 diff --git a/gfx/pics/unown_l/back.2bpp.lz.e38e0d57 b/gfx/pics/unown_l/back.2bpp.lz.e38e0d57 deleted file mode 100644 index 4f48955df..000000000 Binary files a/gfx/pics/unown_l/back.2bpp.lz.e38e0d57 and /dev/null differ diff --git a/gfx/pics/unown_l/back.png b/gfx/pics/unown_l/back.png deleted file mode 100644 index 470d46c05..000000000 Binary files a/gfx/pics/unown_l/back.png and /dev/null differ diff --git a/gfx/pics/unown_l/front.animated.2bpp.lz.26195a59 b/gfx/pics/unown_l/front.animated.2bpp.lz.26195a59 deleted file mode 100644 index d0eee7516..000000000 Binary files a/gfx/pics/unown_l/front.animated.2bpp.lz.26195a59 and /dev/null differ diff --git a/gfx/pics/unown_l/front.png b/gfx/pics/unown_l/front.png deleted file mode 100644 index ff86501db..000000000 Binary files a/gfx/pics/unown_l/front.png and /dev/null differ diff --git a/gfx/pics/unown_m/anim0.asm b/gfx/pics/unown_m/anim0.asm deleted file mode 100644 index bb5292446..000000000 --- a/gfx/pics/unown_m/anim0.asm +++ /dev/null @@ -1,12 +0,0 @@ - frame 1, 06 - frame 2, 06 - frame 1, 03 - frame 0, 03 - setrepeat 2 - frame 0, 02 - frame 1, 02 - frame 2, 02 - frame 1, 02 - dorepeat 5 - endanim -; 0xd232e diff --git a/gfx/pics/unown_m/anim1.asm b/gfx/pics/unown_m/anim1.asm deleted file mode 100644 index 710300f20..000000000 --- a/gfx/pics/unown_m/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd247a diff --git a/gfx/pics/unown_m/back.2bpp.lz.38d93bc8 b/gfx/pics/unown_m/back.2bpp.lz.38d93bc8 deleted file mode 100644 index 3ab40cb03..000000000 Binary files a/gfx/pics/unown_m/back.2bpp.lz.38d93bc8 and /dev/null differ diff --git a/gfx/pics/unown_m/back.png b/gfx/pics/unown_m/back.png deleted file mode 100644 index a7f90e72b..000000000 Binary files a/gfx/pics/unown_m/back.png and /dev/null differ diff --git a/gfx/pics/unown_m/front.animated.2bpp.lz.2659315e b/gfx/pics/unown_m/front.animated.2bpp.lz.2659315e deleted file mode 100644 index 04e1592ce..000000000 Binary files a/gfx/pics/unown_m/front.animated.2bpp.lz.2659315e and /dev/null differ diff --git a/gfx/pics/unown_m/front.png b/gfx/pics/unown_m/front.png deleted file mode 100644 index b55a03682..000000000 Binary files a/gfx/pics/unown_m/front.png and /dev/null differ diff --git a/gfx/pics/unown_n/anim0.asm b/gfx/pics/unown_n/anim0.asm deleted file mode 100644 index 1f6924926..000000000 --- a/gfx/pics/unown_n/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 06 - frame 1, 06 - frame 2, 20 - frame 1, 06 - frame 0, 16 - frame 1, 03 - frame 2, 04 - frame 1, 03 - endanim -; 0xd233f diff --git a/gfx/pics/unown_n/anim1.asm b/gfx/pics/unown_n/anim1.asm deleted file mode 100644 index 5275e3463..000000000 --- a/gfx/pics/unown_n/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2483 diff --git a/gfx/pics/unown_n/back.2bpp.lz.c8b7d3a4 b/gfx/pics/unown_n/back.2bpp.lz.c8b7d3a4 deleted file mode 100644 index c39417aa8..000000000 Binary files a/gfx/pics/unown_n/back.2bpp.lz.c8b7d3a4 and /dev/null differ diff --git a/gfx/pics/unown_n/back.png b/gfx/pics/unown_n/back.png deleted file mode 100644 index 801959468..000000000 Binary files a/gfx/pics/unown_n/back.png and /dev/null differ diff --git a/gfx/pics/unown_n/front.animated.2bpp.lz.96ce7c62 b/gfx/pics/unown_n/front.animated.2bpp.lz.96ce7c62 deleted file mode 100644 index ec17bff9f..000000000 Binary files a/gfx/pics/unown_n/front.animated.2bpp.lz.96ce7c62 and /dev/null differ diff --git a/gfx/pics/unown_n/front.png b/gfx/pics/unown_n/front.png deleted file mode 100644 index 2ba3f9a17..000000000 Binary files a/gfx/pics/unown_n/front.png and /dev/null differ diff --git a/gfx/pics/unown_o/anim0.asm b/gfx/pics/unown_o/anim0.asm deleted file mode 100644 index 581d47b9d..000000000 --- a/gfx/pics/unown_o/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 06 - frame 3, 06 - frame 1, 12 - frame 2, 32 - frame 1, 10 - frame 3, 04 - endanim -; 0xd234c diff --git a/gfx/pics/unown_o/anim1.asm b/gfx/pics/unown_o/anim1.asm deleted file mode 100644 index fec231c84..000000000 --- a/gfx/pics/unown_o/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd248c diff --git a/gfx/pics/unown_o/back.2bpp.lz.89ba693c b/gfx/pics/unown_o/back.2bpp.lz.89ba693c deleted file mode 100644 index 4d4b4fd4f..000000000 Binary files a/gfx/pics/unown_o/back.2bpp.lz.89ba693c and /dev/null differ diff --git a/gfx/pics/unown_o/back.png b/gfx/pics/unown_o/back.png deleted file mode 100644 index 68c4e2743..000000000 Binary files a/gfx/pics/unown_o/back.png and /dev/null differ diff --git a/gfx/pics/unown_o/front.animated.2bpp.lz.a9151b66 b/gfx/pics/unown_o/front.animated.2bpp.lz.a9151b66 deleted file mode 100644 index 66b6b8141..000000000 Binary files a/gfx/pics/unown_o/front.animated.2bpp.lz.a9151b66 and /dev/null differ diff --git a/gfx/pics/unown_o/front.png b/gfx/pics/unown_o/front.png deleted file mode 100644 index 7fd75de36..000000000 Binary files a/gfx/pics/unown_o/front.png and /dev/null differ diff --git a/gfx/pics/unown_p/anim0.asm b/gfx/pics/unown_p/anim0.asm deleted file mode 100644 index 0cbaf30ed..000000000 --- a/gfx/pics/unown_p/anim0.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 10 - frame 2, 36 - frame 1, 06 - endanim -; 0xd2353 diff --git a/gfx/pics/unown_p/anim1.asm b/gfx/pics/unown_p/anim1.asm deleted file mode 100644 index 51e0e0941..000000000 --- a/gfx/pics/unown_p/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd2495 diff --git a/gfx/pics/unown_p/back.2bpp.lz.09c618c4 b/gfx/pics/unown_p/back.2bpp.lz.09c618c4 deleted file mode 100644 index 19fd45591..000000000 Binary files a/gfx/pics/unown_p/back.2bpp.lz.09c618c4 and /dev/null differ diff --git a/gfx/pics/unown_p/back.png b/gfx/pics/unown_p/back.png deleted file mode 100644 index 5098b51ce..000000000 Binary files a/gfx/pics/unown_p/back.png and /dev/null differ diff --git a/gfx/pics/unown_p/front.animated.2bpp.lz.83a096fc b/gfx/pics/unown_p/front.animated.2bpp.lz.83a096fc deleted file mode 100644 index 53d4bfbcd..000000000 Binary files a/gfx/pics/unown_p/front.animated.2bpp.lz.83a096fc and /dev/null differ diff --git a/gfx/pics/unown_p/front.png b/gfx/pics/unown_p/front.png deleted file mode 100644 index eca40f041..000000000 Binary files a/gfx/pics/unown_p/front.png and /dev/null differ diff --git a/gfx/pics/unown_pic_pointers.asm b/gfx/pics/unown_pic_pointers.asm deleted file mode 100644 index 1ae0da6b6..000000000 --- a/gfx/pics/unown_pic_pointers.asm +++ /dev/null @@ -1,54 +0,0 @@ -UnownPicPointers:: -; entries correspond to Unown letters, two apiece - dba_pic UnownAFrontpic - dba_pic UnownABackpic - dba_pic UnownBFrontpic - dba_pic UnownBBackpic - dba_pic UnownCFrontpic - dba_pic UnownCBackpic - dba_pic UnownDFrontpic - dba_pic UnownDBackpic - dba_pic UnownEFrontpic - dba_pic UnownEBackpic - dba_pic UnownFFrontpic - dba_pic UnownFBackpic - dba_pic UnownGFrontpic - dba_pic UnownGBackpic - dba_pic UnownHFrontpic - dba_pic UnownHBackpic - dba_pic UnownIFrontpic - dba_pic UnownIBackpic - dba_pic UnownJFrontpic - dba_pic UnownJBackpic - dba_pic UnownKFrontpic - dba_pic UnownKBackpic - dba_pic UnownLFrontpic - dba_pic UnownLBackpic - dba_pic UnownMFrontpic - dba_pic UnownMBackpic - dba_pic UnownNFrontpic - dba_pic UnownNBackpic - dba_pic UnownOFrontpic - dba_pic UnownOBackpic - dba_pic UnownPFrontpic - dba_pic UnownPBackpic - dba_pic UnownQFrontpic - dba_pic UnownQBackpic - dba_pic UnownRFrontpic - dba_pic UnownRBackpic - dba_pic UnownSFrontpic - dba_pic UnownSBackpic - dba_pic UnownTFrontpic - dba_pic UnownTBackpic - dba_pic UnownUFrontpic - dba_pic UnownUBackpic - dba_pic UnownVFrontpic - dba_pic UnownVBackpic - dba_pic UnownWFrontpic - dba_pic UnownWBackpic - dba_pic UnownXFrontpic - dba_pic UnownXBackpic - dba_pic UnownYFrontpic - dba_pic UnownYBackpic - dba_pic UnownZFrontpic - dba_pic UnownZBackpic diff --git a/gfx/pics/unown_q/anim0.asm b/gfx/pics/unown_q/anim0.asm deleted file mode 100644 index 555f61cf3..000000000 --- a/gfx/pics/unown_q/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 1, 05 - frame 2, 05 - frame 1, 05 - dorepeat 1 - endanim -; 0xd2360 diff --git a/gfx/pics/unown_q/anim1.asm b/gfx/pics/unown_q/anim1.asm deleted file mode 100644 index a17caa474..000000000 --- a/gfx/pics/unown_q/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd249e diff --git a/gfx/pics/unown_q/back.2bpp.lz.e32430b4 b/gfx/pics/unown_q/back.2bpp.lz.e32430b4 deleted file mode 100644 index 5199cdc6c..000000000 Binary files a/gfx/pics/unown_q/back.2bpp.lz.e32430b4 and /dev/null differ diff --git a/gfx/pics/unown_q/back.png b/gfx/pics/unown_q/back.png deleted file mode 100644 index 9b2b34c51..000000000 Binary files a/gfx/pics/unown_q/back.png and /dev/null differ diff --git a/gfx/pics/unown_q/front.animated.2bpp.lz.44dad60c b/gfx/pics/unown_q/front.animated.2bpp.lz.44dad60c deleted file mode 100644 index 65536e23f..000000000 Binary files a/gfx/pics/unown_q/front.animated.2bpp.lz.44dad60c and /dev/null differ diff --git a/gfx/pics/unown_q/front.png b/gfx/pics/unown_q/front.png deleted file mode 100644 index 98f19fdc1..000000000 Binary files a/gfx/pics/unown_q/front.png and /dev/null differ diff --git a/gfx/pics/unown_r/anim0.asm b/gfx/pics/unown_r/anim0.asm deleted file mode 100644 index fde5a58ab..000000000 --- a/gfx/pics/unown_r/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 1, 07 - frame 2, 07 - frame 1, 07 - dorepeat 1 - endanim -; 0xd236d diff --git a/gfx/pics/unown_r/anim1.asm b/gfx/pics/unown_r/anim1.asm deleted file mode 100644 index b1db8166a..000000000 --- a/gfx/pics/unown_r/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd24a7 diff --git a/gfx/pics/unown_r/back.2bpp.lz.5df8287c b/gfx/pics/unown_r/back.2bpp.lz.5df8287c deleted file mode 100644 index a8a243e0b..000000000 Binary files a/gfx/pics/unown_r/back.2bpp.lz.5df8287c and /dev/null differ diff --git a/gfx/pics/unown_r/back.png b/gfx/pics/unown_r/back.png deleted file mode 100644 index a3d7de37e..000000000 Binary files a/gfx/pics/unown_r/back.png and /dev/null differ diff --git a/gfx/pics/unown_r/front.animated.2bpp.lz.8e67e3fc b/gfx/pics/unown_r/front.animated.2bpp.lz.8e67e3fc deleted file mode 100644 index 9e76761d1..000000000 Binary files a/gfx/pics/unown_r/front.animated.2bpp.lz.8e67e3fc and /dev/null differ diff --git a/gfx/pics/unown_r/front.png b/gfx/pics/unown_r/front.png deleted file mode 100644 index a7038ec16..000000000 Binary files a/gfx/pics/unown_r/front.png and /dev/null differ diff --git a/gfx/pics/unown_s/anim0.asm b/gfx/pics/unown_s/anim0.asm deleted file mode 100644 index 9cac3910d..000000000 --- a/gfx/pics/unown_s/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 12 - frame 0, 10 - frame 2, 12 - frame 0, 24 - setrepeat 2 - frame 1, 03 - frame 2, 03 - dorepeat 5 - endanim -; 0xd237e diff --git a/gfx/pics/unown_s/anim1.asm b/gfx/pics/unown_s/anim1.asm deleted file mode 100644 index 49483f8f5..000000000 --- a/gfx/pics/unown_s/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd24b0 diff --git a/gfx/pics/unown_s/back.2bpp.lz.abd4ad58 b/gfx/pics/unown_s/back.2bpp.lz.abd4ad58 deleted file mode 100644 index 8441f2519..000000000 Binary files a/gfx/pics/unown_s/back.2bpp.lz.abd4ad58 and /dev/null differ diff --git a/gfx/pics/unown_s/back.png b/gfx/pics/unown_s/back.png deleted file mode 100644 index 75de76a29..000000000 Binary files a/gfx/pics/unown_s/back.png and /dev/null differ diff --git a/gfx/pics/unown_s/front.animated.2bpp.lz.f3db4e89 b/gfx/pics/unown_s/front.animated.2bpp.lz.f3db4e89 deleted file mode 100644 index d16dea5e9..000000000 Binary files a/gfx/pics/unown_s/front.animated.2bpp.lz.f3db4e89 and /dev/null differ diff --git a/gfx/pics/unown_s/front.png b/gfx/pics/unown_s/front.png deleted file mode 100644 index b854e648b..000000000 Binary files a/gfx/pics/unown_s/front.png and /dev/null differ diff --git a/gfx/pics/unown_t/anim0.asm b/gfx/pics/unown_t/anim0.asm deleted file mode 100644 index feba7be07..000000000 --- a/gfx/pics/unown_t/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 1, 05 - frame 0, 05 - frame 2, 05 - frame 0, 05 - dorepeat 1 - endanim -; 0xd238b diff --git a/gfx/pics/unown_t/anim1.asm b/gfx/pics/unown_t/anim1.asm deleted file mode 100644 index d295d6830..000000000 --- a/gfx/pics/unown_t/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd24b9 diff --git a/gfx/pics/unown_t/back.2bpp.lz.87d48ca0 b/gfx/pics/unown_t/back.2bpp.lz.87d48ca0 deleted file mode 100644 index 8d415b53d..000000000 Binary files a/gfx/pics/unown_t/back.2bpp.lz.87d48ca0 and /dev/null differ diff --git a/gfx/pics/unown_t/back.png b/gfx/pics/unown_t/back.png deleted file mode 100644 index edbe2a1de..000000000 Binary files a/gfx/pics/unown_t/back.png and /dev/null differ diff --git a/gfx/pics/unown_t/front.animated.2bpp.lz.8bdc40ae b/gfx/pics/unown_t/front.animated.2bpp.lz.8bdc40ae deleted file mode 100644 index 83100fbdb..000000000 Binary files a/gfx/pics/unown_t/front.animated.2bpp.lz.8bdc40ae and /dev/null differ diff --git a/gfx/pics/unown_t/front.png b/gfx/pics/unown_t/front.png deleted file mode 100644 index 807b4af12..000000000 Binary files a/gfx/pics/unown_t/front.png and /dev/null differ diff --git a/gfx/pics/unown_u/anim0.asm b/gfx/pics/unown_u/anim0.asm deleted file mode 100644 index 12c53636d..000000000 --- a/gfx/pics/unown_u/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 1, 12 - frame 2, 14 - frame 1, 12 - endanim -; 0xd2394 diff --git a/gfx/pics/unown_u/anim1.asm b/gfx/pics/unown_u/anim1.asm deleted file mode 100644 index 834e75999..000000000 --- a/gfx/pics/unown_u/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd24c2 diff --git a/gfx/pics/unown_u/back.2bpp.lz.40b63dfb b/gfx/pics/unown_u/back.2bpp.lz.40b63dfb deleted file mode 100644 index ad395b7ec..000000000 Binary files a/gfx/pics/unown_u/back.2bpp.lz.40b63dfb and /dev/null differ diff --git a/gfx/pics/unown_u/back.png b/gfx/pics/unown_u/back.png deleted file mode 100644 index 4efb1dd2a..000000000 Binary files a/gfx/pics/unown_u/back.png and /dev/null differ diff --git a/gfx/pics/unown_u/front.animated.2bpp.lz.2690db54 b/gfx/pics/unown_u/front.animated.2bpp.lz.2690db54 deleted file mode 100644 index 622825cbe..000000000 Binary files a/gfx/pics/unown_u/front.animated.2bpp.lz.2690db54 and /dev/null differ diff --git a/gfx/pics/unown_u/front.png b/gfx/pics/unown_u/front.png deleted file mode 100644 index 2d7950f18..000000000 Binary files a/gfx/pics/unown_u/front.png and /dev/null differ diff --git a/gfx/pics/unown_v/anim0.asm b/gfx/pics/unown_v/anim0.asm deleted file mode 100644 index acc500009..000000000 --- a/gfx/pics/unown_v/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 10 - frame 1, 10 - frame 2, 10 - frame 1, 10 - endanim -; 0xd239d diff --git a/gfx/pics/unown_v/anim1.asm b/gfx/pics/unown_v/anim1.asm deleted file mode 100644 index 818f727ea..000000000 --- a/gfx/pics/unown_v/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd24cb diff --git a/gfx/pics/unown_v/back.2bpp.lz.5b1a6acc b/gfx/pics/unown_v/back.2bpp.lz.5b1a6acc deleted file mode 100644 index 21c3191f2..000000000 Binary files a/gfx/pics/unown_v/back.2bpp.lz.5b1a6acc and /dev/null differ diff --git a/gfx/pics/unown_v/back.png b/gfx/pics/unown_v/back.png deleted file mode 100644 index 0097a050f..000000000 Binary files a/gfx/pics/unown_v/back.png and /dev/null differ diff --git a/gfx/pics/unown_v/front.animated.2bpp.lz.d196c60e b/gfx/pics/unown_v/front.animated.2bpp.lz.d196c60e deleted file mode 100644 index aee5ce362..000000000 Binary files a/gfx/pics/unown_v/front.animated.2bpp.lz.d196c60e and /dev/null differ diff --git a/gfx/pics/unown_v/front.png b/gfx/pics/unown_v/front.png deleted file mode 100644 index a687e5d7c..000000000 Binary files a/gfx/pics/unown_v/front.png and /dev/null differ diff --git a/gfx/pics/unown_w/anim0.asm b/gfx/pics/unown_w/anim0.asm deleted file mode 100644 index 620ff03e5..000000000 --- a/gfx/pics/unown_w/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 0, 06 - frame 1, 18 - frame 0, 06 - frame 2, 12 - endanim -; 0xd23a6 diff --git a/gfx/pics/unown_w/anim1.asm b/gfx/pics/unown_w/anim1.asm deleted file mode 100644 index b43d44bbc..000000000 --- a/gfx/pics/unown_w/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd24d4 diff --git a/gfx/pics/unown_w/back.2bpp.lz.a55282bf b/gfx/pics/unown_w/back.2bpp.lz.a55282bf deleted file mode 100644 index 882648c4d..000000000 Binary files a/gfx/pics/unown_w/back.2bpp.lz.a55282bf and /dev/null differ diff --git a/gfx/pics/unown_w/back.png b/gfx/pics/unown_w/back.png deleted file mode 100644 index 629d7ccb2..000000000 Binary files a/gfx/pics/unown_w/back.png and /dev/null differ diff --git a/gfx/pics/unown_w/front.animated.2bpp.lz.5b45fa3d b/gfx/pics/unown_w/front.animated.2bpp.lz.5b45fa3d deleted file mode 100644 index 78a7fefac..000000000 Binary files a/gfx/pics/unown_w/front.animated.2bpp.lz.5b45fa3d and /dev/null differ diff --git a/gfx/pics/unown_w/front.png b/gfx/pics/unown_w/front.png deleted file mode 100644 index b65b96735..000000000 Binary files a/gfx/pics/unown_w/front.png and /dev/null differ diff --git a/gfx/pics/unown_x/anim0.asm b/gfx/pics/unown_x/anim0.asm deleted file mode 100644 index 0bb204da6..000000000 --- a/gfx/pics/unown_x/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 03 - frame 1, 06 - frame 0, 03 - frame 2, 06 - dorepeat 1 - endanim -; 0xd23b3 diff --git a/gfx/pics/unown_x/anim1.asm b/gfx/pics/unown_x/anim1.asm deleted file mode 100644 index 22b15a504..000000000 --- a/gfx/pics/unown_x/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - endanim -; 0xd24dd diff --git a/gfx/pics/unown_x/back.2bpp.lz.0001a198 b/gfx/pics/unown_x/back.2bpp.lz.0001a198 deleted file mode 100644 index 591af9668..000000000 Binary files a/gfx/pics/unown_x/back.2bpp.lz.0001a198 and /dev/null differ diff --git a/gfx/pics/unown_x/back.png b/gfx/pics/unown_x/back.png deleted file mode 100644 index f2213d93f..000000000 Binary files a/gfx/pics/unown_x/back.png and /dev/null differ diff --git a/gfx/pics/unown_x/front.animated.2bpp.lz.3362c680 b/gfx/pics/unown_x/front.animated.2bpp.lz.3362c680 deleted file mode 100644 index 11adc7c6f..000000000 Binary files a/gfx/pics/unown_x/front.animated.2bpp.lz.3362c680 and /dev/null differ diff --git a/gfx/pics/unown_x/front.png b/gfx/pics/unown_x/front.png deleted file mode 100644 index d0cef6024..000000000 Binary files a/gfx/pics/unown_x/front.png and /dev/null differ diff --git a/gfx/pics/unown_y/anim0.asm b/gfx/pics/unown_y/anim0.asm deleted file mode 100644 index e65aa4134..000000000 --- a/gfx/pics/unown_y/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 06 - frame 3, 24 - frame 0, 06 - setrepeat 3 - frame 1, 05 - frame 2, 05 - dorepeat 4 - endanim -; 0xd23c2 diff --git a/gfx/pics/unown_y/anim1.asm b/gfx/pics/unown_y/anim1.asm deleted file mode 100644 index e1a9a2acb..000000000 --- a/gfx/pics/unown_y/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd24e6 diff --git a/gfx/pics/unown_y/back.2bpp.lz.292d9ff2 b/gfx/pics/unown_y/back.2bpp.lz.292d9ff2 deleted file mode 100644 index ab7563e0d..000000000 Binary files a/gfx/pics/unown_y/back.2bpp.lz.292d9ff2 and /dev/null differ diff --git a/gfx/pics/unown_y/back.png b/gfx/pics/unown_y/back.png deleted file mode 100644 index 141f16157..000000000 Binary files a/gfx/pics/unown_y/back.png and /dev/null differ diff --git a/gfx/pics/unown_y/front.animated.2bpp.lz.8cd89db4 b/gfx/pics/unown_y/front.animated.2bpp.lz.8cd89db4 deleted file mode 100644 index 1604f7e7b..000000000 Binary files a/gfx/pics/unown_y/front.animated.2bpp.lz.8cd89db4 and /dev/null differ diff --git a/gfx/pics/unown_y/front.png b/gfx/pics/unown_y/front.png deleted file mode 100644 index 1b2fbdfcd..000000000 Binary files a/gfx/pics/unown_y/front.png and /dev/null differ diff --git a/gfx/pics/unown_z/anim0.asm b/gfx/pics/unown_z/anim0.asm deleted file mode 100644 index 197978f9b..000000000 --- a/gfx/pics/unown_z/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 06 - frame 2, 10 - frame 1, 03 - frame 0, 03 - frame 3, 03 - frame 0, 03 - frame 3, 03 - endanim -; 0xd23d1 diff --git a/gfx/pics/unown_z/anim1.asm b/gfx/pics/unown_z/anim1.asm deleted file mode 100644 index 4eb7513f6..000000000 --- a/gfx/pics/unown_z/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 4, 05 - dorepeat 1 - endanim -; 0xd24ef diff --git a/gfx/pics/unown_z/back.2bpp.lz.a41240a1 b/gfx/pics/unown_z/back.2bpp.lz.a41240a1 deleted file mode 100644 index 31bcb7baa..000000000 Binary files a/gfx/pics/unown_z/back.2bpp.lz.a41240a1 and /dev/null differ diff --git a/gfx/pics/unown_z/back.png b/gfx/pics/unown_z/back.png deleted file mode 100644 index 987d4d9df..000000000 Binary files a/gfx/pics/unown_z/back.png and /dev/null differ diff --git a/gfx/pics/unown_z/front.animated.2bpp.lz.2d4170a0 b/gfx/pics/unown_z/front.animated.2bpp.lz.2d4170a0 deleted file mode 100644 index 0d9b8b4f8..000000000 Binary files a/gfx/pics/unown_z/front.animated.2bpp.lz.2d4170a0 and /dev/null differ diff --git a/gfx/pics/unown_z/front.png b/gfx/pics/unown_z/front.png deleted file mode 100644 index 60fc433bc..000000000 Binary files a/gfx/pics/unown_z/front.png and /dev/null differ diff --git a/gfx/pics/ursaring/anim0.asm b/gfx/pics/ursaring/anim0.asm deleted file mode 100644 index f571913ea..000000000 --- a/gfx/pics/ursaring/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 13 - frame 4, 10 - setrepeat 4 - frame 2, 09 - frame 3, 09 - dorepeat 3 - frame 1, 10 - endanim -; 0xd14c8 diff --git a/gfx/pics/ursaring/anim1.asm b/gfx/pics/ursaring/anim1.asm deleted file mode 100644 index 01ebc0f1a..000000000 --- a/gfx/pics/ursaring/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 5 - frame 0, 09 - frame 5, 09 - dorepeat 1 - endanim -; 0xd20e4 diff --git a/gfx/pics/ursaring/back.2bpp.lz.0966cee1 b/gfx/pics/ursaring/back.2bpp.lz.0966cee1 deleted file mode 100644 index 263eac805..000000000 Binary files a/gfx/pics/ursaring/back.2bpp.lz.0966cee1 and /dev/null differ diff --git a/gfx/pics/ursaring/back.png b/gfx/pics/ursaring/back.png deleted file mode 100644 index 266218522..000000000 Binary files a/gfx/pics/ursaring/back.png and /dev/null differ diff --git a/gfx/pics/ursaring/front.animated.2bpp.lz.5bcb8114 b/gfx/pics/ursaring/front.animated.2bpp.lz.5bcb8114 deleted file mode 100644 index f98dd0cb0..000000000 Binary files a/gfx/pics/ursaring/front.animated.2bpp.lz.5bcb8114 and /dev/null differ diff --git a/gfx/pics/ursaring/front.png b/gfx/pics/ursaring/front.png deleted file mode 100644 index 31c28d585..000000000 Binary files a/gfx/pics/ursaring/front.png and /dev/null differ diff --git a/gfx/pics/ursaring/shiny.pal b/gfx/pics/ursaring/shiny.pal deleted file mode 100644 index b2e472ea3..000000000 --- a/gfx/pics/ursaring/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 26, 29, 25 - RGB 18, 22, 00 - diff --git a/gfx/pics/vaporeon/anim0.asm b/gfx/pics/vaporeon/anim0.asm deleted file mode 100644 index d13f1dd94..000000000 --- a/gfx/pics/vaporeon/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 0, 04 - setrepeat 3 - frame 1, 10 - frame 2, 10 - dorepeat 2 - endanim -; 0xd1043 diff --git a/gfx/pics/vaporeon/anim1.asm b/gfx/pics/vaporeon/anim1.asm deleted file mode 100644 index 79c386650..000000000 --- a/gfx/pics/vaporeon/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1ddf diff --git a/gfx/pics/vaporeon/back.2bpp.lz.aafe2ea4 b/gfx/pics/vaporeon/back.2bpp.lz.aafe2ea4 deleted file mode 100644 index 9ea248261..000000000 Binary files a/gfx/pics/vaporeon/back.2bpp.lz.aafe2ea4 and /dev/null differ diff --git a/gfx/pics/vaporeon/back.png b/gfx/pics/vaporeon/back.png deleted file mode 100644 index 61ed8e4ba..000000000 Binary files a/gfx/pics/vaporeon/back.png and /dev/null differ diff --git a/gfx/pics/vaporeon/front.animated.2bpp.lz.6e1ee993 b/gfx/pics/vaporeon/front.animated.2bpp.lz.6e1ee993 deleted file mode 100644 index 67793c7ec..000000000 Binary files a/gfx/pics/vaporeon/front.animated.2bpp.lz.6e1ee993 and /dev/null differ diff --git a/gfx/pics/vaporeon/front.png b/gfx/pics/vaporeon/front.png deleted file mode 100644 index f8ed11756..000000000 Binary files a/gfx/pics/vaporeon/front.png and /dev/null differ diff --git a/gfx/pics/vaporeon/shiny.pal b/gfx/pics/vaporeon/shiny.pal deleted file mode 100644 index b8571c740..000000000 --- a/gfx/pics/vaporeon/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 21, 31 - RGB 15, 10, 24 - diff --git a/gfx/pics/venomoth/anim0.asm b/gfx/pics/venomoth/anim0.asm deleted file mode 100644 index ba6014d59..000000000 --- a/gfx/pics/venomoth/anim0.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 6 - frame 0, 06 - frame 1, 06 - dorepeat 1 - endanim -; 0xd0b8c diff --git a/gfx/pics/venomoth/anim1.asm b/gfx/pics/venomoth/anim1.asm deleted file mode 100644 index 619c19b73..000000000 --- a/gfx/pics/venomoth/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 04 - frame 2, 04 - dorepeat 1 - endanim -; 0xd1aa4 diff --git a/gfx/pics/venomoth/back.2bpp.lz.ba3cccb7 b/gfx/pics/venomoth/back.2bpp.lz.ba3cccb7 deleted file mode 100644 index 721527c2a..000000000 Binary files a/gfx/pics/venomoth/back.2bpp.lz.ba3cccb7 and /dev/null differ diff --git a/gfx/pics/venomoth/back.png b/gfx/pics/venomoth/back.png deleted file mode 100644 index 5fbf6bba9..000000000 Binary files a/gfx/pics/venomoth/back.png and /dev/null differ diff --git a/gfx/pics/venomoth/front.animated.2bpp.lz.6c0096ec b/gfx/pics/venomoth/front.animated.2bpp.lz.6c0096ec deleted file mode 100644 index 5f32ad682..000000000 Binary files a/gfx/pics/venomoth/front.animated.2bpp.lz.6c0096ec and /dev/null differ diff --git a/gfx/pics/venomoth/front.png b/gfx/pics/venomoth/front.png deleted file mode 100644 index eb3c291b8..000000000 Binary files a/gfx/pics/venomoth/front.png and /dev/null differ diff --git a/gfx/pics/venomoth/shiny.pal b/gfx/pics/venomoth/shiny.pal deleted file mode 100644 index 50d971276..000000000 --- a/gfx/pics/venomoth/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 15, 31 - RGB 17, 06, 21 - diff --git a/gfx/pics/venonat/anim0.asm b/gfx/pics/venonat/anim0.asm deleted file mode 100644 index 508cbd84a..000000000 --- a/gfx/pics/venonat/anim0.asm +++ /dev/null @@ -1,16 +0,0 @@ - frame 2, 10 - frame 0, 10 - frame 2, 10 - frame 0, 06 - frame 1, 06 - frame 0, 06 - setrepeat 3 - frame 1, 04 - frame 0, 04 - dorepeat 7 - setrepeat 2 - frame 1, 02 - frame 0, 02 - dorepeat 11 - endanim -; 0xd0b83 diff --git a/gfx/pics/venonat/anim1.asm b/gfx/pics/venonat/anim1.asm deleted file mode 100644 index ecd7a45f1..000000000 --- a/gfx/pics/venonat/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 12 - frame 2, 16 - dorepeat 1 - endanim -; 0xd1a9b diff --git a/gfx/pics/venonat/back.2bpp.lz.63b1017a b/gfx/pics/venonat/back.2bpp.lz.63b1017a deleted file mode 100644 index b28c7523d..000000000 Binary files a/gfx/pics/venonat/back.2bpp.lz.63b1017a and /dev/null differ diff --git a/gfx/pics/venonat/back.png b/gfx/pics/venonat/back.png deleted file mode 100644 index 09b946146..000000000 Binary files a/gfx/pics/venonat/back.png and /dev/null differ diff --git a/gfx/pics/venonat/front.animated.2bpp.lz.02a36f08 b/gfx/pics/venonat/front.animated.2bpp.lz.02a36f08 deleted file mode 100644 index f6b057e8f..000000000 Binary files a/gfx/pics/venonat/front.animated.2bpp.lz.02a36f08 and /dev/null differ diff --git a/gfx/pics/venonat/front.png b/gfx/pics/venonat/front.png deleted file mode 100644 index 466b6b4c3..000000000 Binary files a/gfx/pics/venonat/front.png and /dev/null differ diff --git a/gfx/pics/venonat/shiny.pal b/gfx/pics/venonat/shiny.pal deleted file mode 100644 index 0660ed752..000000000 --- a/gfx/pics/venonat/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 14, 17, 31 - RGB 11, 05, 22 - diff --git a/gfx/pics/venusaur/anim0.asm b/gfx/pics/venusaur/anim0.asm deleted file mode 100644 index 9ee74b6c0..000000000 --- a/gfx/pics/venusaur/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 10 - frame 2, 35 - frame 3, 08 - frame 4, 08 - setrepeat 2 - frame 0, 10 - frame 5, 10 - dorepeat 5 - endanim -; 0xd08b6 diff --git a/gfx/pics/venusaur/anim1.asm b/gfx/pics/venusaur/anim1.asm deleted file mode 100644 index 6eebd7cd3..000000000 --- a/gfx/pics/venusaur/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - frame 1, 35 - frame 0, 13 - frame 6, 13 - frame 7, 13 - endanim -; 0xd18b6 diff --git a/gfx/pics/venusaur/back.2bpp.lz.1d5b9ebe b/gfx/pics/venusaur/back.2bpp.lz.1d5b9ebe deleted file mode 100644 index 27ca82e8a..000000000 Binary files a/gfx/pics/venusaur/back.2bpp.lz.1d5b9ebe and /dev/null differ diff --git a/gfx/pics/venusaur/back.png b/gfx/pics/venusaur/back.png deleted file mode 100644 index b611551f6..000000000 Binary files a/gfx/pics/venusaur/back.png and /dev/null differ diff --git a/gfx/pics/venusaur/front.animated.2bpp.lz.48d131f4 b/gfx/pics/venusaur/front.animated.2bpp.lz.48d131f4 deleted file mode 100644 index d436da0bd..000000000 Binary files a/gfx/pics/venusaur/front.animated.2bpp.lz.48d131f4 and /dev/null differ diff --git a/gfx/pics/venusaur/front.png b/gfx/pics/venusaur/front.png deleted file mode 100644 index 2cd0293cc..000000000 Binary files a/gfx/pics/venusaur/front.png and /dev/null differ diff --git a/gfx/pics/venusaur/shiny.pal b/gfx/pics/venusaur/shiny.pal deleted file mode 100644 index 6cffe65cb..000000000 --- a/gfx/pics/venusaur/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 18, 25, 11 - RGB 31, 22, 03 - diff --git a/gfx/pics/victreebel/anim0.asm b/gfx/pics/victreebel/anim0.asm deleted file mode 100644 index ec490f7fb..000000000 --- a/gfx/pics/victreebel/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 10 - frame 2, 25 - frame 3, 10 - frame 4, 10 - frame 5, 10 - endanim -; 0xd0cca diff --git a/gfx/pics/victreebel/anim1.asm b/gfx/pics/victreebel/anim1.asm deleted file mode 100644 index 121550865..000000000 --- a/gfx/pics/victreebel/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 4, 06 - frame 5, 05 - dorepeat 1 - endanim -; 0xd1b8c diff --git a/gfx/pics/victreebel/back.2bpp.lz.a80b1dc4 b/gfx/pics/victreebel/back.2bpp.lz.a80b1dc4 deleted file mode 100644 index d4b014f67..000000000 Binary files a/gfx/pics/victreebel/back.2bpp.lz.a80b1dc4 and /dev/null differ diff --git a/gfx/pics/victreebel/back.png b/gfx/pics/victreebel/back.png deleted file mode 100644 index 6f3ec484e..000000000 Binary files a/gfx/pics/victreebel/back.png and /dev/null differ diff --git a/gfx/pics/victreebel/front.animated.2bpp.lz.d5d535c1 b/gfx/pics/victreebel/front.animated.2bpp.lz.d5d535c1 deleted file mode 100644 index c53114990..000000000 Binary files a/gfx/pics/victreebel/front.animated.2bpp.lz.d5d535c1 and /dev/null differ diff --git a/gfx/pics/victreebel/front.png b/gfx/pics/victreebel/front.png deleted file mode 100644 index 7fc688ef3..000000000 Binary files a/gfx/pics/victreebel/front.png and /dev/null differ diff --git a/gfx/pics/victreebel/shiny.pal b/gfx/pics/victreebel/shiny.pal deleted file mode 100644 index c538a41fa..000000000 --- a/gfx/pics/victreebel/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 23, 03 - RGB 14, 12, 31 - diff --git a/gfx/pics/vileplume/anim0.asm b/gfx/pics/vileplume/anim0.asm deleted file mode 100644 index 98c2a86de..000000000 --- a/gfx/pics/vileplume/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 1, 07 - frame 2, 25 - frame 3, 05 - frame 1, 05 - frame 0, 05 - frame 1, 05 - frame 0, 07 - frame 1, 07 - endanim -; 0xd0b46 diff --git a/gfx/pics/vileplume/anim1.asm b/gfx/pics/vileplume/anim1.asm deleted file mode 100644 index e57622363..000000000 --- a/gfx/pics/vileplume/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 3, 05 - dorepeat 1 - frame 0, 12 - frame 3, 07 - endanim -; 0xd1a82 diff --git a/gfx/pics/vileplume/back.2bpp.lz.9f944092 b/gfx/pics/vileplume/back.2bpp.lz.9f944092 deleted file mode 100644 index 823f0e112..000000000 Binary files a/gfx/pics/vileplume/back.2bpp.lz.9f944092 and /dev/null differ diff --git a/gfx/pics/vileplume/back.png b/gfx/pics/vileplume/back.png deleted file mode 100644 index 4e0e9fbe3..000000000 Binary files a/gfx/pics/vileplume/back.png and /dev/null differ diff --git a/gfx/pics/vileplume/front.animated.2bpp.lz.db2287e6 b/gfx/pics/vileplume/front.animated.2bpp.lz.db2287e6 deleted file mode 100644 index 05ca10ba5..000000000 Binary files a/gfx/pics/vileplume/front.animated.2bpp.lz.db2287e6 and /dev/null differ diff --git a/gfx/pics/vileplume/front.png b/gfx/pics/vileplume/front.png deleted file mode 100644 index 6a8a4c0fd..000000000 Binary files a/gfx/pics/vileplume/front.png and /dev/null differ diff --git a/gfx/pics/vileplume/shiny.pal b/gfx/pics/vileplume/shiny.pal deleted file mode 100644 index d65151640..000000000 --- a/gfx/pics/vileplume/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 21, 03 - RGB 08, 15, 13 - diff --git a/gfx/pics/voltorb/anim0.asm b/gfx/pics/voltorb/anim0.asm deleted file mode 100644 index fdb49b9af..000000000 --- a/gfx/pics/voltorb/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 08 - frame 1, 08 - setrepeat 2 - frame 0, 06 - frame 1, 04 - dorepeat 3 - endanim -; 0xd0e57 diff --git a/gfx/pics/voltorb/anim1.asm b/gfx/pics/voltorb/anim1.asm deleted file mode 100644 index be799fe4a..000000000 --- a/gfx/pics/voltorb/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 04 - setrepeat 2 - frame 2, 08 - frame 0, 08 - dorepeat 2 - endanim -; 0xd1ca5 diff --git a/gfx/pics/voltorb/back.2bpp.lz.f19cefe9 b/gfx/pics/voltorb/back.2bpp.lz.f19cefe9 deleted file mode 100644 index fe102da9a..000000000 Binary files a/gfx/pics/voltorb/back.2bpp.lz.f19cefe9 and /dev/null differ diff --git a/gfx/pics/voltorb/back.png b/gfx/pics/voltorb/back.png deleted file mode 100644 index e2e46de54..000000000 Binary files a/gfx/pics/voltorb/back.png and /dev/null differ diff --git a/gfx/pics/voltorb/front.animated.2bpp.lz.64051f97 b/gfx/pics/voltorb/front.animated.2bpp.lz.64051f97 deleted file mode 100644 index 94f35f9aa..000000000 Binary files a/gfx/pics/voltorb/front.animated.2bpp.lz.64051f97 and /dev/null differ diff --git a/gfx/pics/voltorb/front.png b/gfx/pics/voltorb/front.png deleted file mode 100644 index 90dcedaf9..000000000 Binary files a/gfx/pics/voltorb/front.png and /dev/null differ diff --git a/gfx/pics/voltorb/shiny.pal b/gfx/pics/voltorb/shiny.pal deleted file mode 100644 index b8509a81f..000000000 --- a/gfx/pics/voltorb/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 20, 20, 17 - RGB 09, 02, 28 - diff --git a/gfx/pics/vulpix/anim0.asm b/gfx/pics/vulpix/anim0.asm deleted file mode 100644 index 878054202..000000000 --- a/gfx/pics/vulpix/anim0.asm +++ /dev/null @@ -1,11 +0,0 @@ - setrepeat 2 - frame 0, 10 - frame 1, 05 - frame 2, 05 - dorepeat 1 - setrepeat 2 - frame 0, 04 - frame 3, 05 - dorepeat 6 - endanim -; 0xd0aba diff --git a/gfx/pics/vulpix/anim1.asm b/gfx/pics/vulpix/anim1.asm deleted file mode 100644 index f7c9e3671..000000000 --- a/gfx/pics/vulpix/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 4, 10 - frame 3, 10 - frame 4, 10 - frame 0, 05 - frame 3, 05 - endanim -; 0xd1a34 diff --git a/gfx/pics/vulpix/back.2bpp.lz.0c7852c8 b/gfx/pics/vulpix/back.2bpp.lz.0c7852c8 deleted file mode 100644 index ce2535141..000000000 Binary files a/gfx/pics/vulpix/back.2bpp.lz.0c7852c8 and /dev/null differ diff --git a/gfx/pics/vulpix/back.png b/gfx/pics/vulpix/back.png deleted file mode 100644 index cd37be416..000000000 Binary files a/gfx/pics/vulpix/back.png and /dev/null differ diff --git a/gfx/pics/vulpix/front.animated.2bpp.lz.df94d884 b/gfx/pics/vulpix/front.animated.2bpp.lz.df94d884 deleted file mode 100644 index 9248ce808..000000000 Binary files a/gfx/pics/vulpix/front.animated.2bpp.lz.df94d884 and /dev/null differ diff --git a/gfx/pics/vulpix/front.png b/gfx/pics/vulpix/front.png deleted file mode 100644 index 43c19a3f8..000000000 Binary files a/gfx/pics/vulpix/front.png and /dev/null differ diff --git a/gfx/pics/vulpix/shiny.pal b/gfx/pics/vulpix/shiny.pal deleted file mode 100644 index 0084507cd..000000000 --- a/gfx/pics/vulpix/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 24, 01 - RGB 22, 16, 01 - diff --git a/gfx/pics/wartortle/anim0.asm b/gfx/pics/wartortle/anim0.asm deleted file mode 100644 index 832b87b88..000000000 --- a/gfx/pics/wartortle/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 04 - frame 2, 34 - setrepeat 3 - frame 0, 09 - frame 1, 09 - dorepeat 3 - endanim -; 0xd08ff diff --git a/gfx/pics/wartortle/anim1.asm b/gfx/pics/wartortle/anim1.asm deleted file mode 100644 index 40c4fcd14..000000000 --- a/gfx/pics/wartortle/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd18e7 diff --git a/gfx/pics/wartortle/back.2bpp.lz.f2338cb4 b/gfx/pics/wartortle/back.2bpp.lz.f2338cb4 deleted file mode 100644 index 5734c20cb..000000000 Binary files a/gfx/pics/wartortle/back.2bpp.lz.f2338cb4 and /dev/null differ diff --git a/gfx/pics/wartortle/back.png b/gfx/pics/wartortle/back.png deleted file mode 100644 index bb53292eb..000000000 Binary files a/gfx/pics/wartortle/back.png and /dev/null differ diff --git a/gfx/pics/wartortle/front.animated.2bpp.lz.f50d25f5 b/gfx/pics/wartortle/front.animated.2bpp.lz.f50d25f5 deleted file mode 100644 index 29642807d..000000000 Binary files a/gfx/pics/wartortle/front.animated.2bpp.lz.f50d25f5 and /dev/null differ diff --git a/gfx/pics/wartortle/front.png b/gfx/pics/wartortle/front.png deleted file mode 100644 index f4a4ad33f..000000000 Binary files a/gfx/pics/wartortle/front.png and /dev/null differ diff --git a/gfx/pics/wartortle/shiny.pal b/gfx/pics/wartortle/shiny.pal deleted file mode 100644 index c108dfdbf..000000000 --- a/gfx/pics/wartortle/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 13, 23, 08 - RGB 18, 19, 31 - diff --git a/gfx/pics/weedle/anim0.asm b/gfx/pics/weedle/anim0.asm deleted file mode 100644 index 5d959a772..000000000 --- a/gfx/pics/weedle/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 06 - frame 1, 18 - setrepeat 2 - frame 0, 06 - frame 3, 06 - frame 4, 06 - frame 3, 06 - dorepeat 3 - endanim -; 0xd093a diff --git a/gfx/pics/weedle/anim1.asm b/gfx/pics/weedle/anim1.asm deleted file mode 100644 index 30dcb9185..000000000 --- a/gfx/pics/weedle/anim1.asm +++ /dev/null @@ -1,12 +0,0 @@ - setrepeat 2 - frame 0, 04 - frame 2, 04 - dorepeat 1 - setrepeat 2 - frame 0, 05 - frame 3, 05 - frame 4, 05 - frame 3, 05 - dorepeat 5 - endanim -; 0xd1922 diff --git a/gfx/pics/weedle/back.2bpp.lz.f26ac339 b/gfx/pics/weedle/back.2bpp.lz.f26ac339 deleted file mode 100644 index 64decb914..000000000 Binary files a/gfx/pics/weedle/back.2bpp.lz.f26ac339 and /dev/null differ diff --git a/gfx/pics/weedle/back.png b/gfx/pics/weedle/back.png deleted file mode 100644 index b20e4a53d..000000000 Binary files a/gfx/pics/weedle/back.png and /dev/null differ diff --git a/gfx/pics/weedle/front.animated.2bpp.lz.9e1dedbd b/gfx/pics/weedle/front.animated.2bpp.lz.9e1dedbd deleted file mode 100644 index 091df588a..000000000 Binary files a/gfx/pics/weedle/front.animated.2bpp.lz.9e1dedbd and /dev/null differ diff --git a/gfx/pics/weedle/front.png b/gfx/pics/weedle/front.png deleted file mode 100644 index 3dfa35241..000000000 Binary files a/gfx/pics/weedle/front.png and /dev/null differ diff --git a/gfx/pics/weedle/shiny.pal b/gfx/pics/weedle/shiny.pal deleted file mode 100644 index 45cc7073c..000000000 --- a/gfx/pics/weedle/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 27, 05 - RGB 26, 07, 29 - diff --git a/gfx/pics/weepinbell/anim0.asm b/gfx/pics/weepinbell/anim0.asm deleted file mode 100644 index 6f710d29a..000000000 --- a/gfx/pics/weepinbell/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 0, 05 - frame 1, 05 - frame 2, 05 - dorepeat 1 - frame 3, 12 - endanim -; 0xd0cbf diff --git a/gfx/pics/weepinbell/anim1.asm b/gfx/pics/weepinbell/anim1.asm deleted file mode 100644 index 0e56c9cc1..000000000 --- a/gfx/pics/weepinbell/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 07 - frame 3, 07 - dorepeat 1 - endanim -; 0xd1b81 diff --git a/gfx/pics/weepinbell/back.2bpp.lz.f84a5fe6 b/gfx/pics/weepinbell/back.2bpp.lz.f84a5fe6 deleted file mode 100644 index 26e44257c..000000000 Binary files a/gfx/pics/weepinbell/back.2bpp.lz.f84a5fe6 and /dev/null differ diff --git a/gfx/pics/weepinbell/back.png b/gfx/pics/weepinbell/back.png deleted file mode 100644 index cb20b0da8..000000000 Binary files a/gfx/pics/weepinbell/back.png and /dev/null differ diff --git a/gfx/pics/weepinbell/front.animated.2bpp.lz.7b06c092 b/gfx/pics/weepinbell/front.animated.2bpp.lz.7b06c092 deleted file mode 100644 index a7e7d60b5..000000000 Binary files a/gfx/pics/weepinbell/front.animated.2bpp.lz.7b06c092 and /dev/null differ diff --git a/gfx/pics/weepinbell/front.png b/gfx/pics/weepinbell/front.png deleted file mode 100644 index eb6d4658c..000000000 Binary files a/gfx/pics/weepinbell/front.png and /dev/null differ diff --git a/gfx/pics/weepinbell/shiny.pal b/gfx/pics/weepinbell/shiny.pal deleted file mode 100644 index e4f10596c..000000000 --- a/gfx/pics/weepinbell/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 22, 28, 07 - RGB 19, 09, 19 - diff --git a/gfx/pics/weezing/anim0.asm b/gfx/pics/weezing/anim0.asm deleted file mode 100644 index e64ca5d37..000000000 --- a/gfx/pics/weezing/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 1, 15 - setrepeat 2 - frame 2, 10 - frame 3, 10 - frame 4, 10 - dorepeat 2 - endanim -; 0xd0efd diff --git a/gfx/pics/weezing/anim1.asm b/gfx/pics/weezing/anim1.asm deleted file mode 100644 index 1ba31dd74..000000000 --- a/gfx/pics/weezing/anim1.asm +++ /dev/null @@ -1,8 +0,0 @@ - frame 0, 12 - setrepeat 3 - frame 1, 08 - frame 5, 08 - dorepeat 2 - frame 1, 12 - endanim -; 0xd1cfb diff --git a/gfx/pics/weezing/back.2bpp.lz.5ac5b672 b/gfx/pics/weezing/back.2bpp.lz.5ac5b672 deleted file mode 100644 index a85124f3a..000000000 Binary files a/gfx/pics/weezing/back.2bpp.lz.5ac5b672 and /dev/null differ diff --git a/gfx/pics/weezing/back.png b/gfx/pics/weezing/back.png deleted file mode 100644 index 8f4b076a0..000000000 Binary files a/gfx/pics/weezing/back.png and /dev/null differ diff --git a/gfx/pics/weezing/front.animated.2bpp.lz.75928bd0 b/gfx/pics/weezing/front.animated.2bpp.lz.75928bd0 deleted file mode 100644 index 3c6f24a41..000000000 Binary files a/gfx/pics/weezing/front.animated.2bpp.lz.75928bd0 and /dev/null differ diff --git a/gfx/pics/weezing/front.png b/gfx/pics/weezing/front.png deleted file mode 100644 index 7fd7b9312..000000000 Binary files a/gfx/pics/weezing/front.png and /dev/null differ diff --git a/gfx/pics/weezing/shiny.pal b/gfx/pics/weezing/shiny.pal deleted file mode 100644 index 8132fea04..000000000 --- a/gfx/pics/weezing/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 16, 20, 25 - RGB 09, 12, 23 - diff --git a/gfx/pics/wigglytuff/anim0.asm b/gfx/pics/wigglytuff/anim0.asm deleted file mode 100644 index 53b468fdd..000000000 --- a/gfx/pics/wigglytuff/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 0, 04 - frame 1, 20 - frame 2, 08 - frame 0, 08 - frame 2, 06 - frame 0, 06 - frame 2, 04 - endanim -; 0xd0aed diff --git a/gfx/pics/wigglytuff/anim1.asm b/gfx/pics/wigglytuff/anim1.asm deleted file mode 100644 index b99bf002c..000000000 --- a/gfx/pics/wigglytuff/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 3 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd1a4f diff --git a/gfx/pics/wigglytuff/back.2bpp.lz.fee674ac b/gfx/pics/wigglytuff/back.2bpp.lz.fee674ac deleted file mode 100644 index 3b3732986..000000000 Binary files a/gfx/pics/wigglytuff/back.2bpp.lz.fee674ac and /dev/null differ diff --git a/gfx/pics/wigglytuff/back.png b/gfx/pics/wigglytuff/back.png deleted file mode 100644 index 5e264305b..000000000 Binary files a/gfx/pics/wigglytuff/back.png and /dev/null differ diff --git a/gfx/pics/wigglytuff/front.animated.2bpp.lz.49311d0b b/gfx/pics/wigglytuff/front.animated.2bpp.lz.49311d0b deleted file mode 100644 index c633d2a0a..000000000 Binary files a/gfx/pics/wigglytuff/front.animated.2bpp.lz.49311d0b and /dev/null differ diff --git a/gfx/pics/wigglytuff/front.png b/gfx/pics/wigglytuff/front.png deleted file mode 100644 index 229f6647a..000000000 Binary files a/gfx/pics/wigglytuff/front.png and /dev/null differ diff --git a/gfx/pics/wigglytuff/shiny.pal b/gfx/pics/wigglytuff/shiny.pal deleted file mode 100644 index 38ce5d76d..000000000 --- a/gfx/pics/wigglytuff/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 17, 31 - RGB 09, 24, 03 - diff --git a/gfx/pics/wobbuffet/anim0.asm b/gfx/pics/wobbuffet/anim0.asm deleted file mode 100644 index 340f3df46..000000000 --- a/gfx/pics/wobbuffet/anim0.asm +++ /dev/null @@ -1,4 +0,0 @@ - frame 1, 07 - frame 2, 30 - endanim -; 0xd1403 diff --git a/gfx/pics/wobbuffet/anim1.asm b/gfx/pics/wobbuffet/anim1.asm deleted file mode 100644 index 8a3564daa..000000000 --- a/gfx/pics/wobbuffet/anim1.asm +++ /dev/null @@ -1,3 +0,0 @@ - frame 0, 30 - endanim -; 0xd2069 diff --git a/gfx/pics/wobbuffet/back.2bpp.lz.a862192a b/gfx/pics/wobbuffet/back.2bpp.lz.a862192a deleted file mode 100644 index 87dba2049..000000000 Binary files a/gfx/pics/wobbuffet/back.2bpp.lz.a862192a and /dev/null differ diff --git a/gfx/pics/wobbuffet/back.png b/gfx/pics/wobbuffet/back.png deleted file mode 100644 index 103f69106..000000000 Binary files a/gfx/pics/wobbuffet/back.png and /dev/null differ diff --git a/gfx/pics/wobbuffet/front.animated.2bpp.lz.f1f4687d b/gfx/pics/wobbuffet/front.animated.2bpp.lz.f1f4687d deleted file mode 100644 index ce7aa46c8..000000000 Binary files a/gfx/pics/wobbuffet/front.animated.2bpp.lz.f1f4687d and /dev/null differ diff --git a/gfx/pics/wobbuffet/front.png b/gfx/pics/wobbuffet/front.png deleted file mode 100644 index e1b7935aa..000000000 Binary files a/gfx/pics/wobbuffet/front.png and /dev/null differ diff --git a/gfx/pics/wobbuffet/shiny.pal b/gfx/pics/wobbuffet/shiny.pal deleted file mode 100644 index c721c9ba6..000000000 --- a/gfx/pics/wobbuffet/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 23, 07, 25 - RGB 07, 09, 16 - diff --git a/gfx/pics/wooper/anim0.asm b/gfx/pics/wooper/anim0.asm deleted file mode 100644 index 2c9becf9e..000000000 --- a/gfx/pics/wooper/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 2 - frame 1, 08 - frame 2, 08 - dorepeat 1 - frame 0, 08 - frame 4, 08 - endanim -; 0xd1397 diff --git a/gfx/pics/wooper/anim1.asm b/gfx/pics/wooper/anim1.asm deleted file mode 100644 index 3f152d035..000000000 --- a/gfx/pics/wooper/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 06 - frame 3, 06 - dorepeat 1 - endanim -; 0xd202f diff --git a/gfx/pics/wooper/back.2bpp.lz.4f4b7917 b/gfx/pics/wooper/back.2bpp.lz.4f4b7917 deleted file mode 100644 index 973037f02..000000000 Binary files a/gfx/pics/wooper/back.2bpp.lz.4f4b7917 and /dev/null differ diff --git a/gfx/pics/wooper/back.png b/gfx/pics/wooper/back.png deleted file mode 100644 index 83fca2bf5..000000000 Binary files a/gfx/pics/wooper/back.png and /dev/null differ diff --git a/gfx/pics/wooper/front.animated.2bpp.lz.4e440469 b/gfx/pics/wooper/front.animated.2bpp.lz.4e440469 deleted file mode 100644 index 3d5d53c1b..000000000 Binary files a/gfx/pics/wooper/front.animated.2bpp.lz.4e440469 and /dev/null differ diff --git a/gfx/pics/wooper/front.png b/gfx/pics/wooper/front.png deleted file mode 100644 index 9a232b113..000000000 Binary files a/gfx/pics/wooper/front.png and /dev/null differ diff --git a/gfx/pics/wooper/shiny.pal b/gfx/pics/wooper/shiny.pal deleted file mode 100644 index aa3475256..000000000 --- a/gfx/pics/wooper/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 17, 31 - RGB 31, 21, 00 - diff --git a/gfx/pics/xatu/anim0.asm b/gfx/pics/xatu/anim0.asm deleted file mode 100644 index 002f905b8..000000000 --- a/gfx/pics/xatu/anim0.asm +++ /dev/null @@ -1,10 +0,0 @@ - frame 0, 04 - frame 3, 12 - frame 2, 12 - frame 1, 12 - setrepeat 2 - frame 0, 12 - frame 4, 12 - dorepeat 5 - endanim -; 0xd12cd diff --git a/gfx/pics/xatu/anim1.asm b/gfx/pics/xatu/anim1.asm deleted file mode 100644 index 3fa8d7875..000000000 --- a/gfx/pics/xatu/anim1.asm +++ /dev/null @@ -1,11 +0,0 @@ - setrepeat 2 - frame 0, 08 - frame 3, 08 - dorepeat 1 - frame 0, 18 - setrepeat 2 - frame 1, 08 - frame 2, 08 - dorepeat 6 - endanim -; 0xd1f99 diff --git a/gfx/pics/xatu/back.2bpp.lz.4de765ff b/gfx/pics/xatu/back.2bpp.lz.4de765ff deleted file mode 100644 index 8b6889ffb..000000000 Binary files a/gfx/pics/xatu/back.2bpp.lz.4de765ff and /dev/null differ diff --git a/gfx/pics/xatu/back.png b/gfx/pics/xatu/back.png deleted file mode 100644 index 94f56f87d..000000000 Binary files a/gfx/pics/xatu/back.png and /dev/null differ diff --git a/gfx/pics/xatu/front.animated.2bpp.lz.4f452e43 b/gfx/pics/xatu/front.animated.2bpp.lz.4f452e43 deleted file mode 100644 index 4b5918b3a..000000000 Binary files a/gfx/pics/xatu/front.animated.2bpp.lz.4f452e43 and /dev/null differ diff --git a/gfx/pics/xatu/front.png b/gfx/pics/xatu/front.png deleted file mode 100644 index f6335d27d..000000000 Binary files a/gfx/pics/xatu/front.png and /dev/null differ diff --git a/gfx/pics/xatu/shiny.pal b/gfx/pics/xatu/shiny.pal deleted file mode 100644 index 00ac32371..000000000 --- a/gfx/pics/xatu/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 19, 27, 00 - RGB 23, 12, 02 - diff --git a/gfx/pics/yanma/anim0.asm b/gfx/pics/yanma/anim0.asm deleted file mode 100644 index 4f1aaa929..000000000 --- a/gfx/pics/yanma/anim0.asm +++ /dev/null @@ -1,9 +0,0 @@ - frame 1, 10 - frame 0, 05 - frame 3, 05 - setrepeat 5 - frame 0, 03 - frame 2, 03 - dorepeat 4 - endanim -; 0xd138a diff --git a/gfx/pics/yanma/anim1.asm b/gfx/pics/yanma/anim1.asm deleted file mode 100644 index 75464b3f1..000000000 --- a/gfx/pics/yanma/anim1.asm +++ /dev/null @@ -1,6 +0,0 @@ - setrepeat 2 - frame 0, 04 - frame 3, 04 - dorepeat 1 - endanim -; 0xd2026 diff --git a/gfx/pics/yanma/back.2bpp.lz.2ca27ab3 b/gfx/pics/yanma/back.2bpp.lz.2ca27ab3 deleted file mode 100644 index 47105f12f..000000000 Binary files a/gfx/pics/yanma/back.2bpp.lz.2ca27ab3 and /dev/null differ diff --git a/gfx/pics/yanma/back.png b/gfx/pics/yanma/back.png deleted file mode 100644 index cc21b1a28..000000000 Binary files a/gfx/pics/yanma/back.png and /dev/null differ diff --git a/gfx/pics/yanma/front.animated.2bpp.lz.25f91adf b/gfx/pics/yanma/front.animated.2bpp.lz.25f91adf deleted file mode 100644 index 1987afdc9..000000000 Binary files a/gfx/pics/yanma/front.animated.2bpp.lz.25f91adf and /dev/null differ diff --git a/gfx/pics/yanma/front.png b/gfx/pics/yanma/front.png deleted file mode 100644 index 1812eea58..000000000 Binary files a/gfx/pics/yanma/front.png and /dev/null differ diff --git a/gfx/pics/yanma/shiny.pal b/gfx/pics/yanma/shiny.pal deleted file mode 100644 index cbbdc755b..000000000 --- a/gfx/pics/yanma/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 09, 26, 10 - RGB 13, 14, 30 - diff --git a/gfx/pics/zapdos/anim0.asm b/gfx/pics/zapdos/anim0.asm deleted file mode 100644 index a22540c2a..000000000 --- a/gfx/pics/zapdos/anim0.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 1, 10 - setrepeat 3 - frame 2, 10 - frame 3, 10 - dorepeat 2 - endanim -; 0xd10cc diff --git a/gfx/pics/zapdos/anim1.asm b/gfx/pics/zapdos/anim1.asm deleted file mode 100644 index 3d8c8fd57..000000000 --- a/gfx/pics/zapdos/anim1.asm +++ /dev/null @@ -1,5 +0,0 @@ - frame 1, 08 - frame 2, 50 - frame 1, 06 - endanim -; 0xd1e48 diff --git a/gfx/pics/zapdos/back.2bpp.lz.a44c7524 b/gfx/pics/zapdos/back.2bpp.lz.a44c7524 deleted file mode 100644 index 2f2167941..000000000 Binary files a/gfx/pics/zapdos/back.2bpp.lz.a44c7524 and /dev/null differ diff --git a/gfx/pics/zapdos/back.png b/gfx/pics/zapdos/back.png deleted file mode 100644 index 8b1b740ea..000000000 Binary files a/gfx/pics/zapdos/back.png and /dev/null differ diff --git a/gfx/pics/zapdos/front.animated.2bpp.lz.05cb214a b/gfx/pics/zapdos/front.animated.2bpp.lz.05cb214a deleted file mode 100644 index 0f048171c..000000000 Binary files a/gfx/pics/zapdos/front.animated.2bpp.lz.05cb214a and /dev/null differ diff --git a/gfx/pics/zapdos/front.png b/gfx/pics/zapdos/front.png deleted file mode 100644 index ae1b68cd0..000000000 Binary files a/gfx/pics/zapdos/front.png and /dev/null differ diff --git a/gfx/pics/zapdos/shiny.pal b/gfx/pics/zapdos/shiny.pal deleted file mode 100644 index e73dbe6ff..000000000 --- a/gfx/pics/zapdos/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 31, 19, 00 - RGB 31, 04, 00 - diff --git a/gfx/pics/zubat/anim0.asm b/gfx/pics/zubat/anim0.asm deleted file mode 100644 index a34a66671..000000000 --- a/gfx/pics/zubat/anim0.asm +++ /dev/null @@ -1,8 +0,0 @@ - setrepeat 4 - frame 1, 07 - frame 2, 07 - dorepeat 1 - frame 3, 07 - frame 0, 07 - endanim -; 0xd0afa diff --git a/gfx/pics/zubat/anim1.asm b/gfx/pics/zubat/anim1.asm deleted file mode 100644 index cfba587f9..000000000 --- a/gfx/pics/zubat/anim1.asm +++ /dev/null @@ -1,7 +0,0 @@ - frame 2, 35 - setrepeat 2 - frame 0, 12 - frame 3, 12 - dorepeat 2 - endanim -; 0xd1a5a diff --git a/gfx/pics/zubat/back.2bpp.lz.aa77eb62 b/gfx/pics/zubat/back.2bpp.lz.aa77eb62 deleted file mode 100644 index d50e00e90..000000000 Binary files a/gfx/pics/zubat/back.2bpp.lz.aa77eb62 and /dev/null differ diff --git a/gfx/pics/zubat/back.png b/gfx/pics/zubat/back.png deleted file mode 100644 index 2e1eb35cf..000000000 Binary files a/gfx/pics/zubat/back.png and /dev/null differ diff --git a/gfx/pics/zubat/front.animated.2bpp.lz.f12e6581 b/gfx/pics/zubat/front.animated.2bpp.lz.f12e6581 deleted file mode 100644 index b22e1d971..000000000 Binary files a/gfx/pics/zubat/front.animated.2bpp.lz.f12e6581 and /dev/null differ diff --git a/gfx/pics/zubat/front.png b/gfx/pics/zubat/front.png deleted file mode 100644 index 1dbccda8e..000000000 Binary files a/gfx/pics/zubat/front.png and /dev/null differ diff --git a/gfx/pics/zubat/shiny.pal b/gfx/pics/zubat/shiny.pal deleted file mode 100644 index 722f84ed2..000000000 --- a/gfx/pics/zubat/shiny.pal +++ /dev/null @@ -1,4 +0,0 @@ - - RGB 27, 15, 30 - RGB 10, 17, 06 - diff --git a/gfx/pokemon/abra/anim0.asm b/gfx/pokemon/abra/anim0.asm new file mode 100644 index 000000000..9d37567ac --- /dev/null +++ b/gfx/pokemon/abra/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 3 + frame 0, 09 + frame 1, 10 + frame 2, 09 + dorepeat 1 + endanim +; 0xd0c5a diff --git a/gfx/pokemon/abra/anim1.asm b/gfx/pokemon/abra/anim1.asm new file mode 100644 index 000000000..796e57f88 --- /dev/null +++ b/gfx/pokemon/abra/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 07 + frame 3, 07 + dorepeat 1 + endanim +; 0xd1b38 diff --git a/gfx/pokemon/abra/back.2bpp.lz.9ac09a32 b/gfx/pokemon/abra/back.2bpp.lz.9ac09a32 new file mode 100644 index 000000000..2df351881 Binary files /dev/null and b/gfx/pokemon/abra/back.2bpp.lz.9ac09a32 differ diff --git a/gfx/pokemon/abra/back.png b/gfx/pokemon/abra/back.png new file mode 100644 index 000000000..f3a681f04 Binary files /dev/null and b/gfx/pokemon/abra/back.png differ diff --git a/gfx/pokemon/abra/front.animated.2bpp.lz.12e14d9a b/gfx/pokemon/abra/front.animated.2bpp.lz.12e14d9a new file mode 100644 index 000000000..2b41c4263 Binary files /dev/null and b/gfx/pokemon/abra/front.animated.2bpp.lz.12e14d9a differ diff --git a/gfx/pokemon/abra/front.png b/gfx/pokemon/abra/front.png new file mode 100644 index 000000000..cd3cbd704 Binary files /dev/null and b/gfx/pokemon/abra/front.png differ diff --git a/gfx/pokemon/abra/shiny.pal b/gfx/pokemon/abra/shiny.pal new file mode 100644 index 000000000..328319095 --- /dev/null +++ b/gfx/pokemon/abra/shiny.pal @@ -0,0 +1,4 @@ + + RGB 28, 24, 10 + RGB 20, 09, 19 + diff --git a/gfx/pokemon/aerodactyl/anim0.asm b/gfx/pokemon/aerodactyl/anim0.asm new file mode 100644 index 000000000..515cba043 --- /dev/null +++ b/gfx/pokemon/aerodactyl/anim0.asm @@ -0,0 +1,9 @@ + frame 2, 12 + frame 0, 12 + frame 2, 16 + setrepeat 3 + frame 0, 08 + frame 1, 08 + dorepeat 4 + endanim +; 0xd10a1 diff --git a/gfx/pokemon/aerodactyl/anim1.asm b/gfx/pokemon/aerodactyl/anim1.asm new file mode 100644 index 000000000..4394a8e0c --- /dev/null +++ b/gfx/pokemon/aerodactyl/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1e2b diff --git a/gfx/pokemon/aerodactyl/back.2bpp.lz.e2da1f61 b/gfx/pokemon/aerodactyl/back.2bpp.lz.e2da1f61 new file mode 100644 index 000000000..05536351b Binary files /dev/null and b/gfx/pokemon/aerodactyl/back.2bpp.lz.e2da1f61 differ diff --git a/gfx/pokemon/aerodactyl/back.png b/gfx/pokemon/aerodactyl/back.png new file mode 100644 index 000000000..a88138069 Binary files /dev/null and b/gfx/pokemon/aerodactyl/back.png differ diff --git a/gfx/pokemon/aerodactyl/front.animated.2bpp.lz.3bceb33e b/gfx/pokemon/aerodactyl/front.animated.2bpp.lz.3bceb33e new file mode 100644 index 000000000..ae8d9f8ab Binary files /dev/null and b/gfx/pokemon/aerodactyl/front.animated.2bpp.lz.3bceb33e differ diff --git a/gfx/pokemon/aerodactyl/front.png b/gfx/pokemon/aerodactyl/front.png new file mode 100644 index 000000000..3fdf99f61 Binary files /dev/null and b/gfx/pokemon/aerodactyl/front.png differ diff --git a/gfx/pokemon/aerodactyl/shiny.pal b/gfx/pokemon/aerodactyl/shiny.pal new file mode 100644 index 000000000..6dade0490 --- /dev/null +++ b/gfx/pokemon/aerodactyl/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 09, 23 + RGB 12, 09, 21 + diff --git a/gfx/pokemon/aipom/anim0.asm b/gfx/pokemon/aipom/anim0.asm new file mode 100644 index 000000000..99556d958 --- /dev/null +++ b/gfx/pokemon/aipom/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 24 + setrepeat 2 + frame 0, 12 + frame 2, 12 + dorepeat 2 + endanim +; 0xd1369 diff --git a/gfx/pokemon/aipom/anim1.asm b/gfx/pokemon/aipom/anim1.asm new file mode 100644 index 000000000..9685b665d --- /dev/null +++ b/gfx/pokemon/aipom/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd200b diff --git a/gfx/pokemon/aipom/back.2bpp.lz.597d4dda b/gfx/pokemon/aipom/back.2bpp.lz.597d4dda new file mode 100644 index 000000000..d6d9fdbc1 Binary files /dev/null and b/gfx/pokemon/aipom/back.2bpp.lz.597d4dda differ diff --git a/gfx/pokemon/aipom/back.png b/gfx/pokemon/aipom/back.png new file mode 100644 index 000000000..0be9d9ed0 Binary files /dev/null and b/gfx/pokemon/aipom/back.png differ diff --git a/gfx/pokemon/aipom/front.animated.2bpp.lz.fba7c862 b/gfx/pokemon/aipom/front.animated.2bpp.lz.fba7c862 new file mode 100644 index 000000000..58800e5e4 Binary files /dev/null and b/gfx/pokemon/aipom/front.animated.2bpp.lz.fba7c862 differ diff --git a/gfx/pokemon/aipom/front.png b/gfx/pokemon/aipom/front.png new file mode 100644 index 000000000..72cc3b718 Binary files /dev/null and b/gfx/pokemon/aipom/front.png differ diff --git a/gfx/pokemon/aipom/shiny.pal b/gfx/pokemon/aipom/shiny.pal new file mode 100644 index 000000000..a01f18d1a --- /dev/null +++ b/gfx/pokemon/aipom/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 16, 18 + RGB 22, 03, 25 + diff --git a/gfx/pokemon/alakazam/anim0.asm b/gfx/pokemon/alakazam/anim0.asm new file mode 100644 index 000000000..fb87afbfe --- /dev/null +++ b/gfx/pokemon/alakazam/anim0.asm @@ -0,0 +1,9 @@ + frame 3, 10 + setrepeat 2 + frame 1, 12 + frame 2, 12 + frame 3, 12 + dorepeat 2 + frame 3, 07 + endanim +; 0xd0c76 diff --git a/gfx/pokemon/alakazam/anim1.asm b/gfx/pokemon/alakazam/anim1.asm new file mode 100644 index 000000000..52cf585fb --- /dev/null +++ b/gfx/pokemon/alakazam/anim1.asm @@ -0,0 +1,5 @@ + frame 4, 15 + frame 5, 45 + frame 3, 10 + endanim +; 0xd1b48 diff --git a/gfx/pokemon/alakazam/back.2bpp.lz.75e7e1c6 b/gfx/pokemon/alakazam/back.2bpp.lz.75e7e1c6 new file mode 100644 index 000000000..65f1a2729 Binary files /dev/null and b/gfx/pokemon/alakazam/back.2bpp.lz.75e7e1c6 differ diff --git a/gfx/pokemon/alakazam/back.png b/gfx/pokemon/alakazam/back.png new file mode 100644 index 000000000..977c2974f Binary files /dev/null and b/gfx/pokemon/alakazam/back.png differ diff --git a/gfx/pokemon/alakazam/front.animated.2bpp.lz.b246e050 b/gfx/pokemon/alakazam/front.animated.2bpp.lz.b246e050 new file mode 100644 index 000000000..6272553a7 Binary files /dev/null and b/gfx/pokemon/alakazam/front.animated.2bpp.lz.b246e050 differ diff --git a/gfx/pokemon/alakazam/front.png b/gfx/pokemon/alakazam/front.png new file mode 100644 index 000000000..958aa11ad Binary files /dev/null and b/gfx/pokemon/alakazam/front.png differ diff --git a/gfx/pokemon/alakazam/shiny.pal b/gfx/pokemon/alakazam/shiny.pal new file mode 100644 index 000000000..2e52d97de --- /dev/null +++ b/gfx/pokemon/alakazam/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 19, 03 + RGB 21, 02, 21 + diff --git a/gfx/pokemon/ampharos/anim0.asm b/gfx/pokemon/ampharos/anim0.asm new file mode 100644 index 000000000..5e3d6538e --- /dev/null +++ b/gfx/pokemon/ampharos/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 10 + frame 2, 08 + setrepeat 7 + frame 2, 02 + frame 3, 02 + dorepeat 3 + frame 1, 06 + frame 4, 06 + endanim +; 0xd12fa diff --git a/gfx/pokemon/ampharos/anim1.asm b/gfx/pokemon/ampharos/anim1.asm new file mode 100644 index 000000000..6dcb40d61 --- /dev/null +++ b/gfx/pokemon/ampharos/anim1.asm @@ -0,0 +1,7 @@ + frame 4, 10 + setrepeat 2 + frame 5, 06 + frame 6, 06 + dorepeat 2 + endanim +; 0xd1fb6 diff --git a/gfx/pokemon/ampharos/back.2bpp.lz.06af98c8 b/gfx/pokemon/ampharos/back.2bpp.lz.06af98c8 new file mode 100644 index 000000000..8d3b42d9b Binary files /dev/null and b/gfx/pokemon/ampharos/back.2bpp.lz.06af98c8 differ diff --git a/gfx/pokemon/ampharos/back.png b/gfx/pokemon/ampharos/back.png new file mode 100644 index 000000000..0e1075491 Binary files /dev/null and b/gfx/pokemon/ampharos/back.png differ diff --git a/gfx/pokemon/ampharos/front.animated.2bpp.lz.4b908a28 b/gfx/pokemon/ampharos/front.animated.2bpp.lz.4b908a28 new file mode 100644 index 000000000..84f43c105 Binary files /dev/null and b/gfx/pokemon/ampharos/front.animated.2bpp.lz.4b908a28 differ diff --git a/gfx/pokemon/ampharos/front.png b/gfx/pokemon/ampharos/front.png new file mode 100644 index 000000000..0cf155177 Binary files /dev/null and b/gfx/pokemon/ampharos/front.png differ diff --git a/gfx/pokemon/ampharos/shiny.pal b/gfx/pokemon/ampharos/shiny.pal new file mode 100644 index 000000000..67451112f --- /dev/null +++ b/gfx/pokemon/ampharos/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 20, 21 + RGB 14, 05, 31 + diff --git a/gfx/pokemon/anim_pointers.asm b/gfx/pokemon/anim_pointers.asm new file mode 100644 index 000000000..c14cf56ea --- /dev/null +++ b/gfx/pokemon/anim_pointers.asm @@ -0,0 +1,252 @@ +AnimationPointers: + dw BulbasaurAnimation + dw IvysaurAnimation + dw VenusaurAnimation + dw CharmanderAnimation + dw CharmeleonAnimation + dw CharizardAnimation + dw SquirtleAnimation + dw WartortleAnimation + dw BlastoiseAnimation + dw CaterpieAnimation + dw MetapodAnimation + dw ButterfreeAnimation + dw WeedleAnimation + dw KakunaAnimation + dw BeedrillAnimation + dw PidgeyAnimation + dw PidgeottoAnimation + dw PidgeotAnimation + dw RattataAnimation + dw RaticateAnimation + dw SpearowAnimation + dw FearowAnimation + dw EkansAnimation + dw ArbokAnimation + dw PikachuAnimation + dw RaichuAnimation + dw SandshrewAnimation + dw SandslashAnimation + dw NidoranFAnimation + dw NidorinaAnimation + dw NidoqueenAnimation + dw NidoranMAnimation + dw NidorinoAnimation + dw NidokingAnimation + dw ClefairyAnimation + dw ClefableAnimation + dw VulpixAnimation + dw NinetalesAnimation + dw JigglypuffAnimation + dw WigglytuffAnimation + dw ZubatAnimation + dw GolbatAnimation + dw OddishAnimation + dw GloomAnimation + dw VileplumeAnimation + dw ParasAnimation + dw ParasectAnimation + dw VenonatAnimation + dw VenomothAnimation + dw DiglettAnimation + dw DugtrioAnimation + dw MeowthAnimation + dw PersianAnimation + dw PsyduckAnimation + dw GolduckAnimation + dw MankeyAnimation + dw PrimeapeAnimation + dw GrowlitheAnimation + dw ArcanineAnimation + dw PoliwagAnimation + dw PoliwhirlAnimation + dw PoliwrathAnimation + dw AbraAnimation + dw KadabraAnimation + dw AlakazamAnimation + dw MachopAnimation + dw MachokeAnimation + dw MachampAnimation + dw BellsproutAnimation + dw WeepinbellAnimation + dw VictreebelAnimation + dw TentacoolAnimation + dw TentacruelAnimation + dw GeodudeAnimation + dw GravelerAnimation + dw GolemAnimation + dw PonytaAnimation + dw RapidashAnimation + dw SlowpokeAnimation + dw SlowbroAnimation + dw MagnemiteAnimation + dw MagnetonAnimation + dw FarfetchDAnimation + dw DoduoAnimation + dw DodrioAnimation + dw SeelAnimation + dw DewgongAnimation + dw GrimerAnimation + dw MukAnimation + dw ShellderAnimation + dw CloysterAnimation + dw GastlyAnimation + dw HaunterAnimation + dw GengarAnimation + dw OnixAnimation + dw DrowzeeAnimation + dw HypnoAnimation + dw KrabbyAnimation + dw KinglerAnimation + dw VoltorbAnimation + dw ElectrodeAnimation + dw ExeggcuteAnimation + dw ExeggutorAnimation + dw CuboneAnimation + dw MarowakAnimation + dw HitmonleeAnimation + dw HitmonchanAnimation + dw LickitungAnimation + dw KoffingAnimation + dw WeezingAnimation + dw RhyhornAnimation + dw RhydonAnimation + dw ChanseyAnimation + dw TangelaAnimation + dw KangaskhanAnimation + dw HorseaAnimation + dw SeadraAnimation + dw GoldeenAnimation + dw SeakingAnimation + dw StaryuAnimation + dw StarmieAnimation + dw MrMimeAnimation + dw ScytherAnimation + dw JynxAnimation + dw ElectabuzzAnimation + dw MagmarAnimation + dw PinsirAnimation + dw TaurosAnimation + dw MagikarpAnimation + dw GyaradosAnimation + dw LaprasAnimation + dw DittoAnimation + dw EeveeAnimation + dw VaporeonAnimation + dw JolteonAnimation + dw FlareonAnimation + dw PorygonAnimation + dw OmanyteAnimation + dw OmastarAnimation + dw KabutoAnimation + dw KabutopsAnimation + dw AerodactylAnimation + dw SnorlaxAnimation + dw ArticunoAnimation + dw ZapdosAnimation + dw MoltresAnimation + dw DratiniAnimation + dw DragonairAnimation + dw DragoniteAnimation + dw MewtwoAnimation + dw MewAnimation + dw ChikoritaAnimation + dw BayleefAnimation + dw MeganiumAnimation + dw CyndaquilAnimation + dw QuilavaAnimation + dw TyphlosionAnimation + dw TotodileAnimation + dw CroconawAnimation + dw FeraligatrAnimation + dw SentretAnimation + dw FurretAnimation + dw HoothootAnimation + dw NoctowlAnimation + dw LedybaAnimation + dw LedianAnimation + dw SpinarakAnimation + dw AriadosAnimation + dw CrobatAnimation + dw ChinchouAnimation + dw LanturnAnimation + dw PichuAnimation + dw CleffaAnimation + dw IgglybuffAnimation + dw TogepiAnimation + dw TogeticAnimation + dw NatuAnimation + dw XatuAnimation + dw MareepAnimation + dw FlaaffyAnimation + dw AmpharosAnimation + dw BellossomAnimation + dw MarillAnimation + dw AzumarillAnimation + dw SudowoodoAnimation + dw PolitoedAnimation + dw HoppipAnimation + dw SkiploomAnimation + dw JumpluffAnimation + dw AipomAnimation + dw SunkernAnimation + dw SunfloraAnimation + dw YanmaAnimation + dw WooperAnimation + dw QuagsireAnimation + dw EspeonAnimation + dw UmbreonAnimation + dw MurkrowAnimation + dw SlowkingAnimation + dw MisdreavusAnimation + dw UnownAnimation + dw WobbuffetAnimation + dw GirafarigAnimation + dw PinecoAnimation + dw ForretressAnimation + dw DunsparceAnimation + dw GligarAnimation + dw SteelixAnimation + dw SnubbullAnimation + dw GranbullAnimation + dw QwilfishAnimation + dw ScizorAnimation + dw ShuckleAnimation + dw HeracrossAnimation + dw SneaselAnimation + dw TeddiursaAnimation + dw UrsaringAnimation + dw SlugmaAnimation + dw MagcargoAnimation + dw SwinubAnimation + dw PiloswineAnimation + dw CorsolaAnimation + dw RemoraidAnimation + dw OctilleryAnimation + dw DelibirdAnimation + dw MantineAnimation + dw SkarmoryAnimation + dw HoundourAnimation + dw HoundoomAnimation + dw KingdraAnimation + dw PhanpyAnimation + dw DonphanAnimation + dw Porygon2Animation + dw StantlerAnimation + dw SmeargleAnimation + dw TyrogueAnimation + dw HitmontopAnimation + dw SmoochumAnimation + dw ElekidAnimation + dw MagbyAnimation + dw MiltankAnimation + dw BlisseyAnimation + dw RaikouAnimation + dw EnteiAnimation + dw SuicuneAnimation + dw LarvitarAnimation + dw PupitarAnimation + dw TyranitarAnimation + dw LugiaAnimation + dw HoOhAnimation + dw CelebiAnimation diff --git a/gfx/pokemon/animation.asm b/gfx/pokemon/animation.asm new file mode 100644 index 000000000..2b93ef749 --- /dev/null +++ b/gfx/pokemon/animation.asm @@ -0,0 +1,1140 @@ +; Pic animation arrangement. + +AnimateMon_Slow_Normal: ; d0000 + hlcoord 12, 0 + ld a, [wBattleMode] + cp WILD_BATTLE + jr z, .wild + ld e, ANIM_MON_SLOW + ld d, $0 + call AnimateFrontpic + ret + +.wild + ld e, ANIM_MON_NORMAL + ld d, $0 + call AnimateFrontpic + ret +; d001a + +AnimateMon_Menu: ; d001a + ld e, ANIM_MON_MENU + ld d, $0 + call AnimateFrontpic + ret +; d0022 + +AnimateMon_Trade: ; d0022 + ld e, ANIM_MON_TRADE + ld d, $0 + call AnimateFrontpic + ret +; d002a + +AnimateMon_Evolve: ; d002a + ld e, ANIM_MON_EVOLVE + ld d, $0 + call AnimateFrontpic + ret +; d0032 + +AnimateMon_Hatch: ; d0032 + ld e, ANIM_MON_HATCH + ld d, $0 + call AnimateFrontpic + ret +; d003a + +AnimateMon_Unused: ; d003a + ld e, ANIM_MON_UNUSED + ld d, $0 + call AnimateFrontpic + ret +; d0042 + +pokeanim: MACRO + rept _NARG +; Workaround for a bug where macro args can't come after the start of a symbol +if !def(\1_POKEANIM) +\1_POKEANIM equs "PokeAnim_\1_" +endc + db (\1_POKEANIM - PokeAnim_SetupCommands) / 2 + shift + endr + db (PokeAnim_Finish_ - PokeAnim_SetupCommands) / 2 +ENDM + +PokeAnims: ; d0042 + dw .Slow + dw .Normal + dw .Menu + dw .Trade + dw .Evolve + dw .Hatch + dw .Unused ; same as .Menu + dw .Egg1 + dw .Egg2 + +.Slow: pokeanim StereoCry, Setup2, Play +.Normal: pokeanim StereoCry, Setup, Play +.Menu: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Extra, Play +.Trade: pokeanim Extra, Play2, Extra, Play, SetWait, Wait, Cry, Setup, Play +.Evolve: pokeanim Extra, Play, SetWait, Wait, CryNoWait, Setup, Play +.Hatch: pokeanim Extra, Play, CryNoWait, Setup, Play, SetWait, Wait, Extra, Play +.Unused: pokeanim CryNoWait, Setup, Play, SetWait, Wait, Extra, Play +.Egg1: pokeanim Setup, Play +.Egg2: pokeanim Extra, Play + + +AnimateFrontpic: ; d008e + call AnimateMon_CheckIfPokemon + ret c + call LoadMonAnimation +.loop + call SetUpPokeAnim + push af + farcall HDMATransferTileMapToWRAMBank3 + pop af + jr nc, .loop + ret +; d00a3 + +LoadMonAnimation: ; d00a3 + push hl + ld c, e + ld b, 0 + ld hl, PokeAnims + add hl, bc + add hl, bc + ld a, [hli] + ld b, [hl] + ld c, a + pop hl + call PokeAnim_InitPicAttributes + ret +; d00b4 + +SetUpPokeAnim: ; d00b4 + ld a, [rSVBK] + push af + ld a, BANK(wPokeAnimSceneIndex) + ld [rSVBK], a + ld a, [wPokeAnimSceneIndex] + ld c, a + ld b, 0 + ld hl, wPokeAnimPointer + ld a, [hli] + ld h, [hl] + ld l, a + add hl, bc + ld a, [hl] + ld hl, PokeAnim_SetupCommands + rst JumpTable + ld a, [wPokeAnimSceneIndex] + ld c, a + pop af + ld [rSVBK], a + ld a, c + and $80 + ret z + scf + ret +; d00da + +PokeAnim_SetupCommands: ; d00da +setup_command: macro +\1_: dw \1 +endm + setup_command PokeAnim_Finish + setup_command PokeAnim_BasePic + setup_command PokeAnim_SetWait + setup_command PokeAnim_Wait + setup_command PokeAnim_Setup + setup_command PokeAnim_Setup2 + setup_command PokeAnim_Extra + setup_command PokeAnim_Play + setup_command PokeAnim_Play2 + setup_command PokeAnim_Cry + setup_command PokeAnim_CryNoWait + setup_command PokeAnim_StereoCry +; d00f2 + +PokeAnim_SetWait: ; d00f2 + ld a, 18 + ld [wPokeAnimWaitCounter], a + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + +PokeAnim_Wait: ; d00fe + ld hl, wPokeAnimWaitCounter + dec [hl] + ret nz + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d010b + +PokeAnim_Setup: ; d010b + ld c, FALSE + ld b, 0 + call PokeAnim_InitAnim + call PokeAnim_SetVBank1 + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d011d + +PokeAnim_Setup2: ; d011d + ld c, FALSE + ld b, 4 + call PokeAnim_InitAnim + call PokeAnim_SetVBank1 + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d012f + +PokeAnim_Extra: ; d012f + ld c, TRUE + ld b, 0 + call PokeAnim_InitAnim + call PokeAnim_SetVBank1 + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d0141 + +PokeAnim_Play: ; d0141 + call PokeAnim_DoAnimScript + ld a, [wPokeAnimJumptableIndex] + bit 7, a + ret z + call PokeAnim_PlaceGraphic + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d0155 + +PokeAnim_Play2: ; d0155 + call PokeAnim_DoAnimScript + ld a, [wPokeAnimJumptableIndex] + bit 7, a + ret z + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d0166 + +PokeAnim_BasePic: ; d0166 + call PokeAnim_DeinitFrames + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d0171 + +PokeAnim_Finish: ; d0171 + call PokeAnim_DeinitFrames + ld hl, wPokeAnimSceneIndex + set 7, [hl] + ret +; d017a + +PokeAnim_Cry: ; d017a + ld a, [wPokeAnimSpecies] + call _PlayCry + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d0188 + +PokeAnim_CryNoWait: ; d0188 + ld a, [wPokeAnimSpecies] + call PlayCry2 + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d0196 + +PokeAnim_StereoCry: ; d0196 + ld a, $f + ld [CryTracks], a + ld a, [wPokeAnimSpecies] + call PlayStereoCry2 + ld a, [wPokeAnimSceneIndex] + inc a + ld [wPokeAnimSceneIndex], a + ret +; d01a9 + +PokeAnim_DeinitFrames: ; d01a9 + ld a, [rSVBK] + push af + ld a, $2 + ld [rSVBK], a + call PokeAnim_PlaceGraphic + farcall HDMATransferTileMapToWRAMBank3 + call PokeAnim_SetVBank0 + farcall HDMATransferAttrMapToWRAMBank3 + pop af + ld [rSVBK], a + ret +; d01c6 + +AnimateMon_CheckIfPokemon: ; d01c6 + ld a, [CurPartySpecies] + cp EGG + jr z, .fail + call IsAPokemon + jr c, .fail + and a + ret + +.fail + scf + ret +; d01d6 + +PokeAnim_InitPicAttributes: ; d01d6 + ld a, [rSVBK] + push af + ld a, BANK(wPokeAnimSceneIndex) + ld [rSVBK], a + + push bc + push de + push hl + ld hl, wPokeAnimSceneIndex + ld bc, wPokeAnimStructEnd - wPokeAnimSceneIndex + xor a + call ByteFill + pop hl + pop de + pop bc + +; bc contains anim pointer + ld a, c + ld [wPokeAnimPointer], a + ld a, b + ld [wPokeAnimPointer + 1], a +; hl contains TileMap coords + ld a, l + ld [wPokeAnimCoord], a + ld a, h + ld [wPokeAnimCoord + 1], a +; d = start tile + ld a, d + ld [wPokeAnimGraphicStartTile], a + + ld a, $1 + ld hl, CurPartySpecies + call GetFarWRAMByte + ld [wPokeAnimSpecies], a + + ld a, $1 + ld hl, UnownLetter + call GetFarWRAMByte + ld [wPokeAnimUnownLetter], a + + call PokeAnim_GetSpeciesOrUnown + ld [wPokeAnimSpeciesOrUnown], a + + call PokeAnim_GetFrontpicDims + ld a, c + ld [wPokeAnimFrontpicHeight], a + + pop af + ld [rSVBK], a + ret +; d0228 + +PokeAnim_InitAnim: ; d0228 + ld a, [rSVBK] + push af + ld a, BANK(wPokeAnimExtraFlag) + ld [rSVBK], a + push bc + ld hl, wPokeAnimExtraFlag + ld bc, wPokeAnimStructEnd - wPokeAnimExtraFlag + xor a + call ByteFill + pop bc + ld a, b + ld [wPokeAnimSpeed], a + ld a, c + ld [wPokeAnimExtraFlag], a + call GetMonAnimPointer + call GetMonFramesPointer + call GetMonBitmaskPointer + pop af + ld [rSVBK], a + ret +; d0250 + +PokeAnim_DoAnimScript: ; d0250 + xor a + ld [hBGMapMode], a +.loop + ld a, [wPokeAnimJumptableIndex] + and $7f + ld hl, .Jumptable + rst JumpTable + ret +; d025d + +.Jumptable: ; d025d + dw .RunAnim + dw .WaitAnim +; d0261 + +.RunAnim: ; d0261 + call PokeAnim_GetPointer + ld a, [wPokeAnimCommand] + cp -1 + jr z, PokeAnim_End + cp -2 + jr z, .SetRepeat + cp -3 + jr z, .DoRepeat + call PokeAnim_GetFrame + ld a, [wPokeAnimParameter] + call PokeAnim_GetDuration + ld [wPokeAnimWaitCounter], a + call PokeAnim_StartWaitAnim +.WaitAnim: ; d0282 + ld a, [wPokeAnimWaitCounter] + dec a + ld [wPokeAnimWaitCounter], a + ret nz + call PokeAnim_StopWaitAnim + ret +; d028e + +.SetRepeat: ; d028e + ld a, [wPokeAnimParameter] + ld [wPokeAnimRepeatTimer], a + jr .loop +; d0296 + +.DoRepeat: ; d0296 + ld a, [wPokeAnimRepeatTimer] + and a + ret z + dec a + ld [wPokeAnimRepeatTimer], a + ret z + ld a, [wPokeAnimParameter] + ld [wPokeAnimFrame], a + jr .loop +; d02a8 + +PokeAnim_End: ; d02a8 + ld hl, wPokeAnimJumptableIndex + set 7, [hl] + ret +; d02ae + +PokeAnim_GetDuration: ; d02ae +; a * (1 + [wPokeAnimSpeed] / 16) + ld c, a + ld b, $0 + ld hl, 0 + ld a, [wPokeAnimSpeed] + call AddNTimes + ld a, h + swap a + and $f0 + ld h, a + ld a, l + swap a + and $f + or h + add c + ret +; d02c8 + +PokeAnim_GetFrame: ; d02c8 + call PokeAnim_PlaceGraphic + ld a, [wPokeAnimCommand] + and a + ret z + call PokeAnim_GetBitmaskIndex + push hl + call PokeAnim_CopyBitmaskToBuffer + pop hl + call PokeAnim_ConvertAndApplyBitmask + ret +; d02dc + +PokeAnim_StartWaitAnim: ; d02dc + ld a, [wPokeAnimJumptableIndex] + inc a + ld [wPokeAnimJumptableIndex], a + ret +; d02e4 + +PokeAnim_StopWaitAnim: ; d02e4 + ld a, [wPokeAnimJumptableIndex] + dec a + ld [wPokeAnimJumptableIndex], a + ret +; d02ec + +PokeAnim_IsUnown: ; d02ec + ld a, [wPokeAnimSpecies] + cp UNOWN + ret +; d02f2 + +PokeAnim_IsEgg: ; d02f2 + ld a, [wPokeAnimSpecies] + cp EGG + ret +; d02f8 + +PokeAnim_GetPointer: ; d02f8 + push hl + ld a, [wPokeAnimFrame] + ld e, a + ld d, $0 + ld hl, wPokeAnimPointerAddr + ld a, [hli] + ld h, [hl] + ld l, a + add hl, de + add hl, de + ld a, [wPokeAnimPointerBank] + call GetFarHalfword + ld a, l + ld [wPokeAnimCommand], a + ld a, h + ld [wPokeAnimParameter], a + ld hl, wPokeAnimFrame + inc [hl] + pop hl + ret +; d031b + +PokeAnim_GetBitmaskIndex: ; d031b + ld a, [wPokeAnimCommand] + dec a + ld c, a + ld b, $0 + ld hl, wPokeAnimFramesAddr + ld a, [hli] + ld h, [hl] + ld l, a + add hl, bc + add hl, bc + ld a, [wPokeAnimFramesBank] + call GetFarHalfword + ld a, [wPokeAnimFramesBank] + call GetFarByte + ld [wPokeAnimCurBitmask], a + inc hl + ret +; d033b + +PokeAnim_CopyBitmaskToBuffer: ; d033b + call .GetSize + push bc + ld hl, wPokeAnimBitmaskAddr + ld a, [hli] + ld h, [hl] + ld l, a + ld a, [wPokeAnimCurBitmask] + call AddNTimes + pop bc + ld de, wPokeAnimBitmaskBuffer + ld a, [wPokeAnimBitmaskBank] + call FarCopyBytes + ret +; d0356 + +.GetSize: ; d0356 + push hl + ld a, [wPokeAnimFrontpicHeight] + sub 5 ; to get a number 0, 1, or 2 + ld c, a + ld b, 0 + ld hl, .Sizes + add hl, bc + ld c, [hl] + ld b, 0 + pop hl + ret +; d0368 + +.Sizes: db 4, 5, 7 + +poke_anim_box: MACRO +y = 7 +rept \1 +x = 7 +- \1 +rept \1 + db x + y +x = x + 1 +endr +y = y + 7 +endr +endm + +PokeAnim_ConvertAndApplyBitmask: ; d036b + xor a + ld [wPokeAnimBitmaskCurBit], a + ld [wPokeAnimBitmaskCurRow], a + ld [wPokeAnimBitmaskCurCol], a +.loop + push hl + call .IsCurBitSet + pop hl + ld a, b + and a + jr z, .next + + ld a, [wPokeAnimFramesBank] + call GetFarByte + inc hl + push hl + call .ApplyFrame + pop hl + +.next + push hl + call .NextBit + pop hl + jr nc, .loop + ret +; d0392 + +.IsCurBitSet: ; d0392 +; which byte + ld a, [wPokeAnimBitmaskCurBit] + and $f8 + rrca + rrca + rrca + ld e, a + ld d, 0 + ld hl, wPokeAnimBitmaskBuffer + add hl, de + ld b, [hl] +; which bit + ld a, [wPokeAnimBitmaskCurBit] + and $7 + jr z, .skip + + ld c, a + ld a, b +.loop2 + rrca + dec c + jr nz, .loop2 + ld b, a + +.skip + xor a + bit 0, b + jr z, .finish + ld a, 1 + +.finish + ld b, a + ld hl, wPokeAnimBitmaskCurBit + inc [hl] + ret +; d03bd + +.ApplyFrame: ; d03bd + push af + call .GetCoord + pop af + push hl + call .GetTilemap + ld hl, wPokeAnimGraphicStartTile + add [hl] + pop hl + ld [hl], a + ret +; d03cd + +.GetCoord: ; d03cd + call .GetStartCoord + ld a, [wPokeAnimBitmaskCurRow] + ld bc, SCREEN_WIDTH + call AddNTimes + ld a, [wBoxAlignment] + and a + jr nz, .go + ld a, [wPokeAnimBitmaskCurCol] + ld e, a + ld d, 0 + add hl, de + jr .skip2 + +.go + ld a, [wPokeAnimBitmaskCurCol] + ld e, a + ld a, l + sub e + ld l, a + ld a, h + sbc 0 + ld h, a + +.skip2 + ret +; d03f4 + +; XXX + db 6, 5, 4 + +.GetTilemap: ; d03f7 + push af + ld a, [wPokeAnimFrontpicHeight] + cp 5 + jr z, .check_add_24 + cp 6 + jr z, .check_add_13 + pop af + ret + +.check_add_24 + pop af + cp 5 * 5 + jr nc, .add_24 + push hl + push de + ld hl, ._5by5 + ld e, a + ld d, 0 + add hl, de + ld a, [hl] + pop de + pop hl + ret + +.add_24 + add 24 + ret + +.check_add_13 + pop af + cp 6 * 6 + jr nc, .add_13 + push hl + push de + ld hl, ._6by6 + ld e, a + ld d, 0 + add hl, de + ld a, [hl] + pop de + pop hl + ret + +.add_13 + add 13 + ret +; d042f + +._5by5: + poke_anim_box 5 + ; db 9, 10, 11, 12, 13 + ; db 16, 17, 18, 19, 20 + ; db 23, 24, 25, 26, 27 + ; db 30, 31, 32, 33, 34 + ; db 37, 38, 39, 40, 41 + +._6by6: + poke_anim_box 6 + ; db 8, 9, 10, 11, 12, 13 + ; db 15, 16, 17, 18, 19, 20 + ; db 22, 23, 24, 25, 26, 27 + ; db 29, 30, 31, 32, 33, 34 + ; db 36, 37, 38, 39, 40, 41 + ; db 43, 44, 45, 46, 47, 48 + + +.GetStartCoord: ; d046c + ld hl, wPokeAnimCoord + ld a, [hli] + ld h, [hl] + ld l, a + + ld a, [wPokeAnimFrontpicHeight] + ld de, 0 + ld bc, 6 + cp 7 + jr z, .okay + ld de, SCREEN_WIDTH + 1 + ld bc, SCREEN_WIDTH + 5 + cp 6 + jr z, .okay + ld de, 2 * SCREEN_WIDTH + 1 + ld bc, 2 * SCREEN_WIDTH + 5 +.okay + + ld a, [wBoxAlignment] + and a + jr nz, .add_bc + add hl, de + ret + +.add_bc + add hl, bc + ret +; d0499 + +.NextBit: ; d0499 + ld a, [wPokeAnimBitmaskCurRow] + inc a + ld [wPokeAnimBitmaskCurRow], a + ld c, a + ld a, [wPokeAnimFrontpicHeight] + cp c + jr nz, .no_carry + xor a + ld [wPokeAnimBitmaskCurRow], a + ld a, [wPokeAnimBitmaskCurCol] + inc a + ld [wPokeAnimBitmaskCurCol], a + ld c, a + ld a, [wPokeAnimFrontpicHeight] + cp c + jr nz, .no_carry + scf + ret + +.no_carry + xor a + ret +; d04bd + +PokeAnim_PlaceGraphic: ; d04bd + call .ClearBox + ld a, [wBoxAlignment] + and a + jr nz, .flipped + ld de, 1 + ld bc, 0 + jr .okay + +.flipped + ld de, -1 + ld bc, 6 + +.okay + ld hl, wPokeAnimCoord + ld a, [hli] + ld h, [hl] + ld l, a + add hl, bc + ld c, 7 + ld b, 7 + ld a, [wPokeAnimGraphicStartTile] +.loop + push bc + push hl + push de + ld de, SCREEN_WIDTH +.loop2 + ld [hl], a + inc a + add hl, de + dec b + jr nz, .loop2 + pop de + pop hl + add hl, de + pop bc + dec c + jr nz, .loop + ret +; d04f6 + +.ClearBox: ; d04f6 + ld hl, wPokeAnimCoord + ld a, [hli] + ld h, [hl] + ld l, a + ld b, 7 + ld c, 7 + call ClearBox + ret +; d0504 + +PokeAnim_SetVBank1: ; d0504 + ld a, [rSVBK] + push af + ld a, $2 + ld [rSVBK], a + xor a + ld [hBGMapMode], a + call .SetFlag + farcall HDMATransferAttrMapToWRAMBank3 + pop af + ld [rSVBK], a + ret +; d051b + +.SetFlag: ; d051b + call PokeAnim_GetAttrMapCoord + ld b, 7 + ld c, 7 + ld de, SCREEN_WIDTH +.row + push bc + push hl +.col + ld a, [hl] + or 8 + ld [hl], a + add hl, de + dec c + jr nz, .col + pop hl + inc hl + pop bc + dec b + jr nz, .row + ret +; d0536 + +PokeAnim_SetVBank0: ; d0536 + call PokeAnim_GetAttrMapCoord + ld b, 7 + ld c, 7 + ld de, SCREEN_WIDTH +.row + push bc + push hl +.col + ld a, [hl] + and $f7 + ld [hl], a + add hl, de + dec c + jr nz, .col + pop hl + inc hl + pop bc + dec b + jr nz, .row + ret +; d0551 + +PokeAnim_GetAttrMapCoord: ; d0551 + ld hl, wPokeAnimCoord + ld a, [hli] + ld h, [hl] + ld l, a + ld de, AttrMap - TileMap + add hl, de + ret +; d055c + +GetMonAnimPointer: ; d055c + call PokeAnim_IsEgg + jr z, .egg + + ld c, BANK(UnownAnimations) + ld hl, UnownAnimationPointers + ld de, UnownAnimationExtraPointers + call PokeAnim_IsUnown + jr z, .unown + ld c, BANK(PicAnimations) + ld hl, AnimationPointers + ld de, AnimationExtraPointers +.unown + + ld a, [wPokeAnimExtraFlag] + and a + jr z, .extras + ld h, d + ld l, e +.extras + + ld a, [wPokeAnimSpeciesOrUnown] + dec a + ld e, a + ld d, 0 + add hl, de + add hl, de + ld a, c + ld [wPokeAnimPointerBank], a + call GetFarHalfword + ld a, l + ld [wPokeAnimPointerAddr], a + ld a, h + ld [wPokeAnimPointerAddr + 1], a + ret + +.egg + ld hl, EggAnimation + ld c, BANK(EggAnimation) + ld a, [wPokeAnimExtraFlag] + and a + jr z, .extras_egg + ld hl, EggAnimationExtra + ld c, BANK(EggAnimationExtra) +.extras_egg + + ld a, c + ld [wPokeAnimPointerBank], a + ld a, l + ld [wPokeAnimPointerAddr], a + ld a, h + ld [wPokeAnimPointerAddr + 1], a + ret +; d05b4 + +PokeAnim_GetFrontpicDims: ; d05b4 + ld a, [rSVBK] + push af + ld a, BANK(CurPartySpecies) + ld [rSVBK], a + ld a, [CurPartySpecies] + ld [CurSpecies], a + call GetBaseData + ld a, [BasePicSize] + and $f + ld c, a + pop af + ld [rSVBK], a + ret +; d05ce + +GetMonFramesPointer: ; d05ce + call PokeAnim_IsEgg + jr z, .egg + + call PokeAnim_IsUnown + ld b, BANK(UnownFramesPointers) + ld c, BANK(UnownsFrames) + ld hl, UnownFramesPointers + jr z, .got_frames + ld a, [wPokeAnimSpecies] + cp CHIKORITA + ld b, BANK(FramesPointers) + ld c, BANK(KantoFrames) + ld hl, FramesPointers + jr c, .got_frames + ld c, BANK(JohtoFrames) +.got_frames + ld a, c + ld [wPokeAnimFramesBank], a + + ld a, [wPokeAnimSpeciesOrUnown] + dec a + ld e, a + ld d, 0 + add hl, de + add hl, de + ld a, b + call GetFarHalfword + ld a, l + ld [wPokeAnimFramesAddr], a + ld a, h + ld [wPokeAnimFramesAddr + 1], a + ret + +.egg + ld hl, EggFrames + ld c, BANK(EggFrames) + ld a, c + ld [wPokeAnimFramesBank], a + ld a, l + ld [wPokeAnimFramesAddr], a + ld a, h + ld [wPokeAnimFramesAddr + 1], a + ret +; d061b + +GetMonBitmaskPointer: ; d061b + call PokeAnim_IsEgg + jr z, .egg + + call PokeAnim_IsUnown + ld a, BANK(UnownBitmasksPointers) + ld hl, UnownBitmasksPointers + jr z, .unown + ld a, BANK(BitmasksPointers) + ld hl, BitmasksPointers +.unown + ld [wPokeAnimBitmaskBank], a + + ld a, [wPokeAnimSpeciesOrUnown] + dec a + ld e, a + ld d, 0 + add hl, de + add hl, de + ld a, [wPokeAnimBitmaskBank] + call GetFarHalfword + ld a, l + ld [wPokeAnimBitmaskAddr], a + ld a, h + ld [wPokeAnimBitmaskAddr + 1], a + ret + +.egg + ld c, BANK(EggBitmasks) + ld hl, EggBitmasks + ld a, c + ld [wPokeAnimBitmaskBank], a + ld a, l + ld [wPokeAnimBitmaskAddr], a + ld a, h + ld [wPokeAnimBitmaskAddr + 1], a + ret +; d065c + +PokeAnim_GetSpeciesOrUnown: ; d065c + call PokeAnim_IsUnown + jr z, .unown + ld a, [wPokeAnimSpecies] + ret + +.unown + ld a, [wPokeAnimUnownLetter] + ret +; d0669 + +Predef48: ; d0669 Predef 48 + ld a, $1 + ld [wBoxAlignment], a +HOF_AnimateFrontpic: ; d066e Predef 49 + call AnimateMon_CheckIfPokemon + jr c, .fail + ld h, d + ld l, e + push bc + push hl + ld de, VTiles2 + predef GetAnimatedFrontpicPredef + pop hl + pop bc + ld d, 0 + ld e, c + call AnimateFrontpic + xor a + ld [wBoxAlignment], a + ret + +.fail + xor a + ld [wBoxAlignment], a + inc a + ld [CurPartySpecies], a + ret +; d0695 diff --git a/gfx/pokemon/anims.asm b/gfx/pokemon/anims.asm new file mode 100644 index 000000000..04d0be9ce --- /dev/null +++ b/gfx/pokemon/anims.asm @@ -0,0 +1,253 @@ +PicAnimations: +BulbasaurAnimation: INCLUDE "gfx/pokemon/bulbasaur/anim0.asm" +IvysaurAnimation: INCLUDE "gfx/pokemon/ivysaur/anim0.asm" +VenusaurAnimation: INCLUDE "gfx/pokemon/venusaur/anim0.asm" +CharmanderAnimation: INCLUDE "gfx/pokemon/charmander/anim0.asm" +CharmeleonAnimation: INCLUDE "gfx/pokemon/charmeleon/anim0.asm" +CharizardAnimation: INCLUDE "gfx/pokemon/charizard/anim0.asm" +SquirtleAnimation: INCLUDE "gfx/pokemon/squirtle/anim0.asm" +WartortleAnimation: INCLUDE "gfx/pokemon/wartortle/anim0.asm" +BlastoiseAnimation: INCLUDE "gfx/pokemon/blastoise/anim0.asm" +CaterpieAnimation: INCLUDE "gfx/pokemon/caterpie/anim0.asm" +MetapodAnimation: INCLUDE "gfx/pokemon/metapod/anim0.asm" +ButterfreeAnimation: INCLUDE "gfx/pokemon/butterfree/anim0.asm" +WeedleAnimation: INCLUDE "gfx/pokemon/weedle/anim0.asm" +KakunaAnimation: INCLUDE "gfx/pokemon/kakuna/anim0.asm" +BeedrillAnimation: INCLUDE "gfx/pokemon/beedrill/anim0.asm" +PidgeyAnimation: INCLUDE "gfx/pokemon/pidgey/anim0.asm" +PidgeottoAnimation: INCLUDE "gfx/pokemon/pidgeotto/anim0.asm" +PidgeotAnimation: INCLUDE "gfx/pokemon/pidgeot/anim0.asm" +RattataAnimation: INCLUDE "gfx/pokemon/rattata/anim0.asm" +RaticateAnimation: INCLUDE "gfx/pokemon/raticate/anim0.asm" +SpearowAnimation: INCLUDE "gfx/pokemon/spearow/anim0.asm" +FearowAnimation: INCLUDE "gfx/pokemon/fearow/anim0.asm" +EkansAnimation: INCLUDE "gfx/pokemon/ekans/anim0.asm" +ArbokAnimation: INCLUDE "gfx/pokemon/arbok/anim0.asm" +PikachuAnimation: INCLUDE "gfx/pokemon/pikachu/anim0.asm" +RaichuAnimation: INCLUDE "gfx/pokemon/raichu/anim0.asm" +SandshrewAnimation: INCLUDE "gfx/pokemon/sandshrew/anim0.asm" +SandslashAnimation: INCLUDE "gfx/pokemon/sandslash/anim0.asm" +NidoranFAnimation: INCLUDE "gfx/pokemon/nidoran_f/anim0.asm" +NidorinaAnimation: INCLUDE "gfx/pokemon/nidorina/anim0.asm" +NidoqueenAnimation: INCLUDE "gfx/pokemon/nidoqueen/anim0.asm" +NidoranMAnimation: INCLUDE "gfx/pokemon/nidoran_m/anim0.asm" +NidorinoAnimation: INCLUDE "gfx/pokemon/nidorino/anim0.asm" +NidokingAnimation: INCLUDE "gfx/pokemon/nidoking/anim0.asm" +ClefairyAnimation: INCLUDE "gfx/pokemon/clefairy/anim0.asm" +ClefableAnimation: INCLUDE "gfx/pokemon/clefable/anim0.asm" +VulpixAnimation: INCLUDE "gfx/pokemon/vulpix/anim0.asm" +NinetalesAnimation: INCLUDE "gfx/pokemon/ninetales/anim0.asm" +JigglypuffAnimation: INCLUDE "gfx/pokemon/jigglypuff/anim0.asm" +WigglytuffAnimation: INCLUDE "gfx/pokemon/wigglytuff/anim0.asm" +ZubatAnimation: INCLUDE "gfx/pokemon/zubat/anim0.asm" +GolbatAnimation: INCLUDE "gfx/pokemon/golbat/anim0.asm" +OddishAnimation: INCLUDE "gfx/pokemon/oddish/anim0.asm" +GloomAnimation: INCLUDE "gfx/pokemon/gloom/anim0.asm" +VileplumeAnimation: INCLUDE "gfx/pokemon/vileplume/anim0.asm" +ParasAnimation: INCLUDE "gfx/pokemon/paras/anim0.asm" +ParasectAnimation: INCLUDE "gfx/pokemon/parasect/anim0.asm" +VenonatAnimation: INCLUDE "gfx/pokemon/venonat/anim0.asm" +VenomothAnimation: INCLUDE "gfx/pokemon/venomoth/anim0.asm" +DiglettAnimation: INCLUDE "gfx/pokemon/diglett/anim0.asm" +DugtrioAnimation: INCLUDE "gfx/pokemon/dugtrio/anim0.asm" +MeowthAnimation: INCLUDE "gfx/pokemon/meowth/anim0.asm" +PersianAnimation: INCLUDE "gfx/pokemon/persian/anim0.asm" +PsyduckAnimation: INCLUDE "gfx/pokemon/psyduck/anim0.asm" +GolduckAnimation: INCLUDE "gfx/pokemon/golduck/anim0.asm" +MankeyAnimation: INCLUDE "gfx/pokemon/mankey/anim0.asm" +PrimeapeAnimation: INCLUDE "gfx/pokemon/primeape/anim0.asm" +GrowlitheAnimation: INCLUDE "gfx/pokemon/growlithe/anim0.asm" +ArcanineAnimation: INCLUDE "gfx/pokemon/arcanine/anim0.asm" +PoliwagAnimation: INCLUDE "gfx/pokemon/poliwag/anim0.asm" +PoliwhirlAnimation: INCLUDE "gfx/pokemon/poliwhirl/anim0.asm" +PoliwrathAnimation: INCLUDE "gfx/pokemon/poliwrath/anim0.asm" +AbraAnimation: INCLUDE "gfx/pokemon/abra/anim0.asm" +KadabraAnimation: INCLUDE "gfx/pokemon/kadabra/anim0.asm" +AlakazamAnimation: INCLUDE "gfx/pokemon/alakazam/anim0.asm" +MachopAnimation: INCLUDE "gfx/pokemon/machop/anim0.asm" +MachokeAnimation: INCLUDE "gfx/pokemon/machoke/anim0.asm" +MachampAnimation: INCLUDE "gfx/pokemon/machamp/anim0.asm" +BellsproutAnimation: INCLUDE "gfx/pokemon/bellsprout/anim0.asm" +WeepinbellAnimation: INCLUDE "gfx/pokemon/weepinbell/anim0.asm" +VictreebelAnimation: INCLUDE "gfx/pokemon/victreebel/anim0.asm" +TentacoolAnimation: INCLUDE "gfx/pokemon/tentacool/anim0.asm" +TentacruelAnimation: INCLUDE "gfx/pokemon/tentacruel/anim0.asm" +GeodudeAnimation: INCLUDE "gfx/pokemon/geodude/anim0.asm" +GravelerAnimation: INCLUDE "gfx/pokemon/graveler/anim0.asm" +GolemAnimation: INCLUDE "gfx/pokemon/golem/anim0.asm" +PonytaAnimation: INCLUDE "gfx/pokemon/ponyta/anim0.asm" +RapidashAnimation: INCLUDE "gfx/pokemon/rapidash/anim0.asm" +SlowpokeAnimation: INCLUDE "gfx/pokemon/slowpoke/anim0.asm" +SlowbroAnimation: INCLUDE "gfx/pokemon/slowbro/anim0.asm" +MagnemiteAnimation: INCLUDE "gfx/pokemon/magnemite/anim0.asm" +MagnetonAnimation: INCLUDE "gfx/pokemon/magneton/anim0.asm" +FarfetchDAnimation: INCLUDE "gfx/pokemon/farfetch_d/anim0.asm" +DoduoAnimation: INCLUDE "gfx/pokemon/doduo/anim0.asm" +DodrioAnimation: INCLUDE "gfx/pokemon/dodrio/anim0.asm" +SeelAnimation: INCLUDE "gfx/pokemon/seel/anim0.asm" +DewgongAnimation: INCLUDE "gfx/pokemon/dewgong/anim0.asm" +GrimerAnimation: INCLUDE "gfx/pokemon/grimer/anim0.asm" +MukAnimation: INCLUDE "gfx/pokemon/muk/anim0.asm" +ShellderAnimation: INCLUDE "gfx/pokemon/shellder/anim0.asm" +CloysterAnimation: INCLUDE "gfx/pokemon/cloyster/anim0.asm" +GastlyAnimation: INCLUDE "gfx/pokemon/gastly/anim0.asm" +HaunterAnimation: INCLUDE "gfx/pokemon/haunter/anim0.asm" +GengarAnimation: INCLUDE "gfx/pokemon/gengar/anim0.asm" +OnixAnimation: INCLUDE "gfx/pokemon/onix/anim0.asm" +DrowzeeAnimation: INCLUDE "gfx/pokemon/drowzee/anim0.asm" +HypnoAnimation: INCLUDE "gfx/pokemon/hypno/anim0.asm" +KrabbyAnimation: INCLUDE "gfx/pokemon/krabby/anim0.asm" +KinglerAnimation: INCLUDE "gfx/pokemon/kingler/anim0.asm" +VoltorbAnimation: INCLUDE "gfx/pokemon/voltorb/anim0.asm" +ElectrodeAnimation: INCLUDE "gfx/pokemon/electrode/anim0.asm" +ExeggcuteAnimation: INCLUDE "gfx/pokemon/exeggcute/anim0.asm" +ExeggutorAnimation: INCLUDE "gfx/pokemon/exeggutor/anim0.asm" +CuboneAnimation: INCLUDE "gfx/pokemon/cubone/anim0.asm" +MarowakAnimation: INCLUDE "gfx/pokemon/marowak/anim0.asm" +HitmonleeAnimation: INCLUDE "gfx/pokemon/hitmonlee/anim0.asm" +HitmonchanAnimation: INCLUDE "gfx/pokemon/hitmonchan/anim0.asm" +LickitungAnimation: INCLUDE "gfx/pokemon/lickitung/anim0.asm" +KoffingAnimation: INCLUDE "gfx/pokemon/koffing/anim0.asm" +WeezingAnimation: INCLUDE "gfx/pokemon/weezing/anim0.asm" +RhyhornAnimation: INCLUDE "gfx/pokemon/rhyhorn/anim0.asm" +RhydonAnimation: INCLUDE "gfx/pokemon/rhydon/anim0.asm" +ChanseyAnimation: INCLUDE "gfx/pokemon/chansey/anim0.asm" +TangelaAnimation: INCLUDE "gfx/pokemon/tangela/anim0.asm" +KangaskhanAnimation: INCLUDE "gfx/pokemon/kangaskhan/anim0.asm" +HorseaAnimation: INCLUDE "gfx/pokemon/horsea/anim0.asm" +SeadraAnimation: INCLUDE "gfx/pokemon/seadra/anim0.asm" +GoldeenAnimation: INCLUDE "gfx/pokemon/goldeen/anim0.asm" +SeakingAnimation: INCLUDE "gfx/pokemon/seaking/anim0.asm" +StaryuAnimation: INCLUDE "gfx/pokemon/staryu/anim0.asm" +StarmieAnimation: INCLUDE "gfx/pokemon/starmie/anim0.asm" +MrMimeAnimation: INCLUDE "gfx/pokemon/mr__mime/anim0.asm" +ScytherAnimation: INCLUDE "gfx/pokemon/scyther/anim0.asm" +JynxAnimation: INCLUDE "gfx/pokemon/jynx/anim0.asm" +ElectabuzzAnimation: INCLUDE "gfx/pokemon/electabuzz/anim0.asm" +MagmarAnimation: INCLUDE "gfx/pokemon/magmar/anim0.asm" +PinsirAnimation: INCLUDE "gfx/pokemon/pinsir/anim0.asm" +TaurosAnimation: INCLUDE "gfx/pokemon/tauros/anim0.asm" +MagikarpAnimation: INCLUDE "gfx/pokemon/magikarp/anim0.asm" +GyaradosAnimation: INCLUDE "gfx/pokemon/gyarados/anim0.asm" +LaprasAnimation: INCLUDE "gfx/pokemon/lapras/anim0.asm" +DittoAnimation: INCLUDE "gfx/pokemon/ditto/anim0.asm" +EeveeAnimation: INCLUDE "gfx/pokemon/eevee/anim0.asm" +VaporeonAnimation: INCLUDE "gfx/pokemon/vaporeon/anim0.asm" +JolteonAnimation: INCLUDE "gfx/pokemon/jolteon/anim0.asm" +FlareonAnimation: INCLUDE "gfx/pokemon/flareon/anim0.asm" +PorygonAnimation: INCLUDE "gfx/pokemon/porygon/anim0.asm" +OmanyteAnimation: INCLUDE "gfx/pokemon/omanyte/anim0.asm" +OmastarAnimation: INCLUDE "gfx/pokemon/omastar/anim0.asm" +KabutoAnimation: INCLUDE "gfx/pokemon/kabuto/anim0.asm" +KabutopsAnimation: INCLUDE "gfx/pokemon/kabutops/anim0.asm" +AerodactylAnimation: INCLUDE "gfx/pokemon/aerodactyl/anim0.asm" +SnorlaxAnimation: INCLUDE "gfx/pokemon/snorlax/anim0.asm" +ArticunoAnimation: INCLUDE "gfx/pokemon/articuno/anim0.asm" +ZapdosAnimation: INCLUDE "gfx/pokemon/zapdos/anim0.asm" +MoltresAnimation: INCLUDE "gfx/pokemon/moltres/anim0.asm" +DratiniAnimation: INCLUDE "gfx/pokemon/dratini/anim0.asm" +DragonairAnimation: INCLUDE "gfx/pokemon/dragonair/anim0.asm" +DragoniteAnimation: INCLUDE "gfx/pokemon/dragonite/anim0.asm" +MewtwoAnimation: INCLUDE "gfx/pokemon/mewtwo/anim0.asm" +MewAnimation: INCLUDE "gfx/pokemon/mew/anim0.asm" +ChikoritaAnimation: INCLUDE "gfx/pokemon/chikorita/anim0.asm" +BayleefAnimation: INCLUDE "gfx/pokemon/bayleef/anim0.asm" +MeganiumAnimation: INCLUDE "gfx/pokemon/meganium/anim0.asm" +CyndaquilAnimation: INCLUDE "gfx/pokemon/cyndaquil/anim0.asm" +QuilavaAnimation: INCLUDE "gfx/pokemon/quilava/anim0.asm" +TyphlosionAnimation: INCLUDE "gfx/pokemon/typhlosion/anim0.asm" +TotodileAnimation: INCLUDE "gfx/pokemon/totodile/anim0.asm" +CroconawAnimation: INCLUDE "gfx/pokemon/croconaw/anim0.asm" +FeraligatrAnimation: INCLUDE "gfx/pokemon/feraligatr/anim0.asm" +SentretAnimation: INCLUDE "gfx/pokemon/sentret/anim0.asm" +FurretAnimation: INCLUDE "gfx/pokemon/furret/anim0.asm" +HoothootAnimation: INCLUDE "gfx/pokemon/hoothoot/anim0.asm" +NoctowlAnimation: INCLUDE "gfx/pokemon/noctowl/anim0.asm" +LedybaAnimation: INCLUDE "gfx/pokemon/ledyba/anim0.asm" +LedianAnimation: INCLUDE "gfx/pokemon/ledian/anim0.asm" +SpinarakAnimation: INCLUDE "gfx/pokemon/spinarak/anim0.asm" +AriadosAnimation: INCLUDE "gfx/pokemon/ariados/anim0.asm" +CrobatAnimation: INCLUDE "gfx/pokemon/crobat/anim0.asm" +ChinchouAnimation: INCLUDE "gfx/pokemon/chinchou/anim0.asm" +LanturnAnimation: INCLUDE "gfx/pokemon/lanturn/anim0.asm" +PichuAnimation: INCLUDE "gfx/pokemon/pichu/anim0.asm" +CleffaAnimation: INCLUDE "gfx/pokemon/cleffa/anim0.asm" +IgglybuffAnimation: INCLUDE "gfx/pokemon/igglybuff/anim0.asm" +TogepiAnimation: INCLUDE "gfx/pokemon/togepi/anim0.asm" +TogeticAnimation: INCLUDE "gfx/pokemon/togetic/anim0.asm" +NatuAnimation: INCLUDE "gfx/pokemon/natu/anim0.asm" +XatuAnimation: INCLUDE "gfx/pokemon/xatu/anim0.asm" +MareepAnimation: INCLUDE "gfx/pokemon/mareep/anim0.asm" +FlaaffyAnimation: INCLUDE "gfx/pokemon/flaaffy/anim0.asm" +AmpharosAnimation: INCLUDE "gfx/pokemon/ampharos/anim0.asm" +BellossomAnimation: INCLUDE "gfx/pokemon/bellossom/anim0.asm" +MarillAnimation: INCLUDE "gfx/pokemon/marill/anim0.asm" +AzumarillAnimation: INCLUDE "gfx/pokemon/azumarill/anim0.asm" +SudowoodoAnimation: INCLUDE "gfx/pokemon/sudowoodo/anim0.asm" +PolitoedAnimation: INCLUDE "gfx/pokemon/politoed/anim0.asm" +HoppipAnimation: INCLUDE "gfx/pokemon/hoppip/anim0.asm" +SkiploomAnimation: INCLUDE "gfx/pokemon/skiploom/anim0.asm" +JumpluffAnimation: INCLUDE "gfx/pokemon/jumpluff/anim0.asm" +AipomAnimation: INCLUDE "gfx/pokemon/aipom/anim0.asm" +SunkernAnimation: INCLUDE "gfx/pokemon/sunkern/anim0.asm" +SunfloraAnimation: INCLUDE "gfx/pokemon/sunflora/anim0.asm" +YanmaAnimation: INCLUDE "gfx/pokemon/yanma/anim0.asm" +WooperAnimation: INCLUDE "gfx/pokemon/wooper/anim0.asm" +QuagsireAnimation: INCLUDE "gfx/pokemon/quagsire/anim0.asm" +EspeonAnimation: INCLUDE "gfx/pokemon/espeon/anim0.asm" +UmbreonAnimation: INCLUDE "gfx/pokemon/umbreon/anim0.asm" +MurkrowAnimation: INCLUDE "gfx/pokemon/murkrow/anim0.asm" +SlowkingAnimation: INCLUDE "gfx/pokemon/slowking/anim0.asm" +MisdreavusAnimation: INCLUDE "gfx/pokemon/misdreavus/anim0.asm" +UnownAnimation: INCLUDE "gfx/pokemon/unown/anim0.asm" +WobbuffetAnimation: INCLUDE "gfx/pokemon/wobbuffet/anim0.asm" +GirafarigAnimation: INCLUDE "gfx/pokemon/girafarig/anim0.asm" +PinecoAnimation: INCLUDE "gfx/pokemon/pineco/anim0.asm" +ForretressAnimation: INCLUDE "gfx/pokemon/forretress/anim0.asm" +DunsparceAnimation: INCLUDE "gfx/pokemon/dunsparce/anim0.asm" +GligarAnimation: INCLUDE "gfx/pokemon/gligar/anim0.asm" +SteelixAnimation: INCLUDE "gfx/pokemon/steelix/anim0.asm" +SnubbullAnimation: INCLUDE "gfx/pokemon/snubbull/anim0.asm" +GranbullAnimation: INCLUDE "gfx/pokemon/granbull/anim0.asm" +QwilfishAnimation: INCLUDE "gfx/pokemon/qwilfish/anim0.asm" +ScizorAnimation: INCLUDE "gfx/pokemon/scizor/anim0.asm" +ShuckleAnimation: INCLUDE "gfx/pokemon/shuckle/anim0.asm" +HeracrossAnimation: INCLUDE "gfx/pokemon/heracross/anim0.asm" +SneaselAnimation: INCLUDE "gfx/pokemon/sneasel/anim0.asm" +TeddiursaAnimation: INCLUDE "gfx/pokemon/teddiursa/anim0.asm" +UrsaringAnimation: INCLUDE "gfx/pokemon/ursaring/anim0.asm" +SlugmaAnimation: INCLUDE "gfx/pokemon/slugma/anim0.asm" +MagcargoAnimation: INCLUDE "gfx/pokemon/magcargo/anim0.asm" +SwinubAnimation: INCLUDE "gfx/pokemon/swinub/anim0.asm" +PiloswineAnimation: INCLUDE "gfx/pokemon/piloswine/anim0.asm" +CorsolaAnimation: INCLUDE "gfx/pokemon/corsola/anim0.asm" +RemoraidAnimation: INCLUDE "gfx/pokemon/remoraid/anim0.asm" +OctilleryAnimation: INCLUDE "gfx/pokemon/octillery/anim0.asm" +DelibirdAnimation: INCLUDE "gfx/pokemon/delibird/anim0.asm" +MantineAnimation: INCLUDE "gfx/pokemon/mantine/anim0.asm" +SkarmoryAnimation: INCLUDE "gfx/pokemon/skarmory/anim0.asm" +HoundourAnimation: INCLUDE "gfx/pokemon/houndour/anim0.asm" +HoundoomAnimation: INCLUDE "gfx/pokemon/houndoom/anim0.asm" +KingdraAnimation: INCLUDE "gfx/pokemon/kingdra/anim0.asm" +PhanpyAnimation: INCLUDE "gfx/pokemon/phanpy/anim0.asm" +DonphanAnimation: INCLUDE "gfx/pokemon/donphan/anim0.asm" +Porygon2Animation: INCLUDE "gfx/pokemon/porygon2/anim0.asm" +StantlerAnimation: INCLUDE "gfx/pokemon/stantler/anim0.asm" +SmeargleAnimation: INCLUDE "gfx/pokemon/smeargle/anim0.asm" +TyrogueAnimation: INCLUDE "gfx/pokemon/tyrogue/anim0.asm" +HitmontopAnimation: INCLUDE "gfx/pokemon/hitmontop/anim0.asm" +SmoochumAnimation: INCLUDE "gfx/pokemon/smoochum/anim0.asm" +ElekidAnimation: INCLUDE "gfx/pokemon/elekid/anim0.asm" +MagbyAnimation: INCLUDE "gfx/pokemon/magby/anim0.asm" +MiltankAnimation: INCLUDE "gfx/pokemon/miltank/anim0.asm" +BlisseyAnimation: INCLUDE "gfx/pokemon/blissey/anim0.asm" +RaikouAnimation: INCLUDE "gfx/pokemon/raikou/anim0.asm" +EnteiAnimation: INCLUDE "gfx/pokemon/entei/anim0.asm" +SuicuneAnimation: INCLUDE "gfx/pokemon/suicune/anim0.asm" +LarvitarAnimation: INCLUDE "gfx/pokemon/larvitar/anim0.asm" +PupitarAnimation: INCLUDE "gfx/pokemon/pupitar/anim0.asm" +TyranitarAnimation: INCLUDE "gfx/pokemon/tyranitar/anim0.asm" +LugiaAnimation: INCLUDE "gfx/pokemon/lugia/anim0.asm" +HoOhAnimation: INCLUDE "gfx/pokemon/ho_oh/anim0.asm" +CelebiAnimation: INCLUDE "gfx/pokemon/celebi/anim0.asm" +EggAnimation: INCLUDE "gfx/pokemon/egg/anim0.asm" diff --git a/gfx/pokemon/arbok/anim0.asm b/gfx/pokemon/arbok/anim0.asm new file mode 100644 index 000000000..0ceceacac --- /dev/null +++ b/gfx/pokemon/arbok/anim0.asm @@ -0,0 +1,15 @@ + frame 0, 04 + frame 4, 08 + setrepeat 2 + frame 5, 08 + frame 6, 08 + dorepeat 3 + frame 4, 08 + setrepeat 3 + frame 0, 07 + frame 1, 07 + frame 2, 05 + frame 3, 05 + dorepeat 8 + endanim +; 0xd09ed diff --git a/gfx/pokemon/arbok/anim1.asm b/gfx/pokemon/arbok/anim1.asm new file mode 100644 index 000000000..c9f85e238 --- /dev/null +++ b/gfx/pokemon/arbok/anim1.asm @@ -0,0 +1,8 @@ + frame 0, 08 + frame 4, 06 + frame 5, 04 + frame 6, 04 + frame 5, 04 + frame 4, 06 + endanim +; 0xd19a9 diff --git a/gfx/pokemon/arbok/back.2bpp.lz.7b18cb93 b/gfx/pokemon/arbok/back.2bpp.lz.7b18cb93 new file mode 100644 index 000000000..175abb499 Binary files /dev/null and b/gfx/pokemon/arbok/back.2bpp.lz.7b18cb93 differ diff --git a/gfx/pokemon/arbok/back.png b/gfx/pokemon/arbok/back.png new file mode 100644 index 000000000..5d9809918 Binary files /dev/null and b/gfx/pokemon/arbok/back.png differ diff --git a/gfx/pokemon/arbok/front.animated.2bpp.lz.1589a977 b/gfx/pokemon/arbok/front.animated.2bpp.lz.1589a977 new file mode 100644 index 000000000..8b5918dbd Binary files /dev/null and b/gfx/pokemon/arbok/front.animated.2bpp.lz.1589a977 differ diff --git a/gfx/pokemon/arbok/front.png b/gfx/pokemon/arbok/front.png new file mode 100644 index 000000000..340c07d1a Binary files /dev/null and b/gfx/pokemon/arbok/front.png differ diff --git a/gfx/pokemon/arbok/shiny.pal b/gfx/pokemon/arbok/shiny.pal new file mode 100644 index 000000000..3c731f915 --- /dev/null +++ b/gfx/pokemon/arbok/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 19, 11 + RGB 20, 10, 30 + diff --git a/gfx/pokemon/arcanine/anim0.asm b/gfx/pokemon/arcanine/anim0.asm new file mode 100644 index 000000000..0dc0dcacc --- /dev/null +++ b/gfx/pokemon/arcanine/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 05 + frame 2, 25 + frame 3, 10 + frame 4, 10 + frame 7, 25 + endanim +; 0xd0c26 diff --git a/gfx/pokemon/arcanine/anim1.asm b/gfx/pokemon/arcanine/anim1.asm new file mode 100644 index 000000000..e178a2d24 --- /dev/null +++ b/gfx/pokemon/arcanine/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 4 + frame 5, 09 + frame 6, 09 + dorepeat 1 + endanim +; 0xd1b0c diff --git a/gfx/pokemon/arcanine/back.2bpp.lz.f5b35ebf b/gfx/pokemon/arcanine/back.2bpp.lz.f5b35ebf new file mode 100644 index 000000000..a76d64986 Binary files /dev/null and b/gfx/pokemon/arcanine/back.2bpp.lz.f5b35ebf differ diff --git a/gfx/pokemon/arcanine/back.png b/gfx/pokemon/arcanine/back.png new file mode 100644 index 000000000..0358d9344 Binary files /dev/null and b/gfx/pokemon/arcanine/back.png differ diff --git a/gfx/pokemon/arcanine/front.animated.2bpp.lz.5ae8eff3 b/gfx/pokemon/arcanine/front.animated.2bpp.lz.5ae8eff3 new file mode 100644 index 000000000..da1784800 Binary files /dev/null and b/gfx/pokemon/arcanine/front.animated.2bpp.lz.5ae8eff3 differ diff --git a/gfx/pokemon/arcanine/front.png b/gfx/pokemon/arcanine/front.png new file mode 100644 index 000000000..5a65299ed Binary files /dev/null and b/gfx/pokemon/arcanine/front.png differ diff --git a/gfx/pokemon/arcanine/shiny.pal b/gfx/pokemon/arcanine/shiny.pal new file mode 100644 index 000000000..78da21464 --- /dev/null +++ b/gfx/pokemon/arcanine/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 17, 15 + RGB 19, 17, 01 + diff --git a/gfx/pokemon/ariados/anim0.asm b/gfx/pokemon/ariados/anim0.asm new file mode 100644 index 000000000..9a4d30385 --- /dev/null +++ b/gfx/pokemon/ariados/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 12 + setrepeat 6 + frame 2, 03 + frame 3, 03 + dorepeat 2 + frame 1, 24 + endanim +; 0xd124d diff --git a/gfx/pokemon/ariados/anim1.asm b/gfx/pokemon/ariados/anim1.asm new file mode 100644 index 000000000..6b9f416be --- /dev/null +++ b/gfx/pokemon/ariados/anim1.asm @@ -0,0 +1,8 @@ + frame 1, 08 + setrepeat 2 + frame 4, 06 + frame 1, 06 + dorepeat 2 + frame 1, 08 + endanim +; 0xd1f3b diff --git a/gfx/pokemon/ariados/back.2bpp.lz.9fb1c3fc b/gfx/pokemon/ariados/back.2bpp.lz.9fb1c3fc new file mode 100644 index 000000000..ff3aec7fb Binary files /dev/null and b/gfx/pokemon/ariados/back.2bpp.lz.9fb1c3fc differ diff --git a/gfx/pokemon/ariados/back.png b/gfx/pokemon/ariados/back.png new file mode 100644 index 000000000..6d0bc737d Binary files /dev/null and b/gfx/pokemon/ariados/back.png differ diff --git a/gfx/pokemon/ariados/front.animated.2bpp.lz.5ac5c83c b/gfx/pokemon/ariados/front.animated.2bpp.lz.5ac5c83c new file mode 100644 index 000000000..51039aeb5 Binary files /dev/null and b/gfx/pokemon/ariados/front.animated.2bpp.lz.5ac5c83c differ diff --git a/gfx/pokemon/ariados/front.png b/gfx/pokemon/ariados/front.png new file mode 100644 index 000000000..ba40159e6 Binary files /dev/null and b/gfx/pokemon/ariados/front.png differ diff --git a/gfx/pokemon/ariados/shiny.pal b/gfx/pokemon/ariados/shiny.pal new file mode 100644 index 000000000..1dae64a4f --- /dev/null +++ b/gfx/pokemon/ariados/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 03, 26 + RGB 05, 09, 29 + diff --git a/gfx/pokemon/articuno/anim0.asm b/gfx/pokemon/articuno/anim0.asm new file mode 100644 index 000000000..ccb583766 --- /dev/null +++ b/gfx/pokemon/articuno/anim0.asm @@ -0,0 +1,9 @@ + frame 5, 08 + setrepeat 2 + frame 1, 10 + frame 2, 10 + frame 3, 10 + dorepeat 2 + frame 5, 12 + endanim +; 0xd10c1 diff --git a/gfx/pokemon/articuno/anim1.asm b/gfx/pokemon/articuno/anim1.asm new file mode 100644 index 000000000..634d8daff --- /dev/null +++ b/gfx/pokemon/articuno/anim1.asm @@ -0,0 +1,8 @@ + frame 5, 08 + setrepeat 2 + frame 4, 06 + frame 1, 06 + dorepeat 2 + frame 5, 12 + endanim +; 0xd1e41 diff --git a/gfx/pokemon/articuno/back.2bpp.lz.c263c2aa b/gfx/pokemon/articuno/back.2bpp.lz.c263c2aa new file mode 100644 index 000000000..87b61ac9d Binary files /dev/null and b/gfx/pokemon/articuno/back.2bpp.lz.c263c2aa differ diff --git a/gfx/pokemon/articuno/back.png b/gfx/pokemon/articuno/back.png new file mode 100644 index 000000000..9734a3095 Binary files /dev/null and b/gfx/pokemon/articuno/back.png differ diff --git a/gfx/pokemon/articuno/front.animated.2bpp.lz.650aef29 b/gfx/pokemon/articuno/front.animated.2bpp.lz.650aef29 new file mode 100644 index 000000000..a60367098 Binary files /dev/null and b/gfx/pokemon/articuno/front.animated.2bpp.lz.650aef29 differ diff --git a/gfx/pokemon/articuno/front.png b/gfx/pokemon/articuno/front.png new file mode 100644 index 000000000..bd0090d7b Binary files /dev/null and b/gfx/pokemon/articuno/front.png differ diff --git a/gfx/pokemon/articuno/shiny.pal b/gfx/pokemon/articuno/shiny.pal new file mode 100644 index 000000000..d6c56f521 --- /dev/null +++ b/gfx/pokemon/articuno/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 26, 31 + RGB 13, 13, 22 + diff --git a/gfx/pokemon/azumarill/anim0.asm b/gfx/pokemon/azumarill/anim0.asm new file mode 100644 index 000000000..bbe46d4b7 --- /dev/null +++ b/gfx/pokemon/azumarill/anim0.asm @@ -0,0 +1,9 @@ + setrepeat 2 + frame 2, 06 + frame 3, 06 + dorepeat 1 + frame 0, 08 + frame 1, 08 + frame 4, 08 + endanim +; 0xd1329 diff --git a/gfx/pokemon/azumarill/anim1.asm b/gfx/pokemon/azumarill/anim1.asm new file mode 100644 index 000000000..070e6145f --- /dev/null +++ b/gfx/pokemon/azumarill/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1fd3 diff --git a/gfx/pokemon/azumarill/back.2bpp.lz.f7fa0db9 b/gfx/pokemon/azumarill/back.2bpp.lz.f7fa0db9 new file mode 100644 index 000000000..b66df2a71 Binary files /dev/null and b/gfx/pokemon/azumarill/back.2bpp.lz.f7fa0db9 differ diff --git a/gfx/pokemon/azumarill/back.png b/gfx/pokemon/azumarill/back.png new file mode 100644 index 000000000..581c0e926 Binary files /dev/null and b/gfx/pokemon/azumarill/back.png differ diff --git a/gfx/pokemon/azumarill/front.animated.2bpp.lz.cc9fd2ed b/gfx/pokemon/azumarill/front.animated.2bpp.lz.cc9fd2ed new file mode 100644 index 000000000..d6f031164 Binary files /dev/null and b/gfx/pokemon/azumarill/front.animated.2bpp.lz.cc9fd2ed differ diff --git a/gfx/pokemon/azumarill/front.png b/gfx/pokemon/azumarill/front.png new file mode 100644 index 000000000..9a51d6739 Binary files /dev/null and b/gfx/pokemon/azumarill/front.png differ diff --git a/gfx/pokemon/azumarill/shiny.pal b/gfx/pokemon/azumarill/shiny.pal new file mode 100644 index 000000000..18cfd1195 --- /dev/null +++ b/gfx/pokemon/azumarill/shiny.pal @@ -0,0 +1,4 @@ + + RGB 26, 20, 05 + RGB 18, 09, 07 + diff --git a/gfx/pokemon/bayleef/anim0.asm b/gfx/pokemon/bayleef/anim0.asm new file mode 100644 index 000000000..de54fe495 --- /dev/null +++ b/gfx/pokemon/bayleef/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 12 + frame 2, 11 + frame 3, 15 + endanim +; 0xd116c diff --git a/gfx/pokemon/bayleef/anim1.asm b/gfx/pokemon/bayleef/anim1.asm new file mode 100644 index 000000000..59d3f1762 --- /dev/null +++ b/gfx/pokemon/bayleef/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1ea8 diff --git a/gfx/pokemon/bayleef/back.2bpp.lz.c4783e65 b/gfx/pokemon/bayleef/back.2bpp.lz.c4783e65 new file mode 100644 index 000000000..809e5d199 Binary files /dev/null and b/gfx/pokemon/bayleef/back.2bpp.lz.c4783e65 differ diff --git a/gfx/pokemon/bayleef/back.png b/gfx/pokemon/bayleef/back.png new file mode 100644 index 000000000..1e95d7b08 Binary files /dev/null and b/gfx/pokemon/bayleef/back.png differ diff --git a/gfx/pokemon/bayleef/front.animated.2bpp.lz.147649f2 b/gfx/pokemon/bayleef/front.animated.2bpp.lz.147649f2 new file mode 100644 index 000000000..3134f6e16 Binary files /dev/null and b/gfx/pokemon/bayleef/front.animated.2bpp.lz.147649f2 differ diff --git a/gfx/pokemon/bayleef/front.png b/gfx/pokemon/bayleef/front.png new file mode 100644 index 000000000..9fd993152 Binary files /dev/null and b/gfx/pokemon/bayleef/front.png differ diff --git a/gfx/pokemon/bayleef/shiny.pal b/gfx/pokemon/bayleef/shiny.pal new file mode 100644 index 000000000..fcacccc19 --- /dev/null +++ b/gfx/pokemon/bayleef/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 20, 13 + RGB 25, 15, 00 + diff --git a/gfx/pokemon/beedrill/anim0.asm b/gfx/pokemon/beedrill/anim0.asm new file mode 100644 index 000000000..036fbb738 --- /dev/null +++ b/gfx/pokemon/beedrill/anim0.asm @@ -0,0 +1,12 @@ + setrepeat 8 + frame 3, 02 + frame 1, 01 + frame 2, 01 + frame 1, 02 + dorepeat 1 + setrepeat 2 + frame 0, 10 + frame 3, 10 + dorepeat 7 + endanim +; 0xd0954 diff --git a/gfx/pokemon/beedrill/anim1.asm b/gfx/pokemon/beedrill/anim1.asm new file mode 100644 index 000000000..8205f9a8c --- /dev/null +++ b/gfx/pokemon/beedrill/anim1.asm @@ -0,0 +1,10 @@ + setrepeat 4 + frame 3, 02 + frame 1, 01 + frame 2, 01 + frame 1, 02 + dorepeat 1 + frame 0, 25 + frame 3, 10 + endanim +; 0xd193c diff --git a/gfx/pokemon/beedrill/back.2bpp.lz.dfd6a87b b/gfx/pokemon/beedrill/back.2bpp.lz.dfd6a87b new file mode 100644 index 000000000..492eb64e2 Binary files /dev/null and b/gfx/pokemon/beedrill/back.2bpp.lz.dfd6a87b differ diff --git a/gfx/pokemon/beedrill/back.png b/gfx/pokemon/beedrill/back.png new file mode 100644 index 000000000..c41eccf5f Binary files /dev/null and b/gfx/pokemon/beedrill/back.png differ diff --git a/gfx/pokemon/beedrill/front.animated.2bpp.lz.1b5d3117 b/gfx/pokemon/beedrill/front.animated.2bpp.lz.1b5d3117 new file mode 100644 index 000000000..55f560521 Binary files /dev/null and b/gfx/pokemon/beedrill/front.animated.2bpp.lz.1b5d3117 differ diff --git a/gfx/pokemon/beedrill/front.png b/gfx/pokemon/beedrill/front.png new file mode 100644 index 000000000..271eaa3b4 Binary files /dev/null and b/gfx/pokemon/beedrill/front.png differ diff --git a/gfx/pokemon/beedrill/shiny.pal b/gfx/pokemon/beedrill/shiny.pal new file mode 100644 index 000000000..cfbc9997a --- /dev/null +++ b/gfx/pokemon/beedrill/shiny.pal @@ -0,0 +1,4 @@ + + RGB 17, 20, 13 + RGB 08, 07, 27 + diff --git a/gfx/pokemon/bellossom/anim0.asm b/gfx/pokemon/bellossom/anim0.asm new file mode 100644 index 000000000..7aa2e3568 --- /dev/null +++ b/gfx/pokemon/bellossom/anim0.asm @@ -0,0 +1,10 @@ + frame 3, 12 + frame 1, 12 + frame 2, 12 + frame 4, 10 + frame 0, 12 + frame 4, 10 + frame 5, 12 + frame 4, 10 + endanim +; 0xd130b diff --git a/gfx/pokemon/bellossom/anim1.asm b/gfx/pokemon/bellossom/anim1.asm new file mode 100644 index 000000000..322fa3758 --- /dev/null +++ b/gfx/pokemon/bellossom/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 6, 06 + dorepeat 1 + endanim +; 0xd1fbf diff --git a/gfx/pokemon/bellossom/back.2bpp.lz.10d31691 b/gfx/pokemon/bellossom/back.2bpp.lz.10d31691 new file mode 100644 index 000000000..d1a59b617 Binary files /dev/null and b/gfx/pokemon/bellossom/back.2bpp.lz.10d31691 differ diff --git a/gfx/pokemon/bellossom/back.png b/gfx/pokemon/bellossom/back.png new file mode 100644 index 000000000..53b24c2b4 Binary files /dev/null and b/gfx/pokemon/bellossom/back.png differ diff --git a/gfx/pokemon/bellossom/front.animated.2bpp.lz.289eaecf b/gfx/pokemon/bellossom/front.animated.2bpp.lz.289eaecf new file mode 100644 index 000000000..9cba9a1c3 Binary files /dev/null and b/gfx/pokemon/bellossom/front.animated.2bpp.lz.289eaecf differ diff --git a/gfx/pokemon/bellossom/front.png b/gfx/pokemon/bellossom/front.png new file mode 100644 index 000000000..f77907c45 Binary files /dev/null and b/gfx/pokemon/bellossom/front.png differ diff --git a/gfx/pokemon/bellossom/shiny.pal b/gfx/pokemon/bellossom/shiny.pal new file mode 100644 index 000000000..a099a594e --- /dev/null +++ b/gfx/pokemon/bellossom/shiny.pal @@ -0,0 +1,4 @@ + + RGB 28, 11, 06 + RGB 11, 14, 25 + diff --git a/gfx/pokemon/bellsprout/anim0.asm b/gfx/pokemon/bellsprout/anim0.asm new file mode 100644 index 000000000..9a71b29ac --- /dev/null +++ b/gfx/pokemon/bellsprout/anim0.asm @@ -0,0 +1,12 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + setrepeat 2 + frame 0, 08 + frame 1, 08 + frame 2, 12 + frame 1, 08 + dorepeat 5 + endanim +; 0xd0cb2 diff --git a/gfx/pokemon/bellsprout/anim1.asm b/gfx/pokemon/bellsprout/anim1.asm new file mode 100644 index 000000000..31ad26997 --- /dev/null +++ b/gfx/pokemon/bellsprout/anim1.asm @@ -0,0 +1,8 @@ + frame 4, 10 + frame 5, 10 + setrepeat 3 + frame 0, 05 + frame 6, 05 + dorepeat 3 + endanim +; 0xd1b78 diff --git a/gfx/pokemon/bellsprout/back.2bpp.lz.9dacbda8 b/gfx/pokemon/bellsprout/back.2bpp.lz.9dacbda8 new file mode 100644 index 000000000..ab600f064 Binary files /dev/null and b/gfx/pokemon/bellsprout/back.2bpp.lz.9dacbda8 differ diff --git a/gfx/pokemon/bellsprout/back.png b/gfx/pokemon/bellsprout/back.png new file mode 100644 index 000000000..ef5c271ef Binary files /dev/null and b/gfx/pokemon/bellsprout/back.png differ diff --git a/gfx/pokemon/bellsprout/front.animated.2bpp.lz.44df413d b/gfx/pokemon/bellsprout/front.animated.2bpp.lz.44df413d new file mode 100644 index 000000000..2593fb112 Binary files /dev/null and b/gfx/pokemon/bellsprout/front.animated.2bpp.lz.44df413d differ diff --git a/gfx/pokemon/bellsprout/front.png b/gfx/pokemon/bellsprout/front.png new file mode 100644 index 000000000..0a243dd94 Binary files /dev/null and b/gfx/pokemon/bellsprout/front.png differ diff --git a/gfx/pokemon/bellsprout/shiny.pal b/gfx/pokemon/bellsprout/shiny.pal new file mode 100644 index 000000000..5a2b267f1 --- /dev/null +++ b/gfx/pokemon/bellsprout/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 20, 07 + RGB 20, 10, 21 + diff --git a/gfx/pokemon/bitmask_pointers.asm b/gfx/pokemon/bitmask_pointers.asm new file mode 100644 index 000000000..7d87ad8d9 --- /dev/null +++ b/gfx/pokemon/bitmask_pointers.asm @@ -0,0 +1,252 @@ +BitmasksPointers: + dw BulbasaurBitmasks + dw IvysaurBitmasks + dw VenusaurBitmasks + dw CharmanderBitmasks + dw CharmeleonBitmasks + dw CharizardBitmasks + dw SquirtleBitmasks + dw WartortleBitmasks + dw BlastoiseBitmasks + dw CaterpieBitmasks + dw MetapodBitmasks + dw ButterfreeBitmasks + dw WeedleBitmasks + dw KakunaBitmasks + dw BeedrillBitmasks + dw PidgeyBitmasks + dw PidgeottoBitmasks + dw PidgeotBitmasks + dw RattataBitmasks + dw RaticateBitmasks + dw SpearowBitmasks + dw FearowBitmasks + dw EkansBitmasks + dw ArbokBitmasks + dw PikachuBitmasks + dw RaichuBitmasks + dw SandshrewBitmasks + dw SandslashBitmasks + dw NidoranFBitmasks + dw NidorinaBitmasks + dw NidoqueenBitmasks + dw NidoranMBitmasks + dw NidorinoBitmasks + dw NidokingBitmasks + dw ClefairyBitmasks + dw ClefableBitmasks + dw VulpixBitmasks + dw NinetalesBitmasks + dw JigglypuffBitmasks + dw WigglytuffBitmasks + dw ZubatBitmasks + dw GolbatBitmasks + dw OddishBitmasks + dw GloomBitmasks + dw VileplumeBitmasks + dw ParasBitmasks + dw ParasectBitmasks + dw VenonatBitmasks + dw VenomothBitmasks + dw DiglettBitmasks + dw DugtrioBitmasks + dw MeowthBitmasks + dw PersianBitmasks + dw PsyduckBitmasks + dw GolduckBitmasks + dw MankeyBitmasks + dw PrimeapeBitmasks + dw GrowlitheBitmasks + dw ArcanineBitmasks + dw PoliwagBitmasks + dw PoliwhirlBitmasks + dw PoliwrathBitmasks + dw AbraBitmasks + dw KadabraBitmasks + dw AlakazamBitmasks + dw MachopBitmasks + dw MachokeBitmasks + dw MachampBitmasks + dw BellsproutBitmasks + dw WeepinbellBitmasks + dw VictreebelBitmasks + dw TentacoolBitmasks + dw TentacruelBitmasks + dw GeodudeBitmasks + dw GravelerBitmasks + dw GolemBitmasks + dw PonytaBitmasks + dw RapidashBitmasks + dw SlowpokeBitmasks + dw SlowbroBitmasks + dw MagnemiteBitmasks + dw MagnetonBitmasks + dw FarfetchDBitmasks + dw DoduoBitmasks + dw DodrioBitmasks + dw SeelBitmasks + dw DewgongBitmasks + dw GrimerBitmasks + dw MukBitmasks + dw ShellderBitmasks + dw CloysterBitmasks + dw GastlyBitmasks + dw HaunterBitmasks + dw GengarBitmasks + dw OnixBitmasks + dw DrowzeeBitmasks + dw HypnoBitmasks + dw KrabbyBitmasks + dw KinglerBitmasks + dw VoltorbBitmasks + dw ElectrodeBitmasks + dw ExeggcuteBitmasks + dw ExeggutorBitmasks + dw CuboneBitmasks + dw MarowakBitmasks + dw HitmonleeBitmasks + dw HitmonchanBitmasks + dw LickitungBitmasks + dw KoffingBitmasks + dw WeezingBitmasks + dw RhyhornBitmasks + dw RhydonBitmasks + dw ChanseyBitmasks + dw TangelaBitmasks + dw KangaskhanBitmasks + dw HorseaBitmasks + dw SeadraBitmasks + dw GoldeenBitmasks + dw SeakingBitmasks + dw StaryuBitmasks + dw StarmieBitmasks + dw MrMimeBitmasks + dw ScytherBitmasks + dw JynxBitmasks + dw ElectabuzzBitmasks + dw MagmarBitmasks + dw PinsirBitmasks + dw TaurosBitmasks + dw MagikarpBitmasks + dw GyaradosBitmasks + dw LaprasBitmasks + dw DittoBitmasks + dw EeveeBitmasks + dw VaporeonBitmasks + dw JolteonBitmasks + dw FlareonBitmasks + dw PorygonBitmasks + dw OmanyteBitmasks + dw OmastarBitmasks + dw KabutoBitmasks + dw KabutopsBitmasks + dw AerodactylBitmasks + dw SnorlaxBitmasks + dw ArticunoBitmasks + dw ZapdosBitmasks + dw MoltresBitmasks + dw DratiniBitmasks + dw DragonairBitmasks + dw DragoniteBitmasks + dw MewtwoBitmasks + dw MewBitmasks + dw ChikoritaBitmasks + dw BayleefBitmasks + dw MeganiumBitmasks + dw CyndaquilBitmasks + dw QuilavaBitmasks + dw TyphlosionBitmasks + dw TotodileBitmasks + dw CroconawBitmasks + dw FeraligatrBitmasks + dw SentretBitmasks + dw FurretBitmasks + dw HoothootBitmasks + dw NoctowlBitmasks + dw LedybaBitmasks + dw LedianBitmasks + dw SpinarakBitmasks + dw AriadosBitmasks + dw CrobatBitmasks + dw ChinchouBitmasks + dw LanturnBitmasks + dw PichuBitmasks + dw CleffaBitmasks + dw IgglybuffBitmasks + dw TogepiBitmasks + dw TogeticBitmasks + dw NatuBitmasks + dw XatuBitmasks + dw MareepBitmasks + dw FlaaffyBitmasks + dw AmpharosBitmasks + dw BellossomBitmasks + dw MarillBitmasks + dw AzumarillBitmasks + dw SudowoodoBitmasks + dw PolitoedBitmasks + dw HoppipBitmasks + dw SkiploomBitmasks + dw JumpluffBitmasks + dw AipomBitmasks + dw SunkernBitmasks + dw SunfloraBitmasks + dw YanmaBitmasks + dw WooperBitmasks + dw QuagsireBitmasks + dw EspeonBitmasks + dw UmbreonBitmasks + dw MurkrowBitmasks + dw SlowkingBitmasks + dw MisdreavusBitmasks + dw UnownBitmasks + dw WobbuffetBitmasks + dw GirafarigBitmasks + dw PinecoBitmasks + dw ForretressBitmasks + dw DunsparceBitmasks + dw GligarBitmasks + dw SteelixBitmasks + dw SnubbullBitmasks + dw GranbullBitmasks + dw QwilfishBitmasks + dw ScizorBitmasks + dw ShuckleBitmasks + dw HeracrossBitmasks + dw SneaselBitmasks + dw TeddiursaBitmasks + dw UrsaringBitmasks + dw SlugmaBitmasks + dw MagcargoBitmasks + dw SwinubBitmasks + dw PiloswineBitmasks + dw CorsolaBitmasks + dw RemoraidBitmasks + dw OctilleryBitmasks + dw DelibirdBitmasks + dw MantineBitmasks + dw SkarmoryBitmasks + dw HoundourBitmasks + dw HoundoomBitmasks + dw KingdraBitmasks + dw PhanpyBitmasks + dw DonphanBitmasks + dw Porygon2Bitmasks + dw StantlerBitmasks + dw SmeargleBitmasks + dw TyrogueBitmasks + dw HitmontopBitmasks + dw SmoochumBitmasks + dw ElekidBitmasks + dw MagbyBitmasks + dw MiltankBitmasks + dw BlisseyBitmasks + dw RaikouBitmasks + dw EnteiBitmasks + dw SuicuneBitmasks + dw LarvitarBitmasks + dw PupitarBitmasks + dw TyranitarBitmasks + dw LugiaBitmasks + dw HoOhBitmasks + dw CelebiBitmasks diff --git a/gfx/pokemon/bitmasks.asm b/gfx/pokemon/bitmasks.asm new file mode 100644 index 000000000..5f4504934 --- /dev/null +++ b/gfx/pokemon/bitmasks.asm @@ -0,0 +1,252 @@ +BulbasaurBitmasks: INCLUDE "gfx/pokemon/bulbasaur/bitmask.asm" +IvysaurBitmasks: INCLUDE "gfx/pokemon/ivysaur/bitmask.asm" +VenusaurBitmasks: INCLUDE "gfx/pokemon/venusaur/bitmask.asm" +CharmanderBitmasks: INCLUDE "gfx/pokemon/charmander/bitmask.asm" +CharmeleonBitmasks: INCLUDE "gfx/pokemon/charmeleon/bitmask.asm" +CharizardBitmasks: INCLUDE "gfx/pokemon/charizard/bitmask.asm" +SquirtleBitmasks: INCLUDE "gfx/pokemon/squirtle/bitmask.asm" +WartortleBitmasks: INCLUDE "gfx/pokemon/wartortle/bitmask.asm" +BlastoiseBitmasks: INCLUDE "gfx/pokemon/blastoise/bitmask.asm" +CaterpieBitmasks: INCLUDE "gfx/pokemon/caterpie/bitmask.asm" +MetapodBitmasks: INCLUDE "gfx/pokemon/metapod/bitmask.asm" +ButterfreeBitmasks: INCLUDE "gfx/pokemon/butterfree/bitmask.asm" +WeedleBitmasks: INCLUDE "gfx/pokemon/weedle/bitmask.asm" +KakunaBitmasks: INCLUDE "gfx/pokemon/kakuna/bitmask.asm" +BeedrillBitmasks: INCLUDE "gfx/pokemon/beedrill/bitmask.asm" +PidgeyBitmasks: INCLUDE "gfx/pokemon/pidgey/bitmask.asm" +PidgeottoBitmasks: INCLUDE "gfx/pokemon/pidgeotto/bitmask.asm" +PidgeotBitmasks: INCLUDE "gfx/pokemon/pidgeot/bitmask.asm" +RattataBitmasks: INCLUDE "gfx/pokemon/rattata/bitmask.asm" +RaticateBitmasks: INCLUDE "gfx/pokemon/raticate/bitmask.asm" +SpearowBitmasks: INCLUDE "gfx/pokemon/spearow/bitmask.asm" +FearowBitmasks: INCLUDE "gfx/pokemon/fearow/bitmask.asm" +EkansBitmasks: INCLUDE "gfx/pokemon/ekans/bitmask.asm" +ArbokBitmasks: INCLUDE "gfx/pokemon/arbok/bitmask.asm" +PikachuBitmasks: INCLUDE "gfx/pokemon/pikachu/bitmask.asm" +RaichuBitmasks: INCLUDE "gfx/pokemon/raichu/bitmask.asm" +SandshrewBitmasks: INCLUDE "gfx/pokemon/sandshrew/bitmask.asm" +SandslashBitmasks: INCLUDE "gfx/pokemon/sandslash/bitmask.asm" +NidoranFBitmasks: INCLUDE "gfx/pokemon/nidoran_f/bitmask.asm" +NidorinaBitmasks: INCLUDE "gfx/pokemon/nidorina/bitmask.asm" +NidoqueenBitmasks: INCLUDE "gfx/pokemon/nidoqueen/bitmask.asm" +NidoranMBitmasks: INCLUDE "gfx/pokemon/nidoran_m/bitmask.asm" +NidorinoBitmasks: INCLUDE "gfx/pokemon/nidorino/bitmask.asm" +NidokingBitmasks: INCLUDE "gfx/pokemon/nidoking/bitmask.asm" +ClefairyBitmasks: INCLUDE "gfx/pokemon/clefairy/bitmask.asm" +ClefableBitmasks: INCLUDE "gfx/pokemon/clefable/bitmask.asm" +VulpixBitmasks: INCLUDE "gfx/pokemon/vulpix/bitmask.asm" +NinetalesBitmasks: INCLUDE "gfx/pokemon/ninetales/bitmask.asm" +JigglypuffBitmasks: INCLUDE "gfx/pokemon/jigglypuff/bitmask.asm" +WigglytuffBitmasks: INCLUDE "gfx/pokemon/wigglytuff/bitmask.asm" +ZubatBitmasks: INCLUDE "gfx/pokemon/zubat/bitmask.asm" +GolbatBitmasks: INCLUDE "gfx/pokemon/golbat/bitmask.asm" +OddishBitmasks: INCLUDE "gfx/pokemon/oddish/bitmask.asm" +GloomBitmasks: INCLUDE "gfx/pokemon/gloom/bitmask.asm" +VileplumeBitmasks: INCLUDE "gfx/pokemon/vileplume/bitmask.asm" +ParasBitmasks: INCLUDE "gfx/pokemon/paras/bitmask.asm" +ParasectBitmasks: INCLUDE "gfx/pokemon/parasect/bitmask.asm" +VenonatBitmasks: INCLUDE "gfx/pokemon/venonat/bitmask.asm" +VenomothBitmasks: INCLUDE "gfx/pokemon/venomoth/bitmask.asm" +DiglettBitmasks: INCLUDE "gfx/pokemon/diglett/bitmask.asm" +DugtrioBitmasks: INCLUDE "gfx/pokemon/dugtrio/bitmask.asm" +MeowthBitmasks: INCLUDE "gfx/pokemon/meowth/bitmask.asm" +PersianBitmasks: INCLUDE "gfx/pokemon/persian/bitmask.asm" +PsyduckBitmasks: INCLUDE "gfx/pokemon/psyduck/bitmask.asm" +GolduckBitmasks: INCLUDE "gfx/pokemon/golduck/bitmask.asm" +MankeyBitmasks: INCLUDE "gfx/pokemon/mankey/bitmask.asm" +PrimeapeBitmasks: INCLUDE "gfx/pokemon/primeape/bitmask.asm" +GrowlitheBitmasks: INCLUDE "gfx/pokemon/growlithe/bitmask.asm" +ArcanineBitmasks: INCLUDE "gfx/pokemon/arcanine/bitmask.asm" +PoliwagBitmasks: INCLUDE "gfx/pokemon/poliwag/bitmask.asm" +PoliwhirlBitmasks: INCLUDE "gfx/pokemon/poliwhirl/bitmask.asm" +PoliwrathBitmasks: INCLUDE "gfx/pokemon/poliwrath/bitmask.asm" +AbraBitmasks: INCLUDE "gfx/pokemon/abra/bitmask.asm" +KadabraBitmasks: INCLUDE "gfx/pokemon/kadabra/bitmask.asm" +AlakazamBitmasks: INCLUDE "gfx/pokemon/alakazam/bitmask.asm" +MachopBitmasks: INCLUDE "gfx/pokemon/machop/bitmask.asm" +MachokeBitmasks: INCLUDE "gfx/pokemon/machoke/bitmask.asm" +MachampBitmasks: INCLUDE "gfx/pokemon/machamp/bitmask.asm" +BellsproutBitmasks: INCLUDE "gfx/pokemon/bellsprout/bitmask.asm" +WeepinbellBitmasks: INCLUDE "gfx/pokemon/weepinbell/bitmask.asm" +VictreebelBitmasks: INCLUDE "gfx/pokemon/victreebel/bitmask.asm" +TentacoolBitmasks: INCLUDE "gfx/pokemon/tentacool/bitmask.asm" +TentacruelBitmasks: INCLUDE "gfx/pokemon/tentacruel/bitmask.asm" +GeodudeBitmasks: INCLUDE "gfx/pokemon/geodude/bitmask.asm" +GravelerBitmasks: INCLUDE "gfx/pokemon/graveler/bitmask.asm" +GolemBitmasks: INCLUDE "gfx/pokemon/golem/bitmask.asm" +PonytaBitmasks: INCLUDE "gfx/pokemon/ponyta/bitmask.asm" +RapidashBitmasks: INCLUDE "gfx/pokemon/rapidash/bitmask.asm" +SlowpokeBitmasks: INCLUDE "gfx/pokemon/slowpoke/bitmask.asm" +SlowbroBitmasks: INCLUDE "gfx/pokemon/slowbro/bitmask.asm" +MagnemiteBitmasks: INCLUDE "gfx/pokemon/magnemite/bitmask.asm" +MagnetonBitmasks: INCLUDE "gfx/pokemon/magneton/bitmask.asm" +FarfetchDBitmasks: INCLUDE "gfx/pokemon/farfetch_d/bitmask.asm" +DoduoBitmasks: INCLUDE "gfx/pokemon/doduo/bitmask.asm" +DodrioBitmasks: INCLUDE "gfx/pokemon/dodrio/bitmask.asm" +SeelBitmasks: INCLUDE "gfx/pokemon/seel/bitmask.asm" +DewgongBitmasks: INCLUDE "gfx/pokemon/dewgong/bitmask.asm" +GrimerBitmasks: INCLUDE "gfx/pokemon/grimer/bitmask.asm" +MukBitmasks: INCLUDE "gfx/pokemon/muk/bitmask.asm" +ShellderBitmasks: INCLUDE "gfx/pokemon/shellder/bitmask.asm" +CloysterBitmasks: INCLUDE "gfx/pokemon/cloyster/bitmask.asm" +GastlyBitmasks: INCLUDE "gfx/pokemon/gastly/bitmask.asm" +HaunterBitmasks: INCLUDE "gfx/pokemon/haunter/bitmask.asm" +GengarBitmasks: INCLUDE "gfx/pokemon/gengar/bitmask.asm" +OnixBitmasks: INCLUDE "gfx/pokemon/onix/bitmask.asm" +DrowzeeBitmasks: INCLUDE "gfx/pokemon/drowzee/bitmask.asm" +HypnoBitmasks: INCLUDE "gfx/pokemon/hypno/bitmask.asm" +KrabbyBitmasks: INCLUDE "gfx/pokemon/krabby/bitmask.asm" +KinglerBitmasks: INCLUDE "gfx/pokemon/kingler/bitmask.asm" +VoltorbBitmasks: INCLUDE "gfx/pokemon/voltorb/bitmask.asm" +ElectrodeBitmasks: INCLUDE "gfx/pokemon/electrode/bitmask.asm" +ExeggcuteBitmasks: INCLUDE "gfx/pokemon/exeggcute/bitmask.asm" +ExeggutorBitmasks: INCLUDE "gfx/pokemon/exeggutor/bitmask.asm" +CuboneBitmasks: INCLUDE "gfx/pokemon/cubone/bitmask.asm" +MarowakBitmasks: INCLUDE "gfx/pokemon/marowak/bitmask.asm" +HitmonleeBitmasks: INCLUDE "gfx/pokemon/hitmonlee/bitmask.asm" +HitmonchanBitmasks: INCLUDE "gfx/pokemon/hitmonchan/bitmask.asm" +LickitungBitmasks: INCLUDE "gfx/pokemon/lickitung/bitmask.asm" +KoffingBitmasks: INCLUDE "gfx/pokemon/koffing/bitmask.asm" +WeezingBitmasks: INCLUDE "gfx/pokemon/weezing/bitmask.asm" +RhyhornBitmasks: INCLUDE "gfx/pokemon/rhyhorn/bitmask.asm" +RhydonBitmasks: INCLUDE "gfx/pokemon/rhydon/bitmask.asm" +ChanseyBitmasks: INCLUDE "gfx/pokemon/chansey/bitmask.asm" +TangelaBitmasks: INCLUDE "gfx/pokemon/tangela/bitmask.asm" +KangaskhanBitmasks: INCLUDE "gfx/pokemon/kangaskhan/bitmask.asm" +HorseaBitmasks: INCLUDE "gfx/pokemon/horsea/bitmask.asm" +SeadraBitmasks: INCLUDE "gfx/pokemon/seadra/bitmask.asm" +GoldeenBitmasks: INCLUDE "gfx/pokemon/goldeen/bitmask.asm" +SeakingBitmasks: INCLUDE "gfx/pokemon/seaking/bitmask.asm" +StaryuBitmasks: INCLUDE "gfx/pokemon/staryu/bitmask.asm" +StarmieBitmasks: INCLUDE "gfx/pokemon/starmie/bitmask.asm" +MrMimeBitmasks: INCLUDE "gfx/pokemon/mr__mime/bitmask.asm" +ScytherBitmasks: INCLUDE "gfx/pokemon/scyther/bitmask.asm" +JynxBitmasks: INCLUDE "gfx/pokemon/jynx/bitmask.asm" +ElectabuzzBitmasks: INCLUDE "gfx/pokemon/electabuzz/bitmask.asm" +MagmarBitmasks: INCLUDE "gfx/pokemon/magmar/bitmask.asm" +PinsirBitmasks: INCLUDE "gfx/pokemon/pinsir/bitmask.asm" +TaurosBitmasks: INCLUDE "gfx/pokemon/tauros/bitmask.asm" +MagikarpBitmasks: INCLUDE "gfx/pokemon/magikarp/bitmask.asm" +GyaradosBitmasks: INCLUDE "gfx/pokemon/gyarados/bitmask.asm" +LaprasBitmasks: INCLUDE "gfx/pokemon/lapras/bitmask.asm" +DittoBitmasks: INCLUDE "gfx/pokemon/ditto/bitmask.asm" +EeveeBitmasks: INCLUDE "gfx/pokemon/eevee/bitmask.asm" +VaporeonBitmasks: INCLUDE "gfx/pokemon/vaporeon/bitmask.asm" +JolteonBitmasks: INCLUDE "gfx/pokemon/jolteon/bitmask.asm" +FlareonBitmasks: INCLUDE "gfx/pokemon/flareon/bitmask.asm" +PorygonBitmasks: INCLUDE "gfx/pokemon/porygon/bitmask.asm" +OmanyteBitmasks: INCLUDE "gfx/pokemon/omanyte/bitmask.asm" +OmastarBitmasks: INCLUDE "gfx/pokemon/omastar/bitmask.asm" +KabutoBitmasks: INCLUDE "gfx/pokemon/kabuto/bitmask.asm" +KabutopsBitmasks: INCLUDE "gfx/pokemon/kabutops/bitmask.asm" +AerodactylBitmasks: INCLUDE "gfx/pokemon/aerodactyl/bitmask.asm" +SnorlaxBitmasks: INCLUDE "gfx/pokemon/snorlax/bitmask.asm" +ArticunoBitmasks: INCLUDE "gfx/pokemon/articuno/bitmask.asm" +ZapdosBitmasks: INCLUDE "gfx/pokemon/zapdos/bitmask.asm" +MoltresBitmasks: INCLUDE "gfx/pokemon/moltres/bitmask.asm" +DratiniBitmasks: INCLUDE "gfx/pokemon/dratini/bitmask.asm" +DragonairBitmasks: INCLUDE "gfx/pokemon/dragonair/bitmask.asm" +DragoniteBitmasks: INCLUDE "gfx/pokemon/dragonite/bitmask.asm" +MewtwoBitmasks: INCLUDE "gfx/pokemon/mewtwo/bitmask.asm" +MewBitmasks: INCLUDE "gfx/pokemon/mew/bitmask.asm" +ChikoritaBitmasks: INCLUDE "gfx/pokemon/chikorita/bitmask.asm" +BayleefBitmasks: INCLUDE "gfx/pokemon/bayleef/bitmask.asm" +MeganiumBitmasks: INCLUDE "gfx/pokemon/meganium/bitmask.asm" +CyndaquilBitmasks: INCLUDE "gfx/pokemon/cyndaquil/bitmask.asm" +QuilavaBitmasks: INCLUDE "gfx/pokemon/quilava/bitmask.asm" +TyphlosionBitmasks: INCLUDE "gfx/pokemon/typhlosion/bitmask.asm" +TotodileBitmasks: INCLUDE "gfx/pokemon/totodile/bitmask.asm" +CroconawBitmasks: INCLUDE "gfx/pokemon/croconaw/bitmask.asm" +FeraligatrBitmasks: INCLUDE "gfx/pokemon/feraligatr/bitmask.asm" +SentretBitmasks: INCLUDE "gfx/pokemon/sentret/bitmask.asm" +FurretBitmasks: INCLUDE "gfx/pokemon/furret/bitmask.asm" +HoothootBitmasks: INCLUDE "gfx/pokemon/hoothoot/bitmask.asm" +NoctowlBitmasks: INCLUDE "gfx/pokemon/noctowl/bitmask.asm" +LedybaBitmasks: INCLUDE "gfx/pokemon/ledyba/bitmask.asm" +LedianBitmasks: INCLUDE "gfx/pokemon/ledian/bitmask.asm" +SpinarakBitmasks: INCLUDE "gfx/pokemon/spinarak/bitmask.asm" +AriadosBitmasks: INCLUDE "gfx/pokemon/ariados/bitmask.asm" +CrobatBitmasks: INCLUDE "gfx/pokemon/crobat/bitmask.asm" +ChinchouBitmasks: INCLUDE "gfx/pokemon/chinchou/bitmask.asm" +LanturnBitmasks: INCLUDE "gfx/pokemon/lanturn/bitmask.asm" +PichuBitmasks: INCLUDE "gfx/pokemon/pichu/bitmask.asm" +CleffaBitmasks: INCLUDE "gfx/pokemon/cleffa/bitmask.asm" +IgglybuffBitmasks: INCLUDE "gfx/pokemon/igglybuff/bitmask.asm" +TogepiBitmasks: INCLUDE "gfx/pokemon/togepi/bitmask.asm" +TogeticBitmasks: INCLUDE "gfx/pokemon/togetic/bitmask.asm" +NatuBitmasks: INCLUDE "gfx/pokemon/natu/bitmask.asm" +XatuBitmasks: INCLUDE "gfx/pokemon/xatu/bitmask.asm" +MareepBitmasks: INCLUDE "gfx/pokemon/mareep/bitmask.asm" +FlaaffyBitmasks: INCLUDE "gfx/pokemon/flaaffy/bitmask.asm" +AmpharosBitmasks: INCLUDE "gfx/pokemon/ampharos/bitmask.asm" +BellossomBitmasks: INCLUDE "gfx/pokemon/bellossom/bitmask.asm" +MarillBitmasks: INCLUDE "gfx/pokemon/marill/bitmask.asm" +AzumarillBitmasks: INCLUDE "gfx/pokemon/azumarill/bitmask.asm" +SudowoodoBitmasks: INCLUDE "gfx/pokemon/sudowoodo/bitmask.asm" +PolitoedBitmasks: INCLUDE "gfx/pokemon/politoed/bitmask.asm" +HoppipBitmasks: INCLUDE "gfx/pokemon/hoppip/bitmask.asm" +SkiploomBitmasks: INCLUDE "gfx/pokemon/skiploom/bitmask.asm" +JumpluffBitmasks: INCLUDE "gfx/pokemon/jumpluff/bitmask.asm" +AipomBitmasks: INCLUDE "gfx/pokemon/aipom/bitmask.asm" +SunkernBitmasks: INCLUDE "gfx/pokemon/sunkern/bitmask.asm" +SunfloraBitmasks: INCLUDE "gfx/pokemon/sunflora/bitmask.asm" +YanmaBitmasks: INCLUDE "gfx/pokemon/yanma/bitmask.asm" +WooperBitmasks: INCLUDE "gfx/pokemon/wooper/bitmask.asm" +QuagsireBitmasks: INCLUDE "gfx/pokemon/quagsire/bitmask.asm" +EspeonBitmasks: INCLUDE "gfx/pokemon/espeon/bitmask.asm" +UmbreonBitmasks: INCLUDE "gfx/pokemon/umbreon/bitmask.asm" +MurkrowBitmasks: INCLUDE "gfx/pokemon/murkrow/bitmask.asm" +SlowkingBitmasks: INCLUDE "gfx/pokemon/slowking/bitmask.asm" +MisdreavusBitmasks: INCLUDE "gfx/pokemon/misdreavus/bitmask.asm" +UnownBitmasks: INCLUDE "gfx/pokemon/unown/bitmask.asm" +WobbuffetBitmasks: INCLUDE "gfx/pokemon/wobbuffet/bitmask.asm" +GirafarigBitmasks: INCLUDE "gfx/pokemon/girafarig/bitmask.asm" +PinecoBitmasks: INCLUDE "gfx/pokemon/pineco/bitmask.asm" +ForretressBitmasks: INCLUDE "gfx/pokemon/forretress/bitmask.asm" +DunsparceBitmasks: INCLUDE "gfx/pokemon/dunsparce/bitmask.asm" +GligarBitmasks: INCLUDE "gfx/pokemon/gligar/bitmask.asm" +SteelixBitmasks: INCLUDE "gfx/pokemon/steelix/bitmask.asm" +SnubbullBitmasks: INCLUDE "gfx/pokemon/snubbull/bitmask.asm" +GranbullBitmasks: INCLUDE "gfx/pokemon/granbull/bitmask.asm" +QwilfishBitmasks: INCLUDE "gfx/pokemon/qwilfish/bitmask.asm" +ScizorBitmasks: INCLUDE "gfx/pokemon/scizor/bitmask.asm" +ShuckleBitmasks: INCLUDE "gfx/pokemon/shuckle/bitmask.asm" +HeracrossBitmasks: INCLUDE "gfx/pokemon/heracross/bitmask.asm" +SneaselBitmasks: INCLUDE "gfx/pokemon/sneasel/bitmask.asm" +TeddiursaBitmasks: INCLUDE "gfx/pokemon/teddiursa/bitmask.asm" +UrsaringBitmasks: INCLUDE "gfx/pokemon/ursaring/bitmask.asm" +SlugmaBitmasks: INCLUDE "gfx/pokemon/slugma/bitmask.asm" +MagcargoBitmasks: INCLUDE "gfx/pokemon/magcargo/bitmask.asm" +SwinubBitmasks: INCLUDE "gfx/pokemon/swinub/bitmask.asm" +PiloswineBitmasks: INCLUDE "gfx/pokemon/piloswine/bitmask.asm" +CorsolaBitmasks: INCLUDE "gfx/pokemon/corsola/bitmask.asm" +RemoraidBitmasks: INCLUDE "gfx/pokemon/remoraid/bitmask.asm" +OctilleryBitmasks: INCLUDE "gfx/pokemon/octillery/bitmask.asm" +DelibirdBitmasks: INCLUDE "gfx/pokemon/delibird/bitmask.asm" +MantineBitmasks: INCLUDE "gfx/pokemon/mantine/bitmask.asm" +SkarmoryBitmasks: INCLUDE "gfx/pokemon/skarmory/bitmask.asm" +HoundourBitmasks: INCLUDE "gfx/pokemon/houndour/bitmask.asm" +HoundoomBitmasks: INCLUDE "gfx/pokemon/houndoom/bitmask.asm" +KingdraBitmasks: INCLUDE "gfx/pokemon/kingdra/bitmask.asm" +PhanpyBitmasks: INCLUDE "gfx/pokemon/phanpy/bitmask.asm" +DonphanBitmasks: INCLUDE "gfx/pokemon/donphan/bitmask.asm" +Porygon2Bitmasks: INCLUDE "gfx/pokemon/porygon2/bitmask.asm" +StantlerBitmasks: INCLUDE "gfx/pokemon/stantler/bitmask.asm" +SmeargleBitmasks: INCLUDE "gfx/pokemon/smeargle/bitmask.asm" +TyrogueBitmasks: INCLUDE "gfx/pokemon/tyrogue/bitmask.asm" +HitmontopBitmasks: INCLUDE "gfx/pokemon/hitmontop/bitmask.asm" +SmoochumBitmasks: INCLUDE "gfx/pokemon/smoochum/bitmask.asm" +ElekidBitmasks: INCLUDE "gfx/pokemon/elekid/bitmask.asm" +MagbyBitmasks: INCLUDE "gfx/pokemon/magby/bitmask.asm" +MiltankBitmasks: INCLUDE "gfx/pokemon/miltank/bitmask.asm" +BlisseyBitmasks: INCLUDE "gfx/pokemon/blissey/bitmask.asm" +RaikouBitmasks: INCLUDE "gfx/pokemon/raikou/bitmask.asm" +EnteiBitmasks: INCLUDE "gfx/pokemon/entei/bitmask.asm" +SuicuneBitmasks: INCLUDE "gfx/pokemon/suicune/bitmask.asm" +LarvitarBitmasks: INCLUDE "gfx/pokemon/larvitar/bitmask.asm" +PupitarBitmasks: INCLUDE "gfx/pokemon/pupitar/bitmask.asm" +TyranitarBitmasks: INCLUDE "gfx/pokemon/tyranitar/bitmask.asm" +LugiaBitmasks: INCLUDE "gfx/pokemon/lugia/bitmask.asm" +HoOhBitmasks: INCLUDE "gfx/pokemon/ho_oh/bitmask.asm" +CelebiBitmasks: INCLUDE "gfx/pokemon/celebi/bitmask.asm" +EggBitmasks: INCLUDE "gfx/pokemon/egg/bitmask.asm" diff --git a/gfx/pokemon/blastoise/anim0.asm b/gfx/pokemon/blastoise/anim0.asm new file mode 100644 index 000000000..2d8b464d0 --- /dev/null +++ b/gfx/pokemon/blastoise/anim0.asm @@ -0,0 +1,6 @@ + frame 1, 06 + frame 2, 40 + frame 3, 08 + frame 1, 04 + endanim +; 0xd0908 diff --git a/gfx/pokemon/blastoise/anim1.asm b/gfx/pokemon/blastoise/anim1.asm new file mode 100644 index 000000000..b25c75e5a --- /dev/null +++ b/gfx/pokemon/blastoise/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 12 + frame 4, 12 + dorepeat 1 + endanim +; 0xd18f0 diff --git a/gfx/pokemon/blastoise/back.2bpp.lz.b90e8d5a b/gfx/pokemon/blastoise/back.2bpp.lz.b90e8d5a new file mode 100644 index 000000000..5e27c9989 Binary files /dev/null and b/gfx/pokemon/blastoise/back.2bpp.lz.b90e8d5a differ diff --git a/gfx/pokemon/blastoise/back.png b/gfx/pokemon/blastoise/back.png new file mode 100644 index 000000000..9f236fb94 Binary files /dev/null and b/gfx/pokemon/blastoise/back.png differ diff --git a/gfx/pokemon/blastoise/front.animated.2bpp.lz.3899aed0 b/gfx/pokemon/blastoise/front.animated.2bpp.lz.3899aed0 new file mode 100644 index 000000000..33148b076 Binary files /dev/null and b/gfx/pokemon/blastoise/front.animated.2bpp.lz.3899aed0 differ diff --git a/gfx/pokemon/blastoise/front.png b/gfx/pokemon/blastoise/front.png new file mode 100644 index 000000000..f6623fe78 Binary files /dev/null and b/gfx/pokemon/blastoise/front.png differ diff --git a/gfx/pokemon/blastoise/shiny.pal b/gfx/pokemon/blastoise/shiny.pal new file mode 100644 index 000000000..dbde45ec9 --- /dev/null +++ b/gfx/pokemon/blastoise/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 21, 07 + RGB 16, 16, 20 + diff --git a/gfx/pokemon/blissey/anim0.asm b/gfx/pokemon/blissey/anim0.asm new file mode 100644 index 000000000..097ecc094 --- /dev/null +++ b/gfx/pokemon/blissey/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 12 + frame 2, 14 + frame 1, 10 + frame 3, 04 + frame 0, 06 + frame 3, 08 + endanim +; 0xd1607 diff --git a/gfx/pokemon/blissey/anim1.asm b/gfx/pokemon/blissey/anim1.asm new file mode 100644 index 000000000..846d85003 --- /dev/null +++ b/gfx/pokemon/blissey/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd21c1 diff --git a/gfx/pokemon/blissey/back.2bpp.lz.d2763673 b/gfx/pokemon/blissey/back.2bpp.lz.d2763673 new file mode 100644 index 000000000..00749ddee Binary files /dev/null and b/gfx/pokemon/blissey/back.2bpp.lz.d2763673 differ diff --git a/gfx/pokemon/blissey/back.png b/gfx/pokemon/blissey/back.png new file mode 100644 index 000000000..858ad5d40 Binary files /dev/null and b/gfx/pokemon/blissey/back.png differ diff --git a/gfx/pokemon/blissey/front.animated.2bpp.lz.04f2353a b/gfx/pokemon/blissey/front.animated.2bpp.lz.04f2353a new file mode 100644 index 000000000..76f492c43 Binary files /dev/null and b/gfx/pokemon/blissey/front.animated.2bpp.lz.04f2353a differ diff --git a/gfx/pokemon/blissey/front.png b/gfx/pokemon/blissey/front.png new file mode 100644 index 000000000..3d44eb5d6 Binary files /dev/null and b/gfx/pokemon/blissey/front.png differ diff --git a/gfx/pokemon/blissey/shiny.pal b/gfx/pokemon/blissey/shiny.pal new file mode 100644 index 000000000..862858e75 --- /dev/null +++ b/gfx/pokemon/blissey/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 13, 29 + RGB 14, 13, 24 + diff --git a/gfx/pokemon/bulbasaur/anim0.asm b/gfx/pokemon/bulbasaur/anim0.asm new file mode 100644 index 000000000..e5c1cbe1e --- /dev/null +++ b/gfx/pokemon/bulbasaur/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 10 + frame 2, 10 + frame 1, 08 + frame 2, 06 + frame 4, 20 + frame 3, 06 + frame 0, 05 + frame 5, 05 + endanim +; 0xd089c diff --git a/gfx/pokemon/bulbasaur/anim1.asm b/gfx/pokemon/bulbasaur/anim1.asm new file mode 100644 index 000000000..cfc0f54e9 --- /dev/null +++ b/gfx/pokemon/bulbasaur/anim1.asm @@ -0,0 +1,5 @@ + frame 5, 05 + frame 0, 05 + frame 5, 05 + endanim +; 0xd18a0 diff --git a/gfx/pokemon/bulbasaur/back.2bpp.lz.84f8d1c4 b/gfx/pokemon/bulbasaur/back.2bpp.lz.84f8d1c4 new file mode 100644 index 000000000..44f8fa450 Binary files /dev/null and b/gfx/pokemon/bulbasaur/back.2bpp.lz.84f8d1c4 differ diff --git a/gfx/pokemon/bulbasaur/back.png b/gfx/pokemon/bulbasaur/back.png new file mode 100644 index 000000000..c37b4b2c2 Binary files /dev/null and b/gfx/pokemon/bulbasaur/back.png differ diff --git a/gfx/pokemon/bulbasaur/front.animated.2bpp.lz.04627405 b/gfx/pokemon/bulbasaur/front.animated.2bpp.lz.04627405 new file mode 100644 index 000000000..fc4550001 Binary files /dev/null and b/gfx/pokemon/bulbasaur/front.animated.2bpp.lz.04627405 differ diff --git a/gfx/pokemon/bulbasaur/front.png b/gfx/pokemon/bulbasaur/front.png new file mode 100644 index 000000000..0bd513962 Binary files /dev/null and b/gfx/pokemon/bulbasaur/front.png differ diff --git a/gfx/pokemon/bulbasaur/shiny.pal b/gfx/pokemon/bulbasaur/shiny.pal new file mode 100644 index 000000000..bcd5ad011 --- /dev/null +++ b/gfx/pokemon/bulbasaur/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 28, 11 + RGB 31, 10, 06 + diff --git a/gfx/pokemon/butterfree/anim0.asm b/gfx/pokemon/butterfree/anim0.asm new file mode 100644 index 000000000..d31161a28 --- /dev/null +++ b/gfx/pokemon/butterfree/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 04 + frame 2, 24 + setrepeat 3 + frame 0, 06 + frame 1, 06 + dorepeat 3 + endanim +; 0xd0929 diff --git a/gfx/pokemon/butterfree/anim1.asm b/gfx/pokemon/butterfree/anim1.asm new file mode 100644 index 000000000..1eb152f28 --- /dev/null +++ b/gfx/pokemon/butterfree/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 1, 10 + dorepeat 1 + endanim +; 0xd190d diff --git a/gfx/pokemon/butterfree/back.2bpp.lz.a8543d86 b/gfx/pokemon/butterfree/back.2bpp.lz.a8543d86 new file mode 100644 index 000000000..6d741f493 Binary files /dev/null and b/gfx/pokemon/butterfree/back.2bpp.lz.a8543d86 differ diff --git a/gfx/pokemon/butterfree/back.png b/gfx/pokemon/butterfree/back.png new file mode 100644 index 000000000..18757bb3e Binary files /dev/null and b/gfx/pokemon/butterfree/back.png differ diff --git a/gfx/pokemon/butterfree/front.animated.2bpp.lz.33ba7e24 b/gfx/pokemon/butterfree/front.animated.2bpp.lz.33ba7e24 new file mode 100644 index 000000000..bf8b7a690 Binary files /dev/null and b/gfx/pokemon/butterfree/front.animated.2bpp.lz.33ba7e24 differ diff --git a/gfx/pokemon/butterfree/front.png b/gfx/pokemon/butterfree/front.png new file mode 100644 index 000000000..5b60425bf Binary files /dev/null and b/gfx/pokemon/butterfree/front.png differ diff --git a/gfx/pokemon/butterfree/shiny.pal b/gfx/pokemon/butterfree/shiny.pal new file mode 100644 index 000000000..75a74906b --- /dev/null +++ b/gfx/pokemon/butterfree/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 15, 23 + RGB 15, 31, 00 + diff --git a/gfx/pokemon/caterpie/anim0.asm b/gfx/pokemon/caterpie/anim0.asm new file mode 100644 index 000000000..a5cf5f238 --- /dev/null +++ b/gfx/pokemon/caterpie/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 08 + frame 1, 08 + frame 2, 12 + frame 1, 12 + frame 2, 08 + frame 1, 08 + endanim +; 0xd0915 diff --git a/gfx/pokemon/caterpie/anim1.asm b/gfx/pokemon/caterpie/anim1.asm new file mode 100644 index 000000000..e75b83f5c --- /dev/null +++ b/gfx/pokemon/caterpie/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd18f9 diff --git a/gfx/pokemon/caterpie/back.2bpp.lz.57e32015 b/gfx/pokemon/caterpie/back.2bpp.lz.57e32015 new file mode 100644 index 000000000..a3788d1e4 Binary files /dev/null and b/gfx/pokemon/caterpie/back.2bpp.lz.57e32015 differ diff --git a/gfx/pokemon/caterpie/back.png b/gfx/pokemon/caterpie/back.png new file mode 100644 index 000000000..66add2336 Binary files /dev/null and b/gfx/pokemon/caterpie/back.png differ diff --git a/gfx/pokemon/caterpie/front.animated.2bpp.lz.ec4f7cb8 b/gfx/pokemon/caterpie/front.animated.2bpp.lz.ec4f7cb8 new file mode 100644 index 000000000..d3036d9ff Binary files /dev/null and b/gfx/pokemon/caterpie/front.animated.2bpp.lz.ec4f7cb8 differ diff --git a/gfx/pokemon/caterpie/front.png b/gfx/pokemon/caterpie/front.png new file mode 100644 index 000000000..78130b1aa Binary files /dev/null and b/gfx/pokemon/caterpie/front.png differ diff --git a/gfx/pokemon/caterpie/shiny.pal b/gfx/pokemon/caterpie/shiny.pal new file mode 100644 index 000000000..32410e492 --- /dev/null +++ b/gfx/pokemon/caterpie/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 24, 06 + RGB 31, 12, 17 + diff --git a/gfx/pokemon/celebi/anim0.asm b/gfx/pokemon/celebi/anim0.asm new file mode 100644 index 000000000..9f218a43e --- /dev/null +++ b/gfx/pokemon/celebi/anim0.asm @@ -0,0 +1,16 @@ + frame 1, 05 + frame 2, 05 + frame 3, 05 + frame 4, 05 + frame 5, 05 + frame 6, 05 + frame 7, 05 + frame 8, 05 + frame 9, 05 + frame 10, 05 + setrepeat 3 + frame 12, 05 + frame 13, 05 + dorepeat 11 + endanim +; 0xd1696 diff --git a/gfx/pokemon/celebi/anim1.asm b/gfx/pokemon/celebi/anim1.asm new file mode 100644 index 000000000..6162488db --- /dev/null +++ b/gfx/pokemon/celebi/anim1.asm @@ -0,0 +1,8 @@ + frame 0, 07 + frame 11, 07 + setrepeat 2 + frame 0, 05 + frame 11, 05 + dorepeat 3 + endanim +; 0xd2222 diff --git a/gfx/pokemon/celebi/back.2bpp.lz.17ea5fe6 b/gfx/pokemon/celebi/back.2bpp.lz.17ea5fe6 new file mode 100644 index 000000000..e8153224c Binary files /dev/null and b/gfx/pokemon/celebi/back.2bpp.lz.17ea5fe6 differ diff --git a/gfx/pokemon/celebi/back.png b/gfx/pokemon/celebi/back.png new file mode 100644 index 000000000..ebb79c020 Binary files /dev/null and b/gfx/pokemon/celebi/back.png differ diff --git a/gfx/pokemon/celebi/front.animated.2bpp.lz.16f259a5 b/gfx/pokemon/celebi/front.animated.2bpp.lz.16f259a5 new file mode 100644 index 000000000..afc41bee7 Binary files /dev/null and b/gfx/pokemon/celebi/front.animated.2bpp.lz.16f259a5 differ diff --git a/gfx/pokemon/celebi/front.png b/gfx/pokemon/celebi/front.png new file mode 100644 index 000000000..66bcd2e70 Binary files /dev/null and b/gfx/pokemon/celebi/front.png differ diff --git a/gfx/pokemon/celebi/shiny.pal b/gfx/pokemon/celebi/shiny.pal new file mode 100644 index 000000000..1d73c8043 --- /dev/null +++ b/gfx/pokemon/celebi/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 15, 15 + RGB 15, 04, 18 + diff --git a/gfx/pokemon/chansey/anim0.asm b/gfx/pokemon/chansey/anim0.asm new file mode 100644 index 000000000..75de3b32b --- /dev/null +++ b/gfx/pokemon/chansey/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 06 + frame 4, 06 + frame 1, 06 + frame 2, 10 + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 5 + endanim +; 0xd0f26 diff --git a/gfx/pokemon/chansey/anim1.asm b/gfx/pokemon/chansey/anim1.asm new file mode 100644 index 000000000..a78f8cf88 --- /dev/null +++ b/gfx/pokemon/chansey/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd1d16 diff --git a/gfx/pokemon/chansey/back.2bpp.lz.14d90ba1 b/gfx/pokemon/chansey/back.2bpp.lz.14d90ba1 new file mode 100644 index 000000000..239df2d63 Binary files /dev/null and b/gfx/pokemon/chansey/back.2bpp.lz.14d90ba1 differ diff --git a/gfx/pokemon/chansey/back.png b/gfx/pokemon/chansey/back.png new file mode 100644 index 000000000..ea2296b37 Binary files /dev/null and b/gfx/pokemon/chansey/back.png differ diff --git a/gfx/pokemon/chansey/front.animated.2bpp.lz.158fc381 b/gfx/pokemon/chansey/front.animated.2bpp.lz.158fc381 new file mode 100644 index 000000000..1fc457f19 Binary files /dev/null and b/gfx/pokemon/chansey/front.animated.2bpp.lz.158fc381 differ diff --git a/gfx/pokemon/chansey/front.png b/gfx/pokemon/chansey/front.png new file mode 100644 index 000000000..0213b874d Binary files /dev/null and b/gfx/pokemon/chansey/front.png differ diff --git a/gfx/pokemon/chansey/shiny.pal b/gfx/pokemon/chansey/shiny.pal new file mode 100644 index 000000000..4d52ad934 --- /dev/null +++ b/gfx/pokemon/chansey/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 25, 19 + RGB 13, 19, 01 + diff --git a/gfx/pokemon/charizard/anim0.asm b/gfx/pokemon/charizard/anim0.asm new file mode 100644 index 000000000..b258e35c7 --- /dev/null +++ b/gfx/pokemon/charizard/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 08 + frame 1, 16 + setrepeat 2 + frame 2, 09 + frame 1, 09 + dorepeat 3 + endanim +; 0xd08e1 diff --git a/gfx/pokemon/charizard/anim1.asm b/gfx/pokemon/charizard/anim1.asm new file mode 100644 index 000000000..daffccb9d --- /dev/null +++ b/gfx/pokemon/charizard/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd18d5 diff --git a/gfx/pokemon/charizard/back.2bpp.lz.f04ac62c b/gfx/pokemon/charizard/back.2bpp.lz.f04ac62c new file mode 100644 index 000000000..db1d9c9ea Binary files /dev/null and b/gfx/pokemon/charizard/back.2bpp.lz.f04ac62c differ diff --git a/gfx/pokemon/charizard/back.png b/gfx/pokemon/charizard/back.png new file mode 100644 index 000000000..2ad954963 Binary files /dev/null and b/gfx/pokemon/charizard/back.png differ diff --git a/gfx/pokemon/charizard/front.animated.2bpp.lz.0068f820 b/gfx/pokemon/charizard/front.animated.2bpp.lz.0068f820 new file mode 100644 index 000000000..aab0fda99 Binary files /dev/null and b/gfx/pokemon/charizard/front.animated.2bpp.lz.0068f820 differ diff --git a/gfx/pokemon/charizard/front.png b/gfx/pokemon/charizard/front.png new file mode 100644 index 000000000..1cb0df943 Binary files /dev/null and b/gfx/pokemon/charizard/front.png differ diff --git a/gfx/pokemon/charizard/shiny.pal b/gfx/pokemon/charizard/shiny.pal new file mode 100644 index 000000000..88c195d74 --- /dev/null +++ b/gfx/pokemon/charizard/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 15, 21 + RGB 08, 21, 14 + diff --git a/gfx/pokemon/charmander/anim0.asm b/gfx/pokemon/charmander/anim0.asm new file mode 100644 index 000000000..72a0fe83d --- /dev/null +++ b/gfx/pokemon/charmander/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 04 + frame 1, 08 + frame 2, 24 + frame 1, 08 + frame 4, 10 + frame 0, 10 + frame 4, 10 + endanim +; 0xd08c5 diff --git a/gfx/pokemon/charmander/anim1.asm b/gfx/pokemon/charmander/anim1.asm new file mode 100644 index 000000000..219b5407f --- /dev/null +++ b/gfx/pokemon/charmander/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd18bf diff --git a/gfx/pokemon/charmander/back.2bpp.lz.bcb371c6 b/gfx/pokemon/charmander/back.2bpp.lz.bcb371c6 new file mode 100644 index 000000000..e8eb5eb4e Binary files /dev/null and b/gfx/pokemon/charmander/back.2bpp.lz.bcb371c6 differ diff --git a/gfx/pokemon/charmander/back.png b/gfx/pokemon/charmander/back.png new file mode 100644 index 000000000..b5e6cc5a7 Binary files /dev/null and b/gfx/pokemon/charmander/back.png differ diff --git a/gfx/pokemon/charmander/front.animated.2bpp.lz.704bfc17 b/gfx/pokemon/charmander/front.animated.2bpp.lz.704bfc17 new file mode 100644 index 000000000..7cc31694b Binary files /dev/null and b/gfx/pokemon/charmander/front.animated.2bpp.lz.704bfc17 differ diff --git a/gfx/pokemon/charmander/front.png b/gfx/pokemon/charmander/front.png new file mode 100644 index 000000000..ba365e42a Binary files /dev/null and b/gfx/pokemon/charmander/front.png differ diff --git a/gfx/pokemon/charmander/shiny.pal b/gfx/pokemon/charmander/shiny.pal new file mode 100644 index 000000000..d7a346bd8 --- /dev/null +++ b/gfx/pokemon/charmander/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 24, 06 + RGB 31, 16, 02 + diff --git a/gfx/pokemon/charmeleon/anim0.asm b/gfx/pokemon/charmeleon/anim0.asm new file mode 100644 index 000000000..30eeae979 --- /dev/null +++ b/gfx/pokemon/charmeleon/anim0.asm @@ -0,0 +1,9 @@ + frame 3, 08 + frame 2, 08 + frame 3, 08 + frame 2, 08 + frame 1, 15 + frame 3, 08 + frame 4, 30 + endanim +; 0xd08d4 diff --git a/gfx/pokemon/charmeleon/anim1.asm b/gfx/pokemon/charmeleon/anim1.asm new file mode 100644 index 000000000..d3320e33c --- /dev/null +++ b/gfx/pokemon/charmeleon/anim1.asm @@ -0,0 +1,8 @@ + frame 3, 08 + frame 4, 15 + setrepeat 2 + frame 0, 08 + frame 1, 10 + dorepeat 3 + endanim +; 0xd18cc diff --git a/gfx/pokemon/charmeleon/back.2bpp.lz.cf73268f b/gfx/pokemon/charmeleon/back.2bpp.lz.cf73268f new file mode 100644 index 000000000..aec0cd7b2 Binary files /dev/null and b/gfx/pokemon/charmeleon/back.2bpp.lz.cf73268f differ diff --git a/gfx/pokemon/charmeleon/back.png b/gfx/pokemon/charmeleon/back.png new file mode 100644 index 000000000..60eb4666f Binary files /dev/null and b/gfx/pokemon/charmeleon/back.png differ diff --git a/gfx/pokemon/charmeleon/front.animated.2bpp.lz.0e629968 b/gfx/pokemon/charmeleon/front.animated.2bpp.lz.0e629968 new file mode 100644 index 000000000..efe789dad Binary files /dev/null and b/gfx/pokemon/charmeleon/front.animated.2bpp.lz.0e629968 differ diff --git a/gfx/pokemon/charmeleon/front.png b/gfx/pokemon/charmeleon/front.png new file mode 100644 index 000000000..44558255f Binary files /dev/null and b/gfx/pokemon/charmeleon/front.png differ diff --git a/gfx/pokemon/charmeleon/shiny.pal b/gfx/pokemon/charmeleon/shiny.pal new file mode 100644 index 000000000..7a86d2cb1 --- /dev/null +++ b/gfx/pokemon/charmeleon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 21, 15 + RGB 23, 09, 13 + diff --git a/gfx/pokemon/chikorita/anim0.asm b/gfx/pokemon/chikorita/anim0.asm new file mode 100644 index 000000000..2b8fa7d35 --- /dev/null +++ b/gfx/pokemon/chikorita/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 04 + frame 1, 24 + frame 0, 08 + setrepeat 2 + frame 2, 03 + frame 3, 04 + frame 4, 05 + dorepeat 4 + endanim +; 0xd1165 diff --git a/gfx/pokemon/chikorita/anim1.asm b/gfx/pokemon/chikorita/anim1.asm new file mode 100644 index 000000000..9003c3ff2 --- /dev/null +++ b/gfx/pokemon/chikorita/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 5, 06 + dorepeat 1 + endanim +; 0xd1e9f diff --git a/gfx/pokemon/chikorita/back.2bpp.lz.27a21938 b/gfx/pokemon/chikorita/back.2bpp.lz.27a21938 new file mode 100644 index 000000000..e98365a2b Binary files /dev/null and b/gfx/pokemon/chikorita/back.2bpp.lz.27a21938 differ diff --git a/gfx/pokemon/chikorita/back.png b/gfx/pokemon/chikorita/back.png new file mode 100644 index 000000000..5ce5ae068 Binary files /dev/null and b/gfx/pokemon/chikorita/back.png differ diff --git a/gfx/pokemon/chikorita/front.animated.2bpp.lz.18de5fe9 b/gfx/pokemon/chikorita/front.animated.2bpp.lz.18de5fe9 new file mode 100644 index 000000000..008c4ec2d Binary files /dev/null and b/gfx/pokemon/chikorita/front.animated.2bpp.lz.18de5fe9 differ diff --git a/gfx/pokemon/chikorita/front.png b/gfx/pokemon/chikorita/front.png new file mode 100644 index 000000000..584f05cbc Binary files /dev/null and b/gfx/pokemon/chikorita/front.png differ diff --git a/gfx/pokemon/chikorita/shiny.pal b/gfx/pokemon/chikorita/shiny.pal new file mode 100644 index 000000000..c2ff6a3f8 --- /dev/null +++ b/gfx/pokemon/chikorita/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 23, 12 + RGB 26, 14, 00 + diff --git a/gfx/pokemon/chinchou/anim0.asm b/gfx/pokemon/chinchou/anim0.asm new file mode 100644 index 000000000..f765c151a --- /dev/null +++ b/gfx/pokemon/chinchou/anim0.asm @@ -0,0 +1,11 @@ + setrepeat 2 + frame 2, 05 + frame 1, 05 + dorepeat 1 + setrepeat 7 + frame 3, 02 + frame 0, 01 + dorepeat 5 + frame 3, 10 + endanim +; 0xd1271 diff --git a/gfx/pokemon/chinchou/anim1.asm b/gfx/pokemon/chinchou/anim1.asm new file mode 100644 index 000000000..bf38f8d87 --- /dev/null +++ b/gfx/pokemon/chinchou/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1f4d diff --git a/gfx/pokemon/chinchou/back.2bpp.lz.ea061e91 b/gfx/pokemon/chinchou/back.2bpp.lz.ea061e91 new file mode 100644 index 000000000..744af1ad4 Binary files /dev/null and b/gfx/pokemon/chinchou/back.2bpp.lz.ea061e91 differ diff --git a/gfx/pokemon/chinchou/back.png b/gfx/pokemon/chinchou/back.png new file mode 100644 index 000000000..5de7df3ba Binary files /dev/null and b/gfx/pokemon/chinchou/back.png differ diff --git a/gfx/pokemon/chinchou/front.animated.2bpp.lz.901aa690 b/gfx/pokemon/chinchou/front.animated.2bpp.lz.901aa690 new file mode 100644 index 000000000..b5db65701 Binary files /dev/null and b/gfx/pokemon/chinchou/front.animated.2bpp.lz.901aa690 differ diff --git a/gfx/pokemon/chinchou/front.png b/gfx/pokemon/chinchou/front.png new file mode 100644 index 000000000..4af95c53e Binary files /dev/null and b/gfx/pokemon/chinchou/front.png differ diff --git a/gfx/pokemon/chinchou/shiny.pal b/gfx/pokemon/chinchou/shiny.pal new file mode 100644 index 000000000..334561248 --- /dev/null +++ b/gfx/pokemon/chinchou/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 28, 12 + RGB 12, 14, 20 + diff --git a/gfx/pokemon/clefable/anim0.asm b/gfx/pokemon/clefable/anim0.asm new file mode 100644 index 000000000..d442807e8 --- /dev/null +++ b/gfx/pokemon/clefable/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 04 + frame 1, 10 + frame 2, 10 + frame 1, 10 + endanim +; 0xd0aa7 diff --git a/gfx/pokemon/clefable/anim1.asm b/gfx/pokemon/clefable/anim1.asm new file mode 100644 index 000000000..2b024ffd8 --- /dev/null +++ b/gfx/pokemon/clefable/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 07 + frame 3, 07 + dorepeat 1 + endanim +; 0xd1a29 diff --git a/gfx/pokemon/clefable/back.2bpp.lz.d57ec142 b/gfx/pokemon/clefable/back.2bpp.lz.d57ec142 new file mode 100644 index 000000000..1bcb8cbcd Binary files /dev/null and b/gfx/pokemon/clefable/back.2bpp.lz.d57ec142 differ diff --git a/gfx/pokemon/clefable/back.png b/gfx/pokemon/clefable/back.png new file mode 100644 index 000000000..b049faa13 Binary files /dev/null and b/gfx/pokemon/clefable/back.png differ diff --git a/gfx/pokemon/clefable/front.animated.2bpp.lz.59d160ad b/gfx/pokemon/clefable/front.animated.2bpp.lz.59d160ad new file mode 100644 index 000000000..4fb424305 Binary files /dev/null and b/gfx/pokemon/clefable/front.animated.2bpp.lz.59d160ad differ diff --git a/gfx/pokemon/clefable/front.png b/gfx/pokemon/clefable/front.png new file mode 100644 index 000000000..0b85d5f7d Binary files /dev/null and b/gfx/pokemon/clefable/front.png differ diff --git a/gfx/pokemon/clefable/shiny.pal b/gfx/pokemon/clefable/shiny.pal new file mode 100644 index 000000000..1c0871557 --- /dev/null +++ b/gfx/pokemon/clefable/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 13, 25 + RGB 08, 18, 00 + diff --git a/gfx/pokemon/clefairy/anim0.asm b/gfx/pokemon/clefairy/anim0.asm new file mode 100644 index 000000000..9905c4fcc --- /dev/null +++ b/gfx/pokemon/clefairy/anim0.asm @@ -0,0 +1,9 @@ + frame 2, 06 + frame 1, 06 + frame 2, 06 + setrepeat 3 + frame 0, 05 + frame 3, 05 + dorepeat 4 + endanim +; 0xd0a9e diff --git a/gfx/pokemon/clefairy/anim1.asm b/gfx/pokemon/clefairy/anim1.asm new file mode 100644 index 000000000..c93613467 --- /dev/null +++ b/gfx/pokemon/clefairy/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 4, 12 + frame 5, 12 + dorepeat 1 + frame 0, 05 + frame 3, 05 + endanim +; 0xd1a20 diff --git a/gfx/pokemon/clefairy/back.2bpp.lz.f8aff3dd b/gfx/pokemon/clefairy/back.2bpp.lz.f8aff3dd new file mode 100644 index 000000000..a6a5ecb82 Binary files /dev/null and b/gfx/pokemon/clefairy/back.2bpp.lz.f8aff3dd differ diff --git a/gfx/pokemon/clefairy/back.png b/gfx/pokemon/clefairy/back.png new file mode 100644 index 000000000..76f475ea0 Binary files /dev/null and b/gfx/pokemon/clefairy/back.png differ diff --git a/gfx/pokemon/clefairy/front.animated.2bpp.lz.0918b60d b/gfx/pokemon/clefairy/front.animated.2bpp.lz.0918b60d new file mode 100644 index 000000000..d8adc2e2e Binary files /dev/null and b/gfx/pokemon/clefairy/front.animated.2bpp.lz.0918b60d differ diff --git a/gfx/pokemon/clefairy/front.png b/gfx/pokemon/clefairy/front.png new file mode 100644 index 000000000..70e63d454 Binary files /dev/null and b/gfx/pokemon/clefairy/front.png differ diff --git a/gfx/pokemon/clefairy/shiny.pal b/gfx/pokemon/clefairy/shiny.pal new file mode 100644 index 000000000..1c0871557 --- /dev/null +++ b/gfx/pokemon/clefairy/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 13, 25 + RGB 08, 18, 00 + diff --git a/gfx/pokemon/cleffa/anim0.asm b/gfx/pokemon/cleffa/anim0.asm new file mode 100644 index 000000000..37f3da590 --- /dev/null +++ b/gfx/pokemon/cleffa/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 10 + frame 2, 10 + frame 3, 10 + endanim +; 0xd1290 diff --git a/gfx/pokemon/cleffa/anim1.asm b/gfx/pokemon/cleffa/anim1.asm new file mode 100644 index 000000000..129f123c2 --- /dev/null +++ b/gfx/pokemon/cleffa/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 1, 08 + dorepeat 1 + endanim +; 0xd1f68 diff --git a/gfx/pokemon/cleffa/back.2bpp.lz.ea9b3d08 b/gfx/pokemon/cleffa/back.2bpp.lz.ea9b3d08 new file mode 100644 index 000000000..35ec3369b Binary files /dev/null and b/gfx/pokemon/cleffa/back.2bpp.lz.ea9b3d08 differ diff --git a/gfx/pokemon/cleffa/back.png b/gfx/pokemon/cleffa/back.png new file mode 100644 index 000000000..c888fef10 Binary files /dev/null and b/gfx/pokemon/cleffa/back.png differ diff --git a/gfx/pokemon/cleffa/front.animated.2bpp.lz.49630c80 b/gfx/pokemon/cleffa/front.animated.2bpp.lz.49630c80 new file mode 100644 index 000000000..e8c624069 Binary files /dev/null and b/gfx/pokemon/cleffa/front.animated.2bpp.lz.49630c80 differ diff --git a/gfx/pokemon/cleffa/front.png b/gfx/pokemon/cleffa/front.png new file mode 100644 index 000000000..6c411c3ad Binary files /dev/null and b/gfx/pokemon/cleffa/front.png differ diff --git a/gfx/pokemon/cleffa/shiny.pal b/gfx/pokemon/cleffa/shiny.pal new file mode 100644 index 000000000..1c0871557 --- /dev/null +++ b/gfx/pokemon/cleffa/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 13, 25 + RGB 08, 18, 00 + diff --git a/gfx/pokemon/cloyster/anim0.asm b/gfx/pokemon/cloyster/anim0.asm new file mode 100644 index 000000000..cc338f014 --- /dev/null +++ b/gfx/pokemon/cloyster/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 1, 09 + frame 2, 09 + dorepeat 1 + frame 3, 09 + endanim +; 0xd0dd0 diff --git a/gfx/pokemon/cloyster/anim1.asm b/gfx/pokemon/cloyster/anim1.asm new file mode 100644 index 000000000..e872bbc59 --- /dev/null +++ b/gfx/pokemon/cloyster/anim1.asm @@ -0,0 +1,4 @@ + frame 4, 52 + dorepeat 1 + endanim +; 0xd1c4e diff --git a/gfx/pokemon/cloyster/back.2bpp.lz.5ad194b3 b/gfx/pokemon/cloyster/back.2bpp.lz.5ad194b3 new file mode 100644 index 000000000..655890df8 Binary files /dev/null and b/gfx/pokemon/cloyster/back.2bpp.lz.5ad194b3 differ diff --git a/gfx/pokemon/cloyster/back.png b/gfx/pokemon/cloyster/back.png new file mode 100644 index 000000000..4b4f9294a Binary files /dev/null and b/gfx/pokemon/cloyster/back.png differ diff --git a/gfx/pokemon/cloyster/front.animated.2bpp.lz.fe85709f b/gfx/pokemon/cloyster/front.animated.2bpp.lz.fe85709f new file mode 100644 index 000000000..83991eed6 Binary files /dev/null and b/gfx/pokemon/cloyster/front.animated.2bpp.lz.fe85709f differ diff --git a/gfx/pokemon/cloyster/front.png b/gfx/pokemon/cloyster/front.png new file mode 100644 index 000000000..fc725f85c Binary files /dev/null and b/gfx/pokemon/cloyster/front.png differ diff --git a/gfx/pokemon/cloyster/shiny.pal b/gfx/pokemon/cloyster/shiny.pal new file mode 100644 index 000000000..973ccfb8a --- /dev/null +++ b/gfx/pokemon/cloyster/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 12, 28 + RGB 11, 04, 31 + diff --git a/gfx/pokemon/corsola/anim0.asm b/gfx/pokemon/corsola/anim0.asm new file mode 100644 index 000000000..68182e18e --- /dev/null +++ b/gfx/pokemon/corsola/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 10 + frame 2, 22 + frame 1, 10 + frame 0, 12 + frame 3, 18 + endanim +; 0xd1501 diff --git a/gfx/pokemon/corsola/anim1.asm b/gfx/pokemon/corsola/anim1.asm new file mode 100644 index 000000000..6360176ca --- /dev/null +++ b/gfx/pokemon/corsola/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd210b diff --git a/gfx/pokemon/corsola/back.2bpp.lz.2b6c7860 b/gfx/pokemon/corsola/back.2bpp.lz.2b6c7860 new file mode 100644 index 000000000..6707a3538 Binary files /dev/null and b/gfx/pokemon/corsola/back.2bpp.lz.2b6c7860 differ diff --git a/gfx/pokemon/corsola/back.png b/gfx/pokemon/corsola/back.png new file mode 100644 index 000000000..8550813ab Binary files /dev/null and b/gfx/pokemon/corsola/back.png differ diff --git a/gfx/pokemon/corsola/front.animated.2bpp.lz.2e7905aa b/gfx/pokemon/corsola/front.animated.2bpp.lz.2e7905aa new file mode 100644 index 000000000..afa208922 Binary files /dev/null and b/gfx/pokemon/corsola/front.animated.2bpp.lz.2e7905aa differ diff --git a/gfx/pokemon/corsola/front.png b/gfx/pokemon/corsola/front.png new file mode 100644 index 000000000..210b508e7 Binary files /dev/null and b/gfx/pokemon/corsola/front.png differ diff --git a/gfx/pokemon/corsola/shiny.pal b/gfx/pokemon/corsola/shiny.pal new file mode 100644 index 000000000..8aec60de2 --- /dev/null +++ b/gfx/pokemon/corsola/shiny.pal @@ -0,0 +1,4 @@ + + RGB 13, 25, 28 + RGB 07, 14, 10 + diff --git a/gfx/pokemon/crobat/anim0.asm b/gfx/pokemon/crobat/anim0.asm new file mode 100644 index 000000000..99888ab81 --- /dev/null +++ b/gfx/pokemon/crobat/anim0.asm @@ -0,0 +1,10 @@ + setrepeat 2 + frame 0, 05 + frame 1, 05 + frame 2, 05 + frame 3, 05 + frame 4, 05 + frame 5, 05 + dorepeat 1 + endanim +; 0xd125e diff --git a/gfx/pokemon/crobat/anim1.asm b/gfx/pokemon/crobat/anim1.asm new file mode 100644 index 000000000..ec1dae2ac --- /dev/null +++ b/gfx/pokemon/crobat/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 5 + frame 0, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd1f44 diff --git a/gfx/pokemon/crobat/back.2bpp.lz.30850b2e b/gfx/pokemon/crobat/back.2bpp.lz.30850b2e new file mode 100644 index 000000000..a572d93c5 Binary files /dev/null and b/gfx/pokemon/crobat/back.2bpp.lz.30850b2e differ diff --git a/gfx/pokemon/crobat/back.png b/gfx/pokemon/crobat/back.png new file mode 100644 index 000000000..944c3a872 Binary files /dev/null and b/gfx/pokemon/crobat/back.png differ diff --git a/gfx/pokemon/crobat/front.animated.2bpp.lz.dc386ff0 b/gfx/pokemon/crobat/front.animated.2bpp.lz.dc386ff0 new file mode 100644 index 000000000..1e12aeed2 Binary files /dev/null and b/gfx/pokemon/crobat/front.animated.2bpp.lz.dc386ff0 differ diff --git a/gfx/pokemon/crobat/front.png b/gfx/pokemon/crobat/front.png new file mode 100644 index 000000000..b1e989fac Binary files /dev/null and b/gfx/pokemon/crobat/front.png differ diff --git a/gfx/pokemon/crobat/shiny.pal b/gfx/pokemon/crobat/shiny.pal new file mode 100644 index 000000000..2cb1d6ced --- /dev/null +++ b/gfx/pokemon/crobat/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 12, 19 + RGB 07, 15, 00 + diff --git a/gfx/pokemon/croconaw/anim0.asm b/gfx/pokemon/croconaw/anim0.asm new file mode 100644 index 000000000..c487abfd9 --- /dev/null +++ b/gfx/pokemon/croconaw/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 5 + frame 3, 05 + frame 2, 05 + frame 1, 05 + dorepeat 1 + endanim +; 0xd11d2 diff --git a/gfx/pokemon/croconaw/anim1.asm b/gfx/pokemon/croconaw/anim1.asm new file mode 100644 index 000000000..78bd8518e --- /dev/null +++ b/gfx/pokemon/croconaw/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 4, 10 + dorepeat 1 + endanim +; 0xd1ee0 diff --git a/gfx/pokemon/croconaw/back.2bpp.lz.a605c82f b/gfx/pokemon/croconaw/back.2bpp.lz.a605c82f new file mode 100644 index 000000000..7e573e6a0 Binary files /dev/null and b/gfx/pokemon/croconaw/back.2bpp.lz.a605c82f differ diff --git a/gfx/pokemon/croconaw/back.png b/gfx/pokemon/croconaw/back.png new file mode 100644 index 000000000..1c745387a Binary files /dev/null and b/gfx/pokemon/croconaw/back.png differ diff --git a/gfx/pokemon/croconaw/front.animated.2bpp.lz.a797986d b/gfx/pokemon/croconaw/front.animated.2bpp.lz.a797986d new file mode 100644 index 000000000..9c7f511ba Binary files /dev/null and b/gfx/pokemon/croconaw/front.animated.2bpp.lz.a797986d differ diff --git a/gfx/pokemon/croconaw/front.png b/gfx/pokemon/croconaw/front.png new file mode 100644 index 000000000..8fabda95c Binary files /dev/null and b/gfx/pokemon/croconaw/front.png differ diff --git a/gfx/pokemon/croconaw/shiny.pal b/gfx/pokemon/croconaw/shiny.pal new file mode 100644 index 000000000..efba52bea --- /dev/null +++ b/gfx/pokemon/croconaw/shiny.pal @@ -0,0 +1,4 @@ + + RGB 15, 21, 14 + RGB 13, 09, 23 + diff --git a/gfx/pokemon/cubone/anim0.asm b/gfx/pokemon/cubone/anim0.asm new file mode 100644 index 000000000..2af8c522c --- /dev/null +++ b/gfx/pokemon/cubone/anim0.asm @@ -0,0 +1,12 @@ + frame 0, 04 + frame 5, 19 + frame 1, 08 + frame 2, 06 + frame 6, 03 + frame 3, 02 + frame 4, 40 + frame 3, 02 + frame 6, 02 + frame 1, 08 + endanim +; 0xd0e9f diff --git a/gfx/pokemon/cubone/anim1.asm b/gfx/pokemon/cubone/anim1.asm new file mode 100644 index 000000000..fb3b0b3ba --- /dev/null +++ b/gfx/pokemon/cubone/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 1 + endanim +; 0xd1cc3 diff --git a/gfx/pokemon/cubone/back.2bpp.lz.bd849dfb b/gfx/pokemon/cubone/back.2bpp.lz.bd849dfb new file mode 100644 index 000000000..fc9931417 Binary files /dev/null and b/gfx/pokemon/cubone/back.2bpp.lz.bd849dfb differ diff --git a/gfx/pokemon/cubone/back.png b/gfx/pokemon/cubone/back.png new file mode 100644 index 000000000..d4069071b Binary files /dev/null and b/gfx/pokemon/cubone/back.png differ diff --git a/gfx/pokemon/cubone/front.animated.2bpp.lz.0d63a3a4 b/gfx/pokemon/cubone/front.animated.2bpp.lz.0d63a3a4 new file mode 100644 index 000000000..9de9f7732 Binary files /dev/null and b/gfx/pokemon/cubone/front.animated.2bpp.lz.0d63a3a4 differ diff --git a/gfx/pokemon/cubone/front.png b/gfx/pokemon/cubone/front.png new file mode 100644 index 000000000..de641c36d Binary files /dev/null and b/gfx/pokemon/cubone/front.png differ diff --git a/gfx/pokemon/cubone/shiny.pal b/gfx/pokemon/cubone/shiny.pal new file mode 100644 index 000000000..e27abe43a --- /dev/null +++ b/gfx/pokemon/cubone/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 22, 23 + RGB 11, 15, 09 + diff --git a/gfx/pokemon/cyndaquil/anim0.asm b/gfx/pokemon/cyndaquil/anim0.asm new file mode 100644 index 000000000..b069cc300 --- /dev/null +++ b/gfx/pokemon/cyndaquil/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 04 + frame 4, 04 + frame 1, 04 + setrepeat 4 + frame 4, 03 + frame 1, 03 + dorepeat 4 + frame 2, 03 + frame 3, 09 + frame 1, 03 + endanim +; 0xd1194 diff --git a/gfx/pokemon/cyndaquil/anim1.asm b/gfx/pokemon/cyndaquil/anim1.asm new file mode 100644 index 000000000..43c4d495a --- /dev/null +++ b/gfx/pokemon/cyndaquil/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 4, 10 + dorepeat 1 + endanim +; 0xd1eba diff --git a/gfx/pokemon/cyndaquil/back.2bpp.lz.68baeeeb b/gfx/pokemon/cyndaquil/back.2bpp.lz.68baeeeb new file mode 100644 index 000000000..226c41e49 Binary files /dev/null and b/gfx/pokemon/cyndaquil/back.2bpp.lz.68baeeeb differ diff --git a/gfx/pokemon/cyndaquil/back.png b/gfx/pokemon/cyndaquil/back.png new file mode 100644 index 000000000..4e0664be0 Binary files /dev/null and b/gfx/pokemon/cyndaquil/back.png differ diff --git a/gfx/pokemon/cyndaquil/front.animated.2bpp.lz.0d5dce8d b/gfx/pokemon/cyndaquil/front.animated.2bpp.lz.0d5dce8d new file mode 100644 index 000000000..3e2886783 Binary files /dev/null and b/gfx/pokemon/cyndaquil/front.animated.2bpp.lz.0d5dce8d differ diff --git a/gfx/pokemon/cyndaquil/front.png b/gfx/pokemon/cyndaquil/front.png new file mode 100644 index 000000000..4edae6bc6 Binary files /dev/null and b/gfx/pokemon/cyndaquil/front.png differ diff --git a/gfx/pokemon/cyndaquil/shiny.pal b/gfx/pokemon/cyndaquil/shiny.pal new file mode 100644 index 000000000..5b3df0b4e --- /dev/null +++ b/gfx/pokemon/cyndaquil/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 23, 09 + RGB 22, 00, 19 + diff --git a/gfx/pokemon/delibird/anim0.asm b/gfx/pokemon/delibird/anim0.asm new file mode 100644 index 000000000..3431ad1ae --- /dev/null +++ b/gfx/pokemon/delibird/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 02 + frame 2, 10 + setrepeat 2 + frame 3, 09 + frame 2, 09 + dorepeat 3 + frame 2, 13 + frame 1, 02 + frame 0, 05 + frame 6, 05 + endanim +; 0xd152a diff --git a/gfx/pokemon/delibird/anim1.asm b/gfx/pokemon/delibird/anim1.asm new file mode 100644 index 000000000..8a416cc61 --- /dev/null +++ b/gfx/pokemon/delibird/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 4 + frame 4, 06 + frame 5, 06 + dorepeat 1 + endanim +; 0xd2126 diff --git a/gfx/pokemon/delibird/back.2bpp.lz.11463d76 b/gfx/pokemon/delibird/back.2bpp.lz.11463d76 new file mode 100644 index 000000000..22f41237c Binary files /dev/null and b/gfx/pokemon/delibird/back.2bpp.lz.11463d76 differ diff --git a/gfx/pokemon/delibird/back.png b/gfx/pokemon/delibird/back.png new file mode 100644 index 000000000..367d6055a Binary files /dev/null and b/gfx/pokemon/delibird/back.png differ diff --git a/gfx/pokemon/delibird/front.animated.2bpp.lz.a3126c48 b/gfx/pokemon/delibird/front.animated.2bpp.lz.a3126c48 new file mode 100644 index 000000000..819e46af0 Binary files /dev/null and b/gfx/pokemon/delibird/front.animated.2bpp.lz.a3126c48 differ diff --git a/gfx/pokemon/delibird/front.png b/gfx/pokemon/delibird/front.png new file mode 100644 index 000000000..591271b3a Binary files /dev/null and b/gfx/pokemon/delibird/front.png differ diff --git a/gfx/pokemon/delibird/shiny.pal b/gfx/pokemon/delibird/shiny.pal new file mode 100644 index 000000000..4c4ee713f --- /dev/null +++ b/gfx/pokemon/delibird/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 26, 00 + RGB 26, 01, 26 + diff --git a/gfx/pokemon/dewgong/anim0.asm b/gfx/pokemon/dewgong/anim0.asm new file mode 100644 index 000000000..b7c3efecf --- /dev/null +++ b/gfx/pokemon/dewgong/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 09 + frame 2, 09 + frame 3, 09 + frame 4, 09 + frame 5, 14 + endanim +; 0xd0daa diff --git a/gfx/pokemon/dewgong/anim1.asm b/gfx/pokemon/dewgong/anim1.asm new file mode 100644 index 000000000..0357ce660 --- /dev/null +++ b/gfx/pokemon/dewgong/anim1.asm @@ -0,0 +1,9 @@ + setrepeat 2 + frame 0, 06 + frame 6, 06 + frame 7, 06 + frame 8, 06 + frame 9, 06 + dorepeat 1 + endanim +; 0xd1c2a diff --git a/gfx/pokemon/dewgong/back.2bpp.lz.4e1fef76 b/gfx/pokemon/dewgong/back.2bpp.lz.4e1fef76 new file mode 100644 index 000000000..bc6842e86 Binary files /dev/null and b/gfx/pokemon/dewgong/back.2bpp.lz.4e1fef76 differ diff --git a/gfx/pokemon/dewgong/back.png b/gfx/pokemon/dewgong/back.png new file mode 100644 index 000000000..9544f9c25 Binary files /dev/null and b/gfx/pokemon/dewgong/back.png differ diff --git a/gfx/pokemon/dewgong/front.animated.2bpp.lz.cc53359c b/gfx/pokemon/dewgong/front.animated.2bpp.lz.cc53359c new file mode 100644 index 000000000..cbb0ace94 Binary files /dev/null and b/gfx/pokemon/dewgong/front.animated.2bpp.lz.cc53359c differ diff --git a/gfx/pokemon/dewgong/front.png b/gfx/pokemon/dewgong/front.png new file mode 100644 index 000000000..b73d51c07 Binary files /dev/null and b/gfx/pokemon/dewgong/front.png differ diff --git a/gfx/pokemon/dewgong/shiny.pal b/gfx/pokemon/dewgong/shiny.pal new file mode 100644 index 000000000..b9da48134 --- /dev/null +++ b/gfx/pokemon/dewgong/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 19, 20 + RGB 18, 11, 14 + diff --git a/gfx/pokemon/diglett/anim0.asm b/gfx/pokemon/diglett/anim0.asm new file mode 100644 index 000000000..a4d79bd56 --- /dev/null +++ b/gfx/pokemon/diglett/anim0.asm @@ -0,0 +1,7 @@ + frame 3, 04 + setrepeat 2 + frame 2, 08 + frame 1, 09 + dorepeat 2 + endanim +; 0xd0b97 diff --git a/gfx/pokemon/diglett/anim1.asm b/gfx/pokemon/diglett/anim1.asm new file mode 100644 index 000000000..bd2a27e03 --- /dev/null +++ b/gfx/pokemon/diglett/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 08 + dorepeat 1 + endanim +; 0xd1aad diff --git a/gfx/pokemon/diglett/back.2bpp.lz.31d8cacc b/gfx/pokemon/diglett/back.2bpp.lz.31d8cacc new file mode 100644 index 000000000..05625954c Binary files /dev/null and b/gfx/pokemon/diglett/back.2bpp.lz.31d8cacc differ diff --git a/gfx/pokemon/diglett/back.png b/gfx/pokemon/diglett/back.png new file mode 100644 index 000000000..cde3b07f9 Binary files /dev/null and b/gfx/pokemon/diglett/back.png differ diff --git a/gfx/pokemon/diglett/front.animated.2bpp.lz.52b0361e b/gfx/pokemon/diglett/front.animated.2bpp.lz.52b0361e new file mode 100644 index 000000000..5ed5e87ff Binary files /dev/null and b/gfx/pokemon/diglett/front.animated.2bpp.lz.52b0361e differ diff --git a/gfx/pokemon/diglett/front.png b/gfx/pokemon/diglett/front.png new file mode 100644 index 000000000..49adc371a Binary files /dev/null and b/gfx/pokemon/diglett/front.png differ diff --git a/gfx/pokemon/diglett/shiny.pal b/gfx/pokemon/diglett/shiny.pal new file mode 100644 index 000000000..ce41b3928 --- /dev/null +++ b/gfx/pokemon/diglett/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 11, 04 + RGB 12, 06, 27 + diff --git a/gfx/pokemon/ditto/anim0.asm b/gfx/pokemon/ditto/anim0.asm new file mode 100644 index 000000000..53f3f9afa --- /dev/null +++ b/gfx/pokemon/ditto/anim0.asm @@ -0,0 +1,11 @@ + frame 5, 08 + frame 1, 08 + frame 2, 08 + frame 3, 06 + frame 2, 06 + frame 0, 12 + frame 6, 12 + frame 7, 12 + frame 8, 12 + endanim +; 0xd1029 diff --git a/gfx/pokemon/ditto/anim1.asm b/gfx/pokemon/ditto/anim1.asm new file mode 100644 index 000000000..195808be1 --- /dev/null +++ b/gfx/pokemon/ditto/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd1dc9 diff --git a/gfx/pokemon/ditto/back.2bpp.lz.b01a9d91 b/gfx/pokemon/ditto/back.2bpp.lz.b01a9d91 new file mode 100644 index 000000000..ee2a621bf Binary files /dev/null and b/gfx/pokemon/ditto/back.2bpp.lz.b01a9d91 differ diff --git a/gfx/pokemon/ditto/back.png b/gfx/pokemon/ditto/back.png new file mode 100644 index 000000000..bf1f4cb1a Binary files /dev/null and b/gfx/pokemon/ditto/back.png differ diff --git a/gfx/pokemon/ditto/front.animated.2bpp.lz.344c90fd b/gfx/pokemon/ditto/front.animated.2bpp.lz.344c90fd new file mode 100644 index 000000000..ef64bd777 Binary files /dev/null and b/gfx/pokemon/ditto/front.animated.2bpp.lz.344c90fd differ diff --git a/gfx/pokemon/ditto/front.png b/gfx/pokemon/ditto/front.png new file mode 100644 index 000000000..9979863f6 Binary files /dev/null and b/gfx/pokemon/ditto/front.png differ diff --git a/gfx/pokemon/ditto/shiny.pal b/gfx/pokemon/ditto/shiny.pal new file mode 100644 index 000000000..bcc063864 --- /dev/null +++ b/gfx/pokemon/ditto/shiny.pal @@ -0,0 +1,4 @@ + + RGB 17, 22, 28 + RGB 09, 12, 27 + diff --git a/gfx/pokemon/dodrio/anim0.asm b/gfx/pokemon/dodrio/anim0.asm new file mode 100644 index 000000000..539f896d7 --- /dev/null +++ b/gfx/pokemon/dodrio/anim0.asm @@ -0,0 +1,6 @@ + frame 1, 10 + frame 2, 10 + frame 4, 10 + frame 1, 09 + endanim +; 0xd0d92 diff --git a/gfx/pokemon/dodrio/anim1.asm b/gfx/pokemon/dodrio/anim1.asm new file mode 100644 index 000000000..a921058f3 --- /dev/null +++ b/gfx/pokemon/dodrio/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 3, 10 + frame 0, 08 + dorepeat 1 + endanim +; 0xd1c10 diff --git a/gfx/pokemon/dodrio/back.2bpp.lz.a5480e88 b/gfx/pokemon/dodrio/back.2bpp.lz.a5480e88 new file mode 100644 index 000000000..3b1d80db5 Binary files /dev/null and b/gfx/pokemon/dodrio/back.2bpp.lz.a5480e88 differ diff --git a/gfx/pokemon/dodrio/back.png b/gfx/pokemon/dodrio/back.png new file mode 100644 index 000000000..abc232883 Binary files /dev/null and b/gfx/pokemon/dodrio/back.png differ diff --git a/gfx/pokemon/dodrio/front.animated.2bpp.lz.2aaff569 b/gfx/pokemon/dodrio/front.animated.2bpp.lz.2aaff569 new file mode 100644 index 000000000..8de65b2de Binary files /dev/null and b/gfx/pokemon/dodrio/front.animated.2bpp.lz.2aaff569 differ diff --git a/gfx/pokemon/dodrio/front.png b/gfx/pokemon/dodrio/front.png new file mode 100644 index 000000000..ddd441ba1 Binary files /dev/null and b/gfx/pokemon/dodrio/front.png differ diff --git a/gfx/pokemon/dodrio/shiny.pal b/gfx/pokemon/dodrio/shiny.pal new file mode 100644 index 000000000..521bc017b --- /dev/null +++ b/gfx/pokemon/dodrio/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 24, 01 + RGB 18, 16, 00 + diff --git a/gfx/pokemon/doduo/anim0.asm b/gfx/pokemon/doduo/anim0.asm new file mode 100644 index 000000000..cd38ca192 --- /dev/null +++ b/gfx/pokemon/doduo/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 12 + frame 2, 32 + frame 1, 24 + setrepeat 2 + frame 3, 08 + frame 1, 08 + dorepeat 4 + endanim +; 0xd0d89 diff --git a/gfx/pokemon/doduo/anim1.asm b/gfx/pokemon/doduo/anim1.asm new file mode 100644 index 000000000..89715cae8 --- /dev/null +++ b/gfx/pokemon/doduo/anim1.asm @@ -0,0 +1,8 @@ + frame 1, 12 + setrepeat 2 + frame 3, 06 + frame 1, 06 + dorepeat 2 + frame 1, 30 + endanim +; 0xd1c07 diff --git a/gfx/pokemon/doduo/back.2bpp.lz.05a57563 b/gfx/pokemon/doduo/back.2bpp.lz.05a57563 new file mode 100644 index 000000000..8f204150b Binary files /dev/null and b/gfx/pokemon/doduo/back.2bpp.lz.05a57563 differ diff --git a/gfx/pokemon/doduo/back.png b/gfx/pokemon/doduo/back.png new file mode 100644 index 000000000..8440b7af7 Binary files /dev/null and b/gfx/pokemon/doduo/back.png differ diff --git a/gfx/pokemon/doduo/front.animated.2bpp.lz.89c4acbd b/gfx/pokemon/doduo/front.animated.2bpp.lz.89c4acbd new file mode 100644 index 000000000..11d525427 Binary files /dev/null and b/gfx/pokemon/doduo/front.animated.2bpp.lz.89c4acbd differ diff --git a/gfx/pokemon/doduo/front.png b/gfx/pokemon/doduo/front.png new file mode 100644 index 000000000..8c90b36f7 Binary files /dev/null and b/gfx/pokemon/doduo/front.png differ diff --git a/gfx/pokemon/doduo/shiny.pal b/gfx/pokemon/doduo/shiny.pal new file mode 100644 index 000000000..f8093f636 --- /dev/null +++ b/gfx/pokemon/doduo/shiny.pal @@ -0,0 +1,4 @@ + + RGB 28, 23, 00 + RGB 18, 16, 00 + diff --git a/gfx/pokemon/donphan/anim0.asm b/gfx/pokemon/donphan/anim0.asm new file mode 100644 index 000000000..fbfbd8d17 --- /dev/null +++ b/gfx/pokemon/donphan/anim0.asm @@ -0,0 +1,6 @@ + frame 2, 08 + frame 1, 24 + frame 3, 10 + frame 4, 06 + endanim +; 0xd1587 diff --git a/gfx/pokemon/donphan/anim1.asm b/gfx/pokemon/donphan/anim1.asm new file mode 100644 index 000000000..341013ce9 --- /dev/null +++ b/gfx/pokemon/donphan/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 1 + endanim +; 0xd2169 diff --git a/gfx/pokemon/donphan/back.2bpp.lz.5067b370 b/gfx/pokemon/donphan/back.2bpp.lz.5067b370 new file mode 100644 index 000000000..4914f03aa Binary files /dev/null and b/gfx/pokemon/donphan/back.2bpp.lz.5067b370 differ diff --git a/gfx/pokemon/donphan/back.png b/gfx/pokemon/donphan/back.png new file mode 100644 index 000000000..a156f85bf Binary files /dev/null and b/gfx/pokemon/donphan/back.png differ diff --git a/gfx/pokemon/donphan/front.animated.2bpp.lz.9e1b7048 b/gfx/pokemon/donphan/front.animated.2bpp.lz.9e1b7048 new file mode 100644 index 000000000..b46d083fc Binary files /dev/null and b/gfx/pokemon/donphan/front.animated.2bpp.lz.9e1b7048 differ diff --git a/gfx/pokemon/donphan/front.png b/gfx/pokemon/donphan/front.png new file mode 100644 index 000000000..9dc93c065 Binary files /dev/null and b/gfx/pokemon/donphan/front.png differ diff --git a/gfx/pokemon/donphan/shiny.pal b/gfx/pokemon/donphan/shiny.pal new file mode 100644 index 000000000..d705694c2 --- /dev/null +++ b/gfx/pokemon/donphan/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 21, 20 + RGB 20, 10, 07 + diff --git a/gfx/pokemon/dragonair/anim0.asm b/gfx/pokemon/dragonair/anim0.asm new file mode 100644 index 000000000..b7a2be64d --- /dev/null +++ b/gfx/pokemon/dragonair/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 1, 08 + frame 2, 08 + frame 3, 08 + frame 2, 08 + dorepeat 1 + endanim +; 0xd10fd diff --git a/gfx/pokemon/dragonair/anim1.asm b/gfx/pokemon/dragonair/anim1.asm new file mode 100644 index 000000000..afea7ab43 --- /dev/null +++ b/gfx/pokemon/dragonair/anim1.asm @@ -0,0 +1,10 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + frame 0, 06 + frame 5, 06 + frame 6, 06 + frame 5, 06 + endanim +; 0xd1e71 diff --git a/gfx/pokemon/dragonair/back.2bpp.lz.9b6fda5b b/gfx/pokemon/dragonair/back.2bpp.lz.9b6fda5b new file mode 100644 index 000000000..52094c394 Binary files /dev/null and b/gfx/pokemon/dragonair/back.2bpp.lz.9b6fda5b differ diff --git a/gfx/pokemon/dragonair/back.png b/gfx/pokemon/dragonair/back.png new file mode 100644 index 000000000..99c03894a Binary files /dev/null and b/gfx/pokemon/dragonair/back.png differ diff --git a/gfx/pokemon/dragonair/front.animated.2bpp.lz.bb9ee373 b/gfx/pokemon/dragonair/front.animated.2bpp.lz.bb9ee373 new file mode 100644 index 000000000..aad34536f Binary files /dev/null and b/gfx/pokemon/dragonair/front.animated.2bpp.lz.bb9ee373 differ diff --git a/gfx/pokemon/dragonair/front.png b/gfx/pokemon/dragonair/front.png new file mode 100644 index 000000000..19feeeec1 Binary files /dev/null and b/gfx/pokemon/dragonair/front.png differ diff --git a/gfx/pokemon/dragonair/shiny.pal b/gfx/pokemon/dragonair/shiny.pal new file mode 100644 index 000000000..744429411 --- /dev/null +++ b/gfx/pokemon/dragonair/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 19, 31 + RGB 20, 15, 31 + diff --git a/gfx/pokemon/dragonite/anim0.asm b/gfx/pokemon/dragonite/anim0.asm new file mode 100644 index 000000000..9dd6bf84a --- /dev/null +++ b/gfx/pokemon/dragonite/anim0.asm @@ -0,0 +1,13 @@ + frame 1, 12 + frame 2, 12 + setrepeat 2 + frame 3, 12 + frame 4, 12 + dorepeat 3 + frame 1, 12 + setrepeat 3 + frame 0, 12 + frame 1, 12 + dorepeat 8 + endanim +; 0xd1114 diff --git a/gfx/pokemon/dragonite/anim1.asm b/gfx/pokemon/dragonite/anim1.asm new file mode 100644 index 000000000..fe0d7edbb --- /dev/null +++ b/gfx/pokemon/dragonite/anim1.asm @@ -0,0 +1,8 @@ + frame 0, 20 + frame 1, 20 + setrepeat 2 + frame 0, 05 + frame 5, 05 + dorepeat 3 + endanim +; 0xd1e7e diff --git a/gfx/pokemon/dragonite/back.2bpp.lz.c408806f b/gfx/pokemon/dragonite/back.2bpp.lz.c408806f new file mode 100644 index 000000000..09a828dd0 Binary files /dev/null and b/gfx/pokemon/dragonite/back.2bpp.lz.c408806f differ diff --git a/gfx/pokemon/dragonite/back.png b/gfx/pokemon/dragonite/back.png new file mode 100644 index 000000000..29ef7abea Binary files /dev/null and b/gfx/pokemon/dragonite/back.png differ diff --git a/gfx/pokemon/dragonite/front.animated.2bpp.lz.b914dfd9 b/gfx/pokemon/dragonite/front.animated.2bpp.lz.b914dfd9 new file mode 100644 index 000000000..730c16739 Binary files /dev/null and b/gfx/pokemon/dragonite/front.animated.2bpp.lz.b914dfd9 differ diff --git a/gfx/pokemon/dragonite/front.png b/gfx/pokemon/dragonite/front.png new file mode 100644 index 000000000..5675a1441 Binary files /dev/null and b/gfx/pokemon/dragonite/front.png differ diff --git a/gfx/pokemon/dragonite/shiny.pal b/gfx/pokemon/dragonite/shiny.pal new file mode 100644 index 000000000..f12fb4a7b --- /dev/null +++ b/gfx/pokemon/dragonite/shiny.pal @@ -0,0 +1,4 @@ + + RGB 17, 19, 14 + RGB 19, 00, 14 + diff --git a/gfx/pokemon/dratini/anim0.asm b/gfx/pokemon/dratini/anim0.asm new file mode 100644 index 000000000..f844a2eec --- /dev/null +++ b/gfx/pokemon/dratini/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 07 + frame 1, 07 + dorepeat 1 + frame 2, 09 + frame 3, 09 + endanim +; 0xd10f0 diff --git a/gfx/pokemon/dratini/anim1.asm b/gfx/pokemon/dratini/anim1.asm new file mode 100644 index 000000000..441340446 --- /dev/null +++ b/gfx/pokemon/dratini/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd1e60 diff --git a/gfx/pokemon/dratini/back.2bpp.lz.be4d6a2a b/gfx/pokemon/dratini/back.2bpp.lz.be4d6a2a new file mode 100644 index 000000000..b40ffcaaf Binary files /dev/null and b/gfx/pokemon/dratini/back.2bpp.lz.be4d6a2a differ diff --git a/gfx/pokemon/dratini/back.png b/gfx/pokemon/dratini/back.png new file mode 100644 index 000000000..352e436de Binary files /dev/null and b/gfx/pokemon/dratini/back.png differ diff --git a/gfx/pokemon/dratini/front.animated.2bpp.lz.838e4248 b/gfx/pokemon/dratini/front.animated.2bpp.lz.838e4248 new file mode 100644 index 000000000..b933491b7 Binary files /dev/null and b/gfx/pokemon/dratini/front.animated.2bpp.lz.838e4248 differ diff --git a/gfx/pokemon/dratini/front.png b/gfx/pokemon/dratini/front.png new file mode 100644 index 000000000..9f49eb8f0 Binary files /dev/null and b/gfx/pokemon/dratini/front.png differ diff --git a/gfx/pokemon/dratini/shiny.pal b/gfx/pokemon/dratini/shiny.pal new file mode 100644 index 000000000..e7c9b58a1 --- /dev/null +++ b/gfx/pokemon/dratini/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 19, 24 + RGB 14, 11, 24 + diff --git a/gfx/pokemon/drowzee/anim0.asm b/gfx/pokemon/drowzee/anim0.asm new file mode 100644 index 000000000..badc99074 --- /dev/null +++ b/gfx/pokemon/drowzee/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 08 + frame 2, 08 + frame 3, 08 + frame 4, 08 + frame 0, 05 + frame 1, 05 + frame 2, 05 + frame 3, 05 + frame 4, 05 + endanim +; 0xd0e1b diff --git a/gfx/pokemon/drowzee/anim1.asm b/gfx/pokemon/drowzee/anim1.asm new file mode 100644 index 000000000..247ecb8fe --- /dev/null +++ b/gfx/pokemon/drowzee/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 06 + frame 5, 06 + dorepeat 1 + frame 0, 08 + frame 5, 08 + endanim +; 0xd1c81 diff --git a/gfx/pokemon/drowzee/back.2bpp.lz.55367f5a b/gfx/pokemon/drowzee/back.2bpp.lz.55367f5a new file mode 100644 index 000000000..a4218ade7 Binary files /dev/null and b/gfx/pokemon/drowzee/back.2bpp.lz.55367f5a differ diff --git a/gfx/pokemon/drowzee/back.png b/gfx/pokemon/drowzee/back.png new file mode 100644 index 000000000..8186a9529 Binary files /dev/null and b/gfx/pokemon/drowzee/back.png differ diff --git a/gfx/pokemon/drowzee/front.animated.2bpp.lz.1f23711a b/gfx/pokemon/drowzee/front.animated.2bpp.lz.1f23711a new file mode 100644 index 000000000..cf3f87571 Binary files /dev/null and b/gfx/pokemon/drowzee/front.animated.2bpp.lz.1f23711a differ diff --git a/gfx/pokemon/drowzee/front.png b/gfx/pokemon/drowzee/front.png new file mode 100644 index 000000000..2b3a43d26 Binary files /dev/null and b/gfx/pokemon/drowzee/front.png differ diff --git a/gfx/pokemon/drowzee/shiny.pal b/gfx/pokemon/drowzee/shiny.pal new file mode 100644 index 000000000..2b0946ece --- /dev/null +++ b/gfx/pokemon/drowzee/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 13, 27 + RGB 18, 00, 10 + diff --git a/gfx/pokemon/dugtrio/anim0.asm b/gfx/pokemon/dugtrio/anim0.asm new file mode 100644 index 000000000..7b5038620 --- /dev/null +++ b/gfx/pokemon/dugtrio/anim0.asm @@ -0,0 +1,16 @@ + frame 1, 08 + frame 2, 08 + frame 3, 12 + frame 4, 06 + frame 3, 05 + frame 5, 06 + frame 3, 05 + setrepeat 4 + frame 3, 05 + frame 6, 05 + dorepeat 8 + frame 6, 15 + frame 2, 06 + frame 1, 06 + endanim +; 0xd0bb4 diff --git a/gfx/pokemon/dugtrio/anim1.asm b/gfx/pokemon/dugtrio/anim1.asm new file mode 100644 index 000000000..1b32b854c --- /dev/null +++ b/gfx/pokemon/dugtrio/anim1.asm @@ -0,0 +1,10 @@ + frame 0, 20 + frame 3, 10 + frame 7, 16 + setrepeat 2 + frame 6, 04 + frame 7, 04 + dorepeat 4 + frame 6, 20 + endanim +; 0xd1abe diff --git a/gfx/pokemon/dugtrio/back.2bpp.lz.e821a89c b/gfx/pokemon/dugtrio/back.2bpp.lz.e821a89c new file mode 100644 index 000000000..05ad7b1ad Binary files /dev/null and b/gfx/pokemon/dugtrio/back.2bpp.lz.e821a89c differ diff --git a/gfx/pokemon/dugtrio/back.png b/gfx/pokemon/dugtrio/back.png new file mode 100644 index 000000000..c1bca81bd Binary files /dev/null and b/gfx/pokemon/dugtrio/back.png differ diff --git a/gfx/pokemon/dugtrio/front.animated.2bpp.lz.5c9e668c b/gfx/pokemon/dugtrio/front.animated.2bpp.lz.5c9e668c new file mode 100644 index 000000000..7ef2606cd Binary files /dev/null and b/gfx/pokemon/dugtrio/front.animated.2bpp.lz.5c9e668c differ diff --git a/gfx/pokemon/dugtrio/front.png b/gfx/pokemon/dugtrio/front.png new file mode 100644 index 000000000..9fe5e14a7 Binary files /dev/null and b/gfx/pokemon/dugtrio/front.png differ diff --git a/gfx/pokemon/dugtrio/shiny.pal b/gfx/pokemon/dugtrio/shiny.pal new file mode 100644 index 000000000..ce41b3928 --- /dev/null +++ b/gfx/pokemon/dugtrio/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 11, 04 + RGB 12, 06, 27 + diff --git a/gfx/pokemon/dunsparce/anim0.asm b/gfx/pokemon/dunsparce/anim0.asm new file mode 100644 index 000000000..b4217afbd --- /dev/null +++ b/gfx/pokemon/dunsparce/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 12 + setrepeat 5 + frame 2, 03 + frame 3, 03 + dorepeat 2 + frame 4, 12 + endanim +; 0xd1441 diff --git a/gfx/pokemon/dunsparce/anim1.asm b/gfx/pokemon/dunsparce/anim1.asm new file mode 100644 index 000000000..f5d6d9b05 --- /dev/null +++ b/gfx/pokemon/dunsparce/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 1 + endanim +; 0xd2089 diff --git a/gfx/pokemon/dunsparce/back.2bpp.lz.aee69114 b/gfx/pokemon/dunsparce/back.2bpp.lz.aee69114 new file mode 100644 index 000000000..1042b07f8 Binary files /dev/null and b/gfx/pokemon/dunsparce/back.2bpp.lz.aee69114 differ diff --git a/gfx/pokemon/dunsparce/back.png b/gfx/pokemon/dunsparce/back.png new file mode 100644 index 000000000..d3fc9cc85 Binary files /dev/null and b/gfx/pokemon/dunsparce/back.png differ diff --git a/gfx/pokemon/dunsparce/front.animated.2bpp.lz.04ea863c b/gfx/pokemon/dunsparce/front.animated.2bpp.lz.04ea863c new file mode 100644 index 000000000..31e9aa319 Binary files /dev/null and b/gfx/pokemon/dunsparce/front.animated.2bpp.lz.04ea863c differ diff --git a/gfx/pokemon/dunsparce/front.png b/gfx/pokemon/dunsparce/front.png new file mode 100644 index 000000000..a2fbc6f18 Binary files /dev/null and b/gfx/pokemon/dunsparce/front.png differ diff --git a/gfx/pokemon/dunsparce/shiny.pal b/gfx/pokemon/dunsparce/shiny.pal new file mode 100644 index 000000000..a86589ee4 --- /dev/null +++ b/gfx/pokemon/dunsparce/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 24, 06 + RGB 31, 05, 21 + diff --git a/gfx/pokemon/eevee/anim0.asm b/gfx/pokemon/eevee/anim0.asm new file mode 100644 index 000000000..537cefb83 --- /dev/null +++ b/gfx/pokemon/eevee/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 06 + frame 2, 06 + setrepeat 2 + frame 3, 07 + frame 4, 07 + dorepeat 3 + frame 2, 10 + endanim +; 0xd1038 diff --git a/gfx/pokemon/eevee/anim1.asm b/gfx/pokemon/eevee/anim1.asm new file mode 100644 index 000000000..0f50b3cb8 --- /dev/null +++ b/gfx/pokemon/eevee/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 3 + frame 0, 05 + frame 5, 05 + dorepeat 1 + frame 0, 09 + frame 5, 13 + endanim +; 0xd1dd6 diff --git a/gfx/pokemon/eevee/back.2bpp.lz.bc34ce62 b/gfx/pokemon/eevee/back.2bpp.lz.bc34ce62 new file mode 100644 index 000000000..ddd051f3a Binary files /dev/null and b/gfx/pokemon/eevee/back.2bpp.lz.bc34ce62 differ diff --git a/gfx/pokemon/eevee/back.png b/gfx/pokemon/eevee/back.png new file mode 100644 index 000000000..7dbca2487 Binary files /dev/null and b/gfx/pokemon/eevee/back.png differ diff --git a/gfx/pokemon/eevee/front.animated.2bpp.lz.04e72b48 b/gfx/pokemon/eevee/front.animated.2bpp.lz.04e72b48 new file mode 100644 index 000000000..aea8d545e Binary files /dev/null and b/gfx/pokemon/eevee/front.animated.2bpp.lz.04e72b48 differ diff --git a/gfx/pokemon/eevee/front.png b/gfx/pokemon/eevee/front.png new file mode 100644 index 000000000..b35e901c8 Binary files /dev/null and b/gfx/pokemon/eevee/front.png differ diff --git a/gfx/pokemon/eevee/shiny.pal b/gfx/pokemon/eevee/shiny.pal new file mode 100644 index 000000000..69759609c --- /dev/null +++ b/gfx/pokemon/eevee/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 19, 21 + RGB 12, 14, 13 + diff --git a/gfx/pokemon/egg/anim0.asm b/gfx/pokemon/egg/anim0.asm new file mode 100644 index 000000000..1ded66327 --- /dev/null +++ b/gfx/pokemon/egg/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 1, 04 + frame 0, 04 + frame 2, 04 + frame 0, 04 + dorepeat 1 + endanim +; 0xd16a3 diff --git a/gfx/pokemon/egg/anim1.asm b/gfx/pokemon/egg/anim1.asm new file mode 100644 index 000000000..634736c6b --- /dev/null +++ b/gfx/pokemon/egg/anim1.asm @@ -0,0 +1,5 @@ + frame 1, 03 + frame 0, 03 + frame 2, 03 + endanim +; 0xd2229 diff --git a/gfx/pokemon/egg/front.animated.2bpp.lz.7b468eff b/gfx/pokemon/egg/front.animated.2bpp.lz.7b468eff new file mode 100644 index 000000000..47d8b997e Binary files /dev/null and b/gfx/pokemon/egg/front.animated.2bpp.lz.7b468eff differ diff --git a/gfx/pokemon/egg/front.png b/gfx/pokemon/egg/front.png new file mode 100644 index 000000000..be8e9d4a4 Binary files /dev/null and b/gfx/pokemon/egg/front.png differ diff --git a/gfx/pokemon/ekans/anim0.asm b/gfx/pokemon/ekans/anim0.asm new file mode 100644 index 000000000..9728434c0 --- /dev/null +++ b/gfx/pokemon/ekans/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 08 + frame 0, 05 + setrepeat 7 + frame 2, 03 + frame 3, 03 + dorepeat 3 + frame 2, 20 + endanim +; 0xd09d2 diff --git a/gfx/pokemon/ekans/anim1.asm b/gfx/pokemon/ekans/anim1.asm new file mode 100644 index 000000000..660a4f971 --- /dev/null +++ b/gfx/pokemon/ekans/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 5 + frame 4, 02 + frame 5, 02 + frame 4, 02 + frame 0, 02 + dorepeat 1 + endanim +; 0xd199c diff --git a/gfx/pokemon/ekans/back.2bpp.lz.671d14d9 b/gfx/pokemon/ekans/back.2bpp.lz.671d14d9 new file mode 100644 index 000000000..07785737f Binary files /dev/null and b/gfx/pokemon/ekans/back.2bpp.lz.671d14d9 differ diff --git a/gfx/pokemon/ekans/back.png b/gfx/pokemon/ekans/back.png new file mode 100644 index 000000000..d61670da7 Binary files /dev/null and b/gfx/pokemon/ekans/back.png differ diff --git a/gfx/pokemon/ekans/front.animated.2bpp.lz.018a1c72 b/gfx/pokemon/ekans/front.animated.2bpp.lz.018a1c72 new file mode 100644 index 000000000..efa075fab Binary files /dev/null and b/gfx/pokemon/ekans/front.animated.2bpp.lz.018a1c72 differ diff --git a/gfx/pokemon/ekans/front.png b/gfx/pokemon/ekans/front.png new file mode 100644 index 000000000..21f476943 Binary files /dev/null and b/gfx/pokemon/ekans/front.png differ diff --git a/gfx/pokemon/ekans/shiny.pal b/gfx/pokemon/ekans/shiny.pal new file mode 100644 index 000000000..6f71f8cbb --- /dev/null +++ b/gfx/pokemon/ekans/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 23, 13 + RGB 09, 11, 05 + diff --git a/gfx/pokemon/electabuzz/anim0.asm b/gfx/pokemon/electabuzz/anim0.asm new file mode 100644 index 000000000..4e2a550ed --- /dev/null +++ b/gfx/pokemon/electabuzz/anim0.asm @@ -0,0 +1,13 @@ + frame 1, 08 + setrepeat 3 + setrepeat 3 + frame 1, 02 + frame 2, 02 + dorepeat 3 + setrepeat 4 + frame 3, 02 + frame 4, 02 + dorepeat 7 + dorepeat 7 + endanim +; 0xd0fcc diff --git a/gfx/pokemon/electabuzz/anim1.asm b/gfx/pokemon/electabuzz/anim1.asm new file mode 100644 index 000000000..efff4b3db --- /dev/null +++ b/gfx/pokemon/electabuzz/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 4 + frame 0, 04 + frame 5, 04 + dorepeat 1 + endanim +; 0xd1d8a diff --git a/gfx/pokemon/electabuzz/back.2bpp.lz.e97330fe b/gfx/pokemon/electabuzz/back.2bpp.lz.e97330fe new file mode 100644 index 000000000..b64bc1ca1 Binary files /dev/null and b/gfx/pokemon/electabuzz/back.2bpp.lz.e97330fe differ diff --git a/gfx/pokemon/electabuzz/back.png b/gfx/pokemon/electabuzz/back.png new file mode 100644 index 000000000..73496522e Binary files /dev/null and b/gfx/pokemon/electabuzz/back.png differ diff --git a/gfx/pokemon/electabuzz/front.animated.2bpp.lz.381e1c6e b/gfx/pokemon/electabuzz/front.animated.2bpp.lz.381e1c6e new file mode 100644 index 000000000..645db8d4d Binary files /dev/null and b/gfx/pokemon/electabuzz/front.animated.2bpp.lz.381e1c6e differ diff --git a/gfx/pokemon/electabuzz/front.png b/gfx/pokemon/electabuzz/front.png new file mode 100644 index 000000000..3d44a603a Binary files /dev/null and b/gfx/pokemon/electabuzz/front.png differ diff --git a/gfx/pokemon/electabuzz/shiny.pal b/gfx/pokemon/electabuzz/shiny.pal new file mode 100644 index 000000000..e932aa461 --- /dev/null +++ b/gfx/pokemon/electabuzz/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 25, 00 + RGB 18, 20, 00 + diff --git a/gfx/pokemon/electrode/anim0.asm b/gfx/pokemon/electrode/anim0.asm new file mode 100644 index 000000000..18b31e305 --- /dev/null +++ b/gfx/pokemon/electrode/anim0.asm @@ -0,0 +1,4 @@ + frame 1, 05 + frame 2, 40 + endanim +; 0xd0e5c diff --git a/gfx/pokemon/electrode/anim1.asm b/gfx/pokemon/electrode/anim1.asm new file mode 100644 index 000000000..30d1b1788 --- /dev/null +++ b/gfx/pokemon/electrode/anim1.asm @@ -0,0 +1,3 @@ + frame 3, 45 + endanim +; 0xd1ca8 diff --git a/gfx/pokemon/electrode/back.2bpp.lz.874e1f1c b/gfx/pokemon/electrode/back.2bpp.lz.874e1f1c new file mode 100644 index 000000000..9161c8884 Binary files /dev/null and b/gfx/pokemon/electrode/back.2bpp.lz.874e1f1c differ diff --git a/gfx/pokemon/electrode/back.png b/gfx/pokemon/electrode/back.png new file mode 100644 index 000000000..ea243bf3c Binary files /dev/null and b/gfx/pokemon/electrode/back.png differ diff --git a/gfx/pokemon/electrode/front.animated.2bpp.lz.d7943ad8 b/gfx/pokemon/electrode/front.animated.2bpp.lz.d7943ad8 new file mode 100644 index 000000000..2d86aa4ac Binary files /dev/null and b/gfx/pokemon/electrode/front.animated.2bpp.lz.d7943ad8 differ diff --git a/gfx/pokemon/electrode/front.png b/gfx/pokemon/electrode/front.png new file mode 100644 index 000000000..25c181357 Binary files /dev/null and b/gfx/pokemon/electrode/front.png differ diff --git a/gfx/pokemon/electrode/shiny.pal b/gfx/pokemon/electrode/shiny.pal new file mode 100644 index 000000000..b8509a81f --- /dev/null +++ b/gfx/pokemon/electrode/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 20, 17 + RGB 09, 02, 28 + diff --git a/gfx/pokemon/elekid/anim0.asm b/gfx/pokemon/elekid/anim0.asm new file mode 100644 index 000000000..590dccf14 --- /dev/null +++ b/gfx/pokemon/elekid/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 07 + setrepeat 7 + frame 2, 03 + frame 1, 03 + dorepeat 2 + setrepeat 4 + frame 4, 03 + frame 3, 03 + dorepeat 6 + endanim +; 0xd15e0 diff --git a/gfx/pokemon/elekid/anim1.asm b/gfx/pokemon/elekid/anim1.asm new file mode 100644 index 000000000..cd10626f6 --- /dev/null +++ b/gfx/pokemon/elekid/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 5, 09 + frame 3, 09 + dorepeat 1 + frame 3, 20 + endanim +; 0xd21a6 diff --git a/gfx/pokemon/elekid/back.2bpp.lz.227a1b23 b/gfx/pokemon/elekid/back.2bpp.lz.227a1b23 new file mode 100644 index 000000000..fd8dd04df Binary files /dev/null and b/gfx/pokemon/elekid/back.2bpp.lz.227a1b23 differ diff --git a/gfx/pokemon/elekid/back.png b/gfx/pokemon/elekid/back.png new file mode 100644 index 000000000..8049ca5ad Binary files /dev/null and b/gfx/pokemon/elekid/back.png differ diff --git a/gfx/pokemon/elekid/front.animated.2bpp.lz.3bbb6b61 b/gfx/pokemon/elekid/front.animated.2bpp.lz.3bbb6b61 new file mode 100644 index 000000000..dde6b0e0b Binary files /dev/null and b/gfx/pokemon/elekid/front.animated.2bpp.lz.3bbb6b61 differ diff --git a/gfx/pokemon/elekid/front.png b/gfx/pokemon/elekid/front.png new file mode 100644 index 000000000..eaefbdc6c Binary files /dev/null and b/gfx/pokemon/elekid/front.png differ diff --git a/gfx/pokemon/elekid/shiny.pal b/gfx/pokemon/elekid/shiny.pal new file mode 100644 index 000000000..4eb42c6d4 --- /dev/null +++ b/gfx/pokemon/elekid/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 24, 05 + RGB 15, 15, 17 + diff --git a/gfx/pokemon/entei/anim0.asm b/gfx/pokemon/entei/anim0.asm new file mode 100644 index 000000000..66c2c128d --- /dev/null +++ b/gfx/pokemon/entei/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 04 + frame 1, 10 + frame 2, 12 + frame 3, 30 + endanim +; 0xd161d diff --git a/gfx/pokemon/entei/anim1.asm b/gfx/pokemon/entei/anim1.asm new file mode 100644 index 000000000..f20e5d072 --- /dev/null +++ b/gfx/pokemon/entei/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd21d7 diff --git a/gfx/pokemon/entei/back.2bpp.lz.d1e1986a b/gfx/pokemon/entei/back.2bpp.lz.d1e1986a new file mode 100644 index 000000000..7f2440f51 Binary files /dev/null and b/gfx/pokemon/entei/back.2bpp.lz.d1e1986a differ diff --git a/gfx/pokemon/entei/back.png b/gfx/pokemon/entei/back.png new file mode 100644 index 000000000..fa966a3c9 Binary files /dev/null and b/gfx/pokemon/entei/back.png differ diff --git a/gfx/pokemon/entei/front.animated.2bpp.lz.ebaf8024 b/gfx/pokemon/entei/front.animated.2bpp.lz.ebaf8024 new file mode 100644 index 000000000..bc969fe65 Binary files /dev/null and b/gfx/pokemon/entei/front.animated.2bpp.lz.ebaf8024 differ diff --git a/gfx/pokemon/entei/front.png b/gfx/pokemon/entei/front.png new file mode 100644 index 000000000..220bcf9a6 Binary files /dev/null and b/gfx/pokemon/entei/front.png differ diff --git a/gfx/pokemon/entei/shiny.pal b/gfx/pokemon/entei/shiny.pal new file mode 100644 index 000000000..e806f7e00 --- /dev/null +++ b/gfx/pokemon/entei/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 10, 01 + RGB 10, 10, 08 + diff --git a/gfx/pokemon/espeon/anim0.asm b/gfx/pokemon/espeon/anim0.asm new file mode 100644 index 000000000..8a54a9b97 --- /dev/null +++ b/gfx/pokemon/espeon/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 08 + frame 1, 26 + setrepeat 2 + frame 0, 07 + frame 2, 07 + frame 3, 07 + dorepeat 3 + endanim +; 0xd13af diff --git a/gfx/pokemon/espeon/anim1.asm b/gfx/pokemon/espeon/anim1.asm new file mode 100644 index 000000000..33c88d1b4 --- /dev/null +++ b/gfx/pokemon/espeon/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd203d diff --git a/gfx/pokemon/espeon/back.2bpp.lz.0e77f26e b/gfx/pokemon/espeon/back.2bpp.lz.0e77f26e new file mode 100644 index 000000000..59a69eae1 Binary files /dev/null and b/gfx/pokemon/espeon/back.2bpp.lz.0e77f26e differ diff --git a/gfx/pokemon/espeon/back.png b/gfx/pokemon/espeon/back.png new file mode 100644 index 000000000..26d2d2973 Binary files /dev/null and b/gfx/pokemon/espeon/back.png differ diff --git a/gfx/pokemon/espeon/front.animated.2bpp.lz.069f57ec b/gfx/pokemon/espeon/front.animated.2bpp.lz.069f57ec new file mode 100644 index 000000000..b7d983e9f Binary files /dev/null and b/gfx/pokemon/espeon/front.animated.2bpp.lz.069f57ec differ diff --git a/gfx/pokemon/espeon/front.png b/gfx/pokemon/espeon/front.png new file mode 100644 index 000000000..dd68a6c18 Binary files /dev/null and b/gfx/pokemon/espeon/front.png differ diff --git a/gfx/pokemon/espeon/shiny.pal b/gfx/pokemon/espeon/shiny.pal new file mode 100644 index 000000000..8f2343d89 --- /dev/null +++ b/gfx/pokemon/espeon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 31, 10 + RGB 10, 16, 08 + diff --git a/gfx/pokemon/exeggcute/anim0.asm b/gfx/pokemon/exeggcute/anim0.asm new file mode 100644 index 000000000..0f0c10729 --- /dev/null +++ b/gfx/pokemon/exeggcute/anim0.asm @@ -0,0 +1,17 @@ + frame 0, 08 + setrepeat 2 + frame 1, 04 + frame 2, 04 + dorepeat 2 + frame 0, 01 + setrepeat 3 + frame 1, 03 + frame 2, 03 + dorepeat 7 + frame 0, 01 + frame 1, 04 + frame 2, 04 + frame 0, 08 + frame 3, 08 + endanim +; 0xd0e7b diff --git a/gfx/pokemon/exeggcute/anim1.asm b/gfx/pokemon/exeggcute/anim1.asm new file mode 100644 index 000000000..ef839f5d1 --- /dev/null +++ b/gfx/pokemon/exeggcute/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1cb1 diff --git a/gfx/pokemon/exeggcute/back.2bpp.lz.060c38b0 b/gfx/pokemon/exeggcute/back.2bpp.lz.060c38b0 new file mode 100644 index 000000000..1877fcea1 Binary files /dev/null and b/gfx/pokemon/exeggcute/back.2bpp.lz.060c38b0 differ diff --git a/gfx/pokemon/exeggcute/back.png b/gfx/pokemon/exeggcute/back.png new file mode 100644 index 000000000..97f04b02f Binary files /dev/null and b/gfx/pokemon/exeggcute/back.png differ diff --git a/gfx/pokemon/exeggcute/front.animated.2bpp.lz.578a4722 b/gfx/pokemon/exeggcute/front.animated.2bpp.lz.578a4722 new file mode 100644 index 000000000..9d018e7c4 Binary files /dev/null and b/gfx/pokemon/exeggcute/front.animated.2bpp.lz.578a4722 differ diff --git a/gfx/pokemon/exeggcute/front.png b/gfx/pokemon/exeggcute/front.png new file mode 100644 index 000000000..a492d0cf5 Binary files /dev/null and b/gfx/pokemon/exeggcute/front.png differ diff --git a/gfx/pokemon/exeggcute/shiny.pal b/gfx/pokemon/exeggcute/shiny.pal new file mode 100644 index 000000000..63686e6f0 --- /dev/null +++ b/gfx/pokemon/exeggcute/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 25, 06 + RGB 19, 12, 09 + diff --git a/gfx/pokemon/exeggutor/anim0.asm b/gfx/pokemon/exeggutor/anim0.asm new file mode 100644 index 000000000..92f11a117 --- /dev/null +++ b/gfx/pokemon/exeggutor/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 07 + frame 0, 07 + frame 1, 07 + setrepeat 3 + frame 2, 06 + frame 0, 06 + dorepeat 4 + endanim +; 0xd0e8a diff --git a/gfx/pokemon/exeggutor/anim1.asm b/gfx/pokemon/exeggutor/anim1.asm new file mode 100644 index 000000000..3e5542c97 --- /dev/null +++ b/gfx/pokemon/exeggutor/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 4 + frame 0, 06 + frame 1, 06 + dorepeat 1 + endanim +; 0xd1cba diff --git a/gfx/pokemon/exeggutor/back.2bpp.lz.e012643e b/gfx/pokemon/exeggutor/back.2bpp.lz.e012643e new file mode 100644 index 000000000..abf6c97dd Binary files /dev/null and b/gfx/pokemon/exeggutor/back.2bpp.lz.e012643e differ diff --git a/gfx/pokemon/exeggutor/back.png b/gfx/pokemon/exeggutor/back.png new file mode 100644 index 000000000..7812499b1 Binary files /dev/null and b/gfx/pokemon/exeggutor/back.png differ diff --git a/gfx/pokemon/exeggutor/front.animated.2bpp.lz.3915d572 b/gfx/pokemon/exeggutor/front.animated.2bpp.lz.3915d572 new file mode 100644 index 000000000..b4056b175 Binary files /dev/null and b/gfx/pokemon/exeggutor/front.animated.2bpp.lz.3915d572 differ diff --git a/gfx/pokemon/exeggutor/front.png b/gfx/pokemon/exeggutor/front.png new file mode 100644 index 000000000..b9d75b166 Binary files /dev/null and b/gfx/pokemon/exeggutor/front.png differ diff --git a/gfx/pokemon/exeggutor/shiny.pal b/gfx/pokemon/exeggutor/shiny.pal new file mode 100644 index 000000000..c580552e0 --- /dev/null +++ b/gfx/pokemon/exeggutor/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 17, 08 + RGB 24, 14, 09 + diff --git a/gfx/pokemon/extra_pointers.asm b/gfx/pokemon/extra_pointers.asm new file mode 100644 index 000000000..7afd95148 --- /dev/null +++ b/gfx/pokemon/extra_pointers.asm @@ -0,0 +1,252 @@ +AnimationExtraPointers: + dw BulbasaurAnimationExtra + dw IvysaurAnimationExtra + dw VenusaurAnimationExtra + dw CharmanderAnimationExtra + dw CharmeleonAnimationExtra + dw CharizardAnimationExtra + dw SquirtleAnimationExtra + dw WartortleAnimationExtra + dw BlastoiseAnimationExtra + dw CaterpieAnimationExtra + dw MetapodAnimationExtra + dw ButterfreeAnimationExtra + dw WeedleAnimationExtra + dw KakunaAnimationExtra + dw BeedrillAnimationExtra + dw PidgeyAnimationExtra + dw PidgeottoAnimationExtra + dw PidgeotAnimationExtra + dw RattataAnimationExtra + dw RaticateAnimationExtra + dw SpearowAnimationExtra + dw FearowAnimationExtra + dw EkansAnimationExtra + dw ArbokAnimationExtra + dw PikachuAnimationExtra + dw RaichuAnimationExtra + dw SandshrewAnimationExtra + dw SandslashAnimationExtra + dw NidoranFAnimationExtra + dw NidorinaAnimationExtra + dw NidoqueenAnimationExtra + dw NidoranMAnimationExtra + dw NidorinoAnimationExtra + dw NidokingAnimationExtra + dw ClefairyAnimationExtra + dw ClefableAnimationExtra + dw VulpixAnimationExtra + dw NinetalesAnimationExtra + dw JigglypuffAnimationExtra + dw WigglytuffAnimationExtra + dw ZubatAnimationExtra + dw GolbatAnimationExtra + dw OddishAnimationExtra + dw GloomAnimationExtra + dw VileplumeAnimationExtra + dw ParasAnimationExtra + dw ParasectAnimationExtra + dw VenonatAnimationExtra + dw VenomothAnimationExtra + dw DiglettAnimationExtra + dw DugtrioAnimationExtra + dw MeowthAnimationExtra + dw PersianAnimationExtra + dw PsyduckAnimationExtra + dw GolduckAnimationExtra + dw MankeyAnimationExtra + dw PrimeapeAnimationExtra + dw GrowlitheAnimationExtra + dw ArcanineAnimationExtra + dw PoliwagAnimationExtra + dw PoliwhirlAnimationExtra + dw PoliwrathAnimationExtra + dw AbraAnimationExtra + dw KadabraAnimationExtra + dw AlakazamAnimationExtra + dw MachopAnimationExtra + dw MachokeAnimationExtra + dw MachampAnimationExtra + dw BellsproutAnimationExtra + dw WeepinbellAnimationExtra + dw VictreebelAnimationExtra + dw TentacoolAnimationExtra + dw TentacruelAnimationExtra + dw GeodudeAnimationExtra + dw GravelerAnimationExtra + dw GolemAnimationExtra + dw PonytaAnimationExtra + dw RapidashAnimationExtra + dw SlowpokeAnimationExtra + dw SlowbroAnimationExtra + dw MagnemiteAnimationExtra + dw MagnetonAnimationExtra + dw FarfetchDAnimationExtra + dw DoduoAnimationExtra + dw DodrioAnimationExtra + dw SeelAnimationExtra + dw DewgongAnimationExtra + dw GrimerAnimationExtra + dw MukAnimationExtra + dw ShellderAnimationExtra + dw CloysterAnimationExtra + dw GastlyAnimationExtra + dw HaunterAnimationExtra + dw GengarAnimationExtra + dw OnixAnimationExtra + dw DrowzeeAnimationExtra + dw HypnoAnimationExtra + dw KrabbyAnimationExtra + dw KinglerAnimationExtra + dw VoltorbAnimationExtra + dw ElectrodeAnimationExtra + dw ExeggcuteAnimationExtra + dw ExeggutorAnimationExtra + dw CuboneAnimationExtra + dw MarowakAnimationExtra + dw HitmonleeAnimationExtra + dw HitmonchanAnimationExtra + dw LickitungAnimationExtra + dw KoffingAnimationExtra + dw WeezingAnimationExtra + dw RhyhornAnimationExtra + dw RhydonAnimationExtra + dw ChanseyAnimationExtra + dw TangelaAnimationExtra + dw KangaskhanAnimationExtra + dw HorseaAnimationExtra + dw SeadraAnimationExtra + dw GoldeenAnimationExtra + dw SeakingAnimationExtra + dw StaryuAnimationExtra + dw StarmieAnimationExtra + dw MrMimeAnimationExtra + dw ScytherAnimationExtra + dw JynxAnimationExtra + dw ElectabuzzAnimationExtra + dw MagmarAnimationExtra + dw PinsirAnimationExtra + dw TaurosAnimationExtra + dw MagikarpAnimationExtra + dw GyaradosAnimationExtra + dw LaprasAnimationExtra + dw DittoAnimationExtra + dw EeveeAnimationExtra + dw VaporeonAnimationExtra + dw JolteonAnimationExtra + dw FlareonAnimationExtra + dw PorygonAnimationExtra + dw OmanyteAnimationExtra + dw OmastarAnimationExtra + dw KabutoAnimationExtra + dw KabutopsAnimationExtra + dw AerodactylAnimationExtra + dw SnorlaxAnimationExtra + dw ArticunoAnimationExtra + dw ZapdosAnimationExtra + dw MoltresAnimationExtra + dw DratiniAnimationExtra + dw DragonairAnimationExtra + dw DragoniteAnimationExtra + dw MewtwoAnimationExtra + dw MewAnimationExtra + dw ChikoritaAnimationExtra + dw BayleefAnimationExtra + dw MeganiumAnimationExtra + dw CyndaquilAnimationExtra + dw QuilavaAnimationExtra + dw TyphlosionAnimationExtra + dw TotodileAnimationExtra + dw CroconawAnimationExtra + dw FeraligatrAnimationExtra + dw SentretAnimationExtra + dw FurretAnimationExtra + dw HoothootAnimationExtra + dw NoctowlAnimationExtra + dw LedybaAnimationExtra + dw LedianAnimationExtra + dw SpinarakAnimationExtra + dw AriadosAnimationExtra + dw CrobatAnimationExtra + dw ChinchouAnimationExtra + dw LanturnAnimationExtra + dw PichuAnimationExtra + dw CleffaAnimationExtra + dw IgglybuffAnimationExtra + dw TogepiAnimationExtra + dw TogeticAnimationExtra + dw NatuAnimationExtra + dw XatuAnimationExtra + dw MareepAnimationExtra + dw FlaaffyAnimationExtra + dw AmpharosAnimationExtra + dw BellossomAnimationExtra + dw MarillAnimationExtra + dw AzumarillAnimationExtra + dw SudowoodoAnimationExtra + dw PolitoedAnimationExtra + dw HoppipAnimationExtra + dw SkiploomAnimationExtra + dw JumpluffAnimationExtra + dw AipomAnimationExtra + dw SunkernAnimationExtra + dw SunfloraAnimationExtra + dw YanmaAnimationExtra + dw WooperAnimationExtra + dw QuagsireAnimationExtra + dw EspeonAnimationExtra + dw UmbreonAnimationExtra + dw MurkrowAnimationExtra + dw SlowkingAnimationExtra + dw MisdreavusAnimationExtra + dw UnownAnimationExtra + dw WobbuffetAnimationExtra + dw GirafarigAnimationExtra + dw PinecoAnimationExtra + dw ForretressAnimationExtra + dw DunsparceAnimationExtra + dw GligarAnimationExtra + dw SteelixAnimationExtra + dw SnubbullAnimationExtra + dw GranbullAnimationExtra + dw QwilfishAnimationExtra + dw ScizorAnimationExtra + dw ShuckleAnimationExtra + dw HeracrossAnimationExtra + dw SneaselAnimationExtra + dw TeddiursaAnimationExtra + dw UrsaringAnimationExtra + dw SlugmaAnimationExtra + dw MagcargoAnimationExtra + dw SwinubAnimationExtra + dw PiloswineAnimationExtra + dw CorsolaAnimationExtra + dw RemoraidAnimationExtra + dw OctilleryAnimationExtra + dw DelibirdAnimationExtra + dw MantineAnimationExtra + dw SkarmoryAnimationExtra + dw HoundourAnimationExtra + dw HoundoomAnimationExtra + dw KingdraAnimationExtra + dw PhanpyAnimationExtra + dw DonphanAnimationExtra + dw Porygon2AnimationExtra + dw StantlerAnimationExtra + dw SmeargleAnimationExtra + dw TyrogueAnimationExtra + dw HitmontopAnimationExtra + dw SmoochumAnimationExtra + dw ElekidAnimationExtra + dw MagbyAnimationExtra + dw MiltankAnimationExtra + dw BlisseyAnimationExtra + dw RaikouAnimationExtra + dw EnteiAnimationExtra + dw SuicuneAnimationExtra + dw LarvitarAnimationExtra + dw PupitarAnimationExtra + dw TyranitarAnimationExtra + dw LugiaAnimationExtra + dw HoOhAnimationExtra + dw CelebiAnimationExtra diff --git a/gfx/pokemon/extras.asm b/gfx/pokemon/extras.asm new file mode 100644 index 000000000..88cb6a77b --- /dev/null +++ b/gfx/pokemon/extras.asm @@ -0,0 +1,252 @@ +BulbasaurAnimationExtra: INCLUDE "gfx/pokemon/bulbasaur/anim1.asm" +IvysaurAnimationExtra: INCLUDE "gfx/pokemon/ivysaur/anim1.asm" +VenusaurAnimationExtra: INCLUDE "gfx/pokemon/venusaur/anim1.asm" +CharmanderAnimationExtra: INCLUDE "gfx/pokemon/charmander/anim1.asm" +CharmeleonAnimationExtra: INCLUDE "gfx/pokemon/charmeleon/anim1.asm" +CharizardAnimationExtra: INCLUDE "gfx/pokemon/charizard/anim1.asm" +SquirtleAnimationExtra: INCLUDE "gfx/pokemon/squirtle/anim1.asm" +WartortleAnimationExtra: INCLUDE "gfx/pokemon/wartortle/anim1.asm" +BlastoiseAnimationExtra: INCLUDE "gfx/pokemon/blastoise/anim1.asm" +CaterpieAnimationExtra: INCLUDE "gfx/pokemon/caterpie/anim1.asm" +MetapodAnimationExtra: INCLUDE "gfx/pokemon/metapod/anim1.asm" +ButterfreeAnimationExtra: INCLUDE "gfx/pokemon/butterfree/anim1.asm" +WeedleAnimationExtra: INCLUDE "gfx/pokemon/weedle/anim1.asm" +KakunaAnimationExtra: INCLUDE "gfx/pokemon/kakuna/anim1.asm" +BeedrillAnimationExtra: INCLUDE "gfx/pokemon/beedrill/anim1.asm" +PidgeyAnimationExtra: INCLUDE "gfx/pokemon/pidgey/anim1.asm" +PidgeottoAnimationExtra: INCLUDE "gfx/pokemon/pidgeotto/anim1.asm" +PidgeotAnimationExtra: INCLUDE "gfx/pokemon/pidgeot/anim1.asm" +RattataAnimationExtra: INCLUDE "gfx/pokemon/rattata/anim1.asm" +RaticateAnimationExtra: INCLUDE "gfx/pokemon/raticate/anim1.asm" +SpearowAnimationExtra: INCLUDE "gfx/pokemon/spearow/anim1.asm" +FearowAnimationExtra: INCLUDE "gfx/pokemon/fearow/anim1.asm" +EkansAnimationExtra: INCLUDE "gfx/pokemon/ekans/anim1.asm" +ArbokAnimationExtra: INCLUDE "gfx/pokemon/arbok/anim1.asm" +PikachuAnimationExtra: INCLUDE "gfx/pokemon/pikachu/anim1.asm" +RaichuAnimationExtra: INCLUDE "gfx/pokemon/raichu/anim1.asm" +SandshrewAnimationExtra: INCLUDE "gfx/pokemon/sandshrew/anim1.asm" +SandslashAnimationExtra: INCLUDE "gfx/pokemon/sandslash/anim1.asm" +NidoranFAnimationExtra: INCLUDE "gfx/pokemon/nidoran_f/anim1.asm" +NidorinaAnimationExtra: INCLUDE "gfx/pokemon/nidorina/anim1.asm" +NidoqueenAnimationExtra: INCLUDE "gfx/pokemon/nidoqueen/anim1.asm" +NidoranMAnimationExtra: INCLUDE "gfx/pokemon/nidoran_m/anim1.asm" +NidorinoAnimationExtra: INCLUDE "gfx/pokemon/nidorino/anim1.asm" +NidokingAnimationExtra: INCLUDE "gfx/pokemon/nidoking/anim1.asm" +ClefairyAnimationExtra: INCLUDE "gfx/pokemon/clefairy/anim1.asm" +ClefableAnimationExtra: INCLUDE "gfx/pokemon/clefable/anim1.asm" +VulpixAnimationExtra: INCLUDE "gfx/pokemon/vulpix/anim1.asm" +NinetalesAnimationExtra: INCLUDE "gfx/pokemon/ninetales/anim1.asm" +JigglypuffAnimationExtra: INCLUDE "gfx/pokemon/jigglypuff/anim1.asm" +WigglytuffAnimationExtra: INCLUDE "gfx/pokemon/wigglytuff/anim1.asm" +ZubatAnimationExtra: INCLUDE "gfx/pokemon/zubat/anim1.asm" +GolbatAnimationExtra: INCLUDE "gfx/pokemon/golbat/anim1.asm" +OddishAnimationExtra: INCLUDE "gfx/pokemon/oddish/anim1.asm" +GloomAnimationExtra: INCLUDE "gfx/pokemon/gloom/anim1.asm" +VileplumeAnimationExtra: INCLUDE "gfx/pokemon/vileplume/anim1.asm" +ParasAnimationExtra: INCLUDE "gfx/pokemon/paras/anim1.asm" +ParasectAnimationExtra: INCLUDE "gfx/pokemon/parasect/anim1.asm" +VenonatAnimationExtra: INCLUDE "gfx/pokemon/venonat/anim1.asm" +VenomothAnimationExtra: INCLUDE "gfx/pokemon/venomoth/anim1.asm" +DiglettAnimationExtra: INCLUDE "gfx/pokemon/diglett/anim1.asm" +DugtrioAnimationExtra: INCLUDE "gfx/pokemon/dugtrio/anim1.asm" +MeowthAnimationExtra: INCLUDE "gfx/pokemon/meowth/anim1.asm" +PersianAnimationExtra: INCLUDE "gfx/pokemon/persian/anim1.asm" +PsyduckAnimationExtra: INCLUDE "gfx/pokemon/psyduck/anim1.asm" +GolduckAnimationExtra: INCLUDE "gfx/pokemon/golduck/anim1.asm" +MankeyAnimationExtra: INCLUDE "gfx/pokemon/mankey/anim1.asm" +PrimeapeAnimationExtra: INCLUDE "gfx/pokemon/primeape/anim1.asm" +GrowlitheAnimationExtra: INCLUDE "gfx/pokemon/growlithe/anim1.asm" +ArcanineAnimationExtra: INCLUDE "gfx/pokemon/arcanine/anim1.asm" +PoliwagAnimationExtra: INCLUDE "gfx/pokemon/poliwag/anim1.asm" +PoliwhirlAnimationExtra: INCLUDE "gfx/pokemon/poliwhirl/anim1.asm" +PoliwrathAnimationExtra: INCLUDE "gfx/pokemon/poliwrath/anim1.asm" +AbraAnimationExtra: INCLUDE "gfx/pokemon/abra/anim1.asm" +KadabraAnimationExtra: INCLUDE "gfx/pokemon/kadabra/anim1.asm" +AlakazamAnimationExtra: INCLUDE "gfx/pokemon/alakazam/anim1.asm" +MachopAnimationExtra: INCLUDE "gfx/pokemon/machop/anim1.asm" +MachokeAnimationExtra: INCLUDE "gfx/pokemon/machoke/anim1.asm" +MachampAnimationExtra: INCLUDE "gfx/pokemon/machamp/anim1.asm" +BellsproutAnimationExtra: INCLUDE "gfx/pokemon/bellsprout/anim1.asm" +WeepinbellAnimationExtra: INCLUDE "gfx/pokemon/weepinbell/anim1.asm" +VictreebelAnimationExtra: INCLUDE "gfx/pokemon/victreebel/anim1.asm" +TentacoolAnimationExtra: INCLUDE "gfx/pokemon/tentacool/anim1.asm" +TentacruelAnimationExtra: INCLUDE "gfx/pokemon/tentacruel/anim1.asm" +GeodudeAnimationExtra: INCLUDE "gfx/pokemon/geodude/anim1.asm" +GravelerAnimationExtra: INCLUDE "gfx/pokemon/graveler/anim1.asm" +GolemAnimationExtra: INCLUDE "gfx/pokemon/golem/anim1.asm" +PonytaAnimationExtra: INCLUDE "gfx/pokemon/ponyta/anim1.asm" +RapidashAnimationExtra: INCLUDE "gfx/pokemon/rapidash/anim1.asm" +SlowpokeAnimationExtra: INCLUDE "gfx/pokemon/slowpoke/anim1.asm" +SlowbroAnimationExtra: INCLUDE "gfx/pokemon/slowbro/anim1.asm" +MagnemiteAnimationExtra: INCLUDE "gfx/pokemon/magnemite/anim1.asm" +MagnetonAnimationExtra: INCLUDE "gfx/pokemon/magneton/anim1.asm" +FarfetchDAnimationExtra: INCLUDE "gfx/pokemon/farfetch_d/anim1.asm" +DoduoAnimationExtra: INCLUDE "gfx/pokemon/doduo/anim1.asm" +DodrioAnimationExtra: INCLUDE "gfx/pokemon/dodrio/anim1.asm" +SeelAnimationExtra: INCLUDE "gfx/pokemon/seel/anim1.asm" +DewgongAnimationExtra: INCLUDE "gfx/pokemon/dewgong/anim1.asm" +GrimerAnimationExtra: INCLUDE "gfx/pokemon/grimer/anim1.asm" +MukAnimationExtra: INCLUDE "gfx/pokemon/muk/anim1.asm" +ShellderAnimationExtra: INCLUDE "gfx/pokemon/shellder/anim1.asm" +CloysterAnimationExtra: INCLUDE "gfx/pokemon/cloyster/anim1.asm" +GastlyAnimationExtra: INCLUDE "gfx/pokemon/gastly/anim1.asm" +HaunterAnimationExtra: INCLUDE "gfx/pokemon/haunter/anim1.asm" +GengarAnimationExtra: INCLUDE "gfx/pokemon/gengar/anim1.asm" +OnixAnimationExtra: INCLUDE "gfx/pokemon/onix/anim1.asm" +DrowzeeAnimationExtra: INCLUDE "gfx/pokemon/drowzee/anim1.asm" +HypnoAnimationExtra: INCLUDE "gfx/pokemon/hypno/anim1.asm" +KrabbyAnimationExtra: INCLUDE "gfx/pokemon/krabby/anim1.asm" +KinglerAnimationExtra: INCLUDE "gfx/pokemon/kingler/anim1.asm" +VoltorbAnimationExtra: INCLUDE "gfx/pokemon/voltorb/anim1.asm" +ElectrodeAnimationExtra: INCLUDE "gfx/pokemon/electrode/anim1.asm" +ExeggcuteAnimationExtra: INCLUDE "gfx/pokemon/exeggcute/anim1.asm" +ExeggutorAnimationExtra: INCLUDE "gfx/pokemon/exeggutor/anim1.asm" +CuboneAnimationExtra: INCLUDE "gfx/pokemon/cubone/anim1.asm" +MarowakAnimationExtra: INCLUDE "gfx/pokemon/marowak/anim1.asm" +HitmonleeAnimationExtra: INCLUDE "gfx/pokemon/hitmonlee/anim1.asm" +HitmonchanAnimationExtra: INCLUDE "gfx/pokemon/hitmonchan/anim1.asm" +LickitungAnimationExtra: INCLUDE "gfx/pokemon/lickitung/anim1.asm" +KoffingAnimationExtra: INCLUDE "gfx/pokemon/koffing/anim1.asm" +WeezingAnimationExtra: INCLUDE "gfx/pokemon/weezing/anim1.asm" +RhyhornAnimationExtra: INCLUDE "gfx/pokemon/rhyhorn/anim1.asm" +RhydonAnimationExtra: INCLUDE "gfx/pokemon/rhydon/anim1.asm" +ChanseyAnimationExtra: INCLUDE "gfx/pokemon/chansey/anim1.asm" +TangelaAnimationExtra: INCLUDE "gfx/pokemon/tangela/anim1.asm" +KangaskhanAnimationExtra: INCLUDE "gfx/pokemon/kangaskhan/anim1.asm" +HorseaAnimationExtra: INCLUDE "gfx/pokemon/horsea/anim1.asm" +SeadraAnimationExtra: INCLUDE "gfx/pokemon/seadra/anim1.asm" +GoldeenAnimationExtra: INCLUDE "gfx/pokemon/goldeen/anim1.asm" +SeakingAnimationExtra: INCLUDE "gfx/pokemon/seaking/anim1.asm" +StaryuAnimationExtra: INCLUDE "gfx/pokemon/staryu/anim1.asm" +StarmieAnimationExtra: INCLUDE "gfx/pokemon/starmie/anim1.asm" +MrMimeAnimationExtra: INCLUDE "gfx/pokemon/mr__mime/anim1.asm" +ScytherAnimationExtra: INCLUDE "gfx/pokemon/scyther/anim1.asm" +JynxAnimationExtra: INCLUDE "gfx/pokemon/jynx/anim1.asm" +ElectabuzzAnimationExtra: INCLUDE "gfx/pokemon/electabuzz/anim1.asm" +MagmarAnimationExtra: INCLUDE "gfx/pokemon/magmar/anim1.asm" +PinsirAnimationExtra: INCLUDE "gfx/pokemon/pinsir/anim1.asm" +TaurosAnimationExtra: INCLUDE "gfx/pokemon/tauros/anim1.asm" +MagikarpAnimationExtra: INCLUDE "gfx/pokemon/magikarp/anim1.asm" +GyaradosAnimationExtra: INCLUDE "gfx/pokemon/gyarados/anim1.asm" +LaprasAnimationExtra: INCLUDE "gfx/pokemon/lapras/anim1.asm" +DittoAnimationExtra: INCLUDE "gfx/pokemon/ditto/anim1.asm" +EeveeAnimationExtra: INCLUDE "gfx/pokemon/eevee/anim1.asm" +VaporeonAnimationExtra: INCLUDE "gfx/pokemon/vaporeon/anim1.asm" +JolteonAnimationExtra: INCLUDE "gfx/pokemon/jolteon/anim1.asm" +FlareonAnimationExtra: INCLUDE "gfx/pokemon/flareon/anim1.asm" +PorygonAnimationExtra: INCLUDE "gfx/pokemon/porygon/anim1.asm" +OmanyteAnimationExtra: INCLUDE "gfx/pokemon/omanyte/anim1.asm" +OmastarAnimationExtra: INCLUDE "gfx/pokemon/omastar/anim1.asm" +KabutoAnimationExtra: INCLUDE "gfx/pokemon/kabuto/anim1.asm" +KabutopsAnimationExtra: INCLUDE "gfx/pokemon/kabutops/anim1.asm" +AerodactylAnimationExtra: INCLUDE "gfx/pokemon/aerodactyl/anim1.asm" +SnorlaxAnimationExtra: INCLUDE "gfx/pokemon/snorlax/anim1.asm" +ArticunoAnimationExtra: INCLUDE "gfx/pokemon/articuno/anim1.asm" +ZapdosAnimationExtra: INCLUDE "gfx/pokemon/zapdos/anim1.asm" +MoltresAnimationExtra: INCLUDE "gfx/pokemon/moltres/anim1.asm" +DratiniAnimationExtra: INCLUDE "gfx/pokemon/dratini/anim1.asm" +DragonairAnimationExtra: INCLUDE "gfx/pokemon/dragonair/anim1.asm" +DragoniteAnimationExtra: INCLUDE "gfx/pokemon/dragonite/anim1.asm" +MewtwoAnimationExtra: INCLUDE "gfx/pokemon/mewtwo/anim1.asm" +MewAnimationExtra: INCLUDE "gfx/pokemon/mew/anim1.asm" +ChikoritaAnimationExtra: INCLUDE "gfx/pokemon/chikorita/anim1.asm" +BayleefAnimationExtra: INCLUDE "gfx/pokemon/bayleef/anim1.asm" +MeganiumAnimationExtra: INCLUDE "gfx/pokemon/meganium/anim1.asm" +CyndaquilAnimationExtra: INCLUDE "gfx/pokemon/cyndaquil/anim1.asm" +QuilavaAnimationExtra: INCLUDE "gfx/pokemon/quilava/anim1.asm" +TyphlosionAnimationExtra: INCLUDE "gfx/pokemon/typhlosion/anim1.asm" +TotodileAnimationExtra: INCLUDE "gfx/pokemon/totodile/anim1.asm" +CroconawAnimationExtra: INCLUDE "gfx/pokemon/croconaw/anim1.asm" +FeraligatrAnimationExtra: INCLUDE "gfx/pokemon/feraligatr/anim1.asm" +SentretAnimationExtra: INCLUDE "gfx/pokemon/sentret/anim1.asm" +FurretAnimationExtra: INCLUDE "gfx/pokemon/furret/anim1.asm" +HoothootAnimationExtra: INCLUDE "gfx/pokemon/hoothoot/anim1.asm" +NoctowlAnimationExtra: INCLUDE "gfx/pokemon/noctowl/anim1.asm" +LedybaAnimationExtra: INCLUDE "gfx/pokemon/ledyba/anim1.asm" +LedianAnimationExtra: INCLUDE "gfx/pokemon/ledian/anim1.asm" +SpinarakAnimationExtra: INCLUDE "gfx/pokemon/spinarak/anim1.asm" +AriadosAnimationExtra: INCLUDE "gfx/pokemon/ariados/anim1.asm" +CrobatAnimationExtra: INCLUDE "gfx/pokemon/crobat/anim1.asm" +ChinchouAnimationExtra: INCLUDE "gfx/pokemon/chinchou/anim1.asm" +LanturnAnimationExtra: INCLUDE "gfx/pokemon/lanturn/anim1.asm" +PichuAnimationExtra: INCLUDE "gfx/pokemon/pichu/anim1.asm" +CleffaAnimationExtra: INCLUDE "gfx/pokemon/cleffa/anim1.asm" +IgglybuffAnimationExtra: INCLUDE "gfx/pokemon/igglybuff/anim1.asm" +TogepiAnimationExtra: INCLUDE "gfx/pokemon/togepi/anim1.asm" +TogeticAnimationExtra: INCLUDE "gfx/pokemon/togetic/anim1.asm" +NatuAnimationExtra: INCLUDE "gfx/pokemon/natu/anim1.asm" +XatuAnimationExtra: INCLUDE "gfx/pokemon/xatu/anim1.asm" +MareepAnimationExtra: INCLUDE "gfx/pokemon/mareep/anim1.asm" +FlaaffyAnimationExtra: INCLUDE "gfx/pokemon/flaaffy/anim1.asm" +AmpharosAnimationExtra: INCLUDE "gfx/pokemon/ampharos/anim1.asm" +BellossomAnimationExtra: INCLUDE "gfx/pokemon/bellossom/anim1.asm" +MarillAnimationExtra: INCLUDE "gfx/pokemon/marill/anim1.asm" +AzumarillAnimationExtra: INCLUDE "gfx/pokemon/azumarill/anim1.asm" +SudowoodoAnimationExtra: INCLUDE "gfx/pokemon/sudowoodo/anim1.asm" +PolitoedAnimationExtra: INCLUDE "gfx/pokemon/politoed/anim1.asm" +HoppipAnimationExtra: INCLUDE "gfx/pokemon/hoppip/anim1.asm" +SkiploomAnimationExtra: INCLUDE "gfx/pokemon/skiploom/anim1.asm" +JumpluffAnimationExtra: INCLUDE "gfx/pokemon/jumpluff/anim1.asm" +AipomAnimationExtra: INCLUDE "gfx/pokemon/aipom/anim1.asm" +SunkernAnimationExtra: INCLUDE "gfx/pokemon/sunkern/anim1.asm" +SunfloraAnimationExtra: INCLUDE "gfx/pokemon/sunflora/anim1.asm" +YanmaAnimationExtra: INCLUDE "gfx/pokemon/yanma/anim1.asm" +WooperAnimationExtra: INCLUDE "gfx/pokemon/wooper/anim1.asm" +QuagsireAnimationExtra: INCLUDE "gfx/pokemon/quagsire/anim1.asm" +EspeonAnimationExtra: INCLUDE "gfx/pokemon/espeon/anim1.asm" +UmbreonAnimationExtra: INCLUDE "gfx/pokemon/umbreon/anim1.asm" +MurkrowAnimationExtra: INCLUDE "gfx/pokemon/murkrow/anim1.asm" +SlowkingAnimationExtra: INCLUDE "gfx/pokemon/slowking/anim1.asm" +MisdreavusAnimationExtra: INCLUDE "gfx/pokemon/misdreavus/anim1.asm" +UnownAnimationExtra: INCLUDE "gfx/pokemon/unown/anim1.asm" +WobbuffetAnimationExtra: INCLUDE "gfx/pokemon/wobbuffet/anim1.asm" +GirafarigAnimationExtra: INCLUDE "gfx/pokemon/girafarig/anim1.asm" +PinecoAnimationExtra: INCLUDE "gfx/pokemon/pineco/anim1.asm" +ForretressAnimationExtra: INCLUDE "gfx/pokemon/forretress/anim1.asm" +DunsparceAnimationExtra: INCLUDE "gfx/pokemon/dunsparce/anim1.asm" +GligarAnimationExtra: INCLUDE "gfx/pokemon/gligar/anim1.asm" +SteelixAnimationExtra: INCLUDE "gfx/pokemon/steelix/anim1.asm" +SnubbullAnimationExtra: INCLUDE "gfx/pokemon/snubbull/anim1.asm" +GranbullAnimationExtra: INCLUDE "gfx/pokemon/granbull/anim1.asm" +QwilfishAnimationExtra: INCLUDE "gfx/pokemon/qwilfish/anim1.asm" +ScizorAnimationExtra: INCLUDE "gfx/pokemon/scizor/anim1.asm" +ShuckleAnimationExtra: INCLUDE "gfx/pokemon/shuckle/anim1.asm" +HeracrossAnimationExtra: INCLUDE "gfx/pokemon/heracross/anim1.asm" +SneaselAnimationExtra: INCLUDE "gfx/pokemon/sneasel/anim1.asm" +TeddiursaAnimationExtra: INCLUDE "gfx/pokemon/teddiursa/anim1.asm" +UrsaringAnimationExtra: INCLUDE "gfx/pokemon/ursaring/anim1.asm" +SlugmaAnimationExtra: INCLUDE "gfx/pokemon/slugma/anim1.asm" +MagcargoAnimationExtra: INCLUDE "gfx/pokemon/magcargo/anim1.asm" +SwinubAnimationExtra: INCLUDE "gfx/pokemon/swinub/anim1.asm" +PiloswineAnimationExtra: INCLUDE "gfx/pokemon/piloswine/anim1.asm" +CorsolaAnimationExtra: INCLUDE "gfx/pokemon/corsola/anim1.asm" +RemoraidAnimationExtra: INCLUDE "gfx/pokemon/remoraid/anim1.asm" +OctilleryAnimationExtra: INCLUDE "gfx/pokemon/octillery/anim1.asm" +DelibirdAnimationExtra: INCLUDE "gfx/pokemon/delibird/anim1.asm" +MantineAnimationExtra: INCLUDE "gfx/pokemon/mantine/anim1.asm" +SkarmoryAnimationExtra: INCLUDE "gfx/pokemon/skarmory/anim1.asm" +HoundourAnimationExtra: INCLUDE "gfx/pokemon/houndour/anim1.asm" +HoundoomAnimationExtra: INCLUDE "gfx/pokemon/houndoom/anim1.asm" +KingdraAnimationExtra: INCLUDE "gfx/pokemon/kingdra/anim1.asm" +PhanpyAnimationExtra: INCLUDE "gfx/pokemon/phanpy/anim1.asm" +DonphanAnimationExtra: INCLUDE "gfx/pokemon/donphan/anim1.asm" +Porygon2AnimationExtra: INCLUDE "gfx/pokemon/porygon2/anim1.asm" +StantlerAnimationExtra: INCLUDE "gfx/pokemon/stantler/anim1.asm" +SmeargleAnimationExtra: INCLUDE "gfx/pokemon/smeargle/anim1.asm" +TyrogueAnimationExtra: INCLUDE "gfx/pokemon/tyrogue/anim1.asm" +HitmontopAnimationExtra: INCLUDE "gfx/pokemon/hitmontop/anim1.asm" +SmoochumAnimationExtra: INCLUDE "gfx/pokemon/smoochum/anim1.asm" +ElekidAnimationExtra: INCLUDE "gfx/pokemon/elekid/anim1.asm" +MagbyAnimationExtra: INCLUDE "gfx/pokemon/magby/anim1.asm" +MiltankAnimationExtra: INCLUDE "gfx/pokemon/miltank/anim1.asm" +BlisseyAnimationExtra: INCLUDE "gfx/pokemon/blissey/anim1.asm" +RaikouAnimationExtra: INCLUDE "gfx/pokemon/raikou/anim1.asm" +EnteiAnimationExtra: INCLUDE "gfx/pokemon/entei/anim1.asm" +SuicuneAnimationExtra: INCLUDE "gfx/pokemon/suicune/anim1.asm" +LarvitarAnimationExtra: INCLUDE "gfx/pokemon/larvitar/anim1.asm" +PupitarAnimationExtra: INCLUDE "gfx/pokemon/pupitar/anim1.asm" +TyranitarAnimationExtra: INCLUDE "gfx/pokemon/tyranitar/anim1.asm" +LugiaAnimationExtra: INCLUDE "gfx/pokemon/lugia/anim1.asm" +HoOhAnimationExtra: INCLUDE "gfx/pokemon/ho_oh/anim1.asm" +CelebiAnimationExtra: INCLUDE "gfx/pokemon/celebi/anim1.asm" +EggAnimationExtra: INCLUDE "gfx/pokemon/egg/anim1.asm" diff --git a/gfx/pokemon/farfetch_d/anim0.asm b/gfx/pokemon/farfetch_d/anim0.asm new file mode 100644 index 000000000..4dac6c1a4 --- /dev/null +++ b/gfx/pokemon/farfetch_d/anim0.asm @@ -0,0 +1,6 @@ + frame 1, 06 + frame 2, 06 + frame 3, 14 + frame 2, 06 + endanim +; 0xd0d7a diff --git a/gfx/pokemon/farfetch_d/anim1.asm b/gfx/pokemon/farfetch_d/anim1.asm new file mode 100644 index 000000000..5dcfaa89d --- /dev/null +++ b/gfx/pokemon/farfetch_d/anim1.asm @@ -0,0 +1,5 @@ + frame 4, 10 + frame 5, 07 + frame 4, 07 + endanim +; 0xd1bfa diff --git a/gfx/pokemon/farfetch_d/back.2bpp.lz.6f28ebc4 b/gfx/pokemon/farfetch_d/back.2bpp.lz.6f28ebc4 new file mode 100644 index 000000000..77dd25ae9 Binary files /dev/null and b/gfx/pokemon/farfetch_d/back.2bpp.lz.6f28ebc4 differ diff --git a/gfx/pokemon/farfetch_d/back.png b/gfx/pokemon/farfetch_d/back.png new file mode 100644 index 000000000..b7f1ce41f Binary files /dev/null and b/gfx/pokemon/farfetch_d/back.png differ diff --git a/gfx/pokemon/farfetch_d/front.animated.2bpp.lz.a4ae9393 b/gfx/pokemon/farfetch_d/front.animated.2bpp.lz.a4ae9393 new file mode 100644 index 000000000..d9eeb7489 Binary files /dev/null and b/gfx/pokemon/farfetch_d/front.animated.2bpp.lz.a4ae9393 differ diff --git a/gfx/pokemon/farfetch_d/front.png b/gfx/pokemon/farfetch_d/front.png new file mode 100644 index 000000000..1ad86679f Binary files /dev/null and b/gfx/pokemon/farfetch_d/front.png differ diff --git a/gfx/pokemon/farfetch_d/shiny.pal b/gfx/pokemon/farfetch_d/shiny.pal new file mode 100644 index 000000000..2bae03e7f --- /dev/null +++ b/gfx/pokemon/farfetch_d/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 16, 14 + RGB 12, 20, 01 + diff --git a/gfx/pokemon/fearow/anim0.asm b/gfx/pokemon/fearow/anim0.asm new file mode 100644 index 000000000..3a689af18 --- /dev/null +++ b/gfx/pokemon/fearow/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 02 + setrepeat 3 + frame 1, 08 + frame 3, 10 + frame 2, 06 + dorepeat 2 + endanim +; 0xd09c3 diff --git a/gfx/pokemon/fearow/anim1.asm b/gfx/pokemon/fearow/anim1.asm new file mode 100644 index 000000000..0233782c9 --- /dev/null +++ b/gfx/pokemon/fearow/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 4, 05 + frame 0, 05 + dorepeat 1 + endanim +; 0xd198f diff --git a/gfx/pokemon/fearow/back.2bpp.lz.a7a39118 b/gfx/pokemon/fearow/back.2bpp.lz.a7a39118 new file mode 100644 index 000000000..641086eaa Binary files /dev/null and b/gfx/pokemon/fearow/back.2bpp.lz.a7a39118 differ diff --git a/gfx/pokemon/fearow/back.png b/gfx/pokemon/fearow/back.png new file mode 100644 index 000000000..f6fc2a63a Binary files /dev/null and b/gfx/pokemon/fearow/back.png differ diff --git a/gfx/pokemon/fearow/front.animated.2bpp.lz.393b11d6 b/gfx/pokemon/fearow/front.animated.2bpp.lz.393b11d6 new file mode 100644 index 000000000..4fbf2d47f Binary files /dev/null and b/gfx/pokemon/fearow/front.animated.2bpp.lz.393b11d6 differ diff --git a/gfx/pokemon/fearow/front.png b/gfx/pokemon/fearow/front.png new file mode 100644 index 000000000..f003ce0f7 Binary files /dev/null and b/gfx/pokemon/fearow/front.png differ diff --git a/gfx/pokemon/fearow/shiny.pal b/gfx/pokemon/fearow/shiny.pal new file mode 100644 index 000000000..abc40692b --- /dev/null +++ b/gfx/pokemon/fearow/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 16, 10 + RGB 24, 17, 07 + diff --git a/gfx/pokemon/feraligatr/anim0.asm b/gfx/pokemon/feraligatr/anim0.asm new file mode 100644 index 000000000..1a0cebd2e --- /dev/null +++ b/gfx/pokemon/feraligatr/anim0.asm @@ -0,0 +1,7 @@ + frame 0, 04 + frame 1, 10 + frame 2, 16 + frame 3, 36 + frame 2, 12 + endanim +; 0xd11dd diff --git a/gfx/pokemon/feraligatr/anim1.asm b/gfx/pokemon/feraligatr/anim1.asm new file mode 100644 index 000000000..c1c39258d --- /dev/null +++ b/gfx/pokemon/feraligatr/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1ee9 diff --git a/gfx/pokemon/feraligatr/back.2bpp.lz.f95abe99 b/gfx/pokemon/feraligatr/back.2bpp.lz.f95abe99 new file mode 100644 index 000000000..4e180d0f5 Binary files /dev/null and b/gfx/pokemon/feraligatr/back.2bpp.lz.f95abe99 differ diff --git a/gfx/pokemon/feraligatr/back.png b/gfx/pokemon/feraligatr/back.png new file mode 100644 index 000000000..8f1e63203 Binary files /dev/null and b/gfx/pokemon/feraligatr/back.png differ diff --git a/gfx/pokemon/feraligatr/front.animated.2bpp.lz.fade72cc b/gfx/pokemon/feraligatr/front.animated.2bpp.lz.fade72cc new file mode 100644 index 000000000..cc055e629 Binary files /dev/null and b/gfx/pokemon/feraligatr/front.animated.2bpp.lz.fade72cc differ diff --git a/gfx/pokemon/feraligatr/front.png b/gfx/pokemon/feraligatr/front.png new file mode 100644 index 000000000..c3057a8cb Binary files /dev/null and b/gfx/pokemon/feraligatr/front.png differ diff --git a/gfx/pokemon/feraligatr/shiny.pal b/gfx/pokemon/feraligatr/shiny.pal new file mode 100644 index 000000000..afe21b2b2 --- /dev/null +++ b/gfx/pokemon/feraligatr/shiny.pal @@ -0,0 +1,4 @@ + + RGB 08, 17, 13 + RGB 12, 07, 31 + diff --git a/gfx/pokemon/flaaffy/anim0.asm b/gfx/pokemon/flaaffy/anim0.asm new file mode 100644 index 000000000..c9f1f4e7e --- /dev/null +++ b/gfx/pokemon/flaaffy/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 06 + setrepeat 5 + frame 3, 02 + frame 2, 02 + dorepeat 2 + frame 3, 18 + endanim +; 0xd12e9 diff --git a/gfx/pokemon/flaaffy/anim1.asm b/gfx/pokemon/flaaffy/anim1.asm new file mode 100644 index 000000000..b9ec0d483 --- /dev/null +++ b/gfx/pokemon/flaaffy/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd1fab diff --git a/gfx/pokemon/flaaffy/back.2bpp.lz.461855e4 b/gfx/pokemon/flaaffy/back.2bpp.lz.461855e4 new file mode 100644 index 000000000..5eec3df7a Binary files /dev/null and b/gfx/pokemon/flaaffy/back.2bpp.lz.461855e4 differ diff --git a/gfx/pokemon/flaaffy/back.png b/gfx/pokemon/flaaffy/back.png new file mode 100644 index 000000000..36259453c Binary files /dev/null and b/gfx/pokemon/flaaffy/back.png differ diff --git a/gfx/pokemon/flaaffy/front.animated.2bpp.lz.6a27aac3 b/gfx/pokemon/flaaffy/front.animated.2bpp.lz.6a27aac3 new file mode 100644 index 000000000..673155a7e Binary files /dev/null and b/gfx/pokemon/flaaffy/front.animated.2bpp.lz.6a27aac3 differ diff --git a/gfx/pokemon/flaaffy/front.png b/gfx/pokemon/flaaffy/front.png new file mode 100644 index 000000000..f42a3b749 Binary files /dev/null and b/gfx/pokemon/flaaffy/front.png differ diff --git a/gfx/pokemon/flaaffy/shiny.pal b/gfx/pokemon/flaaffy/shiny.pal new file mode 100644 index 000000000..50c88df2e --- /dev/null +++ b/gfx/pokemon/flaaffy/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 16, 29 + RGB 16, 08, 31 + diff --git a/gfx/pokemon/flareon/anim0.asm b/gfx/pokemon/flareon/anim0.asm new file mode 100644 index 000000000..dbefae362 --- /dev/null +++ b/gfx/pokemon/flareon/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 10 + setrepeat 3 + frame 2, 08 + frame 3, 08 + dorepeat 2 + endanim +; 0xd105f diff --git a/gfx/pokemon/flareon/anim1.asm b/gfx/pokemon/flareon/anim1.asm new file mode 100644 index 000000000..431573106 --- /dev/null +++ b/gfx/pokemon/flareon/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1df1 diff --git a/gfx/pokemon/flareon/back.2bpp.lz.d58af0e5 b/gfx/pokemon/flareon/back.2bpp.lz.d58af0e5 new file mode 100644 index 000000000..bafc64cd2 Binary files /dev/null and b/gfx/pokemon/flareon/back.2bpp.lz.d58af0e5 differ diff --git a/gfx/pokemon/flareon/back.png b/gfx/pokemon/flareon/back.png new file mode 100644 index 000000000..4b68451c1 Binary files /dev/null and b/gfx/pokemon/flareon/back.png differ diff --git a/gfx/pokemon/flareon/front.animated.2bpp.lz.7b68c716 b/gfx/pokemon/flareon/front.animated.2bpp.lz.7b68c716 new file mode 100644 index 000000000..d3210b7e3 Binary files /dev/null and b/gfx/pokemon/flareon/front.animated.2bpp.lz.7b68c716 differ diff --git a/gfx/pokemon/flareon/front.png b/gfx/pokemon/flareon/front.png new file mode 100644 index 000000000..13a9af29a Binary files /dev/null and b/gfx/pokemon/flareon/front.png differ diff --git a/gfx/pokemon/flareon/shiny.pal b/gfx/pokemon/flareon/shiny.pal new file mode 100644 index 000000000..7e840a3cd --- /dev/null +++ b/gfx/pokemon/flareon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 17, 01 + RGB 24, 09, 00 + diff --git a/gfx/pokemon/forretress/anim0.asm b/gfx/pokemon/forretress/anim0.asm new file mode 100644 index 000000000..74c8e2e12 --- /dev/null +++ b/gfx/pokemon/forretress/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 08 + frame 2, 16 + setrepeat 2 + frame 2, 05 + frame 3, 05 + frame 4, 05 + dorepeat 3 + frame 2, 25 + frame 1, 08 + endanim +; 0xd1434 diff --git a/gfx/pokemon/forretress/anim1.asm b/gfx/pokemon/forretress/anim1.asm new file mode 100644 index 000000000..4fafa1a3e --- /dev/null +++ b/gfx/pokemon/forretress/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 5, 06 + dorepeat 1 + endanim +; 0xd2080 diff --git a/gfx/pokemon/forretress/back.2bpp.lz.2b8e5f48 b/gfx/pokemon/forretress/back.2bpp.lz.2b8e5f48 new file mode 100644 index 000000000..1c4b5d69a Binary files /dev/null and b/gfx/pokemon/forretress/back.2bpp.lz.2b8e5f48 differ diff --git a/gfx/pokemon/forretress/back.png b/gfx/pokemon/forretress/back.png new file mode 100644 index 000000000..a64fb1480 Binary files /dev/null and b/gfx/pokemon/forretress/back.png differ diff --git a/gfx/pokemon/forretress/front.animated.2bpp.lz.761b9f80 b/gfx/pokemon/forretress/front.animated.2bpp.lz.761b9f80 new file mode 100644 index 000000000..239e20532 Binary files /dev/null and b/gfx/pokemon/forretress/front.animated.2bpp.lz.761b9f80 differ diff --git a/gfx/pokemon/forretress/front.png b/gfx/pokemon/forretress/front.png new file mode 100644 index 000000000..065237310 Binary files /dev/null and b/gfx/pokemon/forretress/front.png differ diff --git a/gfx/pokemon/forretress/shiny.pal b/gfx/pokemon/forretress/shiny.pal new file mode 100644 index 000000000..84aa229d2 --- /dev/null +++ b/gfx/pokemon/forretress/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 16, 02 + RGB 10, 10, 01 + diff --git a/gfx/pokemon/frame_pointers.asm b/gfx/pokemon/frame_pointers.asm new file mode 100644 index 000000000..cff10ef33 --- /dev/null +++ b/gfx/pokemon/frame_pointers.asm @@ -0,0 +1,252 @@ +FramesPointers: + dw BulbasaurFrames + dw IvysaurFrames + dw VenusaurFrames + dw CharmanderFrames + dw CharmeleonFrames + dw CharizardFrames + dw SquirtleFrames + dw WartortleFrames + dw BlastoiseFrames + dw CaterpieFrames + dw MetapodFrames + dw ButterfreeFrames + dw WeedleFrames + dw KakunaFrames + dw BeedrillFrames + dw PidgeyFrames + dw PidgeottoFrames + dw PidgeotFrames + dw RattataFrames + dw RaticateFrames + dw SpearowFrames + dw FearowFrames + dw EkansFrames + dw ArbokFrames + dw PikachuFrames + dw RaichuFrames + dw SandshrewFrames + dw SandslashFrames + dw NidoranFFrames + dw NidorinaFrames + dw NidoqueenFrames + dw NidoranMFrames + dw NidorinoFrames + dw NidokingFrames + dw ClefairyFrames + dw ClefableFrames + dw VulpixFrames + dw NinetalesFrames + dw JigglypuffFrames + dw WigglytuffFrames + dw ZubatFrames + dw GolbatFrames + dw OddishFrames + dw GloomFrames + dw VileplumeFrames + dw ParasFrames + dw ParasectFrames + dw VenonatFrames + dw VenomothFrames + dw DiglettFrames + dw DugtrioFrames + dw MeowthFrames + dw PersianFrames + dw PsyduckFrames + dw GolduckFrames + dw MankeyFrames + dw PrimeapeFrames + dw GrowlitheFrames + dw ArcanineFrames + dw PoliwagFrames + dw PoliwhirlFrames + dw PoliwrathFrames + dw AbraFrames + dw KadabraFrames + dw AlakazamFrames + dw MachopFrames + dw MachokeFrames + dw MachampFrames + dw BellsproutFrames + dw WeepinbellFrames + dw VictreebelFrames + dw TentacoolFrames + dw TentacruelFrames + dw GeodudeFrames + dw GravelerFrames + dw GolemFrames + dw PonytaFrames + dw RapidashFrames + dw SlowpokeFrames + dw SlowbroFrames + dw MagnemiteFrames + dw MagnetonFrames + dw FarfetchDFrames + dw DoduoFrames + dw DodrioFrames + dw SeelFrames + dw DewgongFrames + dw GrimerFrames + dw MukFrames + dw ShellderFrames + dw CloysterFrames + dw GastlyFrames + dw HaunterFrames + dw GengarFrames + dw OnixFrames + dw DrowzeeFrames + dw HypnoFrames + dw KrabbyFrames + dw KinglerFrames + dw VoltorbFrames + dw ElectrodeFrames + dw ExeggcuteFrames + dw ExeggutorFrames + dw CuboneFrames + dw MarowakFrames + dw HitmonleeFrames + dw HitmonchanFrames + dw LickitungFrames + dw KoffingFrames + dw WeezingFrames + dw RhyhornFrames + dw RhydonFrames + dw ChanseyFrames + dw TangelaFrames + dw KangaskhanFrames + dw HorseaFrames + dw SeadraFrames + dw GoldeenFrames + dw SeakingFrames + dw StaryuFrames + dw StarmieFrames + dw MrMimeFrames + dw ScytherFrames + dw JynxFrames + dw ElectabuzzFrames + dw MagmarFrames + dw PinsirFrames + dw TaurosFrames + dw MagikarpFrames + dw GyaradosFrames + dw LaprasFrames + dw DittoFrames + dw EeveeFrames + dw VaporeonFrames + dw JolteonFrames + dw FlareonFrames + dw PorygonFrames + dw OmanyteFrames + dw OmastarFrames + dw KabutoFrames + dw KabutopsFrames + dw AerodactylFrames + dw SnorlaxFrames + dw ArticunoFrames + dw ZapdosFrames + dw MoltresFrames + dw DratiniFrames + dw DragonairFrames + dw DragoniteFrames + dw MewtwoFrames + dw MewFrames + dw ChikoritaFrames + dw BayleefFrames + dw MeganiumFrames + dw CyndaquilFrames + dw QuilavaFrames + dw TyphlosionFrames + dw TotodileFrames + dw CroconawFrames + dw FeraligatrFrames + dw SentretFrames + dw FurretFrames + dw HoothootFrames + dw NoctowlFrames + dw LedybaFrames + dw LedianFrames + dw SpinarakFrames + dw AriadosFrames + dw CrobatFrames + dw ChinchouFrames + dw LanturnFrames + dw PichuFrames + dw CleffaFrames + dw IgglybuffFrames + dw TogepiFrames + dw TogeticFrames + dw NatuFrames + dw XatuFrames + dw MareepFrames + dw FlaaffyFrames + dw AmpharosFrames + dw BellossomFrames + dw MarillFrames + dw AzumarillFrames + dw SudowoodoFrames + dw PolitoedFrames + dw HoppipFrames + dw SkiploomFrames + dw JumpluffFrames + dw AipomFrames + dw SunkernFrames + dw SunfloraFrames + dw YanmaFrames + dw WooperFrames + dw QuagsireFrames + dw EspeonFrames + dw UmbreonFrames + dw MurkrowFrames + dw SlowkingFrames + dw MisdreavusFrames + dw UnownFrames + dw WobbuffetFrames + dw GirafarigFrames + dw PinecoFrames + dw ForretressFrames + dw DunsparceFrames + dw GligarFrames + dw SteelixFrames + dw SnubbullFrames + dw GranbullFrames + dw QwilfishFrames + dw ScizorFrames + dw ShuckleFrames + dw HeracrossFrames + dw SneaselFrames + dw TeddiursaFrames + dw UrsaringFrames + dw SlugmaFrames + dw MagcargoFrames + dw SwinubFrames + dw PiloswineFrames + dw CorsolaFrames + dw RemoraidFrames + dw OctilleryFrames + dw DelibirdFrames + dw MantineFrames + dw SkarmoryFrames + dw HoundourFrames + dw HoundoomFrames + dw KingdraFrames + dw PhanpyFrames + dw DonphanFrames + dw Porygon2Frames + dw StantlerFrames + dw SmeargleFrames + dw TyrogueFrames + dw HitmontopFrames + dw SmoochumFrames + dw ElekidFrames + dw MagbyFrames + dw MiltankFrames + dw BlisseyFrames + dw RaikouFrames + dw EnteiFrames + dw SuicuneFrames + dw LarvitarFrames + dw PupitarFrames + dw TyranitarFrames + dw LugiaFrames + dw HoOhFrames + dw CelebiFrames diff --git a/gfx/pokemon/furret/anim0.asm b/gfx/pokemon/furret/anim0.asm new file mode 100644 index 000000000..8503d74ec --- /dev/null +++ b/gfx/pokemon/furret/anim0.asm @@ -0,0 +1,8 @@ + frame 3, 22 + setrepeat 2 + frame 0, 08 + frame 1, 08 + frame 2, 08 + dorepeat 2 + endanim +; 0xd11f3 diff --git a/gfx/pokemon/furret/anim1.asm b/gfx/pokemon/furret/anim1.asm new file mode 100644 index 000000000..e175bf7cc --- /dev/null +++ b/gfx/pokemon/furret/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1efb diff --git a/gfx/pokemon/furret/back.2bpp.lz.24792550 b/gfx/pokemon/furret/back.2bpp.lz.24792550 new file mode 100644 index 000000000..0cbe66f49 Binary files /dev/null and b/gfx/pokemon/furret/back.2bpp.lz.24792550 differ diff --git a/gfx/pokemon/furret/back.png b/gfx/pokemon/furret/back.png new file mode 100644 index 000000000..906e6e7f1 Binary files /dev/null and b/gfx/pokemon/furret/back.png differ diff --git a/gfx/pokemon/furret/front.animated.2bpp.lz.f72a2758 b/gfx/pokemon/furret/front.animated.2bpp.lz.f72a2758 new file mode 100644 index 000000000..afba64f59 Binary files /dev/null and b/gfx/pokemon/furret/front.animated.2bpp.lz.f72a2758 differ diff --git a/gfx/pokemon/furret/front.png b/gfx/pokemon/furret/front.png new file mode 100644 index 000000000..3ae88bf70 Binary files /dev/null and b/gfx/pokemon/furret/front.png differ diff --git a/gfx/pokemon/furret/shiny.pal b/gfx/pokemon/furret/shiny.pal new file mode 100644 index 000000000..fe5870bd6 --- /dev/null +++ b/gfx/pokemon/furret/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 13, 31 + RGB 15, 10, 02 + diff --git a/gfx/pokemon/gastly/anim0.asm b/gfx/pokemon/gastly/anim0.asm new file mode 100644 index 000000000..d9414d188 --- /dev/null +++ b/gfx/pokemon/gastly/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 04 + frame 1, 18 + frame 2, 24 + frame 1, 18 + frame 0, 12 + frame 1, 12 + endanim +; 0xd0ddd diff --git a/gfx/pokemon/gastly/anim1.asm b/gfx/pokemon/gastly/anim1.asm new file mode 100644 index 000000000..65dc17abf --- /dev/null +++ b/gfx/pokemon/gastly/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1c57 diff --git a/gfx/pokemon/gastly/back.2bpp.lz.4078fa56 b/gfx/pokemon/gastly/back.2bpp.lz.4078fa56 new file mode 100644 index 000000000..ecb4af90d Binary files /dev/null and b/gfx/pokemon/gastly/back.2bpp.lz.4078fa56 differ diff --git a/gfx/pokemon/gastly/back.png b/gfx/pokemon/gastly/back.png new file mode 100644 index 000000000..78f96fe93 Binary files /dev/null and b/gfx/pokemon/gastly/back.png differ diff --git a/gfx/pokemon/gastly/front.animated.2bpp.lz.84148c1e b/gfx/pokemon/gastly/front.animated.2bpp.lz.84148c1e new file mode 100644 index 000000000..f3d99339b Binary files /dev/null and b/gfx/pokemon/gastly/front.animated.2bpp.lz.84148c1e differ diff --git a/gfx/pokemon/gastly/front.png b/gfx/pokemon/gastly/front.png new file mode 100644 index 000000000..5a28030d4 Binary files /dev/null and b/gfx/pokemon/gastly/front.png differ diff --git a/gfx/pokemon/gastly/shiny.pal b/gfx/pokemon/gastly/shiny.pal new file mode 100644 index 000000000..50e42ab4a --- /dev/null +++ b/gfx/pokemon/gastly/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 17, 30 + RGB 05, 07, 11 + diff --git a/gfx/pokemon/gengar/anim0.asm b/gfx/pokemon/gengar/anim0.asm new file mode 100644 index 000000000..842c47c76 --- /dev/null +++ b/gfx/pokemon/gengar/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 06 + frame 4, 07 + frame 2, 50 + setrepeat 3 + frame 0, 09 + frame 3, 09 + dorepeat 4 + endanim +; 0xd0df7 diff --git a/gfx/pokemon/gengar/anim1.asm b/gfx/pokemon/gengar/anim1.asm new file mode 100644 index 000000000..09df5dca3 --- /dev/null +++ b/gfx/pokemon/gengar/anim1.asm @@ -0,0 +1,9 @@ + setrepeat 2 + frame 5, 02 + frame 0, 02 + dorepeat 1 + frame 5, 09 + frame 6, 09 + frame 5, 09 + endanim +; 0xd1c69 diff --git a/gfx/pokemon/gengar/back.2bpp.lz.5237ee63 b/gfx/pokemon/gengar/back.2bpp.lz.5237ee63 new file mode 100644 index 000000000..d1ecca65e Binary files /dev/null and b/gfx/pokemon/gengar/back.2bpp.lz.5237ee63 differ diff --git a/gfx/pokemon/gengar/back.png b/gfx/pokemon/gengar/back.png new file mode 100644 index 000000000..1cb67715d Binary files /dev/null and b/gfx/pokemon/gengar/back.png differ diff --git a/gfx/pokemon/gengar/front.animated.2bpp.lz.65ddc6f5 b/gfx/pokemon/gengar/front.animated.2bpp.lz.65ddc6f5 new file mode 100644 index 000000000..a11754646 Binary files /dev/null and b/gfx/pokemon/gengar/front.animated.2bpp.lz.65ddc6f5 differ diff --git a/gfx/pokemon/gengar/front.png b/gfx/pokemon/gengar/front.png new file mode 100644 index 000000000..5fa68e3a0 Binary files /dev/null and b/gfx/pokemon/gengar/front.png differ diff --git a/gfx/pokemon/gengar/shiny.pal b/gfx/pokemon/gengar/shiny.pal new file mode 100644 index 000000000..ccf6bf685 --- /dev/null +++ b/gfx/pokemon/gengar/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 00, 29 + RGB 15, 12, 23 + diff --git a/gfx/pokemon/geodude/anim0.asm b/gfx/pokemon/geodude/anim0.asm new file mode 100644 index 000000000..3c54bc94e --- /dev/null +++ b/gfx/pokemon/geodude/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 08 + frame 1, 16 + setrepeat 3 + frame 2, 07 + frame 1, 07 + dorepeat 3 + endanim +; 0xd0ceb diff --git a/gfx/pokemon/geodude/anim1.asm b/gfx/pokemon/geodude/anim1.asm new file mode 100644 index 000000000..4ec72d9b1 --- /dev/null +++ b/gfx/pokemon/geodude/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1ba9 diff --git a/gfx/pokemon/geodude/back.2bpp.lz.d5aa5e9f b/gfx/pokemon/geodude/back.2bpp.lz.d5aa5e9f new file mode 100644 index 000000000..443fd327d Binary files /dev/null and b/gfx/pokemon/geodude/back.2bpp.lz.d5aa5e9f differ diff --git a/gfx/pokemon/geodude/back.png b/gfx/pokemon/geodude/back.png new file mode 100644 index 000000000..0b3acd0c1 Binary files /dev/null and b/gfx/pokemon/geodude/back.png differ diff --git a/gfx/pokemon/geodude/front.animated.2bpp.lz.d743f2c9 b/gfx/pokemon/geodude/front.animated.2bpp.lz.d743f2c9 new file mode 100644 index 000000000..96bd9f794 Binary files /dev/null and b/gfx/pokemon/geodude/front.animated.2bpp.lz.d743f2c9 differ diff --git a/gfx/pokemon/geodude/front.png b/gfx/pokemon/geodude/front.png new file mode 100644 index 000000000..22fb6c4a7 Binary files /dev/null and b/gfx/pokemon/geodude/front.png differ diff --git a/gfx/pokemon/geodude/shiny.pal b/gfx/pokemon/geodude/shiny.pal new file mode 100644 index 000000000..305e1a362 --- /dev/null +++ b/gfx/pokemon/geodude/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 17, 15 + RGB 15, 13, 07 + diff --git a/gfx/pokemon/girafarig/anim0.asm b/gfx/pokemon/girafarig/anim0.asm new file mode 100644 index 000000000..3a7ebd9fe --- /dev/null +++ b/gfx/pokemon/girafarig/anim0.asm @@ -0,0 +1,14 @@ + frame 1, 15 + frame 4, 04 + setrepeat 2 + frame 1, 05 + frame 2, 05 + dorepeat 3 + setrepeat 3 + frame 1, 05 + frame 4, 05 + dorepeat 7 + frame 5, 05 + frame 3, 05 + endanim +; 0xd141c diff --git a/gfx/pokemon/girafarig/anim1.asm b/gfx/pokemon/girafarig/anim1.asm new file mode 100644 index 000000000..95b1131ca --- /dev/null +++ b/gfx/pokemon/girafarig/anim1.asm @@ -0,0 +1,4 @@ + frame 5, 16 + frame 3, 16 + endanim +; 0xd206e diff --git a/gfx/pokemon/girafarig/back.2bpp.lz.5dd68457 b/gfx/pokemon/girafarig/back.2bpp.lz.5dd68457 new file mode 100644 index 000000000..aca23f976 Binary files /dev/null and b/gfx/pokemon/girafarig/back.2bpp.lz.5dd68457 differ diff --git a/gfx/pokemon/girafarig/back.png b/gfx/pokemon/girafarig/back.png new file mode 100644 index 000000000..6ca3e0dea Binary files /dev/null and b/gfx/pokemon/girafarig/back.png differ diff --git a/gfx/pokemon/girafarig/front.animated.2bpp.lz.76d809c4 b/gfx/pokemon/girafarig/front.animated.2bpp.lz.76d809c4 new file mode 100644 index 000000000..48c9fc94a Binary files /dev/null and b/gfx/pokemon/girafarig/front.animated.2bpp.lz.76d809c4 differ diff --git a/gfx/pokemon/girafarig/front.png b/gfx/pokemon/girafarig/front.png new file mode 100644 index 000000000..18071ac82 Binary files /dev/null and b/gfx/pokemon/girafarig/front.png differ diff --git a/gfx/pokemon/girafarig/shiny.pal b/gfx/pokemon/girafarig/shiny.pal new file mode 100644 index 000000000..51b7f3847 --- /dev/null +++ b/gfx/pokemon/girafarig/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 19, 00 + RGB 05, 04, 31 + diff --git a/gfx/pokemon/gligar/anim0.asm b/gfx/pokemon/gligar/anim0.asm new file mode 100644 index 000000000..1dabf6cbd --- /dev/null +++ b/gfx/pokemon/gligar/anim0.asm @@ -0,0 +1,3 @@ + frame 1, 35 + endanim +; 0xd1444 diff --git a/gfx/pokemon/gligar/anim1.asm b/gfx/pokemon/gligar/anim1.asm new file mode 100644 index 000000000..0cc7c0916 --- /dev/null +++ b/gfx/pokemon/gligar/anim1.asm @@ -0,0 +1,3 @@ + frame 1, 35 + endanim +; 0xd208c diff --git a/gfx/pokemon/gligar/back.2bpp.lz.ee922122 b/gfx/pokemon/gligar/back.2bpp.lz.ee922122 new file mode 100644 index 000000000..45b7d9b76 Binary files /dev/null and b/gfx/pokemon/gligar/back.2bpp.lz.ee922122 differ diff --git a/gfx/pokemon/gligar/back.png b/gfx/pokemon/gligar/back.png new file mode 100644 index 000000000..64bcc503f Binary files /dev/null and b/gfx/pokemon/gligar/back.png differ diff --git a/gfx/pokemon/gligar/front.animated.2bpp.lz.4dcc41b3 b/gfx/pokemon/gligar/front.animated.2bpp.lz.4dcc41b3 new file mode 100644 index 000000000..4ef9e5398 Binary files /dev/null and b/gfx/pokemon/gligar/front.animated.2bpp.lz.4dcc41b3 differ diff --git a/gfx/pokemon/gligar/front.png b/gfx/pokemon/gligar/front.png new file mode 100644 index 000000000..729bc9d7f Binary files /dev/null and b/gfx/pokemon/gligar/front.png differ diff --git a/gfx/pokemon/gligar/shiny.pal b/gfx/pokemon/gligar/shiny.pal new file mode 100644 index 000000000..b33b2c373 --- /dev/null +++ b/gfx/pokemon/gligar/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 15, 19 + RGB 06, 06, 31 + diff --git a/gfx/pokemon/gloom/anim0.asm b/gfx/pokemon/gloom/anim0.asm new file mode 100644 index 000000000..89c6805b9 --- /dev/null +++ b/gfx/pokemon/gloom/anim0.asm @@ -0,0 +1,12 @@ + frame 0, 04 + frame 1, 10 + frame 2, 14 + frame 3, 20 + frame 2, 10 + frame 3, 08 + frame 4, 07 + frame 5, 07 + frame 0, 06 + frame 5, 06 + endanim +; 0xd0b35 diff --git a/gfx/pokemon/gloom/anim1.asm b/gfx/pokemon/gloom/anim1.asm new file mode 100644 index 000000000..cdb6c5191 --- /dev/null +++ b/gfx/pokemon/gloom/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 5, 10 + dorepeat 1 + endanim +; 0xd1a75 diff --git a/gfx/pokemon/gloom/back.2bpp.lz.9a321f63 b/gfx/pokemon/gloom/back.2bpp.lz.9a321f63 new file mode 100644 index 000000000..7d35e2d82 Binary files /dev/null and b/gfx/pokemon/gloom/back.2bpp.lz.9a321f63 differ diff --git a/gfx/pokemon/gloom/back.png b/gfx/pokemon/gloom/back.png new file mode 100644 index 000000000..9308b29ae Binary files /dev/null and b/gfx/pokemon/gloom/back.png differ diff --git a/gfx/pokemon/gloom/front.animated.2bpp.lz.c6ef04a5 b/gfx/pokemon/gloom/front.animated.2bpp.lz.c6ef04a5 new file mode 100644 index 000000000..a69e4b76c Binary files /dev/null and b/gfx/pokemon/gloom/front.animated.2bpp.lz.c6ef04a5 differ diff --git a/gfx/pokemon/gloom/front.png b/gfx/pokemon/gloom/front.png new file mode 100644 index 000000000..34625df13 Binary files /dev/null and b/gfx/pokemon/gloom/front.png differ diff --git a/gfx/pokemon/gloom/shiny.pal b/gfx/pokemon/gloom/shiny.pal new file mode 100644 index 000000000..998bfce6e --- /dev/null +++ b/gfx/pokemon/gloom/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 21, 05 + RGB 13, 17, 12 + diff --git a/gfx/pokemon/golbat/anim0.asm b/gfx/pokemon/golbat/anim0.asm new file mode 100644 index 000000000..cb04c1a3b --- /dev/null +++ b/gfx/pokemon/golbat/anim0.asm @@ -0,0 +1,11 @@ + frame 0, 08 + setrepeat 2 + frame 2, 09 + frame 3, 09 + dorepeat 2 + setrepeat 3 + frame 3, 08 + frame 1, 08 + dorepeat 6 + endanim +; 0xd0b0d diff --git a/gfx/pokemon/golbat/anim1.asm b/gfx/pokemon/golbat/anim1.asm new file mode 100644 index 000000000..689aed3fd --- /dev/null +++ b/gfx/pokemon/golbat/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1a63 diff --git a/gfx/pokemon/golbat/back.2bpp.lz.e277e260 b/gfx/pokemon/golbat/back.2bpp.lz.e277e260 new file mode 100644 index 000000000..e2bd0c367 Binary files /dev/null and b/gfx/pokemon/golbat/back.2bpp.lz.e277e260 differ diff --git a/gfx/pokemon/golbat/back.png b/gfx/pokemon/golbat/back.png new file mode 100644 index 000000000..5bc2b1336 Binary files /dev/null and b/gfx/pokemon/golbat/back.png differ diff --git a/gfx/pokemon/golbat/front.animated.2bpp.lz.c35ffe9b b/gfx/pokemon/golbat/front.animated.2bpp.lz.c35ffe9b new file mode 100644 index 000000000..94f7d8216 Binary files /dev/null and b/gfx/pokemon/golbat/front.animated.2bpp.lz.c35ffe9b differ diff --git a/gfx/pokemon/golbat/front.png b/gfx/pokemon/golbat/front.png new file mode 100644 index 000000000..5a7d1745a Binary files /dev/null and b/gfx/pokemon/golbat/front.png differ diff --git a/gfx/pokemon/golbat/shiny.pal b/gfx/pokemon/golbat/shiny.pal new file mode 100644 index 000000000..2cb1d6ced --- /dev/null +++ b/gfx/pokemon/golbat/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 12, 19 + RGB 07, 15, 00 + diff --git a/gfx/pokemon/goldeen/anim0.asm b/gfx/pokemon/goldeen/anim0.asm new file mode 100644 index 000000000..c93141feb --- /dev/null +++ b/gfx/pokemon/goldeen/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 30 + frame 0, 16 + setrepeat 4 + frame 2, 12 + frame 0, 12 + dorepeat 3 + endanim +; 0xd0f61 diff --git a/gfx/pokemon/goldeen/anim1.asm b/gfx/pokemon/goldeen/anim1.asm new file mode 100644 index 000000000..f31dfd1b2 --- /dev/null +++ b/gfx/pokemon/goldeen/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 1 + endanim +; 0xd1d49 diff --git a/gfx/pokemon/goldeen/back.2bpp.lz.d0e5751e b/gfx/pokemon/goldeen/back.2bpp.lz.d0e5751e new file mode 100644 index 000000000..5d00534ec Binary files /dev/null and b/gfx/pokemon/goldeen/back.2bpp.lz.d0e5751e differ diff --git a/gfx/pokemon/goldeen/back.png b/gfx/pokemon/goldeen/back.png new file mode 100644 index 000000000..7644dc343 Binary files /dev/null and b/gfx/pokemon/goldeen/back.png differ diff --git a/gfx/pokemon/goldeen/front.animated.2bpp.lz.c451a8c4 b/gfx/pokemon/goldeen/front.animated.2bpp.lz.c451a8c4 new file mode 100644 index 000000000..f0090e94e Binary files /dev/null and b/gfx/pokemon/goldeen/front.animated.2bpp.lz.c451a8c4 differ diff --git a/gfx/pokemon/goldeen/front.png b/gfx/pokemon/goldeen/front.png new file mode 100644 index 000000000..c3a874b35 Binary files /dev/null and b/gfx/pokemon/goldeen/front.png differ diff --git a/gfx/pokemon/goldeen/shiny.pal b/gfx/pokemon/goldeen/shiny.pal new file mode 100644 index 000000000..14910020e --- /dev/null +++ b/gfx/pokemon/goldeen/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 19, 00 + RGB 30, 14, 00 + diff --git a/gfx/pokemon/golduck/anim0.asm b/gfx/pokemon/golduck/anim0.asm new file mode 100644 index 000000000..41ce17c55 --- /dev/null +++ b/gfx/pokemon/golduck/anim0.asm @@ -0,0 +1,13 @@ + frame 1, 07 + frame 2, 15 + setrepeat 2 + frame 3, 08 + frame 4, 05 + dorepeat 3 + frame 5, 13 + setrepeat 3 + frame 5, 10 + frame 6, 10 + dorepeat 8 + endanim +; 0xd0bf4 diff --git a/gfx/pokemon/golduck/anim1.asm b/gfx/pokemon/golduck/anim1.asm new file mode 100644 index 000000000..a73476ca9 --- /dev/null +++ b/gfx/pokemon/golduck/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 7, 15 + dorepeat 1 + endanim +; 0xd1ae2 diff --git a/gfx/pokemon/golduck/back.2bpp.lz.2d022642 b/gfx/pokemon/golduck/back.2bpp.lz.2d022642 new file mode 100644 index 000000000..13807b9e9 Binary files /dev/null and b/gfx/pokemon/golduck/back.2bpp.lz.2d022642 differ diff --git a/gfx/pokemon/golduck/back.png b/gfx/pokemon/golduck/back.png new file mode 100644 index 000000000..4791a6b8e Binary files /dev/null and b/gfx/pokemon/golduck/back.png differ diff --git a/gfx/pokemon/golduck/front.animated.2bpp.lz.09e97414 b/gfx/pokemon/golduck/front.animated.2bpp.lz.09e97414 new file mode 100644 index 000000000..ff3fa6792 Binary files /dev/null and b/gfx/pokemon/golduck/front.animated.2bpp.lz.09e97414 differ diff --git a/gfx/pokemon/golduck/front.png b/gfx/pokemon/golduck/front.png new file mode 100644 index 000000000..172653ab2 Binary files /dev/null and b/gfx/pokemon/golduck/front.png differ diff --git a/gfx/pokemon/golduck/shiny.pal b/gfx/pokemon/golduck/shiny.pal new file mode 100644 index 000000000..cfd29e90e --- /dev/null +++ b/gfx/pokemon/golduck/shiny.pal @@ -0,0 +1,4 @@ + + RGB 28, 10, 13 + RGB 07, 17, 30 + diff --git a/gfx/pokemon/golem/anim0.asm b/gfx/pokemon/golem/anim0.asm new file mode 100644 index 000000000..ef21ec211 --- /dev/null +++ b/gfx/pokemon/golem/anim0.asm @@ -0,0 +1,7 @@ + frame 0, 08 + frame 1, 12 + frame 2, 18 + frame 1, 12 + frame 3, 12 + endanim +; 0xd0d07 diff --git a/gfx/pokemon/golem/anim1.asm b/gfx/pokemon/golem/anim1.asm new file mode 100644 index 000000000..9d3c23ba3 --- /dev/null +++ b/gfx/pokemon/golem/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd1bbd diff --git a/gfx/pokemon/golem/back.2bpp.lz.ae903dee b/gfx/pokemon/golem/back.2bpp.lz.ae903dee new file mode 100644 index 000000000..fd1ee3dcb Binary files /dev/null and b/gfx/pokemon/golem/back.2bpp.lz.ae903dee differ diff --git a/gfx/pokemon/golem/back.png b/gfx/pokemon/golem/back.png new file mode 100644 index 000000000..4b39da3cd Binary files /dev/null and b/gfx/pokemon/golem/back.png differ diff --git a/gfx/pokemon/golem/front.animated.2bpp.lz.a16f21c8 b/gfx/pokemon/golem/front.animated.2bpp.lz.a16f21c8 new file mode 100644 index 000000000..0a7bf3369 Binary files /dev/null and b/gfx/pokemon/golem/front.animated.2bpp.lz.a16f21c8 differ diff --git a/gfx/pokemon/golem/front.png b/gfx/pokemon/golem/front.png new file mode 100644 index 000000000..8a8450b28 Binary files /dev/null and b/gfx/pokemon/golem/front.png differ diff --git a/gfx/pokemon/golem/shiny.pal b/gfx/pokemon/golem/shiny.pal new file mode 100644 index 000000000..d50b44fa6 --- /dev/null +++ b/gfx/pokemon/golem/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 15, 12 + RGB 19, 07, 03 + diff --git a/gfx/pokemon/granbull/anim0.asm b/gfx/pokemon/granbull/anim0.asm new file mode 100644 index 000000000..2f412479f --- /dev/null +++ b/gfx/pokemon/granbull/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 32 + frame 0, 16 + setrepeat 2 + frame 1, 07 + frame 0, 07 + dorepeat 3 + endanim +; 0xd146f diff --git a/gfx/pokemon/granbull/anim1.asm b/gfx/pokemon/granbull/anim1.asm new file mode 100644 index 000000000..22e166977 --- /dev/null +++ b/gfx/pokemon/granbull/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 2, 06 + dorepeat 1 + endanim +; 0xd20a7 diff --git a/gfx/pokemon/granbull/back.2bpp.lz.7f1208ed b/gfx/pokemon/granbull/back.2bpp.lz.7f1208ed new file mode 100644 index 000000000..f09d4e7dc Binary files /dev/null and b/gfx/pokemon/granbull/back.2bpp.lz.7f1208ed differ diff --git a/gfx/pokemon/granbull/back.png b/gfx/pokemon/granbull/back.png new file mode 100644 index 000000000..9ffdc7c99 Binary files /dev/null and b/gfx/pokemon/granbull/back.png differ diff --git a/gfx/pokemon/granbull/front.animated.2bpp.lz.4504768b b/gfx/pokemon/granbull/front.animated.2bpp.lz.4504768b new file mode 100644 index 000000000..94062ce3f Binary files /dev/null and b/gfx/pokemon/granbull/front.animated.2bpp.lz.4504768b differ diff --git a/gfx/pokemon/granbull/front.png b/gfx/pokemon/granbull/front.png new file mode 100644 index 000000000..911bc59ae Binary files /dev/null and b/gfx/pokemon/granbull/front.png differ diff --git a/gfx/pokemon/granbull/shiny.pal b/gfx/pokemon/granbull/shiny.pal new file mode 100644 index 000000000..b15bd641c --- /dev/null +++ b/gfx/pokemon/granbull/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 20, 16 + RGB 14, 12, 12 + diff --git a/gfx/pokemon/graveler/anim0.asm b/gfx/pokemon/graveler/anim0.asm new file mode 100644 index 000000000..8c0fba1ac --- /dev/null +++ b/gfx/pokemon/graveler/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 12 + frame 2, 12 + frame 3, 17 + frame 0, 15 + setrepeat 2 + frame 0, 09 + frame 4, 09 + dorepeat 5 + endanim +; 0xd0cfc diff --git a/gfx/pokemon/graveler/anim1.asm b/gfx/pokemon/graveler/anim1.asm new file mode 100644 index 000000000..e4ebc15e0 --- /dev/null +++ b/gfx/pokemon/graveler/anim1.asm @@ -0,0 +1,7 @@ + frame 2, 35 + setrepeat 2 + frame 0, 20 + frame 5, 20 + dorepeat 2 + endanim +; 0xd1bb4 diff --git a/gfx/pokemon/graveler/back.2bpp.lz.c7867de7 b/gfx/pokemon/graveler/back.2bpp.lz.c7867de7 new file mode 100644 index 000000000..ba2fba8e6 Binary files /dev/null and b/gfx/pokemon/graveler/back.2bpp.lz.c7867de7 differ diff --git a/gfx/pokemon/graveler/back.png b/gfx/pokemon/graveler/back.png new file mode 100644 index 000000000..17eb486b6 Binary files /dev/null and b/gfx/pokemon/graveler/back.png differ diff --git a/gfx/pokemon/graveler/front.animated.2bpp.lz.68d07c61 b/gfx/pokemon/graveler/front.animated.2bpp.lz.68d07c61 new file mode 100644 index 000000000..5dcee6436 Binary files /dev/null and b/gfx/pokemon/graveler/front.animated.2bpp.lz.68d07c61 differ diff --git a/gfx/pokemon/graveler/front.png b/gfx/pokemon/graveler/front.png new file mode 100644 index 000000000..30cca1550 Binary files /dev/null and b/gfx/pokemon/graveler/front.png differ diff --git a/gfx/pokemon/graveler/shiny.pal b/gfx/pokemon/graveler/shiny.pal new file mode 100644 index 000000000..36ba603c5 --- /dev/null +++ b/gfx/pokemon/graveler/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 14, 12 + RGB 16, 11, 07 + diff --git a/gfx/pokemon/grimer/anim0.asm b/gfx/pokemon/grimer/anim0.asm new file mode 100644 index 000000000..c8edda489 --- /dev/null +++ b/gfx/pokemon/grimer/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 04 + frame 2, 12 + frame 1, 08 + frame 2, 28 + endanim +; 0xd0db3 diff --git a/gfx/pokemon/grimer/anim1.asm b/gfx/pokemon/grimer/anim1.asm new file mode 100644 index 000000000..50829935e --- /dev/null +++ b/gfx/pokemon/grimer/anim1.asm @@ -0,0 +1,8 @@ + frame 3, 04 + setrepeat 2 + frame 1, 08 + frame 4, 08 + dorepeat 2 + frame 2, 16 + endanim +; 0xd1c37 diff --git a/gfx/pokemon/grimer/back.2bpp.lz.833bd626 b/gfx/pokemon/grimer/back.2bpp.lz.833bd626 new file mode 100644 index 000000000..d4494a003 Binary files /dev/null and b/gfx/pokemon/grimer/back.2bpp.lz.833bd626 differ diff --git a/gfx/pokemon/grimer/back.png b/gfx/pokemon/grimer/back.png new file mode 100644 index 000000000..e5c70286b Binary files /dev/null and b/gfx/pokemon/grimer/back.png differ diff --git a/gfx/pokemon/grimer/front.animated.2bpp.lz.dfe40e91 b/gfx/pokemon/grimer/front.animated.2bpp.lz.dfe40e91 new file mode 100644 index 000000000..176f2da1c Binary files /dev/null and b/gfx/pokemon/grimer/front.animated.2bpp.lz.dfe40e91 differ diff --git a/gfx/pokemon/grimer/front.png b/gfx/pokemon/grimer/front.png new file mode 100644 index 000000000..f71dca145 Binary files /dev/null and b/gfx/pokemon/grimer/front.png differ diff --git a/gfx/pokemon/grimer/shiny.pal b/gfx/pokemon/grimer/shiny.pal new file mode 100644 index 000000000..893276df4 --- /dev/null +++ b/gfx/pokemon/grimer/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 19, 01 + RGB 11, 10, 10 + diff --git a/gfx/pokemon/growlithe/anim0.asm b/gfx/pokemon/growlithe/anim0.asm new file mode 100644 index 000000000..333c08e67 --- /dev/null +++ b/gfx/pokemon/growlithe/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 08 + frame 2, 10 + frame 0, 18 + setrepeat 3 + frame 1, 08 + frame 2, 08 + dorepeat 4 + endanim +; 0xd0c1b diff --git a/gfx/pokemon/growlithe/anim1.asm b/gfx/pokemon/growlithe/anim1.asm new file mode 100644 index 000000000..bce18fa44 --- /dev/null +++ b/gfx/pokemon/growlithe/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 2, 08 + frame 3, 08 + dorepeat 1 + frame 2, 16 + endanim +; 0xd1b03 diff --git a/gfx/pokemon/growlithe/back.2bpp.lz.7f5831f6 b/gfx/pokemon/growlithe/back.2bpp.lz.7f5831f6 new file mode 100644 index 000000000..222250f79 Binary files /dev/null and b/gfx/pokemon/growlithe/back.2bpp.lz.7f5831f6 differ diff --git a/gfx/pokemon/growlithe/back.png b/gfx/pokemon/growlithe/back.png new file mode 100644 index 000000000..e5e23b822 Binary files /dev/null and b/gfx/pokemon/growlithe/back.png differ diff --git a/gfx/pokemon/growlithe/front.animated.2bpp.lz.f7b376fa b/gfx/pokemon/growlithe/front.animated.2bpp.lz.f7b376fa new file mode 100644 index 000000000..a01b4f1fc Binary files /dev/null and b/gfx/pokemon/growlithe/front.animated.2bpp.lz.f7b376fa differ diff --git a/gfx/pokemon/growlithe/front.png b/gfx/pokemon/growlithe/front.png new file mode 100644 index 000000000..333568169 Binary files /dev/null and b/gfx/pokemon/growlithe/front.png differ diff --git a/gfx/pokemon/growlithe/shiny.pal b/gfx/pokemon/growlithe/shiny.pal new file mode 100644 index 000000000..5033bfda2 --- /dev/null +++ b/gfx/pokemon/growlithe/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 20, 07 + RGB 21, 13, 00 + diff --git a/gfx/pokemon/gyarados/anim0.asm b/gfx/pokemon/gyarados/anim0.asm new file mode 100644 index 000000000..89195fa31 --- /dev/null +++ b/gfx/pokemon/gyarados/anim0.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 1, 11 + frame 2, 11 + dorepeat 1 + endanim +; 0xd100b diff --git a/gfx/pokemon/gyarados/anim1.asm b/gfx/pokemon/gyarados/anim1.asm new file mode 100644 index 000000000..b33c52080 --- /dev/null +++ b/gfx/pokemon/gyarados/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1db7 diff --git a/gfx/pokemon/gyarados/back.2bpp.lz.fc577f9e b/gfx/pokemon/gyarados/back.2bpp.lz.fc577f9e new file mode 100644 index 000000000..d061ec9b2 Binary files /dev/null and b/gfx/pokemon/gyarados/back.2bpp.lz.fc577f9e differ diff --git a/gfx/pokemon/gyarados/back.png b/gfx/pokemon/gyarados/back.png new file mode 100644 index 000000000..12e942927 Binary files /dev/null and b/gfx/pokemon/gyarados/back.png differ diff --git a/gfx/pokemon/gyarados/front.animated.2bpp.lz.1b498e2b b/gfx/pokemon/gyarados/front.animated.2bpp.lz.1b498e2b new file mode 100644 index 000000000..4d66d5814 Binary files /dev/null and b/gfx/pokemon/gyarados/front.animated.2bpp.lz.1b498e2b differ diff --git a/gfx/pokemon/gyarados/front.png b/gfx/pokemon/gyarados/front.png new file mode 100644 index 000000000..0b6c883e9 Binary files /dev/null and b/gfx/pokemon/gyarados/front.png differ diff --git a/gfx/pokemon/gyarados/shiny.pal b/gfx/pokemon/gyarados/shiny.pal new file mode 100644 index 000000000..d0599722d --- /dev/null +++ b/gfx/pokemon/gyarados/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 20, 08 + RGB 27, 10, 05 + diff --git a/gfx/pokemon/haunter/anim0.asm b/gfx/pokemon/haunter/anim0.asm new file mode 100644 index 000000000..a46d0f0bc --- /dev/null +++ b/gfx/pokemon/haunter/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 10 + frame 2, 10 + frame 3, 44 + frame 2, 10 + frame 1, 10 + endanim +; 0xd0de8 diff --git a/gfx/pokemon/haunter/anim1.asm b/gfx/pokemon/haunter/anim1.asm new file mode 100644 index 000000000..bf439b1e1 --- /dev/null +++ b/gfx/pokemon/haunter/anim1.asm @@ -0,0 +1,3 @@ + frame 4, 58 + endanim +; 0xd1c5a diff --git a/gfx/pokemon/haunter/back.2bpp.lz.8a5dc2c1 b/gfx/pokemon/haunter/back.2bpp.lz.8a5dc2c1 new file mode 100644 index 000000000..660c0408b Binary files /dev/null and b/gfx/pokemon/haunter/back.2bpp.lz.8a5dc2c1 differ diff --git a/gfx/pokemon/haunter/back.png b/gfx/pokemon/haunter/back.png new file mode 100644 index 000000000..204e1987f Binary files /dev/null and b/gfx/pokemon/haunter/back.png differ diff --git a/gfx/pokemon/haunter/front.animated.2bpp.lz.aeed5f7e b/gfx/pokemon/haunter/front.animated.2bpp.lz.aeed5f7e new file mode 100644 index 000000000..6bb6ab582 Binary files /dev/null and b/gfx/pokemon/haunter/front.animated.2bpp.lz.aeed5f7e differ diff --git a/gfx/pokemon/haunter/front.png b/gfx/pokemon/haunter/front.png new file mode 100644 index 000000000..5f6c2d1b3 Binary files /dev/null and b/gfx/pokemon/haunter/front.png differ diff --git a/gfx/pokemon/haunter/shiny.pal b/gfx/pokemon/haunter/shiny.pal new file mode 100644 index 000000000..b8ea0d809 --- /dev/null +++ b/gfx/pokemon/haunter/shiny.pal @@ -0,0 +1,4 @@ + + RGB 10, 09, 27 + RGB 08, 00, 19 + diff --git a/gfx/pokemon/heracross/anim0.asm b/gfx/pokemon/heracross/anim0.asm new file mode 100644 index 000000000..5bba06fad --- /dev/null +++ b/gfx/pokemon/heracross/anim0.asm @@ -0,0 +1,5 @@ + frame 0, 06 + frame 1, 20 + frame 2, 18 + endanim +; 0xd14a5 diff --git a/gfx/pokemon/heracross/anim1.asm b/gfx/pokemon/heracross/anim1.asm new file mode 100644 index 000000000..6c402379c --- /dev/null +++ b/gfx/pokemon/heracross/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd20cb diff --git a/gfx/pokemon/heracross/back.2bpp.lz.ba09608b b/gfx/pokemon/heracross/back.2bpp.lz.ba09608b new file mode 100644 index 000000000..da4d40981 Binary files /dev/null and b/gfx/pokemon/heracross/back.2bpp.lz.ba09608b differ diff --git a/gfx/pokemon/heracross/back.png b/gfx/pokemon/heracross/back.png new file mode 100644 index 000000000..f3ee9d73d Binary files /dev/null and b/gfx/pokemon/heracross/back.png differ diff --git a/gfx/pokemon/heracross/front.animated.2bpp.lz.0742fe2b b/gfx/pokemon/heracross/front.animated.2bpp.lz.0742fe2b new file mode 100644 index 000000000..ad23e01d1 Binary files /dev/null and b/gfx/pokemon/heracross/front.animated.2bpp.lz.0742fe2b differ diff --git a/gfx/pokemon/heracross/front.png b/gfx/pokemon/heracross/front.png new file mode 100644 index 000000000..a8908ab86 Binary files /dev/null and b/gfx/pokemon/heracross/front.png differ diff --git a/gfx/pokemon/heracross/shiny.pal b/gfx/pokemon/heracross/shiny.pal new file mode 100644 index 000000000..3bc81cbdc --- /dev/null +++ b/gfx/pokemon/heracross/shiny.pal @@ -0,0 +1,4 @@ + + RGB 15, 09, 24 + RGB 13, 03, 16 + diff --git a/gfx/pokemon/hitmonchan/anim0.asm b/gfx/pokemon/hitmonchan/anim0.asm new file mode 100644 index 000000000..b6ddd647e --- /dev/null +++ b/gfx/pokemon/hitmonchan/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 20 + setrepeat 3 + frame 1, 06 + frame 2, 06 + dorepeat 2 + frame 1, 15 + frame 3, 06 + frame 1, 40 + frame 2, 10 + endanim +; 0xd0eda diff --git a/gfx/pokemon/hitmonchan/anim1.asm b/gfx/pokemon/hitmonchan/anim1.asm new file mode 100644 index 000000000..6f67577a0 --- /dev/null +++ b/gfx/pokemon/hitmonchan/anim1.asm @@ -0,0 +1,8 @@ + frame 1, 40 + setrepeat 4 + frame 5, 09 + frame 4, 09 + dorepeat 2 + frame 4, 20 + endanim +; 0xd1ce2 diff --git a/gfx/pokemon/hitmonchan/back.2bpp.lz.68e28b98 b/gfx/pokemon/hitmonchan/back.2bpp.lz.68e28b98 new file mode 100644 index 000000000..f785248c1 Binary files /dev/null and b/gfx/pokemon/hitmonchan/back.2bpp.lz.68e28b98 differ diff --git a/gfx/pokemon/hitmonchan/back.png b/gfx/pokemon/hitmonchan/back.png new file mode 100644 index 000000000..6a2e663e3 Binary files /dev/null and b/gfx/pokemon/hitmonchan/back.png differ diff --git a/gfx/pokemon/hitmonchan/front.animated.2bpp.lz.61836c4c b/gfx/pokemon/hitmonchan/front.animated.2bpp.lz.61836c4c new file mode 100644 index 000000000..e9a77e987 Binary files /dev/null and b/gfx/pokemon/hitmonchan/front.animated.2bpp.lz.61836c4c differ diff --git a/gfx/pokemon/hitmonchan/front.png b/gfx/pokemon/hitmonchan/front.png new file mode 100644 index 000000000..6575dad5a Binary files /dev/null and b/gfx/pokemon/hitmonchan/front.png differ diff --git a/gfx/pokemon/hitmonchan/shiny.pal b/gfx/pokemon/hitmonchan/shiny.pal new file mode 100644 index 000000000..ff930b7a5 --- /dev/null +++ b/gfx/pokemon/hitmonchan/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 17, 12 + RGB 08, 03, 31 + diff --git a/gfx/pokemon/hitmonlee/anim0.asm b/gfx/pokemon/hitmonlee/anim0.asm new file mode 100644 index 000000000..4260d7753 --- /dev/null +++ b/gfx/pokemon/hitmonlee/anim0.asm @@ -0,0 +1,13 @@ + frame 0, 04 + frame 5, 24 + frame 1, 12 + frame 2, 06 + frame 3, 10 + frame 4, 06 + frame 1, 05 + frame 2, 05 + frame 3, 05 + frame 4, 05 + frame 1, 08 + endanim +; 0xd0ec7 diff --git a/gfx/pokemon/hitmonlee/anim1.asm b/gfx/pokemon/hitmonlee/anim1.asm new file mode 100644 index 000000000..4d7d191bf --- /dev/null +++ b/gfx/pokemon/hitmonlee/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 1 + endanim +; 0xd1cd5 diff --git a/gfx/pokemon/hitmonlee/back.2bpp.lz.374e3caa b/gfx/pokemon/hitmonlee/back.2bpp.lz.374e3caa new file mode 100644 index 000000000..4847a1496 Binary files /dev/null and b/gfx/pokemon/hitmonlee/back.2bpp.lz.374e3caa differ diff --git a/gfx/pokemon/hitmonlee/back.png b/gfx/pokemon/hitmonlee/back.png new file mode 100644 index 000000000..9bc03d5e7 Binary files /dev/null and b/gfx/pokemon/hitmonlee/back.png differ diff --git a/gfx/pokemon/hitmonlee/front.animated.2bpp.lz.d174eba1 b/gfx/pokemon/hitmonlee/front.animated.2bpp.lz.d174eba1 new file mode 100644 index 000000000..c85ec5817 Binary files /dev/null and b/gfx/pokemon/hitmonlee/front.animated.2bpp.lz.d174eba1 differ diff --git a/gfx/pokemon/hitmonlee/front.png b/gfx/pokemon/hitmonlee/front.png new file mode 100644 index 000000000..96b6430ce Binary files /dev/null and b/gfx/pokemon/hitmonlee/front.png differ diff --git a/gfx/pokemon/hitmonlee/shiny.pal b/gfx/pokemon/hitmonlee/shiny.pal new file mode 100644 index 000000000..c0ee7cc2e --- /dev/null +++ b/gfx/pokemon/hitmonlee/shiny.pal @@ -0,0 +1,4 @@ + + RGB 17, 21, 05 + RGB 13, 08, 13 + diff --git a/gfx/pokemon/hitmontop/anim0.asm b/gfx/pokemon/hitmontop/anim0.asm new file mode 100644 index 000000000..195f1554b --- /dev/null +++ b/gfx/pokemon/hitmontop/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 12 + frame 4, 05 + setrepeat 4 + frame 2, 08 + frame 3, 08 + dorepeat 3 + frame 4, 25 + endanim +; 0xd15c6 diff --git a/gfx/pokemon/hitmontop/anim1.asm b/gfx/pokemon/hitmontop/anim1.asm new file mode 100644 index 000000000..3b4f17403 --- /dev/null +++ b/gfx/pokemon/hitmontop/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 4, 08 + frame 0, 08 + dorepeat 1 + frame 4, 30 + endanim +; 0xd2192 diff --git a/gfx/pokemon/hitmontop/back.2bpp.lz.ea3f1576 b/gfx/pokemon/hitmontop/back.2bpp.lz.ea3f1576 new file mode 100644 index 000000000..185f08aff Binary files /dev/null and b/gfx/pokemon/hitmontop/back.2bpp.lz.ea3f1576 differ diff --git a/gfx/pokemon/hitmontop/back.png b/gfx/pokemon/hitmontop/back.png new file mode 100644 index 000000000..95a1faa4c Binary files /dev/null and b/gfx/pokemon/hitmontop/back.png differ diff --git a/gfx/pokemon/hitmontop/front.animated.2bpp.lz.1b3e96fc b/gfx/pokemon/hitmontop/front.animated.2bpp.lz.1b3e96fc new file mode 100644 index 000000000..d28913fcf Binary files /dev/null and b/gfx/pokemon/hitmontop/front.animated.2bpp.lz.1b3e96fc differ diff --git a/gfx/pokemon/hitmontop/front.png b/gfx/pokemon/hitmontop/front.png new file mode 100644 index 000000000..3c580896d Binary files /dev/null and b/gfx/pokemon/hitmontop/front.png differ diff --git a/gfx/pokemon/hitmontop/shiny.pal b/gfx/pokemon/hitmontop/shiny.pal new file mode 100644 index 000000000..5c88a27e0 --- /dev/null +++ b/gfx/pokemon/hitmontop/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 17, 20 + RGB 17, 07, 29 + diff --git a/gfx/pokemon/ho_oh/anim0.asm b/gfx/pokemon/ho_oh/anim0.asm new file mode 100644 index 000000000..5ae27b487 --- /dev/null +++ b/gfx/pokemon/ho_oh/anim0.asm @@ -0,0 +1,11 @@ + frame 0, 04 + frame 1, 08 + frame 2, 12 + setrepeat 5 + frame 0, 05 + frame 3, 05 + dorepeat 4 + frame 0, 06 + frame 4, 12 + endanim +; 0xd1679 diff --git a/gfx/pokemon/ho_oh/anim1.asm b/gfx/pokemon/ho_oh/anim1.asm new file mode 100644 index 000000000..d7808f281 --- /dev/null +++ b/gfx/pokemon/ho_oh/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd2215 diff --git a/gfx/pokemon/ho_oh/back.2bpp.lz.1412f260 b/gfx/pokemon/ho_oh/back.2bpp.lz.1412f260 new file mode 100644 index 000000000..1d58cf8ac Binary files /dev/null and b/gfx/pokemon/ho_oh/back.2bpp.lz.1412f260 differ diff --git a/gfx/pokemon/ho_oh/back.png b/gfx/pokemon/ho_oh/back.png new file mode 100644 index 000000000..c28d038d9 Binary files /dev/null and b/gfx/pokemon/ho_oh/back.png differ diff --git a/gfx/pokemon/ho_oh/front.animated.2bpp.lz.db80b5eb b/gfx/pokemon/ho_oh/front.animated.2bpp.lz.db80b5eb new file mode 100644 index 000000000..40c91739e Binary files /dev/null and b/gfx/pokemon/ho_oh/front.animated.2bpp.lz.db80b5eb differ diff --git a/gfx/pokemon/ho_oh/front.png b/gfx/pokemon/ho_oh/front.png new file mode 100644 index 000000000..52598814d Binary files /dev/null and b/gfx/pokemon/ho_oh/front.png differ diff --git a/gfx/pokemon/ho_oh/shiny.pal b/gfx/pokemon/ho_oh/shiny.pal new file mode 100644 index 000000000..64a56ec52 --- /dev/null +++ b/gfx/pokemon/ho_oh/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 20, 00 + RGB 31, 08, 04 + diff --git a/gfx/pokemon/hoothoot/anim0.asm b/gfx/pokemon/hoothoot/anim0.asm new file mode 100644 index 000000000..813faf909 --- /dev/null +++ b/gfx/pokemon/hoothoot/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 15 + frame 2, 04 + frame 3, 07 + frame 4, 07 + frame 3, 07 + frame 4, 07 + setrepeat 2 + frame 0, 05 + frame 5, 05 + dorepeat 7 + endanim +; 0xd1208 diff --git a/gfx/pokemon/hoothoot/anim1.asm b/gfx/pokemon/hoothoot/anim1.asm new file mode 100644 index 000000000..4aaf1a124 --- /dev/null +++ b/gfx/pokemon/hoothoot/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 05 + frame 5, 05 + dorepeat 1 + frame 0, 13 + frame 5, 05 + endanim +; 0xd1f08 diff --git a/gfx/pokemon/hoothoot/back.2bpp.lz.7ebb0b29 b/gfx/pokemon/hoothoot/back.2bpp.lz.7ebb0b29 new file mode 100644 index 000000000..e4ca2f37f Binary files /dev/null and b/gfx/pokemon/hoothoot/back.2bpp.lz.7ebb0b29 differ diff --git a/gfx/pokemon/hoothoot/back.png b/gfx/pokemon/hoothoot/back.png new file mode 100644 index 000000000..73247ff34 Binary files /dev/null and b/gfx/pokemon/hoothoot/back.png differ diff --git a/gfx/pokemon/hoothoot/front.animated.2bpp.lz.752ab202 b/gfx/pokemon/hoothoot/front.animated.2bpp.lz.752ab202 new file mode 100644 index 000000000..6abcd37fc Binary files /dev/null and b/gfx/pokemon/hoothoot/front.animated.2bpp.lz.752ab202 differ diff --git a/gfx/pokemon/hoothoot/front.png b/gfx/pokemon/hoothoot/front.png new file mode 100644 index 000000000..97500e77c Binary files /dev/null and b/gfx/pokemon/hoothoot/front.png differ diff --git a/gfx/pokemon/hoothoot/shiny.pal b/gfx/pokemon/hoothoot/shiny.pal new file mode 100644 index 000000000..360685581 --- /dev/null +++ b/gfx/pokemon/hoothoot/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 22, 06 + RGB 22, 02, 24 + diff --git a/gfx/pokemon/hoppip/anim0.asm b/gfx/pokemon/hoppip/anim0.asm new file mode 100644 index 000000000..6af60ab0b --- /dev/null +++ b/gfx/pokemon/hoppip/anim0.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 1, 10 + frame 2, 10 + dorepeat 1 + endanim +; 0xd134e diff --git a/gfx/pokemon/hoppip/anim1.asm b/gfx/pokemon/hoppip/anim1.asm new file mode 100644 index 000000000..d0281ca1c --- /dev/null +++ b/gfx/pokemon/hoppip/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 10 + frame 2, 10 + dorepeat 1 + frame 2, 20 + endanim +; 0xd1ff0 diff --git a/gfx/pokemon/hoppip/back.2bpp.lz.5684c023 b/gfx/pokemon/hoppip/back.2bpp.lz.5684c023 new file mode 100644 index 000000000..c5439118e Binary files /dev/null and b/gfx/pokemon/hoppip/back.2bpp.lz.5684c023 differ diff --git a/gfx/pokemon/hoppip/back.png b/gfx/pokemon/hoppip/back.png new file mode 100644 index 000000000..325c08993 Binary files /dev/null and b/gfx/pokemon/hoppip/back.png differ diff --git a/gfx/pokemon/hoppip/front.animated.2bpp.lz.a03efe74 b/gfx/pokemon/hoppip/front.animated.2bpp.lz.a03efe74 new file mode 100644 index 000000000..4387e2886 Binary files /dev/null and b/gfx/pokemon/hoppip/front.animated.2bpp.lz.a03efe74 differ diff --git a/gfx/pokemon/hoppip/front.png b/gfx/pokemon/hoppip/front.png new file mode 100644 index 000000000..19cd0d473 Binary files /dev/null and b/gfx/pokemon/hoppip/front.png differ diff --git a/gfx/pokemon/hoppip/shiny.pal b/gfx/pokemon/hoppip/shiny.pal new file mode 100644 index 000000000..4a4afec42 --- /dev/null +++ b/gfx/pokemon/hoppip/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 29, 06 + RGB 09, 12, 03 + diff --git a/gfx/pokemon/horsea/anim0.asm b/gfx/pokemon/horsea/anim0.asm new file mode 100644 index 000000000..18d51863c --- /dev/null +++ b/gfx/pokemon/horsea/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 16 + frame 2, 24 + setrepeat 3 + frame 0, 03 + frame 3, 03 + dorepeat 3 + endanim +; 0xd0f49 diff --git a/gfx/pokemon/horsea/anim1.asm b/gfx/pokemon/horsea/anim1.asm new file mode 100644 index 000000000..2475abfdb --- /dev/null +++ b/gfx/pokemon/horsea/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1d35 diff --git a/gfx/pokemon/horsea/back.2bpp.lz.50b6afb9 b/gfx/pokemon/horsea/back.2bpp.lz.50b6afb9 new file mode 100644 index 000000000..ae6a2ecab Binary files /dev/null and b/gfx/pokemon/horsea/back.2bpp.lz.50b6afb9 differ diff --git a/gfx/pokemon/horsea/back.png b/gfx/pokemon/horsea/back.png new file mode 100644 index 000000000..70c34e674 Binary files /dev/null and b/gfx/pokemon/horsea/back.png differ diff --git a/gfx/pokemon/horsea/front.animated.2bpp.lz.8b84f98e b/gfx/pokemon/horsea/front.animated.2bpp.lz.8b84f98e new file mode 100644 index 000000000..7db08094b Binary files /dev/null and b/gfx/pokemon/horsea/front.animated.2bpp.lz.8b84f98e differ diff --git a/gfx/pokemon/horsea/front.png b/gfx/pokemon/horsea/front.png new file mode 100644 index 000000000..285617685 Binary files /dev/null and b/gfx/pokemon/horsea/front.png differ diff --git a/gfx/pokemon/horsea/shiny.pal b/gfx/pokemon/horsea/shiny.pal new file mode 100644 index 000000000..9b9875302 --- /dev/null +++ b/gfx/pokemon/horsea/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 12, 24 + RGB 12, 15, 31 + diff --git a/gfx/pokemon/houndoom/anim0.asm b/gfx/pokemon/houndoom/anim0.asm new file mode 100644 index 000000000..60ad08726 --- /dev/null +++ b/gfx/pokemon/houndoom/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 11 + setrepeat 9 + frame 2, 02 + frame 3, 02 + dorepeat 2 + frame 2, 04 + frame 3, 04 + frame 4, 08 + endanim +; 0xd1560 diff --git a/gfx/pokemon/houndoom/anim1.asm b/gfx/pokemon/houndoom/anim1.asm new file mode 100644 index 000000000..78fa8610c --- /dev/null +++ b/gfx/pokemon/houndoom/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 12 + frame 5, 12 + dorepeat 1 + endanim +; 0xd214e diff --git a/gfx/pokemon/houndoom/back.2bpp.lz.5fa55a47 b/gfx/pokemon/houndoom/back.2bpp.lz.5fa55a47 new file mode 100644 index 000000000..5b7b72ffc Binary files /dev/null and b/gfx/pokemon/houndoom/back.2bpp.lz.5fa55a47 differ diff --git a/gfx/pokemon/houndoom/back.png b/gfx/pokemon/houndoom/back.png new file mode 100644 index 000000000..e9137ba77 Binary files /dev/null and b/gfx/pokemon/houndoom/back.png differ diff --git a/gfx/pokemon/houndoom/front.animated.2bpp.lz.2d450e90 b/gfx/pokemon/houndoom/front.animated.2bpp.lz.2d450e90 new file mode 100644 index 000000000..c2ce34ee3 Binary files /dev/null and b/gfx/pokemon/houndoom/front.animated.2bpp.lz.2d450e90 differ diff --git a/gfx/pokemon/houndoom/front.png b/gfx/pokemon/houndoom/front.png new file mode 100644 index 000000000..0a8315734 Binary files /dev/null and b/gfx/pokemon/houndoom/front.png differ diff --git a/gfx/pokemon/houndoom/shiny.pal b/gfx/pokemon/houndoom/shiny.pal new file mode 100644 index 000000000..cf16faf2c --- /dev/null +++ b/gfx/pokemon/houndoom/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 18, 20 + RGB 08, 07, 20 + diff --git a/gfx/pokemon/houndour/anim0.asm b/gfx/pokemon/houndour/anim0.asm new file mode 100644 index 000000000..2235850c0 --- /dev/null +++ b/gfx/pokemon/houndour/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 05 + frame 2, 05 + frame 1, 05 + frame 0, 07 + frame 3, 07 + endanim +; 0xd154f diff --git a/gfx/pokemon/houndour/anim1.asm b/gfx/pokemon/houndour/anim1.asm new file mode 100644 index 000000000..dd8318689 --- /dev/null +++ b/gfx/pokemon/houndour/anim1.asm @@ -0,0 +1,8 @@ + frame 0, 08 + setrepeat 2 + frame 3, 07 + frame 4, 07 + dorepeat 2 + frame 3, 16 + endanim +; 0xd2145 diff --git a/gfx/pokemon/houndour/back.2bpp.lz.ae5f2dc9 b/gfx/pokemon/houndour/back.2bpp.lz.ae5f2dc9 new file mode 100644 index 000000000..fe3584bd1 Binary files /dev/null and b/gfx/pokemon/houndour/back.2bpp.lz.ae5f2dc9 differ diff --git a/gfx/pokemon/houndour/back.png b/gfx/pokemon/houndour/back.png new file mode 100644 index 000000000..bcaf2c7ca Binary files /dev/null and b/gfx/pokemon/houndour/back.png differ diff --git a/gfx/pokemon/houndour/front.animated.2bpp.lz.f847f4f6 b/gfx/pokemon/houndour/front.animated.2bpp.lz.f847f4f6 new file mode 100644 index 000000000..786c0f9a4 Binary files /dev/null and b/gfx/pokemon/houndour/front.animated.2bpp.lz.f847f4f6 differ diff --git a/gfx/pokemon/houndour/front.png b/gfx/pokemon/houndour/front.png new file mode 100644 index 000000000..b002b0f15 Binary files /dev/null and b/gfx/pokemon/houndour/front.png differ diff --git a/gfx/pokemon/houndour/shiny.pal b/gfx/pokemon/houndour/shiny.pal new file mode 100644 index 000000000..c7296ab33 --- /dev/null +++ b/gfx/pokemon/houndour/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 19, 18 + RGB 08, 07, 24 + diff --git a/gfx/pokemon/hypno/anim0.asm b/gfx/pokemon/hypno/anim0.asm new file mode 100644 index 000000000..b6c3e6463 --- /dev/null +++ b/gfx/pokemon/hypno/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 1, 15 + frame 2, 15 + frame 3, 15 + dorepeat 1 + endanim +; 0xd0e26 diff --git a/gfx/pokemon/hypno/anim1.asm b/gfx/pokemon/hypno/anim1.asm new file mode 100644 index 000000000..4d981c442 --- /dev/null +++ b/gfx/pokemon/hypno/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd1c8a diff --git a/gfx/pokemon/hypno/back.2bpp.lz.c091ce88 b/gfx/pokemon/hypno/back.2bpp.lz.c091ce88 new file mode 100644 index 000000000..b69fcadf7 Binary files /dev/null and b/gfx/pokemon/hypno/back.2bpp.lz.c091ce88 differ diff --git a/gfx/pokemon/hypno/back.png b/gfx/pokemon/hypno/back.png new file mode 100644 index 000000000..b68f235d3 Binary files /dev/null and b/gfx/pokemon/hypno/back.png differ diff --git a/gfx/pokemon/hypno/front.animated.2bpp.lz.638333a3 b/gfx/pokemon/hypno/front.animated.2bpp.lz.638333a3 new file mode 100644 index 000000000..ca6ec0608 Binary files /dev/null and b/gfx/pokemon/hypno/front.animated.2bpp.lz.638333a3 differ diff --git a/gfx/pokemon/hypno/front.png b/gfx/pokemon/hypno/front.png new file mode 100644 index 000000000..64c844425 Binary files /dev/null and b/gfx/pokemon/hypno/front.png differ diff --git a/gfx/pokemon/hypno/shiny.pal b/gfx/pokemon/hypno/shiny.pal new file mode 100644 index 000000000..51f14601f --- /dev/null +++ b/gfx/pokemon/hypno/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 09, 25 + RGB 18, 10, 13 + diff --git a/gfx/pokemon/igglybuff/anim0.asm b/gfx/pokemon/igglybuff/anim0.asm new file mode 100644 index 000000000..0b2430e44 --- /dev/null +++ b/gfx/pokemon/igglybuff/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 04 + frame 1, 08 + frame 2, 14 + frame 1, 06 + endanim +; 0xd1299 diff --git a/gfx/pokemon/igglybuff/anim1.asm b/gfx/pokemon/igglybuff/anim1.asm new file mode 100644 index 000000000..338a0ab2d --- /dev/null +++ b/gfx/pokemon/igglybuff/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1f71 diff --git a/gfx/pokemon/igglybuff/back.2bpp.lz.c0c17dcb b/gfx/pokemon/igglybuff/back.2bpp.lz.c0c17dcb new file mode 100644 index 000000000..b416af3f0 Binary files /dev/null and b/gfx/pokemon/igglybuff/back.2bpp.lz.c0c17dcb differ diff --git a/gfx/pokemon/igglybuff/back.png b/gfx/pokemon/igglybuff/back.png new file mode 100644 index 000000000..7b34a17ff Binary files /dev/null and b/gfx/pokemon/igglybuff/back.png differ diff --git a/gfx/pokemon/igglybuff/front.animated.2bpp.lz.1e00afc3 b/gfx/pokemon/igglybuff/front.animated.2bpp.lz.1e00afc3 new file mode 100644 index 000000000..1c4bbefa0 Binary files /dev/null and b/gfx/pokemon/igglybuff/front.animated.2bpp.lz.1e00afc3 differ diff --git a/gfx/pokemon/igglybuff/front.png b/gfx/pokemon/igglybuff/front.png new file mode 100644 index 000000000..2fb7dbb78 Binary files /dev/null and b/gfx/pokemon/igglybuff/front.png differ diff --git a/gfx/pokemon/igglybuff/shiny.pal b/gfx/pokemon/igglybuff/shiny.pal new file mode 100644 index 000000000..38ce5d76d --- /dev/null +++ b/gfx/pokemon/igglybuff/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 17, 31 + RGB 09, 24, 03 + diff --git a/gfx/pokemon/ivysaur/anim0.asm b/gfx/pokemon/ivysaur/anim0.asm new file mode 100644 index 000000000..65e89f5ab --- /dev/null +++ b/gfx/pokemon/ivysaur/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 1, 08 + frame 2, 20 + frame 1, 06 + endanim +; 0xd08a5 diff --git a/gfx/pokemon/ivysaur/anim1.asm b/gfx/pokemon/ivysaur/anim1.asm new file mode 100644 index 000000000..3df18b2cd --- /dev/null +++ b/gfx/pokemon/ivysaur/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 1 + frame 0, 08 + frame 1, 06 + endanim +; 0xd18ad diff --git a/gfx/pokemon/ivysaur/back.2bpp.lz.bed1ff58 b/gfx/pokemon/ivysaur/back.2bpp.lz.bed1ff58 new file mode 100644 index 000000000..34557d9dd Binary files /dev/null and b/gfx/pokemon/ivysaur/back.2bpp.lz.bed1ff58 differ diff --git a/gfx/pokemon/ivysaur/back.png b/gfx/pokemon/ivysaur/back.png new file mode 100644 index 000000000..325b5cdf5 Binary files /dev/null and b/gfx/pokemon/ivysaur/back.png differ diff --git a/gfx/pokemon/ivysaur/front.animated.2bpp.lz.3abed0fa b/gfx/pokemon/ivysaur/front.animated.2bpp.lz.3abed0fa new file mode 100644 index 000000000..7b9c8f9d9 Binary files /dev/null and b/gfx/pokemon/ivysaur/front.animated.2bpp.lz.3abed0fa differ diff --git a/gfx/pokemon/ivysaur/front.png b/gfx/pokemon/ivysaur/front.png new file mode 100644 index 000000000..799c79667 Binary files /dev/null and b/gfx/pokemon/ivysaur/front.png differ diff --git a/gfx/pokemon/ivysaur/shiny.pal b/gfx/pokemon/ivysaur/shiny.pal new file mode 100644 index 000000000..04c81cf45 --- /dev/null +++ b/gfx/pokemon/ivysaur/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 28, 11 + RGB 31, 24, 09 + diff --git a/gfx/pokemon/jigglypuff/anim0.asm b/gfx/pokemon/jigglypuff/anim0.asm new file mode 100644 index 000000000..ada7e0d99 --- /dev/null +++ b/gfx/pokemon/jigglypuff/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 14 + frame 2, 09 + frame 3, 09 + frame 2, 06 + frame 4, 20 + setrepeat 2 + frame 3, 05 + frame 4, 05 + dorepeat 6 + endanim +; 0xd0ade diff --git a/gfx/pokemon/jigglypuff/anim1.asm b/gfx/pokemon/jigglypuff/anim1.asm new file mode 100644 index 000000000..40584de87 --- /dev/null +++ b/gfx/pokemon/jigglypuff/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd1a46 diff --git a/gfx/pokemon/jigglypuff/back.2bpp.lz.87d5730b b/gfx/pokemon/jigglypuff/back.2bpp.lz.87d5730b new file mode 100644 index 000000000..e551afaf6 Binary files /dev/null and b/gfx/pokemon/jigglypuff/back.2bpp.lz.87d5730b differ diff --git a/gfx/pokemon/jigglypuff/back.png b/gfx/pokemon/jigglypuff/back.png new file mode 100644 index 000000000..4e1849c51 Binary files /dev/null and b/gfx/pokemon/jigglypuff/back.png differ diff --git a/gfx/pokemon/jigglypuff/front.animated.2bpp.lz.9fd159f4 b/gfx/pokemon/jigglypuff/front.animated.2bpp.lz.9fd159f4 new file mode 100644 index 000000000..4367e41d8 Binary files /dev/null and b/gfx/pokemon/jigglypuff/front.animated.2bpp.lz.9fd159f4 differ diff --git a/gfx/pokemon/jigglypuff/front.png b/gfx/pokemon/jigglypuff/front.png new file mode 100644 index 000000000..867134d13 Binary files /dev/null and b/gfx/pokemon/jigglypuff/front.png differ diff --git a/gfx/pokemon/jigglypuff/shiny.pal b/gfx/pokemon/jigglypuff/shiny.pal new file mode 100644 index 000000000..38ce5d76d --- /dev/null +++ b/gfx/pokemon/jigglypuff/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 17, 31 + RGB 09, 24, 03 + diff --git a/gfx/pokemon/johto_frames.asm b/gfx/pokemon/johto_frames.asm new file mode 100644 index 000000000..56ea6eb00 --- /dev/null +++ b/gfx/pokemon/johto_frames.asm @@ -0,0 +1,102 @@ +JohtoFrames: +ChikoritaFrames: INCLUDE "gfx/pokemon/chikorita/frames.asm" +BayleefFrames: INCLUDE "gfx/pokemon/bayleef/frames.asm" +MeganiumFrames: INCLUDE "gfx/pokemon/meganium/frames.asm" +CyndaquilFrames: INCLUDE "gfx/pokemon/cyndaquil/frames.asm" +QuilavaFrames: INCLUDE "gfx/pokemon/quilava/frames.asm" +TyphlosionFrames: INCLUDE "gfx/pokemon/typhlosion/frames.asm" +TotodileFrames: INCLUDE "gfx/pokemon/totodile/frames.asm" +CroconawFrames: INCLUDE "gfx/pokemon/croconaw/frames.asm" +FeraligatrFrames: INCLUDE "gfx/pokemon/feraligatr/frames.asm" +SentretFrames: INCLUDE "gfx/pokemon/sentret/frames.asm" +FurretFrames: INCLUDE "gfx/pokemon/furret/frames.asm" +HoothootFrames: INCLUDE "gfx/pokemon/hoothoot/frames.asm" +NoctowlFrames: INCLUDE "gfx/pokemon/noctowl/frames.asm" +LedybaFrames: INCLUDE "gfx/pokemon/ledyba/frames.asm" +LedianFrames: INCLUDE "gfx/pokemon/ledian/frames.asm" +SpinarakFrames: INCLUDE "gfx/pokemon/spinarak/frames.asm" +AriadosFrames: INCLUDE "gfx/pokemon/ariados/frames.asm" +CrobatFrames: INCLUDE "gfx/pokemon/crobat/frames.asm" +ChinchouFrames: INCLUDE "gfx/pokemon/chinchou/frames.asm" +LanturnFrames: INCLUDE "gfx/pokemon/lanturn/frames.asm" +PichuFrames: INCLUDE "gfx/pokemon/pichu/frames.asm" +CleffaFrames: INCLUDE "gfx/pokemon/cleffa/frames.asm" +IgglybuffFrames: INCLUDE "gfx/pokemon/igglybuff/frames.asm" +TogepiFrames: INCLUDE "gfx/pokemon/togepi/frames.asm" +TogeticFrames: INCLUDE "gfx/pokemon/togetic/frames.asm" +NatuFrames: INCLUDE "gfx/pokemon/natu/frames.asm" +XatuFrames: INCLUDE "gfx/pokemon/xatu/frames.asm" +MareepFrames: INCLUDE "gfx/pokemon/mareep/frames.asm" +FlaaffyFrames: INCLUDE "gfx/pokemon/flaaffy/frames.asm" +AmpharosFrames: INCLUDE "gfx/pokemon/ampharos/frames.asm" +BellossomFrames: INCLUDE "gfx/pokemon/bellossom/frames.asm" +MarillFrames: INCLUDE "gfx/pokemon/marill/frames.asm" +AzumarillFrames: INCLUDE "gfx/pokemon/azumarill/frames.asm" +SudowoodoFrames: INCLUDE "gfx/pokemon/sudowoodo/frames.asm" +PolitoedFrames: INCLUDE "gfx/pokemon/politoed/frames.asm" +HoppipFrames: INCLUDE "gfx/pokemon/hoppip/frames.asm" +SkiploomFrames: INCLUDE "gfx/pokemon/skiploom/frames.asm" +JumpluffFrames: INCLUDE "gfx/pokemon/jumpluff/frames.asm" +AipomFrames: INCLUDE "gfx/pokemon/aipom/frames.asm" +SunkernFrames: INCLUDE "gfx/pokemon/sunkern/frames.asm" +SunfloraFrames: INCLUDE "gfx/pokemon/sunflora/frames.asm" +YanmaFrames: INCLUDE "gfx/pokemon/yanma/frames.asm" +WooperFrames: INCLUDE "gfx/pokemon/wooper/frames.asm" +QuagsireFrames: INCLUDE "gfx/pokemon/quagsire/frames.asm" +EspeonFrames: INCLUDE "gfx/pokemon/espeon/frames.asm" +UmbreonFrames: INCLUDE "gfx/pokemon/umbreon/frames.asm" +MurkrowFrames: INCLUDE "gfx/pokemon/murkrow/frames.asm" +SlowkingFrames: INCLUDE "gfx/pokemon/slowking/frames.asm" +MisdreavusFrames: INCLUDE "gfx/pokemon/misdreavus/frames.asm" +UnownFrames: INCLUDE "gfx/pokemon/unown/frames.asm" +WobbuffetFrames: INCLUDE "gfx/pokemon/wobbuffet/frames.asm" +GirafarigFrames: INCLUDE "gfx/pokemon/girafarig/frames.asm" +PinecoFrames: INCLUDE "gfx/pokemon/pineco/frames.asm" +ForretressFrames: INCLUDE "gfx/pokemon/forretress/frames.asm" +DunsparceFrames: INCLUDE "gfx/pokemon/dunsparce/frames.asm" +GligarFrames: INCLUDE "gfx/pokemon/gligar/frames.asm" +SteelixFrames: INCLUDE "gfx/pokemon/steelix/frames.asm" +SnubbullFrames: INCLUDE "gfx/pokemon/snubbull/frames.asm" +GranbullFrames: INCLUDE "gfx/pokemon/granbull/frames.asm" +QwilfishFrames: INCLUDE "gfx/pokemon/qwilfish/frames.asm" +ScizorFrames: INCLUDE "gfx/pokemon/scizor/frames.asm" +ShuckleFrames: INCLUDE "gfx/pokemon/shuckle/frames.asm" +HeracrossFrames: INCLUDE "gfx/pokemon/heracross/frames.asm" +SneaselFrames: INCLUDE "gfx/pokemon/sneasel/frames.asm" +TeddiursaFrames: INCLUDE "gfx/pokemon/teddiursa/frames.asm" +UrsaringFrames: INCLUDE "gfx/pokemon/ursaring/frames.asm" +SlugmaFrames: INCLUDE "gfx/pokemon/slugma/frames.asm" +MagcargoFrames: INCLUDE "gfx/pokemon/magcargo/frames.asm" +SwinubFrames: INCLUDE "gfx/pokemon/swinub/frames.asm" +PiloswineFrames: INCLUDE "gfx/pokemon/piloswine/frames.asm" +CorsolaFrames: INCLUDE "gfx/pokemon/corsola/frames.asm" +RemoraidFrames: INCLUDE "gfx/pokemon/remoraid/frames.asm" +OctilleryFrames: INCLUDE "gfx/pokemon/octillery/frames.asm" +DelibirdFrames: INCLUDE "gfx/pokemon/delibird/frames.asm" +MantineFrames: INCLUDE "gfx/pokemon/mantine/frames.asm" +SkarmoryFrames: INCLUDE "gfx/pokemon/skarmory/frames.asm" +HoundourFrames: INCLUDE "gfx/pokemon/houndour/frames.asm" +HoundoomFrames: INCLUDE "gfx/pokemon/houndoom/frames.asm" +KingdraFrames: INCLUDE "gfx/pokemon/kingdra/frames.asm" +PhanpyFrames: INCLUDE "gfx/pokemon/phanpy/frames.asm" +DonphanFrames: INCLUDE "gfx/pokemon/donphan/frames.asm" +Porygon2Frames: INCLUDE "gfx/pokemon/porygon2/frames.asm" +StantlerFrames: INCLUDE "gfx/pokemon/stantler/frames.asm" +SmeargleFrames: INCLUDE "gfx/pokemon/smeargle/frames.asm" +TyrogueFrames: INCLUDE "gfx/pokemon/tyrogue/frames.asm" +HitmontopFrames: INCLUDE "gfx/pokemon/hitmontop/frames.asm" +SmoochumFrames: INCLUDE "gfx/pokemon/smoochum/frames.asm" +ElekidFrames: INCLUDE "gfx/pokemon/elekid/frames.asm" +MagbyFrames: INCLUDE "gfx/pokemon/magby/frames.asm" +MiltankFrames: INCLUDE "gfx/pokemon/miltank/frames.asm" +BlisseyFrames: INCLUDE "gfx/pokemon/blissey/frames.asm" +RaikouFrames: INCLUDE "gfx/pokemon/raikou/frames.asm" +EnteiFrames: INCLUDE "gfx/pokemon/entei/frames.asm" +SuicuneFrames: INCLUDE "gfx/pokemon/suicune/frames.asm" +LarvitarFrames: INCLUDE "gfx/pokemon/larvitar/frames.asm" +PupitarFrames: INCLUDE "gfx/pokemon/pupitar/frames.asm" +TyranitarFrames: INCLUDE "gfx/pokemon/tyranitar/frames.asm" +LugiaFrames: INCLUDE "gfx/pokemon/lugia/frames.asm" +HoOhFrames: INCLUDE "gfx/pokemon/ho_oh/frames.asm" +CelebiFrames: INCLUDE "gfx/pokemon/celebi/frames.asm" +EggFrames: INCLUDE "gfx/pokemon/egg/frames.asm" diff --git a/gfx/pokemon/jolteon/anim0.asm b/gfx/pokemon/jolteon/anim0.asm new file mode 100644 index 000000000..c4c01e60a --- /dev/null +++ b/gfx/pokemon/jolteon/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 05 + frame 2, 38 + frame 1, 08 + frame 0, 20 + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 5 + endanim +; 0xd1054 diff --git a/gfx/pokemon/jolteon/anim1.asm b/gfx/pokemon/jolteon/anim1.asm new file mode 100644 index 000000000..0b5481afd --- /dev/null +++ b/gfx/pokemon/jolteon/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1de8 diff --git a/gfx/pokemon/jolteon/back.2bpp.lz.f248aac4 b/gfx/pokemon/jolteon/back.2bpp.lz.f248aac4 new file mode 100644 index 000000000..e95f893ce Binary files /dev/null and b/gfx/pokemon/jolteon/back.2bpp.lz.f248aac4 differ diff --git a/gfx/pokemon/jolteon/back.png b/gfx/pokemon/jolteon/back.png new file mode 100644 index 000000000..0bf798ebf Binary files /dev/null and b/gfx/pokemon/jolteon/back.png differ diff --git a/gfx/pokemon/jolteon/front.animated.2bpp.lz.b2b07d79 b/gfx/pokemon/jolteon/front.animated.2bpp.lz.b2b07d79 new file mode 100644 index 000000000..32d271390 Binary files /dev/null and b/gfx/pokemon/jolteon/front.animated.2bpp.lz.b2b07d79 differ diff --git a/gfx/pokemon/jolteon/front.png b/gfx/pokemon/jolteon/front.png new file mode 100644 index 000000000..4f052d559 Binary files /dev/null and b/gfx/pokemon/jolteon/front.png differ diff --git a/gfx/pokemon/jolteon/shiny.pal b/gfx/pokemon/jolteon/shiny.pal new file mode 100644 index 000000000..81d8eda41 --- /dev/null +++ b/gfx/pokemon/jolteon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 22, 00 + RGB 15, 15, 06 + diff --git a/gfx/pokemon/jumpluff/anim0.asm b/gfx/pokemon/jumpluff/anim0.asm new file mode 100644 index 000000000..c4161560e --- /dev/null +++ b/gfx/pokemon/jumpluff/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 09 + frame 2, 09 + frame 3, 09 + endanim +; 0xd135e diff --git a/gfx/pokemon/jumpluff/anim1.asm b/gfx/pokemon/jumpluff/anim1.asm new file mode 100644 index 000000000..5013b953f --- /dev/null +++ b/gfx/pokemon/jumpluff/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd2002 diff --git a/gfx/pokemon/jumpluff/back.2bpp.lz.b258a699 b/gfx/pokemon/jumpluff/back.2bpp.lz.b258a699 new file mode 100644 index 000000000..57ae8b890 Binary files /dev/null and b/gfx/pokemon/jumpluff/back.2bpp.lz.b258a699 differ diff --git a/gfx/pokemon/jumpluff/back.png b/gfx/pokemon/jumpluff/back.png new file mode 100644 index 000000000..1b72ecf2f Binary files /dev/null and b/gfx/pokemon/jumpluff/back.png differ diff --git a/gfx/pokemon/jumpluff/front.animated.2bpp.lz.6d1d8175 b/gfx/pokemon/jumpluff/front.animated.2bpp.lz.6d1d8175 new file mode 100644 index 000000000..c3570ed09 Binary files /dev/null and b/gfx/pokemon/jumpluff/front.animated.2bpp.lz.6d1d8175 differ diff --git a/gfx/pokemon/jumpluff/front.png b/gfx/pokemon/jumpluff/front.png new file mode 100644 index 000000000..1048e3937 Binary files /dev/null and b/gfx/pokemon/jumpluff/front.png differ diff --git a/gfx/pokemon/jumpluff/shiny.pal b/gfx/pokemon/jumpluff/shiny.pal new file mode 100644 index 000000000..c553ebebf --- /dev/null +++ b/gfx/pokemon/jumpluff/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 16, 29 + RGB 31, 08, 31 + diff --git a/gfx/pokemon/jynx/anim0.asm b/gfx/pokemon/jynx/anim0.asm new file mode 100644 index 000000000..78f0e63ed --- /dev/null +++ b/gfx/pokemon/jynx/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 16 + frame 1, 16 + frame 2, 16 + frame 1, 16 + dorepeat 1 + endanim +; 0xd0fb5 diff --git a/gfx/pokemon/jynx/anim1.asm b/gfx/pokemon/jynx/anim1.asm new file mode 100644 index 000000000..42f42859c --- /dev/null +++ b/gfx/pokemon/jynx/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1d81 diff --git a/gfx/pokemon/jynx/back.2bpp.lz.1eef1c1b b/gfx/pokemon/jynx/back.2bpp.lz.1eef1c1b new file mode 100644 index 000000000..4642ecda7 Binary files /dev/null and b/gfx/pokemon/jynx/back.2bpp.lz.1eef1c1b differ diff --git a/gfx/pokemon/jynx/back.png b/gfx/pokemon/jynx/back.png new file mode 100644 index 000000000..6478f6099 Binary files /dev/null and b/gfx/pokemon/jynx/back.png differ diff --git a/gfx/pokemon/jynx/front.animated.2bpp.lz.6aaf67b0 b/gfx/pokemon/jynx/front.animated.2bpp.lz.6aaf67b0 new file mode 100644 index 000000000..78a436494 Binary files /dev/null and b/gfx/pokemon/jynx/front.animated.2bpp.lz.6aaf67b0 differ diff --git a/gfx/pokemon/jynx/front.png b/gfx/pokemon/jynx/front.png new file mode 100644 index 000000000..297a90630 Binary files /dev/null and b/gfx/pokemon/jynx/front.png differ diff --git a/gfx/pokemon/jynx/shiny.pal b/gfx/pokemon/jynx/shiny.pal new file mode 100644 index 000000000..7e6ad315e --- /dev/null +++ b/gfx/pokemon/jynx/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 02, 15 + RGB 31, 09, 27 + diff --git a/gfx/pokemon/kabuto/anim0.asm b/gfx/pokemon/kabuto/anim0.asm new file mode 100644 index 000000000..de308c900 --- /dev/null +++ b/gfx/pokemon/kabuto/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 2, 12 + frame 1, 16 + frame 2, 12 + endanim +; 0xd1085 diff --git a/gfx/pokemon/kabuto/anim1.asm b/gfx/pokemon/kabuto/anim1.asm new file mode 100644 index 000000000..0e347c87d --- /dev/null +++ b/gfx/pokemon/kabuto/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + frame 0, 18 + frame 3, 04 + endanim +; 0xd1e19 diff --git a/gfx/pokemon/kabuto/back.2bpp.lz.0717a29b b/gfx/pokemon/kabuto/back.2bpp.lz.0717a29b new file mode 100644 index 000000000..61390a32e Binary files /dev/null and b/gfx/pokemon/kabuto/back.2bpp.lz.0717a29b differ diff --git a/gfx/pokemon/kabuto/back.png b/gfx/pokemon/kabuto/back.png new file mode 100644 index 000000000..acd9444b6 Binary files /dev/null and b/gfx/pokemon/kabuto/back.png differ diff --git a/gfx/pokemon/kabuto/front.animated.2bpp.lz.afe4e2dc b/gfx/pokemon/kabuto/front.animated.2bpp.lz.afe4e2dc new file mode 100644 index 000000000..24a9376c8 Binary files /dev/null and b/gfx/pokemon/kabuto/front.animated.2bpp.lz.afe4e2dc differ diff --git a/gfx/pokemon/kabuto/front.png b/gfx/pokemon/kabuto/front.png new file mode 100644 index 000000000..c354983ed Binary files /dev/null and b/gfx/pokemon/kabuto/front.png differ diff --git a/gfx/pokemon/kabuto/shiny.pal b/gfx/pokemon/kabuto/shiny.pal new file mode 100644 index 000000000..1248ce809 --- /dev/null +++ b/gfx/pokemon/kabuto/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 24, 20 + RGB 14, 18, 10 + diff --git a/gfx/pokemon/kabutops/anim0.asm b/gfx/pokemon/kabutops/anim0.asm new file mode 100644 index 000000000..f5812126a --- /dev/null +++ b/gfx/pokemon/kabutops/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 40 + setrepeat 2 + frame 1, 05 + frame 2, 05 + dorepeat 2 + frame 1, 25 + endanim +; 0xd1092 diff --git a/gfx/pokemon/kabutops/anim1.asm b/gfx/pokemon/kabutops/anim1.asm new file mode 100644 index 000000000..32a70f827 --- /dev/null +++ b/gfx/pokemon/kabutops/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1e22 diff --git a/gfx/pokemon/kabutops/back.2bpp.lz.98a1dfc4 b/gfx/pokemon/kabutops/back.2bpp.lz.98a1dfc4 new file mode 100644 index 000000000..507c10e2f Binary files /dev/null and b/gfx/pokemon/kabutops/back.2bpp.lz.98a1dfc4 differ diff --git a/gfx/pokemon/kabutops/back.png b/gfx/pokemon/kabutops/back.png new file mode 100644 index 000000000..2a1fde94d Binary files /dev/null and b/gfx/pokemon/kabutops/back.png differ diff --git a/gfx/pokemon/kabutops/front.animated.2bpp.lz.d5e4bfeb b/gfx/pokemon/kabutops/front.animated.2bpp.lz.d5e4bfeb new file mode 100644 index 000000000..38d21fa16 Binary files /dev/null and b/gfx/pokemon/kabutops/front.animated.2bpp.lz.d5e4bfeb differ diff --git a/gfx/pokemon/kabutops/front.png b/gfx/pokemon/kabutops/front.png new file mode 100644 index 000000000..776073b50 Binary files /dev/null and b/gfx/pokemon/kabutops/front.png differ diff --git a/gfx/pokemon/kabutops/shiny.pal b/gfx/pokemon/kabutops/shiny.pal new file mode 100644 index 000000000..5c7ac28cf --- /dev/null +++ b/gfx/pokemon/kabutops/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 20, 11 + RGB 10, 15, 10 + diff --git a/gfx/pokemon/kadabra/anim0.asm b/gfx/pokemon/kadabra/anim0.asm new file mode 100644 index 000000000..9b132e26b --- /dev/null +++ b/gfx/pokemon/kadabra/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 08 + setrepeat 4 + frame 2, 06 + frame 3, 06 + dorepeat 2 + frame 1, 12 + endanim +; 0xd0c67 diff --git a/gfx/pokemon/kadabra/anim1.asm b/gfx/pokemon/kadabra/anim1.asm new file mode 100644 index 000000000..eabcdb07d --- /dev/null +++ b/gfx/pokemon/kadabra/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd1b41 diff --git a/gfx/pokemon/kadabra/back.2bpp.lz.6b26c1a0 b/gfx/pokemon/kadabra/back.2bpp.lz.6b26c1a0 new file mode 100644 index 000000000..0092147d7 Binary files /dev/null and b/gfx/pokemon/kadabra/back.2bpp.lz.6b26c1a0 differ diff --git a/gfx/pokemon/kadabra/back.png b/gfx/pokemon/kadabra/back.png new file mode 100644 index 000000000..20f615a84 Binary files /dev/null and b/gfx/pokemon/kadabra/back.png differ diff --git a/gfx/pokemon/kadabra/front.animated.2bpp.lz.bc78f9cf b/gfx/pokemon/kadabra/front.animated.2bpp.lz.bc78f9cf new file mode 100644 index 000000000..54f47795d Binary files /dev/null and b/gfx/pokemon/kadabra/front.animated.2bpp.lz.bc78f9cf differ diff --git a/gfx/pokemon/kadabra/front.png b/gfx/pokemon/kadabra/front.png new file mode 100644 index 000000000..50341a6b3 Binary files /dev/null and b/gfx/pokemon/kadabra/front.png differ diff --git a/gfx/pokemon/kadabra/shiny.pal b/gfx/pokemon/kadabra/shiny.pal new file mode 100644 index 000000000..328319095 --- /dev/null +++ b/gfx/pokemon/kadabra/shiny.pal @@ -0,0 +1,4 @@ + + RGB 28, 24, 10 + RGB 20, 09, 19 + diff --git a/gfx/pokemon/kakuna/anim0.asm b/gfx/pokemon/kakuna/anim0.asm new file mode 100644 index 000000000..b67e66e26 --- /dev/null +++ b/gfx/pokemon/kakuna/anim0.asm @@ -0,0 +1,4 @@ + frame 0, 12 + frame 1, 24 + endanim +; 0xd093f diff --git a/gfx/pokemon/kakuna/anim1.asm b/gfx/pokemon/kakuna/anim1.asm new file mode 100644 index 000000000..a7ca98540 --- /dev/null +++ b/gfx/pokemon/kakuna/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd192b diff --git a/gfx/pokemon/kakuna/back.2bpp.lz.3bffa4c3 b/gfx/pokemon/kakuna/back.2bpp.lz.3bffa4c3 new file mode 100644 index 000000000..b369857d5 Binary files /dev/null and b/gfx/pokemon/kakuna/back.2bpp.lz.3bffa4c3 differ diff --git a/gfx/pokemon/kakuna/back.png b/gfx/pokemon/kakuna/back.png new file mode 100644 index 000000000..b7f2b2e52 Binary files /dev/null and b/gfx/pokemon/kakuna/back.png differ diff --git a/gfx/pokemon/kakuna/front.animated.2bpp.lz.c7425e72 b/gfx/pokemon/kakuna/front.animated.2bpp.lz.c7425e72 new file mode 100644 index 000000000..2f2431edf Binary files /dev/null and b/gfx/pokemon/kakuna/front.animated.2bpp.lz.c7425e72 differ diff --git a/gfx/pokemon/kakuna/front.png b/gfx/pokemon/kakuna/front.png new file mode 100644 index 000000000..b34a398f9 Binary files /dev/null and b/gfx/pokemon/kakuna/front.png differ diff --git a/gfx/pokemon/kakuna/shiny.pal b/gfx/pokemon/kakuna/shiny.pal new file mode 100644 index 000000000..335bdffe9 --- /dev/null +++ b/gfx/pokemon/kakuna/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 27, 04 + RGB 13, 17, 07 + diff --git a/gfx/pokemon/kangaskhan/anim0.asm b/gfx/pokemon/kangaskhan/anim0.asm new file mode 100644 index 000000000..34363f893 --- /dev/null +++ b/gfx/pokemon/kangaskhan/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 30 + frame 5, 10 + frame 2, 12 + frame 3, 09 + frame 4, 09 + frame 3, 09 + frame 4, 15 + endanim +; 0xd0f3c diff --git a/gfx/pokemon/kangaskhan/anim1.asm b/gfx/pokemon/kangaskhan/anim1.asm new file mode 100644 index 000000000..0da29ec4a --- /dev/null +++ b/gfx/pokemon/kangaskhan/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 06 + frame 6, 06 + dorepeat 1 + frame 0, 15 + frame 4, 25 + endanim +; 0xd1d2c diff --git a/gfx/pokemon/kangaskhan/back.2bpp.lz.0d7cc337 b/gfx/pokemon/kangaskhan/back.2bpp.lz.0d7cc337 new file mode 100644 index 000000000..c7ff00272 Binary files /dev/null and b/gfx/pokemon/kangaskhan/back.2bpp.lz.0d7cc337 differ diff --git a/gfx/pokemon/kangaskhan/back.png b/gfx/pokemon/kangaskhan/back.png new file mode 100644 index 000000000..d69e041ca Binary files /dev/null and b/gfx/pokemon/kangaskhan/back.png differ diff --git a/gfx/pokemon/kangaskhan/front.animated.2bpp.lz.09c81009 b/gfx/pokemon/kangaskhan/front.animated.2bpp.lz.09c81009 new file mode 100644 index 000000000..1ec58169d Binary files /dev/null and b/gfx/pokemon/kangaskhan/front.animated.2bpp.lz.09c81009 differ diff --git a/gfx/pokemon/kangaskhan/front.png b/gfx/pokemon/kangaskhan/front.png new file mode 100644 index 000000000..abe680c64 Binary files /dev/null and b/gfx/pokemon/kangaskhan/front.png differ diff --git a/gfx/pokemon/kangaskhan/shiny.pal b/gfx/pokemon/kangaskhan/shiny.pal new file mode 100644 index 000000000..492559959 --- /dev/null +++ b/gfx/pokemon/kangaskhan/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 16, 19 + RGB 03, 11, 03 + diff --git a/gfx/pokemon/kanto_frames.asm b/gfx/pokemon/kanto_frames.asm new file mode 100644 index 000000000..9a7aa7c85 --- /dev/null +++ b/gfx/pokemon/kanto_frames.asm @@ -0,0 +1,152 @@ +KantoFrames: +BulbasaurFrames: INCLUDE "gfx/pokemon/bulbasaur/frames.asm" +IvysaurFrames: INCLUDE "gfx/pokemon/ivysaur/frames.asm" +VenusaurFrames: INCLUDE "gfx/pokemon/venusaur/frames.asm" +CharmanderFrames: INCLUDE "gfx/pokemon/charmander/frames.asm" +CharmeleonFrames: INCLUDE "gfx/pokemon/charmeleon/frames.asm" +CharizardFrames: INCLUDE "gfx/pokemon/charizard/frames.asm" +SquirtleFrames: INCLUDE "gfx/pokemon/squirtle/frames.asm" +WartortleFrames: INCLUDE "gfx/pokemon/wartortle/frames.asm" +BlastoiseFrames: INCLUDE "gfx/pokemon/blastoise/frames.asm" +CaterpieFrames: INCLUDE "gfx/pokemon/caterpie/frames.asm" +MetapodFrames: INCLUDE "gfx/pokemon/metapod/frames.asm" +ButterfreeFrames: INCLUDE "gfx/pokemon/butterfree/frames.asm" +WeedleFrames: INCLUDE "gfx/pokemon/weedle/frames.asm" +KakunaFrames: INCLUDE "gfx/pokemon/kakuna/frames.asm" +BeedrillFrames: INCLUDE "gfx/pokemon/beedrill/frames.asm" +PidgeyFrames: INCLUDE "gfx/pokemon/pidgey/frames.asm" +PidgeottoFrames: INCLUDE "gfx/pokemon/pidgeotto/frames.asm" +PidgeotFrames: INCLUDE "gfx/pokemon/pidgeot/frames.asm" +RattataFrames: INCLUDE "gfx/pokemon/rattata/frames.asm" +RaticateFrames: INCLUDE "gfx/pokemon/raticate/frames.asm" +SpearowFrames: INCLUDE "gfx/pokemon/spearow/frames.asm" +FearowFrames: INCLUDE "gfx/pokemon/fearow/frames.asm" +EkansFrames: INCLUDE "gfx/pokemon/ekans/frames.asm" +ArbokFrames: INCLUDE "gfx/pokemon/arbok/frames.asm" +PikachuFrames: INCLUDE "gfx/pokemon/pikachu/frames.asm" +RaichuFrames: INCLUDE "gfx/pokemon/raichu/frames.asm" +SandshrewFrames: INCLUDE "gfx/pokemon/sandshrew/frames.asm" +SandslashFrames: INCLUDE "gfx/pokemon/sandslash/frames.asm" +NidoranFFrames: INCLUDE "gfx/pokemon/nidoran_f/frames.asm" +NidorinaFrames: INCLUDE "gfx/pokemon/nidorina/frames.asm" +NidoqueenFrames: INCLUDE "gfx/pokemon/nidoqueen/frames.asm" +NidoranMFrames: INCLUDE "gfx/pokemon/nidoran_m/frames.asm" +NidorinoFrames: INCLUDE "gfx/pokemon/nidorino/frames.asm" +NidokingFrames: INCLUDE "gfx/pokemon/nidoking/frames.asm" +ClefairyFrames: INCLUDE "gfx/pokemon/clefairy/frames.asm" +ClefableFrames: INCLUDE "gfx/pokemon/clefable/frames.asm" +VulpixFrames: INCLUDE "gfx/pokemon/vulpix/frames.asm" +NinetalesFrames: INCLUDE "gfx/pokemon/ninetales/frames.asm" +JigglypuffFrames: INCLUDE "gfx/pokemon/jigglypuff/frames.asm" +WigglytuffFrames: INCLUDE "gfx/pokemon/wigglytuff/frames.asm" +ZubatFrames: INCLUDE "gfx/pokemon/zubat/frames.asm" +GolbatFrames: INCLUDE "gfx/pokemon/golbat/frames.asm" +OddishFrames: INCLUDE "gfx/pokemon/oddish/frames.asm" +GloomFrames: INCLUDE "gfx/pokemon/gloom/frames.asm" +VileplumeFrames: INCLUDE "gfx/pokemon/vileplume/frames.asm" +ParasFrames: INCLUDE "gfx/pokemon/paras/frames.asm" +ParasectFrames: INCLUDE "gfx/pokemon/parasect/frames.asm" +VenonatFrames: INCLUDE "gfx/pokemon/venonat/frames.asm" +VenomothFrames: INCLUDE "gfx/pokemon/venomoth/frames.asm" +DiglettFrames: INCLUDE "gfx/pokemon/diglett/frames.asm" +DugtrioFrames: INCLUDE "gfx/pokemon/dugtrio/frames.asm" +MeowthFrames: INCLUDE "gfx/pokemon/meowth/frames.asm" +PersianFrames: INCLUDE "gfx/pokemon/persian/frames.asm" +PsyduckFrames: INCLUDE "gfx/pokemon/psyduck/frames.asm" +GolduckFrames: INCLUDE "gfx/pokemon/golduck/frames.asm" +MankeyFrames: INCLUDE "gfx/pokemon/mankey/frames.asm" +PrimeapeFrames: INCLUDE "gfx/pokemon/primeape/frames.asm" +GrowlitheFrames: INCLUDE "gfx/pokemon/growlithe/frames.asm" +ArcanineFrames: INCLUDE "gfx/pokemon/arcanine/frames.asm" +PoliwagFrames: INCLUDE "gfx/pokemon/poliwag/frames.asm" +PoliwhirlFrames: INCLUDE "gfx/pokemon/poliwhirl/frames.asm" +PoliwrathFrames: INCLUDE "gfx/pokemon/poliwrath/frames.asm" +AbraFrames: INCLUDE "gfx/pokemon/abra/frames.asm" +KadabraFrames: INCLUDE "gfx/pokemon/kadabra/frames.asm" +AlakazamFrames: INCLUDE "gfx/pokemon/alakazam/frames.asm" +MachopFrames: INCLUDE "gfx/pokemon/machop/frames.asm" +MachokeFrames: INCLUDE "gfx/pokemon/machoke/frames.asm" +MachampFrames: INCLUDE "gfx/pokemon/machamp/frames.asm" +BellsproutFrames: INCLUDE "gfx/pokemon/bellsprout/frames.asm" +WeepinbellFrames: INCLUDE "gfx/pokemon/weepinbell/frames.asm" +VictreebelFrames: INCLUDE "gfx/pokemon/victreebel/frames.asm" +TentacoolFrames: INCLUDE "gfx/pokemon/tentacool/frames.asm" +TentacruelFrames: INCLUDE "gfx/pokemon/tentacruel/frames.asm" +GeodudeFrames: INCLUDE "gfx/pokemon/geodude/frames.asm" +GravelerFrames: INCLUDE "gfx/pokemon/graveler/frames.asm" +GolemFrames: INCLUDE "gfx/pokemon/golem/frames.asm" +PonytaFrames: INCLUDE "gfx/pokemon/ponyta/frames.asm" +RapidashFrames: INCLUDE "gfx/pokemon/rapidash/frames.asm" +SlowpokeFrames: INCLUDE "gfx/pokemon/slowpoke/frames.asm" +SlowbroFrames: INCLUDE "gfx/pokemon/slowbro/frames.asm" +MagnemiteFrames: INCLUDE "gfx/pokemon/magnemite/frames.asm" +MagnetonFrames: INCLUDE "gfx/pokemon/magneton/frames.asm" +FarfetchDFrames: INCLUDE "gfx/pokemon/farfetch_d/frames.asm" +DoduoFrames: INCLUDE "gfx/pokemon/doduo/frames.asm" +DodrioFrames: INCLUDE "gfx/pokemon/dodrio/frames.asm" +SeelFrames: INCLUDE "gfx/pokemon/seel/frames.asm" +DewgongFrames: INCLUDE "gfx/pokemon/dewgong/frames.asm" +GrimerFrames: INCLUDE "gfx/pokemon/grimer/frames.asm" +MukFrames: INCLUDE "gfx/pokemon/muk/frames.asm" +ShellderFrames: INCLUDE "gfx/pokemon/shellder/frames.asm" +CloysterFrames: INCLUDE "gfx/pokemon/cloyster/frames.asm" +GastlyFrames: INCLUDE "gfx/pokemon/gastly/frames.asm" +HaunterFrames: INCLUDE "gfx/pokemon/haunter/frames.asm" +GengarFrames: INCLUDE "gfx/pokemon/gengar/frames.asm" +OnixFrames: INCLUDE "gfx/pokemon/onix/frames.asm" +DrowzeeFrames: INCLUDE "gfx/pokemon/drowzee/frames.asm" +HypnoFrames: INCLUDE "gfx/pokemon/hypno/frames.asm" +KrabbyFrames: INCLUDE "gfx/pokemon/krabby/frames.asm" +KinglerFrames: INCLUDE "gfx/pokemon/kingler/frames.asm" +VoltorbFrames: INCLUDE "gfx/pokemon/voltorb/frames.asm" +ElectrodeFrames: INCLUDE "gfx/pokemon/electrode/frames.asm" +ExeggcuteFrames: INCLUDE "gfx/pokemon/exeggcute/frames.asm" +ExeggutorFrames: INCLUDE "gfx/pokemon/exeggutor/frames.asm" +CuboneFrames: INCLUDE "gfx/pokemon/cubone/frames.asm" +MarowakFrames: INCLUDE "gfx/pokemon/marowak/frames.asm" +HitmonleeFrames: INCLUDE "gfx/pokemon/hitmonlee/frames.asm" +HitmonchanFrames: INCLUDE "gfx/pokemon/hitmonchan/frames.asm" +LickitungFrames: INCLUDE "gfx/pokemon/lickitung/frames.asm" +KoffingFrames: INCLUDE "gfx/pokemon/koffing/frames.asm" +WeezingFrames: INCLUDE "gfx/pokemon/weezing/frames.asm" +RhyhornFrames: INCLUDE "gfx/pokemon/rhyhorn/frames.asm" +RhydonFrames: INCLUDE "gfx/pokemon/rhydon/frames.asm" +ChanseyFrames: INCLUDE "gfx/pokemon/chansey/frames.asm" +TangelaFrames: INCLUDE "gfx/pokemon/tangela/frames.asm" +KangaskhanFrames: INCLUDE "gfx/pokemon/kangaskhan/frames.asm" +HorseaFrames: INCLUDE "gfx/pokemon/horsea/frames.asm" +SeadraFrames: INCLUDE "gfx/pokemon/seadra/frames.asm" +GoldeenFrames: INCLUDE "gfx/pokemon/goldeen/frames.asm" +SeakingFrames: INCLUDE "gfx/pokemon/seaking/frames.asm" +StaryuFrames: INCLUDE "gfx/pokemon/staryu/frames.asm" +StarmieFrames: INCLUDE "gfx/pokemon/starmie/frames.asm" +MrMimeFrames: INCLUDE "gfx/pokemon/mr__mime/frames.asm" +ScytherFrames: INCLUDE "gfx/pokemon/scyther/frames.asm" +JynxFrames: INCLUDE "gfx/pokemon/jynx/frames.asm" +ElectabuzzFrames: INCLUDE "gfx/pokemon/electabuzz/frames.asm" +MagmarFrames: INCLUDE "gfx/pokemon/magmar/frames.asm" +PinsirFrames: INCLUDE "gfx/pokemon/pinsir/frames.asm" +TaurosFrames: INCLUDE "gfx/pokemon/tauros/frames.asm" +MagikarpFrames: INCLUDE "gfx/pokemon/magikarp/frames.asm" +GyaradosFrames: INCLUDE "gfx/pokemon/gyarados/frames.asm" +LaprasFrames: INCLUDE "gfx/pokemon/lapras/frames.asm" +DittoFrames: INCLUDE "gfx/pokemon/ditto/frames.asm" +EeveeFrames: INCLUDE "gfx/pokemon/eevee/frames.asm" +VaporeonFrames: INCLUDE "gfx/pokemon/vaporeon/frames.asm" +JolteonFrames: INCLUDE "gfx/pokemon/jolteon/frames.asm" +FlareonFrames: INCLUDE "gfx/pokemon/flareon/frames.asm" +PorygonFrames: INCLUDE "gfx/pokemon/porygon/frames.asm" +OmanyteFrames: INCLUDE "gfx/pokemon/omanyte/frames.asm" +OmastarFrames: INCLUDE "gfx/pokemon/omastar/frames.asm" +KabutoFrames: INCLUDE "gfx/pokemon/kabuto/frames.asm" +KabutopsFrames: INCLUDE "gfx/pokemon/kabutops/frames.asm" +AerodactylFrames: INCLUDE "gfx/pokemon/aerodactyl/frames.asm" +SnorlaxFrames: INCLUDE "gfx/pokemon/snorlax/frames.asm" +ArticunoFrames: INCLUDE "gfx/pokemon/articuno/frames.asm" +ZapdosFrames: INCLUDE "gfx/pokemon/zapdos/frames.asm" +MoltresFrames: INCLUDE "gfx/pokemon/moltres/frames.asm" +DratiniFrames: INCLUDE "gfx/pokemon/dratini/frames.asm" +DragonairFrames: INCLUDE "gfx/pokemon/dragonair/frames.asm" +DragoniteFrames: INCLUDE "gfx/pokemon/dragonite/frames.asm" +MewtwoFrames: INCLUDE "gfx/pokemon/mewtwo/frames.asm" +MewFrames: INCLUDE "gfx/pokemon/mew/frames.asm" diff --git a/gfx/pokemon/kingdra/anim0.asm b/gfx/pokemon/kingdra/anim0.asm new file mode 100644 index 000000000..c7bc2991f --- /dev/null +++ b/gfx/pokemon/kingdra/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 12 + frame 2, 12 + frame 3, 12 + frame 0, 12 + setrepeat 3 + frame 4, 06 + frame 5, 06 + dorepeat 5 + endanim +; 0xd1571 diff --git a/gfx/pokemon/kingdra/anim1.asm b/gfx/pokemon/kingdra/anim1.asm new file mode 100644 index 000000000..2ec7e99ae --- /dev/null +++ b/gfx/pokemon/kingdra/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 6, 06 + dorepeat 1 + endanim +; 0xd2157 diff --git a/gfx/pokemon/kingdra/back.2bpp.lz.e48ecb3f b/gfx/pokemon/kingdra/back.2bpp.lz.e48ecb3f new file mode 100644 index 000000000..9f2c38b6c Binary files /dev/null and b/gfx/pokemon/kingdra/back.2bpp.lz.e48ecb3f differ diff --git a/gfx/pokemon/kingdra/back.png b/gfx/pokemon/kingdra/back.png new file mode 100644 index 000000000..9f0784999 Binary files /dev/null and b/gfx/pokemon/kingdra/back.png differ diff --git a/gfx/pokemon/kingdra/front.animated.2bpp.lz.668c0516 b/gfx/pokemon/kingdra/front.animated.2bpp.lz.668c0516 new file mode 100644 index 000000000..d28a4dc78 Binary files /dev/null and b/gfx/pokemon/kingdra/front.animated.2bpp.lz.668c0516 differ diff --git a/gfx/pokemon/kingdra/front.png b/gfx/pokemon/kingdra/front.png new file mode 100644 index 000000000..978f8e91c Binary files /dev/null and b/gfx/pokemon/kingdra/front.png differ diff --git a/gfx/pokemon/kingdra/shiny.pal b/gfx/pokemon/kingdra/shiny.pal new file mode 100644 index 000000000..2a65783f1 --- /dev/null +++ b/gfx/pokemon/kingdra/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 17, 15 + RGB 17, 11, 19 + diff --git a/gfx/pokemon/kingler/anim0.asm b/gfx/pokemon/kingler/anim0.asm new file mode 100644 index 000000000..2be7b62be --- /dev/null +++ b/gfx/pokemon/kingler/anim0.asm @@ -0,0 +1,10 @@ + setrepeat 2 + frame 1, 11 + frame 2, 11 + dorepeat 1 + frame 0, 11 + frame 2, 11 + frame 0, 15 + frame 2, 15 + endanim +; 0xd0e4a diff --git a/gfx/pokemon/kingler/anim1.asm b/gfx/pokemon/kingler/anim1.asm new file mode 100644 index 000000000..25af73bc9 --- /dev/null +++ b/gfx/pokemon/kingler/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 4 + frame 0, 10 + frame 3, 10 + dorepeat 1 + endanim +; 0xd1c9a diff --git a/gfx/pokemon/kingler/back.2bpp.lz.88e96d65 b/gfx/pokemon/kingler/back.2bpp.lz.88e96d65 new file mode 100644 index 000000000..aceed0679 Binary files /dev/null and b/gfx/pokemon/kingler/back.2bpp.lz.88e96d65 differ diff --git a/gfx/pokemon/kingler/back.png b/gfx/pokemon/kingler/back.png new file mode 100644 index 000000000..02e058053 Binary files /dev/null and b/gfx/pokemon/kingler/back.png differ diff --git a/gfx/pokemon/kingler/front.animated.2bpp.lz.35305199 b/gfx/pokemon/kingler/front.animated.2bpp.lz.35305199 new file mode 100644 index 000000000..590bd05ee Binary files /dev/null and b/gfx/pokemon/kingler/front.animated.2bpp.lz.35305199 differ diff --git a/gfx/pokemon/kingler/front.png b/gfx/pokemon/kingler/front.png new file mode 100644 index 000000000..5631d87e7 Binary files /dev/null and b/gfx/pokemon/kingler/front.png differ diff --git a/gfx/pokemon/kingler/shiny.pal b/gfx/pokemon/kingler/shiny.pal new file mode 100644 index 000000000..9a9c3818b --- /dev/null +++ b/gfx/pokemon/kingler/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 22, 09 + RGB 12, 13, 11 + diff --git a/gfx/pokemon/koffing/anim0.asm b/gfx/pokemon/koffing/anim0.asm new file mode 100644 index 000000000..fc574f528 --- /dev/null +++ b/gfx/pokemon/koffing/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 20 + frame 2, 06 + frame 3, 05 + frame 4, 10 + frame 5, 15 + endanim +; 0xd0ef0 diff --git a/gfx/pokemon/koffing/anim1.asm b/gfx/pokemon/koffing/anim1.asm new file mode 100644 index 000000000..e0e81b4d3 --- /dev/null +++ b/gfx/pokemon/koffing/anim1.asm @@ -0,0 +1,3 @@ + frame 5, 48 + endanim +; 0xd1cee diff --git a/gfx/pokemon/koffing/back.2bpp.lz.8c0a2526 b/gfx/pokemon/koffing/back.2bpp.lz.8c0a2526 new file mode 100644 index 000000000..2e8762565 Binary files /dev/null and b/gfx/pokemon/koffing/back.2bpp.lz.8c0a2526 differ diff --git a/gfx/pokemon/koffing/back.png b/gfx/pokemon/koffing/back.png new file mode 100644 index 000000000..fd156a89b Binary files /dev/null and b/gfx/pokemon/koffing/back.png differ diff --git a/gfx/pokemon/koffing/front.animated.2bpp.lz.00044b3f b/gfx/pokemon/koffing/front.animated.2bpp.lz.00044b3f new file mode 100644 index 000000000..78de37eeb Binary files /dev/null and b/gfx/pokemon/koffing/front.animated.2bpp.lz.00044b3f differ diff --git a/gfx/pokemon/koffing/front.png b/gfx/pokemon/koffing/front.png new file mode 100644 index 000000000..1468a07f1 Binary files /dev/null and b/gfx/pokemon/koffing/front.png differ diff --git a/gfx/pokemon/koffing/shiny.pal b/gfx/pokemon/koffing/shiny.pal new file mode 100644 index 000000000..8132fea04 --- /dev/null +++ b/gfx/pokemon/koffing/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 20, 25 + RGB 09, 12, 23 + diff --git a/gfx/pokemon/krabby/anim0.asm b/gfx/pokemon/krabby/anim0.asm new file mode 100644 index 000000000..22f5657e5 --- /dev/null +++ b/gfx/pokemon/krabby/anim0.asm @@ -0,0 +1,11 @@ + frame 5, 18 + frame 0, 06 + setrepeat 2 + frame 0, 06 + frame 1, 04 + frame 2, 03 + frame 3, 04 + frame 4, 03 + dorepeat 3 + endanim +; 0xd0e39 diff --git a/gfx/pokemon/krabby/anim1.asm b/gfx/pokemon/krabby/anim1.asm new file mode 100644 index 000000000..0b89ffc33 --- /dev/null +++ b/gfx/pokemon/krabby/anim1.asm @@ -0,0 +1,5 @@ + frame 0, 06 + frame 7, 06 + dorepeat 3 + endanim +; 0xd1c91 diff --git a/gfx/pokemon/krabby/back.2bpp.lz.2bc2487b b/gfx/pokemon/krabby/back.2bpp.lz.2bc2487b new file mode 100644 index 000000000..5954b413d Binary files /dev/null and b/gfx/pokemon/krabby/back.2bpp.lz.2bc2487b differ diff --git a/gfx/pokemon/krabby/back.png b/gfx/pokemon/krabby/back.png new file mode 100644 index 000000000..baf5a048e Binary files /dev/null and b/gfx/pokemon/krabby/back.png differ diff --git a/gfx/pokemon/krabby/front.animated.2bpp.lz.39592514 b/gfx/pokemon/krabby/front.animated.2bpp.lz.39592514 new file mode 100644 index 000000000..c0f968fa5 Binary files /dev/null and b/gfx/pokemon/krabby/front.animated.2bpp.lz.39592514 differ diff --git a/gfx/pokemon/krabby/front.png b/gfx/pokemon/krabby/front.png new file mode 100644 index 000000000..f790059e8 Binary files /dev/null and b/gfx/pokemon/krabby/front.png differ diff --git a/gfx/pokemon/krabby/shiny.pal b/gfx/pokemon/krabby/shiny.pal new file mode 100644 index 000000000..57fd91a81 --- /dev/null +++ b/gfx/pokemon/krabby/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 20, 22 + RGB 18, 15, 04 + diff --git a/gfx/pokemon/lanturn/anim0.asm b/gfx/pokemon/lanturn/anim0.asm new file mode 100644 index 000000000..18882deb5 --- /dev/null +++ b/gfx/pokemon/lanturn/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 12 + frame 2, 12 + frame 3, 12 + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 4 + endanim +; 0xd1280 diff --git a/gfx/pokemon/lanturn/anim1.asm b/gfx/pokemon/lanturn/anim1.asm new file mode 100644 index 000000000..d57dd04b1 --- /dev/null +++ b/gfx/pokemon/lanturn/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1f56 diff --git a/gfx/pokemon/lanturn/back.2bpp.lz.8e9c7c1a b/gfx/pokemon/lanturn/back.2bpp.lz.8e9c7c1a new file mode 100644 index 000000000..ea916b7ea Binary files /dev/null and b/gfx/pokemon/lanturn/back.2bpp.lz.8e9c7c1a differ diff --git a/gfx/pokemon/lanturn/back.png b/gfx/pokemon/lanturn/back.png new file mode 100644 index 000000000..f80ffc742 Binary files /dev/null and b/gfx/pokemon/lanturn/back.png differ diff --git a/gfx/pokemon/lanturn/front.animated.2bpp.lz.1bfac161 b/gfx/pokemon/lanturn/front.animated.2bpp.lz.1bfac161 new file mode 100644 index 000000000..ba57a1569 Binary files /dev/null and b/gfx/pokemon/lanturn/front.animated.2bpp.lz.1bfac161 differ diff --git a/gfx/pokemon/lanturn/front.png b/gfx/pokemon/lanturn/front.png new file mode 100644 index 000000000..5b2eaeb5b Binary files /dev/null and b/gfx/pokemon/lanturn/front.png differ diff --git a/gfx/pokemon/lanturn/shiny.pal b/gfx/pokemon/lanturn/shiny.pal new file mode 100644 index 000000000..e1e3e4fe8 --- /dev/null +++ b/gfx/pokemon/lanturn/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 23, 10 + RGB 16, 10, 31 + diff --git a/gfx/pokemon/lapras/anim0.asm b/gfx/pokemon/lapras/anim0.asm new file mode 100644 index 000000000..9ae8f4e5c --- /dev/null +++ b/gfx/pokemon/lapras/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 10 + frame 2, 07 + frame 3, 40 + frame 2, 09 + frame 1, 10 + endanim +; 0xd1016 diff --git a/gfx/pokemon/lapras/anim1.asm b/gfx/pokemon/lapras/anim1.asm new file mode 100644 index 000000000..790cccf05 --- /dev/null +++ b/gfx/pokemon/lapras/anim1.asm @@ -0,0 +1,6 @@ + frame 4, 10 + frame 5, 30 + frame 0, 12 + frame 5, 12 + endanim +; 0xd1dc0 diff --git a/gfx/pokemon/lapras/back.2bpp.lz.d09351a1 b/gfx/pokemon/lapras/back.2bpp.lz.d09351a1 new file mode 100644 index 000000000..00f6b4329 Binary files /dev/null and b/gfx/pokemon/lapras/back.2bpp.lz.d09351a1 differ diff --git a/gfx/pokemon/lapras/back.png b/gfx/pokemon/lapras/back.png new file mode 100644 index 000000000..9c17ce376 Binary files /dev/null and b/gfx/pokemon/lapras/back.png differ diff --git a/gfx/pokemon/lapras/front.animated.2bpp.lz.8290ef8e b/gfx/pokemon/lapras/front.animated.2bpp.lz.8290ef8e new file mode 100644 index 000000000..0c20fc0be Binary files /dev/null and b/gfx/pokemon/lapras/front.animated.2bpp.lz.8290ef8e differ diff --git a/gfx/pokemon/lapras/front.png b/gfx/pokemon/lapras/front.png new file mode 100644 index 000000000..f6c2c483b Binary files /dev/null and b/gfx/pokemon/lapras/front.png differ diff --git a/gfx/pokemon/lapras/shiny.pal b/gfx/pokemon/lapras/shiny.pal new file mode 100644 index 000000000..58fa3bc59 --- /dev/null +++ b/gfx/pokemon/lapras/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 13, 31 + RGB 16, 11, 31 + diff --git a/gfx/pokemon/larvitar/anim0.asm b/gfx/pokemon/larvitar/anim0.asm new file mode 100644 index 000000000..bb861f733 --- /dev/null +++ b/gfx/pokemon/larvitar/anim0.asm @@ -0,0 +1,6 @@ + frame 3, 12 + frame 1, 12 + frame 2, 28 + frame 3, 08 + endanim +; 0xd163d diff --git a/gfx/pokemon/larvitar/anim1.asm b/gfx/pokemon/larvitar/anim1.asm new file mode 100644 index 000000000..2b87de7be --- /dev/null +++ b/gfx/pokemon/larvitar/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd21eb diff --git a/gfx/pokemon/larvitar/back.2bpp.lz.4b2ac395 b/gfx/pokemon/larvitar/back.2bpp.lz.4b2ac395 new file mode 100644 index 000000000..b4122419b Binary files /dev/null and b/gfx/pokemon/larvitar/back.2bpp.lz.4b2ac395 differ diff --git a/gfx/pokemon/larvitar/back.png b/gfx/pokemon/larvitar/back.png new file mode 100644 index 000000000..84e51b20b Binary files /dev/null and b/gfx/pokemon/larvitar/back.png differ diff --git a/gfx/pokemon/larvitar/front.animated.2bpp.lz.83859c57 b/gfx/pokemon/larvitar/front.animated.2bpp.lz.83859c57 new file mode 100644 index 000000000..deba5d5a2 Binary files /dev/null and b/gfx/pokemon/larvitar/front.animated.2bpp.lz.83859c57 differ diff --git a/gfx/pokemon/larvitar/front.png b/gfx/pokemon/larvitar/front.png new file mode 100644 index 000000000..3f58d0be6 Binary files /dev/null and b/gfx/pokemon/larvitar/front.png differ diff --git a/gfx/pokemon/larvitar/shiny.pal b/gfx/pokemon/larvitar/shiny.pal new file mode 100644 index 000000000..025a819dc --- /dev/null +++ b/gfx/pokemon/larvitar/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 23, 10 + RGB 20, 07, 23 + diff --git a/gfx/pokemon/ledian/anim0.asm b/gfx/pokemon/ledian/anim0.asm new file mode 100644 index 000000000..ece77ff44 --- /dev/null +++ b/gfx/pokemon/ledian/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 04 + frame 2, 24 + setrepeat 7 + frame 1, 02 + frame 3, 02 + dorepeat 3 + frame 1, 08 + endanim +; 0xd1233 diff --git a/gfx/pokemon/ledian/anim1.asm b/gfx/pokemon/ledian/anim1.asm new file mode 100644 index 000000000..cf5a0e011 --- /dev/null +++ b/gfx/pokemon/ledian/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd1f25 diff --git a/gfx/pokemon/ledian/back.2bpp.lz.48657bbb b/gfx/pokemon/ledian/back.2bpp.lz.48657bbb new file mode 100644 index 000000000..eb996b4e3 Binary files /dev/null and b/gfx/pokemon/ledian/back.2bpp.lz.48657bbb differ diff --git a/gfx/pokemon/ledian/back.png b/gfx/pokemon/ledian/back.png new file mode 100644 index 000000000..6dcd7eb53 Binary files /dev/null and b/gfx/pokemon/ledian/back.png differ diff --git a/gfx/pokemon/ledian/front.animated.2bpp.lz.83e819c3 b/gfx/pokemon/ledian/front.animated.2bpp.lz.83e819c3 new file mode 100644 index 000000000..117d19c14 Binary files /dev/null and b/gfx/pokemon/ledian/front.animated.2bpp.lz.83e819c3 differ diff --git a/gfx/pokemon/ledian/front.png b/gfx/pokemon/ledian/front.png new file mode 100644 index 000000000..d5773cbba Binary files /dev/null and b/gfx/pokemon/ledian/front.png differ diff --git a/gfx/pokemon/ledian/shiny.pal b/gfx/pokemon/ledian/shiny.pal new file mode 100644 index 000000000..f404bc1d1 --- /dev/null +++ b/gfx/pokemon/ledian/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 26, 00 + RGB 31, 17, 00 + diff --git a/gfx/pokemon/ledyba/anim0.asm b/gfx/pokemon/ledyba/anim0.asm new file mode 100644 index 000000000..ac4c8e154 --- /dev/null +++ b/gfx/pokemon/ledyba/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 08 + setrepeat 2 + frame 2, 10 + frame 3, 12 + dorepeat 2 + endanim +; 0xd1224 diff --git a/gfx/pokemon/ledyba/anim1.asm b/gfx/pokemon/ledyba/anim1.asm new file mode 100644 index 000000000..d493c5fbc --- /dev/null +++ b/gfx/pokemon/ledyba/anim1.asm @@ -0,0 +1,7 @@ + frame 3, 07 + setrepeat 3 + frame 4, 05 + frame 3, 05 + dorepeat 2 + endanim +; 0xd1f1c diff --git a/gfx/pokemon/ledyba/back.2bpp.lz.d50e8860 b/gfx/pokemon/ledyba/back.2bpp.lz.d50e8860 new file mode 100644 index 000000000..728f4dedb Binary files /dev/null and b/gfx/pokemon/ledyba/back.2bpp.lz.d50e8860 differ diff --git a/gfx/pokemon/ledyba/back.png b/gfx/pokemon/ledyba/back.png new file mode 100644 index 000000000..e9f080747 Binary files /dev/null and b/gfx/pokemon/ledyba/back.png differ diff --git a/gfx/pokemon/ledyba/front.animated.2bpp.lz.1700dc27 b/gfx/pokemon/ledyba/front.animated.2bpp.lz.1700dc27 new file mode 100644 index 000000000..fc15ab1ba Binary files /dev/null and b/gfx/pokemon/ledyba/front.animated.2bpp.lz.1700dc27 differ diff --git a/gfx/pokemon/ledyba/front.png b/gfx/pokemon/ledyba/front.png new file mode 100644 index 000000000..317670632 Binary files /dev/null and b/gfx/pokemon/ledyba/front.png differ diff --git a/gfx/pokemon/ledyba/shiny.pal b/gfx/pokemon/ledyba/shiny.pal new file mode 100644 index 000000000..f404bc1d1 --- /dev/null +++ b/gfx/pokemon/ledyba/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 26, 00 + RGB 31, 17, 00 + diff --git a/gfx/pokemon/lickitung/anim0.asm b/gfx/pokemon/lickitung/anim0.asm new file mode 100644 index 000000000..2fb31e50b --- /dev/null +++ b/gfx/pokemon/lickitung/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 16 + frame 2, 06 + frame 3, 06 + frame 0, 06 + frame 3, 06 + endanim +; 0xd0ee5 diff --git a/gfx/pokemon/lickitung/anim1.asm b/gfx/pokemon/lickitung/anim1.asm new file mode 100644 index 000000000..cf0355a03 --- /dev/null +++ b/gfx/pokemon/lickitung/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1ceb diff --git a/gfx/pokemon/lickitung/back.2bpp.lz.a127e40b b/gfx/pokemon/lickitung/back.2bpp.lz.a127e40b new file mode 100644 index 000000000..85764655a Binary files /dev/null and b/gfx/pokemon/lickitung/back.2bpp.lz.a127e40b differ diff --git a/gfx/pokemon/lickitung/back.png b/gfx/pokemon/lickitung/back.png new file mode 100644 index 000000000..dd6276d7c Binary files /dev/null and b/gfx/pokemon/lickitung/back.png differ diff --git a/gfx/pokemon/lickitung/front.animated.2bpp.lz.328a7c53 b/gfx/pokemon/lickitung/front.animated.2bpp.lz.328a7c53 new file mode 100644 index 000000000..f7e2f4f43 Binary files /dev/null and b/gfx/pokemon/lickitung/front.animated.2bpp.lz.328a7c53 differ diff --git a/gfx/pokemon/lickitung/front.png b/gfx/pokemon/lickitung/front.png new file mode 100644 index 000000000..9918326e4 Binary files /dev/null and b/gfx/pokemon/lickitung/front.png differ diff --git a/gfx/pokemon/lickitung/shiny.pal b/gfx/pokemon/lickitung/shiny.pal new file mode 100644 index 000000000..214a63264 --- /dev/null +++ b/gfx/pokemon/lickitung/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 22, 09 + RGB 28, 09, 14 + diff --git a/gfx/pokemon/lugia/anim0.asm b/gfx/pokemon/lugia/anim0.asm new file mode 100644 index 000000000..3c3c021a5 --- /dev/null +++ b/gfx/pokemon/lugia/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 11 + frame 2, 11 + frame 3, 14 + frame 4, 14 + frame 5, 14 + frame 6, 11 + endanim +; 0xd1666 diff --git a/gfx/pokemon/lugia/anim1.asm b/gfx/pokemon/lugia/anim1.asm new file mode 100644 index 000000000..31f2ea09c --- /dev/null +++ b/gfx/pokemon/lugia/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 3 + frame 9, 10 + frame 7, 10 + dorepeat 1 + frame 8, 10 + frame 3, 10 + endanim +; 0xd220c diff --git a/gfx/pokemon/lugia/back.2bpp.lz.ad953eb5 b/gfx/pokemon/lugia/back.2bpp.lz.ad953eb5 new file mode 100644 index 000000000..8f7134e13 Binary files /dev/null and b/gfx/pokemon/lugia/back.2bpp.lz.ad953eb5 differ diff --git a/gfx/pokemon/lugia/back.png b/gfx/pokemon/lugia/back.png new file mode 100644 index 000000000..07e502f41 Binary files /dev/null and b/gfx/pokemon/lugia/back.png differ diff --git a/gfx/pokemon/lugia/front.animated.2bpp.lz.7293eddc b/gfx/pokemon/lugia/front.animated.2bpp.lz.7293eddc new file mode 100644 index 000000000..b1b300304 Binary files /dev/null and b/gfx/pokemon/lugia/front.animated.2bpp.lz.7293eddc differ diff --git a/gfx/pokemon/lugia/front.png b/gfx/pokemon/lugia/front.png new file mode 100644 index 000000000..29c21ee3c Binary files /dev/null and b/gfx/pokemon/lugia/front.png differ diff --git a/gfx/pokemon/lugia/shiny.pal b/gfx/pokemon/lugia/shiny.pal new file mode 100644 index 000000000..22a7970ff --- /dev/null +++ b/gfx/pokemon/lugia/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 28, 28 + RGB 27, 00, 14 + diff --git a/gfx/pokemon/machamp/anim0.asm b/gfx/pokemon/machamp/anim0.asm new file mode 100644 index 000000000..6202aefe5 --- /dev/null +++ b/gfx/pokemon/machamp/anim0.asm @@ -0,0 +1,11 @@ + frame 0, 04 + frame 1, 30 + setrepeat 3 + frame 2, 05 + frame 6, 03 + frame 3, 05 + frame 4, 03 + dorepeat 3 + frame 7, 08 + endanim +; 0xd0c9d diff --git a/gfx/pokemon/machamp/anim1.asm b/gfx/pokemon/machamp/anim1.asm new file mode 100644 index 000000000..5171d3966 --- /dev/null +++ b/gfx/pokemon/machamp/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 5, 07 + dorepeat 1 + endanim +; 0xd1b6b diff --git a/gfx/pokemon/machamp/back.2bpp.lz.757f4c29 b/gfx/pokemon/machamp/back.2bpp.lz.757f4c29 new file mode 100644 index 000000000..b82d09cce Binary files /dev/null and b/gfx/pokemon/machamp/back.2bpp.lz.757f4c29 differ diff --git a/gfx/pokemon/machamp/back.png b/gfx/pokemon/machamp/back.png new file mode 100644 index 000000000..9fd20fd70 Binary files /dev/null and b/gfx/pokemon/machamp/back.png differ diff --git a/gfx/pokemon/machamp/front.animated.2bpp.lz.2d408542 b/gfx/pokemon/machamp/front.animated.2bpp.lz.2d408542 new file mode 100644 index 000000000..aa1b12edb Binary files /dev/null and b/gfx/pokemon/machamp/front.animated.2bpp.lz.2d408542 differ diff --git a/gfx/pokemon/machamp/front.png b/gfx/pokemon/machamp/front.png new file mode 100644 index 000000000..b06c66af6 Binary files /dev/null and b/gfx/pokemon/machamp/front.png differ diff --git a/gfx/pokemon/machamp/shiny.pal b/gfx/pokemon/machamp/shiny.pal new file mode 100644 index 000000000..afe8a06a6 --- /dev/null +++ b/gfx/pokemon/machamp/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 17, 11 + RGB 09, 12, 04 + diff --git a/gfx/pokemon/machoke/anim0.asm b/gfx/pokemon/machoke/anim0.asm new file mode 100644 index 000000000..6d89ab174 --- /dev/null +++ b/gfx/pokemon/machoke/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 12 + frame 2, 40 + frame 1, 10 + endanim +; 0xd0c8a diff --git a/gfx/pokemon/machoke/anim1.asm b/gfx/pokemon/machoke/anim1.asm new file mode 100644 index 000000000..c79f108d7 --- /dev/null +++ b/gfx/pokemon/machoke/anim1.asm @@ -0,0 +1,10 @@ + frame 4, 06 + frame 5, 25 + frame 4, 05 + frame 6, 20 + setrepeat 2 + frame 3, 08 + frame 6, 08 + dorepeat 5 + endanim +; 0xd1b62 diff --git a/gfx/pokemon/machoke/back.2bpp.lz.2634245e b/gfx/pokemon/machoke/back.2bpp.lz.2634245e new file mode 100644 index 000000000..e6a0015ed Binary files /dev/null and b/gfx/pokemon/machoke/back.2bpp.lz.2634245e differ diff --git a/gfx/pokemon/machoke/back.png b/gfx/pokemon/machoke/back.png new file mode 100644 index 000000000..a6f9c2c4c Binary files /dev/null and b/gfx/pokemon/machoke/back.png differ diff --git a/gfx/pokemon/machoke/front.animated.2bpp.lz.f38b95a7 b/gfx/pokemon/machoke/front.animated.2bpp.lz.f38b95a7 new file mode 100644 index 000000000..984f1601f Binary files /dev/null and b/gfx/pokemon/machoke/front.animated.2bpp.lz.f38b95a7 differ diff --git a/gfx/pokemon/machoke/front.png b/gfx/pokemon/machoke/front.png new file mode 100644 index 000000000..8c496b08b Binary files /dev/null and b/gfx/pokemon/machoke/front.png differ diff --git a/gfx/pokemon/machoke/shiny.pal b/gfx/pokemon/machoke/shiny.pal new file mode 100644 index 000000000..7dceaa4c1 --- /dev/null +++ b/gfx/pokemon/machoke/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 16, 11 + RGB 07, 06, 25 + diff --git a/gfx/pokemon/machop/anim0.asm b/gfx/pokemon/machop/anim0.asm new file mode 100644 index 000000000..8fee766ce --- /dev/null +++ b/gfx/pokemon/machop/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 12 + frame 2, 22 + setrepeat 2 + frame 0, 12 + frame 1, 12 + dorepeat 3 + endanim +; 0xd0c83 diff --git a/gfx/pokemon/machop/anim1.asm b/gfx/pokemon/machop/anim1.asm new file mode 100644 index 000000000..20658284d --- /dev/null +++ b/gfx/pokemon/machop/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1b51 diff --git a/gfx/pokemon/machop/back.2bpp.lz.bc17b50a b/gfx/pokemon/machop/back.2bpp.lz.bc17b50a new file mode 100644 index 000000000..96e6d00c6 Binary files /dev/null and b/gfx/pokemon/machop/back.2bpp.lz.bc17b50a differ diff --git a/gfx/pokemon/machop/back.png b/gfx/pokemon/machop/back.png new file mode 100644 index 000000000..e463bd456 Binary files /dev/null and b/gfx/pokemon/machop/back.png differ diff --git a/gfx/pokemon/machop/front.animated.2bpp.lz.0fd8735f b/gfx/pokemon/machop/front.animated.2bpp.lz.0fd8735f new file mode 100644 index 000000000..3b5404276 Binary files /dev/null and b/gfx/pokemon/machop/front.animated.2bpp.lz.0fd8735f differ diff --git a/gfx/pokemon/machop/front.png b/gfx/pokemon/machop/front.png new file mode 100644 index 000000000..4ec28bf2f Binary files /dev/null and b/gfx/pokemon/machop/front.png differ diff --git a/gfx/pokemon/machop/shiny.pal b/gfx/pokemon/machop/shiny.pal new file mode 100644 index 000000000..0b940effd --- /dev/null +++ b/gfx/pokemon/machop/shiny.pal @@ -0,0 +1,4 @@ + + RGB 15, 14, 11 + RGB 06, 08, 09 + diff --git a/gfx/pokemon/magby/anim0.asm b/gfx/pokemon/magby/anim0.asm new file mode 100644 index 000000000..b0f8c7a10 --- /dev/null +++ b/gfx/pokemon/magby/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 14 + setrepeat 2 + frame 2, 07 + frame 3, 07 + dorepeat 2 + frame 4, 16 + endanim +; 0xd15ed diff --git a/gfx/pokemon/magby/anim1.asm b/gfx/pokemon/magby/anim1.asm new file mode 100644 index 000000000..20b2b7997 --- /dev/null +++ b/gfx/pokemon/magby/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 09 + frame 5, 09 + dorepeat 1 + endanim +; 0xd21af diff --git a/gfx/pokemon/magby/back.2bpp.lz.e50ccadb b/gfx/pokemon/magby/back.2bpp.lz.e50ccadb new file mode 100644 index 000000000..8746c640e Binary files /dev/null and b/gfx/pokemon/magby/back.2bpp.lz.e50ccadb differ diff --git a/gfx/pokemon/magby/back.png b/gfx/pokemon/magby/back.png new file mode 100644 index 000000000..8d38c2ccb Binary files /dev/null and b/gfx/pokemon/magby/back.png differ diff --git a/gfx/pokemon/magby/front.animated.2bpp.lz.172d0807 b/gfx/pokemon/magby/front.animated.2bpp.lz.172d0807 new file mode 100644 index 000000000..b4eac5040 Binary files /dev/null and b/gfx/pokemon/magby/front.animated.2bpp.lz.172d0807 differ diff --git a/gfx/pokemon/magby/front.png b/gfx/pokemon/magby/front.png new file mode 100644 index 000000000..a966313d7 Binary files /dev/null and b/gfx/pokemon/magby/front.png differ diff --git a/gfx/pokemon/magby/shiny.pal b/gfx/pokemon/magby/shiny.pal new file mode 100644 index 000000000..ee96fafd2 --- /dev/null +++ b/gfx/pokemon/magby/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 26, 09 + RGB 31, 16, 00 + diff --git a/gfx/pokemon/magcargo/anim0.asm b/gfx/pokemon/magcargo/anim0.asm new file mode 100644 index 000000000..d6bf7543a --- /dev/null +++ b/gfx/pokemon/magcargo/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 05 + frame 2, 10 + frame 3, 10 + frame 4, 10 + frame 1, 25 + endanim +; 0xd14e4 diff --git a/gfx/pokemon/magcargo/anim1.asm b/gfx/pokemon/magcargo/anim1.asm new file mode 100644 index 000000000..3c76a44df --- /dev/null +++ b/gfx/pokemon/magcargo/anim1.asm @@ -0,0 +1,3 @@ + frame 1, 60 + endanim +; 0xd20f0 diff --git a/gfx/pokemon/magcargo/back.2bpp.lz.56b096bc b/gfx/pokemon/magcargo/back.2bpp.lz.56b096bc new file mode 100644 index 000000000..5cafe687a Binary files /dev/null and b/gfx/pokemon/magcargo/back.2bpp.lz.56b096bc differ diff --git a/gfx/pokemon/magcargo/back.png b/gfx/pokemon/magcargo/back.png new file mode 100644 index 000000000..a1db71ec2 Binary files /dev/null and b/gfx/pokemon/magcargo/back.png differ diff --git a/gfx/pokemon/magcargo/front.animated.2bpp.lz.53a425f4 b/gfx/pokemon/magcargo/front.animated.2bpp.lz.53a425f4 new file mode 100644 index 000000000..8b2cda00e Binary files /dev/null and b/gfx/pokemon/magcargo/front.animated.2bpp.lz.53a425f4 differ diff --git a/gfx/pokemon/magcargo/front.png b/gfx/pokemon/magcargo/front.png new file mode 100644 index 000000000..f5be029bf Binary files /dev/null and b/gfx/pokemon/magcargo/front.png differ diff --git a/gfx/pokemon/magcargo/shiny.pal b/gfx/pokemon/magcargo/shiny.pal new file mode 100644 index 000000000..a31d8288f --- /dev/null +++ b/gfx/pokemon/magcargo/shiny.pal @@ -0,0 +1,4 @@ + + RGB 12, 11, 28 + RGB 15, 06, 06 + diff --git a/gfx/pokemon/magikarp/anim0.asm b/gfx/pokemon/magikarp/anim0.asm new file mode 100644 index 000000000..f06f21a40 --- /dev/null +++ b/gfx/pokemon/magikarp/anim0.asm @@ -0,0 +1,7 @@ + frame 0, 12 + setrepeat 3 + frame 1, 09 + frame 2, 07 + dorepeat 2 + endanim +; 0xd1002 diff --git a/gfx/pokemon/magikarp/anim1.asm b/gfx/pokemon/magikarp/anim1.asm new file mode 100644 index 000000000..7c3f5cb76 --- /dev/null +++ b/gfx/pokemon/magikarp/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 10 + frame 3, 10 + dorepeat 1 + endanim +; 0xd1dae diff --git a/gfx/pokemon/magikarp/back.2bpp.lz.7f25810a b/gfx/pokemon/magikarp/back.2bpp.lz.7f25810a new file mode 100644 index 000000000..17100a9c5 Binary files /dev/null and b/gfx/pokemon/magikarp/back.2bpp.lz.7f25810a differ diff --git a/gfx/pokemon/magikarp/back.png b/gfx/pokemon/magikarp/back.png new file mode 100644 index 000000000..94efb9b92 Binary files /dev/null and b/gfx/pokemon/magikarp/back.png differ diff --git a/gfx/pokemon/magikarp/front.animated.2bpp.lz.031ee449 b/gfx/pokemon/magikarp/front.animated.2bpp.lz.031ee449 new file mode 100644 index 000000000..3ec963c7f Binary files /dev/null and b/gfx/pokemon/magikarp/front.animated.2bpp.lz.031ee449 differ diff --git a/gfx/pokemon/magikarp/front.png b/gfx/pokemon/magikarp/front.png new file mode 100644 index 000000000..6358fcbfc Binary files /dev/null and b/gfx/pokemon/magikarp/front.png differ diff --git a/gfx/pokemon/magikarp/shiny.pal b/gfx/pokemon/magikarp/shiny.pal new file mode 100644 index 000000000..24fb00761 --- /dev/null +++ b/gfx/pokemon/magikarp/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 24, 00 + RGB 16, 16, 00 + diff --git a/gfx/pokemon/magmar/anim0.asm b/gfx/pokemon/magmar/anim0.asm new file mode 100644 index 000000000..8fde5d3b5 --- /dev/null +++ b/gfx/pokemon/magmar/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 16 + setrepeat 3 + frame 2, 07 + frame 3, 07 + dorepeat 2 + endanim +; 0xd0fd7 diff --git a/gfx/pokemon/magmar/anim1.asm b/gfx/pokemon/magmar/anim1.asm new file mode 100644 index 000000000..784bdcd3d --- /dev/null +++ b/gfx/pokemon/magmar/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd1d93 diff --git a/gfx/pokemon/magmar/back.2bpp.lz.6916c87b b/gfx/pokemon/magmar/back.2bpp.lz.6916c87b new file mode 100644 index 000000000..9b44bab34 Binary files /dev/null and b/gfx/pokemon/magmar/back.2bpp.lz.6916c87b differ diff --git a/gfx/pokemon/magmar/back.png b/gfx/pokemon/magmar/back.png new file mode 100644 index 000000000..a1ab94d0b Binary files /dev/null and b/gfx/pokemon/magmar/back.png differ diff --git a/gfx/pokemon/magmar/front.animated.2bpp.lz.0048e21c b/gfx/pokemon/magmar/front.animated.2bpp.lz.0048e21c new file mode 100644 index 000000000..178afc45f Binary files /dev/null and b/gfx/pokemon/magmar/front.animated.2bpp.lz.0048e21c differ diff --git a/gfx/pokemon/magmar/front.png b/gfx/pokemon/magmar/front.png new file mode 100644 index 000000000..386cef0a5 Binary files /dev/null and b/gfx/pokemon/magmar/front.png differ diff --git a/gfx/pokemon/magmar/shiny.pal b/gfx/pokemon/magmar/shiny.pal new file mode 100644 index 000000000..0ccf2a2dd --- /dev/null +++ b/gfx/pokemon/magmar/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 14, 30 + RGB 24, 04, 14 + diff --git a/gfx/pokemon/magnemite/anim0.asm b/gfx/pokemon/magnemite/anim0.asm new file mode 100644 index 000000000..4f038b0ed --- /dev/null +++ b/gfx/pokemon/magnemite/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 1, 08 + frame 2, 08 + frame 3, 08 + frame 0, 08 + dorepeat 1 + endanim +; 0xd0d5c diff --git a/gfx/pokemon/magnemite/anim1.asm b/gfx/pokemon/magnemite/anim1.asm new file mode 100644 index 000000000..a41239563 --- /dev/null +++ b/gfx/pokemon/magnemite/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 4, 08 + frame 5, 08 + frame 6, 08 + dorepeat 1 + endanim +; 0xd1be4 diff --git a/gfx/pokemon/magnemite/back.2bpp.lz.e00bd515 b/gfx/pokemon/magnemite/back.2bpp.lz.e00bd515 new file mode 100644 index 000000000..f5cb4f801 Binary files /dev/null and b/gfx/pokemon/magnemite/back.2bpp.lz.e00bd515 differ diff --git a/gfx/pokemon/magnemite/back.png b/gfx/pokemon/magnemite/back.png new file mode 100644 index 000000000..a41bbc584 Binary files /dev/null and b/gfx/pokemon/magnemite/back.png differ diff --git a/gfx/pokemon/magnemite/front.animated.2bpp.lz.e4b07135 b/gfx/pokemon/magnemite/front.animated.2bpp.lz.e4b07135 new file mode 100644 index 000000000..fb221be89 Binary files /dev/null and b/gfx/pokemon/magnemite/front.animated.2bpp.lz.e4b07135 differ diff --git a/gfx/pokemon/magnemite/front.png b/gfx/pokemon/magnemite/front.png new file mode 100644 index 000000000..e42c951de Binary files /dev/null and b/gfx/pokemon/magnemite/front.png differ diff --git a/gfx/pokemon/magnemite/shiny.pal b/gfx/pokemon/magnemite/shiny.pal new file mode 100644 index 000000000..1ebbee13f --- /dev/null +++ b/gfx/pokemon/magnemite/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 20, 19 + RGB 20, 07, 07 + diff --git a/gfx/pokemon/magneton/anim0.asm b/gfx/pokemon/magneton/anim0.asm new file mode 100644 index 000000000..26b34d4ec --- /dev/null +++ b/gfx/pokemon/magneton/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 08 + frame 2, 08 + frame 3, 08 + frame 4, 08 + frame 5, 08 + frame 6, 08 + frame 7, 08 + frame 1, 04 + frame 2, 04 + frame 3, 04 + endanim +; 0xd0d71 diff --git a/gfx/pokemon/magneton/anim1.asm b/gfx/pokemon/magneton/anim1.asm new file mode 100644 index 000000000..6045d8fae --- /dev/null +++ b/gfx/pokemon/magneton/anim1.asm @@ -0,0 +1,9 @@ + setrepeat 2 + frame 0, 10 + frame 8, 10 + dorepeat 1 + frame 1, 24 + frame 2, 24 + frame 3, 24 + endanim +; 0xd1bf3 diff --git a/gfx/pokemon/magneton/back.2bpp.lz.f7a7089b b/gfx/pokemon/magneton/back.2bpp.lz.f7a7089b new file mode 100644 index 000000000..c029f8cef Binary files /dev/null and b/gfx/pokemon/magneton/back.2bpp.lz.f7a7089b differ diff --git a/gfx/pokemon/magneton/back.png b/gfx/pokemon/magneton/back.png new file mode 100644 index 000000000..1203c90d0 Binary files /dev/null and b/gfx/pokemon/magneton/back.png differ diff --git a/gfx/pokemon/magneton/front.animated.2bpp.lz.cd3b65a6 b/gfx/pokemon/magneton/front.animated.2bpp.lz.cd3b65a6 new file mode 100644 index 000000000..f7b7a0be0 Binary files /dev/null and b/gfx/pokemon/magneton/front.animated.2bpp.lz.cd3b65a6 differ diff --git a/gfx/pokemon/magneton/front.png b/gfx/pokemon/magneton/front.png new file mode 100644 index 000000000..fa77862fd Binary files /dev/null and b/gfx/pokemon/magneton/front.png differ diff --git a/gfx/pokemon/magneton/shiny.pal b/gfx/pokemon/magneton/shiny.pal new file mode 100644 index 000000000..54c3a94ac --- /dev/null +++ b/gfx/pokemon/magneton/shiny.pal @@ -0,0 +1,4 @@ + + RGB 15, 16, 18 + RGB 18, 11, 11 + diff --git a/gfx/pokemon/mankey/anim0.asm b/gfx/pokemon/mankey/anim0.asm new file mode 100644 index 000000000..7d6ef1fa5 --- /dev/null +++ b/gfx/pokemon/mankey/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 24 + setrepeat 3 + frame 0, 08 + frame 2, 08 + dorepeat 2 + endanim +; 0xd0bff diff --git a/gfx/pokemon/mankey/anim1.asm b/gfx/pokemon/mankey/anim1.asm new file mode 100644 index 000000000..c5874fc6d --- /dev/null +++ b/gfx/pokemon/mankey/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1aeb diff --git a/gfx/pokemon/mankey/back.2bpp.lz.42cb1b61 b/gfx/pokemon/mankey/back.2bpp.lz.42cb1b61 new file mode 100644 index 000000000..62989a377 Binary files /dev/null and b/gfx/pokemon/mankey/back.2bpp.lz.42cb1b61 differ diff --git a/gfx/pokemon/mankey/back.png b/gfx/pokemon/mankey/back.png new file mode 100644 index 000000000..ba4901eaa Binary files /dev/null and b/gfx/pokemon/mankey/back.png differ diff --git a/gfx/pokemon/mankey/front.animated.2bpp.lz.48eac19a b/gfx/pokemon/mankey/front.animated.2bpp.lz.48eac19a new file mode 100644 index 000000000..03d014d87 Binary files /dev/null and b/gfx/pokemon/mankey/front.animated.2bpp.lz.48eac19a differ diff --git a/gfx/pokemon/mankey/front.png b/gfx/pokemon/mankey/front.png new file mode 100644 index 000000000..1c0c21485 Binary files /dev/null and b/gfx/pokemon/mankey/front.png differ diff --git a/gfx/pokemon/mankey/shiny.pal b/gfx/pokemon/mankey/shiny.pal new file mode 100644 index 000000000..455125489 --- /dev/null +++ b/gfx/pokemon/mankey/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 22, 11 + RGB 20, 16, 07 + diff --git a/gfx/pokemon/mantine/anim0.asm b/gfx/pokemon/mantine/anim0.asm new file mode 100644 index 000000000..d0a51de3e --- /dev/null +++ b/gfx/pokemon/mantine/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 15 + frame 2, 15 + frame 3, 15 + frame 0, 15 + frame 4, 15 + frame 0, 15 + frame 5, 15 + endanim +; 0xd1539 diff --git a/gfx/pokemon/mantine/anim1.asm b/gfx/pokemon/mantine/anim1.asm new file mode 100644 index 000000000..f552b1f09 --- /dev/null +++ b/gfx/pokemon/mantine/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 6, 08 + dorepeat 1 + endanim +; 0xd212f diff --git a/gfx/pokemon/mantine/back.2bpp.lz.1320b7f3 b/gfx/pokemon/mantine/back.2bpp.lz.1320b7f3 new file mode 100644 index 000000000..3378e2df5 Binary files /dev/null and b/gfx/pokemon/mantine/back.2bpp.lz.1320b7f3 differ diff --git a/gfx/pokemon/mantine/back.png b/gfx/pokemon/mantine/back.png new file mode 100644 index 000000000..dfb363f40 Binary files /dev/null and b/gfx/pokemon/mantine/back.png differ diff --git a/gfx/pokemon/mantine/front.animated.2bpp.lz.9eb40d04 b/gfx/pokemon/mantine/front.animated.2bpp.lz.9eb40d04 new file mode 100644 index 000000000..6ebc14050 Binary files /dev/null and b/gfx/pokemon/mantine/front.animated.2bpp.lz.9eb40d04 differ diff --git a/gfx/pokemon/mantine/front.png b/gfx/pokemon/mantine/front.png new file mode 100644 index 000000000..1102eb41b Binary files /dev/null and b/gfx/pokemon/mantine/front.png differ diff --git a/gfx/pokemon/mantine/shiny.pal b/gfx/pokemon/mantine/shiny.pal new file mode 100644 index 000000000..cd743d8ba --- /dev/null +++ b/gfx/pokemon/mantine/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 27, 31 + RGB 06, 17, 31 + diff --git a/gfx/pokemon/mareep/anim0.asm b/gfx/pokemon/mareep/anim0.asm new file mode 100644 index 000000000..e74a78cad --- /dev/null +++ b/gfx/pokemon/mareep/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 08 + frame 0, 07 + frame 1, 05 + setrepeat 2 + frame 0, 06 + frame 2, 06 + dorepeat 4 + endanim +; 0xd12dc diff --git a/gfx/pokemon/mareep/anim1.asm b/gfx/pokemon/mareep/anim1.asm new file mode 100644 index 000000000..21d7a79f8 --- /dev/null +++ b/gfx/pokemon/mareep/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 2, 07 + dorepeat 1 + endanim +; 0xd1fa2 diff --git a/gfx/pokemon/mareep/back.2bpp.lz.b9bdc89c b/gfx/pokemon/mareep/back.2bpp.lz.b9bdc89c new file mode 100644 index 000000000..e703d450f Binary files /dev/null and b/gfx/pokemon/mareep/back.2bpp.lz.b9bdc89c differ diff --git a/gfx/pokemon/mareep/back.png b/gfx/pokemon/mareep/back.png new file mode 100644 index 000000000..f0a89696c Binary files /dev/null and b/gfx/pokemon/mareep/back.png differ diff --git a/gfx/pokemon/mareep/front.animated.2bpp.lz.f660483d b/gfx/pokemon/mareep/front.animated.2bpp.lz.f660483d new file mode 100644 index 000000000..0245a96cd Binary files /dev/null and b/gfx/pokemon/mareep/front.animated.2bpp.lz.f660483d differ diff --git a/gfx/pokemon/mareep/front.png b/gfx/pokemon/mareep/front.png new file mode 100644 index 000000000..3ab91d605 Binary files /dev/null and b/gfx/pokemon/mareep/front.png differ diff --git a/gfx/pokemon/mareep/shiny.pal b/gfx/pokemon/mareep/shiny.pal new file mode 100644 index 000000000..7e4fe925b --- /dev/null +++ b/gfx/pokemon/mareep/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 16, 31 + RGB 10, 05, 19 + diff --git a/gfx/pokemon/marill/anim0.asm b/gfx/pokemon/marill/anim0.asm new file mode 100644 index 000000000..5b8c7fc2a --- /dev/null +++ b/gfx/pokemon/marill/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 10 + frame 2, 36 + frame 3, 10 + setrepeat 3 + frame 0, 10 + frame 3, 10 + dorepeat 4 + endanim +; 0xd131a diff --git a/gfx/pokemon/marill/anim1.asm b/gfx/pokemon/marill/anim1.asm new file mode 100644 index 000000000..3be2dd1dc --- /dev/null +++ b/gfx/pokemon/marill/anim1.asm @@ -0,0 +1,7 @@ + frame 4, 40 + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 2 + endanim +; 0xd1fca diff --git a/gfx/pokemon/marill/back.2bpp.lz.87e2be16 b/gfx/pokemon/marill/back.2bpp.lz.87e2be16 new file mode 100644 index 000000000..699fdaf6c Binary files /dev/null and b/gfx/pokemon/marill/back.2bpp.lz.87e2be16 differ diff --git a/gfx/pokemon/marill/back.png b/gfx/pokemon/marill/back.png new file mode 100644 index 000000000..59af13b35 Binary files /dev/null and b/gfx/pokemon/marill/back.png differ diff --git a/gfx/pokemon/marill/front.animated.2bpp.lz.7f742686 b/gfx/pokemon/marill/front.animated.2bpp.lz.7f742686 new file mode 100644 index 000000000..abe4c982a Binary files /dev/null and b/gfx/pokemon/marill/front.animated.2bpp.lz.7f742686 differ diff --git a/gfx/pokemon/marill/front.png b/gfx/pokemon/marill/front.png new file mode 100644 index 000000000..5b07959aa Binary files /dev/null and b/gfx/pokemon/marill/front.png differ diff --git a/gfx/pokemon/marill/shiny.pal b/gfx/pokemon/marill/shiny.pal new file mode 100644 index 000000000..e75fe9208 --- /dev/null +++ b/gfx/pokemon/marill/shiny.pal @@ -0,0 +1,4 @@ + + RGB 08, 23, 11 + RGB 31, 03, 30 + diff --git a/gfx/pokemon/marowak/anim0.asm b/gfx/pokemon/marowak/anim0.asm new file mode 100644 index 000000000..23c9d2f92 --- /dev/null +++ b/gfx/pokemon/marowak/anim0.asm @@ -0,0 +1,10 @@ + setrepeat 3 + frame 1, 07 + frame 2, 07 + dorepeat 1 + setrepeat 2 + frame 3, 07 + frame 4, 07 + dorepeat 5 + endanim +; 0xd0eb0 diff --git a/gfx/pokemon/marowak/anim1.asm b/gfx/pokemon/marowak/anim1.asm new file mode 100644 index 000000000..5cdcd7594 --- /dev/null +++ b/gfx/pokemon/marowak/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 15 + frame 5, 15 + dorepeat 1 + endanim +; 0xd1ccc diff --git a/gfx/pokemon/marowak/back.2bpp.lz.055ba40e b/gfx/pokemon/marowak/back.2bpp.lz.055ba40e new file mode 100644 index 000000000..90a297b3d Binary files /dev/null and b/gfx/pokemon/marowak/back.2bpp.lz.055ba40e differ diff --git a/gfx/pokemon/marowak/back.png b/gfx/pokemon/marowak/back.png new file mode 100644 index 000000000..e10e17dc2 Binary files /dev/null and b/gfx/pokemon/marowak/back.png differ diff --git a/gfx/pokemon/marowak/front.animated.2bpp.lz.ef1553a0 b/gfx/pokemon/marowak/front.animated.2bpp.lz.ef1553a0 new file mode 100644 index 000000000..59f984bcd Binary files /dev/null and b/gfx/pokemon/marowak/front.animated.2bpp.lz.ef1553a0 differ diff --git a/gfx/pokemon/marowak/front.png b/gfx/pokemon/marowak/front.png new file mode 100644 index 000000000..4007d0486 Binary files /dev/null and b/gfx/pokemon/marowak/front.png differ diff --git a/gfx/pokemon/marowak/shiny.pal b/gfx/pokemon/marowak/shiny.pal new file mode 100644 index 000000000..2f2093469 --- /dev/null +++ b/gfx/pokemon/marowak/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 21, 15 + RGB 14, 15, 04 + diff --git a/gfx/pokemon/meganium/anim0.asm b/gfx/pokemon/meganium/anim0.asm new file mode 100644 index 000000000..adf80db8f --- /dev/null +++ b/gfx/pokemon/meganium/anim0.asm @@ -0,0 +1,11 @@ + frame 0, 06 + frame 1, 10 + frame 2, 26 + frame 1, 12 + frame 0, 08 + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 6 + endanim +; 0xd117f diff --git a/gfx/pokemon/meganium/anim1.asm b/gfx/pokemon/meganium/anim1.asm new file mode 100644 index 000000000..f28c9d97a --- /dev/null +++ b/gfx/pokemon/meganium/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1eb1 diff --git a/gfx/pokemon/meganium/back.2bpp.lz.d25a5edb b/gfx/pokemon/meganium/back.2bpp.lz.d25a5edb new file mode 100644 index 000000000..718f66f87 Binary files /dev/null and b/gfx/pokemon/meganium/back.2bpp.lz.d25a5edb differ diff --git a/gfx/pokemon/meganium/back.png b/gfx/pokemon/meganium/back.png new file mode 100644 index 000000000..5f51bdbff Binary files /dev/null and b/gfx/pokemon/meganium/back.png differ diff --git a/gfx/pokemon/meganium/front.animated.2bpp.lz.fe0b9df4 b/gfx/pokemon/meganium/front.animated.2bpp.lz.fe0b9df4 new file mode 100644 index 000000000..84f600d60 Binary files /dev/null and b/gfx/pokemon/meganium/front.animated.2bpp.lz.fe0b9df4 differ diff --git a/gfx/pokemon/meganium/front.png b/gfx/pokemon/meganium/front.png new file mode 100644 index 000000000..f520626a9 Binary files /dev/null and b/gfx/pokemon/meganium/front.png differ diff --git a/gfx/pokemon/meganium/shiny.pal b/gfx/pokemon/meganium/shiny.pal new file mode 100644 index 000000000..b09a172f6 --- /dev/null +++ b/gfx/pokemon/meganium/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 24, 00 + RGB 28, 12, 05 + diff --git a/gfx/pokemon/meowth/anim0.asm b/gfx/pokemon/meowth/anim0.asm new file mode 100644 index 000000000..ff95e9c6d --- /dev/null +++ b/gfx/pokemon/meowth/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 24 + setrepeat 2 + frame 2, 14 + frame 3, 14 + dorepeat 2 + endanim +; 0xd0bbf diff --git a/gfx/pokemon/meowth/anim1.asm b/gfx/pokemon/meowth/anim1.asm new file mode 100644 index 000000000..7f1e9eba8 --- /dev/null +++ b/gfx/pokemon/meowth/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd1ac7 diff --git a/gfx/pokemon/meowth/back.2bpp.lz.4196bd91 b/gfx/pokemon/meowth/back.2bpp.lz.4196bd91 new file mode 100644 index 000000000..205b106e9 Binary files /dev/null and b/gfx/pokemon/meowth/back.2bpp.lz.4196bd91 differ diff --git a/gfx/pokemon/meowth/back.png b/gfx/pokemon/meowth/back.png new file mode 100644 index 000000000..3883a636b Binary files /dev/null and b/gfx/pokemon/meowth/back.png differ diff --git a/gfx/pokemon/meowth/front.animated.2bpp.lz.144f12f0 b/gfx/pokemon/meowth/front.animated.2bpp.lz.144f12f0 new file mode 100644 index 000000000..87ff35366 Binary files /dev/null and b/gfx/pokemon/meowth/front.animated.2bpp.lz.144f12f0 differ diff --git a/gfx/pokemon/meowth/front.png b/gfx/pokemon/meowth/front.png new file mode 100644 index 000000000..55c5bf38a Binary files /dev/null and b/gfx/pokemon/meowth/front.png differ diff --git a/gfx/pokemon/meowth/shiny.pal b/gfx/pokemon/meowth/shiny.pal new file mode 100644 index 000000000..3ca34fc76 --- /dev/null +++ b/gfx/pokemon/meowth/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 22, 12 + RGB 26, 02, 18 + diff --git a/gfx/pokemon/metapod/anim0.asm b/gfx/pokemon/metapod/anim0.asm new file mode 100644 index 000000000..da76c7094 --- /dev/null +++ b/gfx/pokemon/metapod/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 12 + frame 2, 24 + frame 1, 12 + endanim +; 0xd091c diff --git a/gfx/pokemon/metapod/anim1.asm b/gfx/pokemon/metapod/anim1.asm new file mode 100644 index 000000000..e22d46cb7 --- /dev/null +++ b/gfx/pokemon/metapod/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1904 diff --git a/gfx/pokemon/metapod/back.2bpp.lz.b580afc8 b/gfx/pokemon/metapod/back.2bpp.lz.b580afc8 new file mode 100644 index 000000000..a2a446960 Binary files /dev/null and b/gfx/pokemon/metapod/back.2bpp.lz.b580afc8 differ diff --git a/gfx/pokemon/metapod/back.png b/gfx/pokemon/metapod/back.png new file mode 100644 index 000000000..7906fb6b7 Binary files /dev/null and b/gfx/pokemon/metapod/back.png differ diff --git a/gfx/pokemon/metapod/front.animated.2bpp.lz.5025baa2 b/gfx/pokemon/metapod/front.animated.2bpp.lz.5025baa2 new file mode 100644 index 000000000..1dcd7a501 Binary files /dev/null and b/gfx/pokemon/metapod/front.animated.2bpp.lz.5025baa2 differ diff --git a/gfx/pokemon/metapod/front.png b/gfx/pokemon/metapod/front.png new file mode 100644 index 000000000..d67b1c516 Binary files /dev/null and b/gfx/pokemon/metapod/front.png differ diff --git a/gfx/pokemon/metapod/shiny.pal b/gfx/pokemon/metapod/shiny.pal new file mode 100644 index 000000000..4d0b72658 --- /dev/null +++ b/gfx/pokemon/metapod/shiny.pal @@ -0,0 +1,4 @@ + + RGB 28, 19, 13 + RGB 24, 14, 00 + diff --git a/gfx/pokemon/mew/anim0.asm b/gfx/pokemon/mew/anim0.asm new file mode 100644 index 000000000..b01e307de --- /dev/null +++ b/gfx/pokemon/mew/anim0.asm @@ -0,0 +1,18 @@ + frame 1, 07 + frame 2, 07 + frame 3, 06 + frame 2, 06 + frame 3, 05 + frame 2, 05 + setrepeat 3 + frame 3, 03 + frame 2, 03 + dorepeat 7 + setrepeat 2 + frame 3, 25 + frame 2, 20 + dorepeat 11 + frame 0, 15 + frame 4, 15 + endanim +; 0xd1154 diff --git a/gfx/pokemon/mew/anim1.asm b/gfx/pokemon/mew/anim1.asm new file mode 100644 index 000000000..c22e552cb --- /dev/null +++ b/gfx/pokemon/mew/anim1.asm @@ -0,0 +1,9 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + frame 0, 10 + frame 4, 20 + dorepeat 1 + endanim +; 0xd1e96 diff --git a/gfx/pokemon/mew/back.2bpp.lz.9947d6eb b/gfx/pokemon/mew/back.2bpp.lz.9947d6eb new file mode 100644 index 000000000..388a8de9e Binary files /dev/null and b/gfx/pokemon/mew/back.2bpp.lz.9947d6eb differ diff --git a/gfx/pokemon/mew/back.png b/gfx/pokemon/mew/back.png new file mode 100644 index 000000000..310328a39 Binary files /dev/null and b/gfx/pokemon/mew/back.png differ diff --git a/gfx/pokemon/mew/front.animated.2bpp.lz.b6da9713 b/gfx/pokemon/mew/front.animated.2bpp.lz.b6da9713 new file mode 100644 index 000000000..240965783 Binary files /dev/null and b/gfx/pokemon/mew/front.animated.2bpp.lz.b6da9713 differ diff --git a/gfx/pokemon/mew/front.png b/gfx/pokemon/mew/front.png new file mode 100644 index 000000000..2a93d8303 Binary files /dev/null and b/gfx/pokemon/mew/front.png differ diff --git a/gfx/pokemon/mew/shiny.pal b/gfx/pokemon/mew/shiny.pal new file mode 100644 index 000000000..9b1a1cced --- /dev/null +++ b/gfx/pokemon/mew/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 24, 31 + RGB 07, 11, 26 + diff --git a/gfx/pokemon/mewtwo/anim0.asm b/gfx/pokemon/mewtwo/anim0.asm new file mode 100644 index 000000000..78682c111 --- /dev/null +++ b/gfx/pokemon/mewtwo/anim0.asm @@ -0,0 +1,17 @@ + frame 3, 08 + setrepeat 2 + frame 2, 04 + frame 3, 02 + dorepeat 2 + setrepeat 3 + frame 4, 02 + frame 3, 02 + dorepeat 6 + setrepeat 5 + frame 5, 02 + frame 3, 01 + dorepeat 10 + frame 5, 14 + frame 3, 04 + endanim +; 0xd1133 diff --git a/gfx/pokemon/mewtwo/anim1.asm b/gfx/pokemon/mewtwo/anim1.asm new file mode 100644 index 000000000..a80a56899 --- /dev/null +++ b/gfx/pokemon/mewtwo/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 1, 06 + dorepeat 1 + endanim +; 0xd1e87 diff --git a/gfx/pokemon/mewtwo/back.2bpp.lz.a7d2c077 b/gfx/pokemon/mewtwo/back.2bpp.lz.a7d2c077 new file mode 100644 index 000000000..3be56c470 Binary files /dev/null and b/gfx/pokemon/mewtwo/back.2bpp.lz.a7d2c077 differ diff --git a/gfx/pokemon/mewtwo/back.png b/gfx/pokemon/mewtwo/back.png new file mode 100644 index 000000000..e9675aaad Binary files /dev/null and b/gfx/pokemon/mewtwo/back.png differ diff --git a/gfx/pokemon/mewtwo/front.animated.2bpp.lz.45e8b40d b/gfx/pokemon/mewtwo/front.animated.2bpp.lz.45e8b40d new file mode 100644 index 000000000..35cc2c378 Binary files /dev/null and b/gfx/pokemon/mewtwo/front.animated.2bpp.lz.45e8b40d differ diff --git a/gfx/pokemon/mewtwo/front.png b/gfx/pokemon/mewtwo/front.png new file mode 100644 index 000000000..07ab0771b Binary files /dev/null and b/gfx/pokemon/mewtwo/front.png differ diff --git a/gfx/pokemon/mewtwo/shiny.pal b/gfx/pokemon/mewtwo/shiny.pal new file mode 100644 index 000000000..c5dec4c3b --- /dev/null +++ b/gfx/pokemon/mewtwo/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 21, 22 + RGB 15, 15, 00 + diff --git a/gfx/pokemon/miltank/anim0.asm b/gfx/pokemon/miltank/anim0.asm new file mode 100644 index 000000000..6d12f2d5d --- /dev/null +++ b/gfx/pokemon/miltank/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 10 + setrepeat 2 + frame 2, 09 + frame 1, 09 + dorepeat 2 + frame 3, 05 + endanim +; 0xd15fa diff --git a/gfx/pokemon/miltank/anim1.asm b/gfx/pokemon/miltank/anim1.asm new file mode 100644 index 000000000..a6a76db7b --- /dev/null +++ b/gfx/pokemon/miltank/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd21b8 diff --git a/gfx/pokemon/miltank/back.2bpp.lz.b7787e72 b/gfx/pokemon/miltank/back.2bpp.lz.b7787e72 new file mode 100644 index 000000000..150f65c54 Binary files /dev/null and b/gfx/pokemon/miltank/back.2bpp.lz.b7787e72 differ diff --git a/gfx/pokemon/miltank/back.png b/gfx/pokemon/miltank/back.png new file mode 100644 index 000000000..28c4a906f Binary files /dev/null and b/gfx/pokemon/miltank/back.png differ diff --git a/gfx/pokemon/miltank/front.animated.2bpp.lz.91da7c3b b/gfx/pokemon/miltank/front.animated.2bpp.lz.91da7c3b new file mode 100644 index 000000000..969d04fcd Binary files /dev/null and b/gfx/pokemon/miltank/front.animated.2bpp.lz.91da7c3b differ diff --git a/gfx/pokemon/miltank/front.png b/gfx/pokemon/miltank/front.png new file mode 100644 index 000000000..b0965c8f6 Binary files /dev/null and b/gfx/pokemon/miltank/front.png differ diff --git a/gfx/pokemon/miltank/shiny.pal b/gfx/pokemon/miltank/shiny.pal new file mode 100644 index 000000000..37792fe7e --- /dev/null +++ b/gfx/pokemon/miltank/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 22, 26 + RGB 29, 10, 13 + diff --git a/gfx/pokemon/misdreavus/anim0.asm b/gfx/pokemon/misdreavus/anim0.asm new file mode 100644 index 000000000..d833c96fb --- /dev/null +++ b/gfx/pokemon/misdreavus/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 18 + frame 2, 13 + frame 3, 13 + endanim +; 0xd13e9 diff --git a/gfx/pokemon/misdreavus/anim1.asm b/gfx/pokemon/misdreavus/anim1.asm new file mode 100644 index 000000000..3f0ee9517 --- /dev/null +++ b/gfx/pokemon/misdreavus/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 4, 08 + frame 0, 08 + dorepeat 1 + endanim +; 0xd205d diff --git a/gfx/pokemon/misdreavus/back.2bpp.lz.8bdebfce b/gfx/pokemon/misdreavus/back.2bpp.lz.8bdebfce new file mode 100644 index 000000000..5cf96e821 Binary files /dev/null and b/gfx/pokemon/misdreavus/back.2bpp.lz.8bdebfce differ diff --git a/gfx/pokemon/misdreavus/back.png b/gfx/pokemon/misdreavus/back.png new file mode 100644 index 000000000..890f1da22 Binary files /dev/null and b/gfx/pokemon/misdreavus/back.png differ diff --git a/gfx/pokemon/misdreavus/front.animated.2bpp.lz.5f73baa2 b/gfx/pokemon/misdreavus/front.animated.2bpp.lz.5f73baa2 new file mode 100644 index 000000000..76f5c6919 Binary files /dev/null and b/gfx/pokemon/misdreavus/front.animated.2bpp.lz.5f73baa2 differ diff --git a/gfx/pokemon/misdreavus/front.png b/gfx/pokemon/misdreavus/front.png new file mode 100644 index 000000000..05c2dd338 Binary files /dev/null and b/gfx/pokemon/misdreavus/front.png differ diff --git a/gfx/pokemon/misdreavus/shiny.pal b/gfx/pokemon/misdreavus/shiny.pal new file mode 100644 index 000000000..dbd1aac54 --- /dev/null +++ b/gfx/pokemon/misdreavus/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 25, 03 + RGB 15, 14, 03 + diff --git a/gfx/pokemon/moltres/anim0.asm b/gfx/pokemon/moltres/anim0.asm new file mode 100644 index 000000000..220626749 --- /dev/null +++ b/gfx/pokemon/moltres/anim0.asm @@ -0,0 +1,13 @@ + frame 1, 10 + frame 5, 10 + frame 2, 10 + frame 3, 10 + frame 4, 10 + frame 0, 10 + frame 1, 10 + frame 5, 10 + frame 1, 10 + frame 0, 12 + frame 1, 12 + endanim +; 0xd10e3 diff --git a/gfx/pokemon/moltres/anim1.asm b/gfx/pokemon/moltres/anim1.asm new file mode 100644 index 000000000..258191b6e --- /dev/null +++ b/gfx/pokemon/moltres/anim1.asm @@ -0,0 +1,9 @@ + frame 6, 05 + frame 0, 05 + frame 7, 05 + frame 1, 05 + frame 0, 12 + frame 1, 12 + frame 5, 12 + endanim +; 0xd1e57 diff --git a/gfx/pokemon/moltres/back.2bpp.lz.356242c8 b/gfx/pokemon/moltres/back.2bpp.lz.356242c8 new file mode 100644 index 000000000..542a73138 Binary files /dev/null and b/gfx/pokemon/moltres/back.2bpp.lz.356242c8 differ diff --git a/gfx/pokemon/moltres/back.png b/gfx/pokemon/moltres/back.png new file mode 100644 index 000000000..b8df5c699 Binary files /dev/null and b/gfx/pokemon/moltres/back.png differ diff --git a/gfx/pokemon/moltres/front.animated.2bpp.lz.281bc0ec b/gfx/pokemon/moltres/front.animated.2bpp.lz.281bc0ec new file mode 100644 index 000000000..ec03e4653 Binary files /dev/null and b/gfx/pokemon/moltres/front.animated.2bpp.lz.281bc0ec differ diff --git a/gfx/pokemon/moltres/front.png b/gfx/pokemon/moltres/front.png new file mode 100644 index 000000000..fa41824b6 Binary files /dev/null and b/gfx/pokemon/moltres/front.png differ diff --git a/gfx/pokemon/moltres/shiny.pal b/gfx/pokemon/moltres/shiny.pal new file mode 100644 index 000000000..523732d45 --- /dev/null +++ b/gfx/pokemon/moltres/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 11, 14 + RGB 21, 01, 00 + diff --git a/gfx/pokemon/mr__mime/anim0.asm b/gfx/pokemon/mr__mime/anim0.asm new file mode 100644 index 000000000..fcb597a5a --- /dev/null +++ b/gfx/pokemon/mr__mime/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 08 + frame 2, 08 + frame 8, 08 + frame 3, 08 + frame 4, 08 + frame 5, 08 + frame 7, 08 + frame 0, 32 + frame 6, 06 + endanim +; 0xd0f99 diff --git a/gfx/pokemon/mr__mime/anim1.asm b/gfx/pokemon/mr__mime/anim1.asm new file mode 100644 index 000000000..c3747ac1e --- /dev/null +++ b/gfx/pokemon/mr__mime/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 6, 06 + dorepeat 1 + endanim +; 0xd1d6f diff --git a/gfx/pokemon/mr__mime/back.2bpp.lz.0fb88006 b/gfx/pokemon/mr__mime/back.2bpp.lz.0fb88006 new file mode 100644 index 000000000..eb1647580 Binary files /dev/null and b/gfx/pokemon/mr__mime/back.2bpp.lz.0fb88006 differ diff --git a/gfx/pokemon/mr__mime/back.png b/gfx/pokemon/mr__mime/back.png new file mode 100644 index 000000000..6deab1929 Binary files /dev/null and b/gfx/pokemon/mr__mime/back.png differ diff --git a/gfx/pokemon/mr__mime/front.animated.2bpp.lz.f948d1b8 b/gfx/pokemon/mr__mime/front.animated.2bpp.lz.f948d1b8 new file mode 100644 index 000000000..48555cbe0 Binary files /dev/null and b/gfx/pokemon/mr__mime/front.animated.2bpp.lz.f948d1b8 differ diff --git a/gfx/pokemon/mr__mime/front.png b/gfx/pokemon/mr__mime/front.png new file mode 100644 index 000000000..578a0286b Binary files /dev/null and b/gfx/pokemon/mr__mime/front.png differ diff --git a/gfx/pokemon/mr__mime/shiny.pal b/gfx/pokemon/mr__mime/shiny.pal new file mode 100644 index 000000000..d9a2accd2 --- /dev/null +++ b/gfx/pokemon/mr__mime/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 11, 31 + RGB 17, 19, 00 + diff --git a/gfx/pokemon/muk/anim0.asm b/gfx/pokemon/muk/anim0.asm new file mode 100644 index 000000000..1bacba421 --- /dev/null +++ b/gfx/pokemon/muk/anim0.asm @@ -0,0 +1,6 @@ + frame 1, 12 + frame 2, 12 + frame 3, 12 + frame 1, 12 + endanim +; 0xd0dbc diff --git a/gfx/pokemon/muk/anim1.asm b/gfx/pokemon/muk/anim1.asm new file mode 100644 index 000000000..db37bf515 --- /dev/null +++ b/gfx/pokemon/muk/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 12 + frame 4, 12 + dorepeat 1 + endanim +; 0xd1c40 diff --git a/gfx/pokemon/muk/back.2bpp.lz.a1f2f370 b/gfx/pokemon/muk/back.2bpp.lz.a1f2f370 new file mode 100644 index 000000000..63a6aa8de Binary files /dev/null and b/gfx/pokemon/muk/back.2bpp.lz.a1f2f370 differ diff --git a/gfx/pokemon/muk/back.png b/gfx/pokemon/muk/back.png new file mode 100644 index 000000000..e610da01c Binary files /dev/null and b/gfx/pokemon/muk/back.png differ diff --git a/gfx/pokemon/muk/front.animated.2bpp.lz.530363b2 b/gfx/pokemon/muk/front.animated.2bpp.lz.530363b2 new file mode 100644 index 000000000..3a4280270 Binary files /dev/null and b/gfx/pokemon/muk/front.animated.2bpp.lz.530363b2 differ diff --git a/gfx/pokemon/muk/front.png b/gfx/pokemon/muk/front.png new file mode 100644 index 000000000..c4369d8a6 Binary files /dev/null and b/gfx/pokemon/muk/front.png differ diff --git a/gfx/pokemon/muk/shiny.pal b/gfx/pokemon/muk/shiny.pal new file mode 100644 index 000000000..34c8de27e --- /dev/null +++ b/gfx/pokemon/muk/shiny.pal @@ -0,0 +1,4 @@ + + RGB 15, 20, 09 + RGB 10, 13, 03 + diff --git a/gfx/pokemon/murkrow/anim0.asm b/gfx/pokemon/murkrow/anim0.asm new file mode 100644 index 000000000..8f0ca6a72 --- /dev/null +++ b/gfx/pokemon/murkrow/anim0.asm @@ -0,0 +1,10 @@ + frame 2, 10 + setrepeat 2 + frame 1, 06 + frame 2, 06 + dorepeat 2 + frame 1, 07 + frame 0, 07 + frame 1, 07 + endanim +; 0xd13cf diff --git a/gfx/pokemon/murkrow/anim1.asm b/gfx/pokemon/murkrow/anim1.asm new file mode 100644 index 000000000..85e2f9c56 --- /dev/null +++ b/gfx/pokemon/murkrow/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 1 + endanim +; 0xd204f diff --git a/gfx/pokemon/murkrow/back.2bpp.lz.0c347b5b b/gfx/pokemon/murkrow/back.2bpp.lz.0c347b5b new file mode 100644 index 000000000..b99287081 Binary files /dev/null and b/gfx/pokemon/murkrow/back.2bpp.lz.0c347b5b differ diff --git a/gfx/pokemon/murkrow/back.png b/gfx/pokemon/murkrow/back.png new file mode 100644 index 000000000..255471a39 Binary files /dev/null and b/gfx/pokemon/murkrow/back.png differ diff --git a/gfx/pokemon/murkrow/front.animated.2bpp.lz.5d2805e8 b/gfx/pokemon/murkrow/front.animated.2bpp.lz.5d2805e8 new file mode 100644 index 000000000..e7ae99387 Binary files /dev/null and b/gfx/pokemon/murkrow/front.animated.2bpp.lz.5d2805e8 differ diff --git a/gfx/pokemon/murkrow/front.png b/gfx/pokemon/murkrow/front.png new file mode 100644 index 000000000..b17cf2d6c Binary files /dev/null and b/gfx/pokemon/murkrow/front.png differ diff --git a/gfx/pokemon/murkrow/shiny.pal b/gfx/pokemon/murkrow/shiny.pal new file mode 100644 index 000000000..8f015f0fe --- /dev/null +++ b/gfx/pokemon/murkrow/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 31, 03 + RGB 20, 02, 22 + diff --git a/gfx/pokemon/natu/anim0.asm b/gfx/pokemon/natu/anim0.asm new file mode 100644 index 000000000..22c2659db --- /dev/null +++ b/gfx/pokemon/natu/anim0.asm @@ -0,0 +1,6 @@ + frame 1, 10 + frame 2, 10 + frame 3, 25 + frame 2, 10 + endanim +; 0xd12bc diff --git a/gfx/pokemon/natu/anim1.asm b/gfx/pokemon/natu/anim1.asm new file mode 100644 index 000000000..a4a974877 --- /dev/null +++ b/gfx/pokemon/natu/anim1.asm @@ -0,0 +1,3 @@ + frame 4, 35 + endanim +; 0xd1f86 diff --git a/gfx/pokemon/natu/back.2bpp.lz.c8339fb4 b/gfx/pokemon/natu/back.2bpp.lz.c8339fb4 new file mode 100644 index 000000000..b4ba45c14 Binary files /dev/null and b/gfx/pokemon/natu/back.2bpp.lz.c8339fb4 differ diff --git a/gfx/pokemon/natu/back.png b/gfx/pokemon/natu/back.png new file mode 100644 index 000000000..923e34230 Binary files /dev/null and b/gfx/pokemon/natu/back.png differ diff --git a/gfx/pokemon/natu/front.animated.2bpp.lz.997efaf6 b/gfx/pokemon/natu/front.animated.2bpp.lz.997efaf6 new file mode 100644 index 000000000..adebc8879 Binary files /dev/null and b/gfx/pokemon/natu/front.animated.2bpp.lz.997efaf6 differ diff --git a/gfx/pokemon/natu/front.png b/gfx/pokemon/natu/front.png new file mode 100644 index 000000000..4360e5b60 Binary files /dev/null and b/gfx/pokemon/natu/front.png differ diff --git a/gfx/pokemon/natu/shiny.pal b/gfx/pokemon/natu/shiny.pal new file mode 100644 index 000000000..0ee2b82af --- /dev/null +++ b/gfx/pokemon/natu/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 30, 19 + RGB 21, 21, 10 + diff --git a/gfx/pokemon/nidoking/anim0.asm b/gfx/pokemon/nidoking/anim0.asm new file mode 100644 index 000000000..a32945d49 --- /dev/null +++ b/gfx/pokemon/nidoking/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 1, 12 + frame 2, 36 + frame 1, 12 + endanim +; 0xd0a8f diff --git a/gfx/pokemon/nidoking/anim1.asm b/gfx/pokemon/nidoking/anim1.asm new file mode 100644 index 000000000..4e56028e1 --- /dev/null +++ b/gfx/pokemon/nidoking/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1a13 diff --git a/gfx/pokemon/nidoking/back.2bpp.lz.93211604 b/gfx/pokemon/nidoking/back.2bpp.lz.93211604 new file mode 100644 index 000000000..b3f35b5a1 Binary files /dev/null and b/gfx/pokemon/nidoking/back.2bpp.lz.93211604 differ diff --git a/gfx/pokemon/nidoking/back.png b/gfx/pokemon/nidoking/back.png new file mode 100644 index 000000000..d5af2af2e Binary files /dev/null and b/gfx/pokemon/nidoking/back.png differ diff --git a/gfx/pokemon/nidoking/front.animated.2bpp.lz.bd38fa1e b/gfx/pokemon/nidoking/front.animated.2bpp.lz.bd38fa1e new file mode 100644 index 000000000..aad75774c Binary files /dev/null and b/gfx/pokemon/nidoking/front.animated.2bpp.lz.bd38fa1e differ diff --git a/gfx/pokemon/nidoking/front.png b/gfx/pokemon/nidoking/front.png new file mode 100644 index 000000000..1ed2d18bd Binary files /dev/null and b/gfx/pokemon/nidoking/front.png differ diff --git a/gfx/pokemon/nidoking/shiny.pal b/gfx/pokemon/nidoking/shiny.pal new file mode 100644 index 000000000..61991fb6f --- /dev/null +++ b/gfx/pokemon/nidoking/shiny.pal @@ -0,0 +1,4 @@ + + RGB 13, 17, 31 + RGB 15, 09, 23 + diff --git a/gfx/pokemon/nidoqueen/anim0.asm b/gfx/pokemon/nidoqueen/anim0.asm new file mode 100644 index 000000000..bd9d8eee8 --- /dev/null +++ b/gfx/pokemon/nidoqueen/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 05 + frame 2, 10 + frame 3, 10 + frame 4, 10 + frame 3, 10 + frame 1, 10 + frame 0, 10 + frame 5, 10 + endanim +; 0xd0a64 diff --git a/gfx/pokemon/nidoqueen/anim1.asm b/gfx/pokemon/nidoqueen/anim1.asm new file mode 100644 index 000000000..1cc934c42 --- /dev/null +++ b/gfx/pokemon/nidoqueen/anim1.asm @@ -0,0 +1,7 @@ + frame 6, 50 + setrepeat 2 + frame 0, 07 + frame 6, 07 + dorepeat 2 + endanim +; 0xd19f4 diff --git a/gfx/pokemon/nidoqueen/back.2bpp.lz.f1eb0f0c b/gfx/pokemon/nidoqueen/back.2bpp.lz.f1eb0f0c new file mode 100644 index 000000000..b363f089e Binary files /dev/null and b/gfx/pokemon/nidoqueen/back.2bpp.lz.f1eb0f0c differ diff --git a/gfx/pokemon/nidoqueen/back.png b/gfx/pokemon/nidoqueen/back.png new file mode 100644 index 000000000..9d250b32c Binary files /dev/null and b/gfx/pokemon/nidoqueen/back.png differ diff --git a/gfx/pokemon/nidoqueen/front.animated.2bpp.lz.0bf11b0a b/gfx/pokemon/nidoqueen/front.animated.2bpp.lz.0bf11b0a new file mode 100644 index 000000000..d02a553d5 Binary files /dev/null and b/gfx/pokemon/nidoqueen/front.animated.2bpp.lz.0bf11b0a differ diff --git a/gfx/pokemon/nidoqueen/front.png b/gfx/pokemon/nidoqueen/front.png new file mode 100644 index 000000000..5aaee10c2 Binary files /dev/null and b/gfx/pokemon/nidoqueen/front.png differ diff --git a/gfx/pokemon/nidoqueen/shiny.pal b/gfx/pokemon/nidoqueen/shiny.pal new file mode 100644 index 000000000..b27c118a6 --- /dev/null +++ b/gfx/pokemon/nidoqueen/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 16, 31 + RGB 11, 13, 08 + diff --git a/gfx/pokemon/nidoran_f/anim0.asm b/gfx/pokemon/nidoran_f/anim0.asm new file mode 100644 index 000000000..623db13d1 --- /dev/null +++ b/gfx/pokemon/nidoran_f/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 04 + frame 2, 19 + setrepeat 3 + frame 3, 05 + frame 0, 05 + dorepeat 3 + endanim +; 0xd0a44 diff --git a/gfx/pokemon/nidoran_f/anim1.asm b/gfx/pokemon/nidoran_f/anim1.asm new file mode 100644 index 000000000..348179aac --- /dev/null +++ b/gfx/pokemon/nidoran_f/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd19e0 diff --git a/gfx/pokemon/nidoran_f/back.2bpp.lz.9b6990f1 b/gfx/pokemon/nidoran_f/back.2bpp.lz.9b6990f1 new file mode 100644 index 000000000..df43f06a1 Binary files /dev/null and b/gfx/pokemon/nidoran_f/back.2bpp.lz.9b6990f1 differ diff --git a/gfx/pokemon/nidoran_f/back.png b/gfx/pokemon/nidoran_f/back.png new file mode 100644 index 000000000..9fcaf581c Binary files /dev/null and b/gfx/pokemon/nidoran_f/back.png differ diff --git a/gfx/pokemon/nidoran_f/front.animated.2bpp.lz.0a4602e7 b/gfx/pokemon/nidoran_f/front.animated.2bpp.lz.0a4602e7 new file mode 100644 index 000000000..477857691 Binary files /dev/null and b/gfx/pokemon/nidoran_f/front.animated.2bpp.lz.0a4602e7 differ diff --git a/gfx/pokemon/nidoran_f/front.png b/gfx/pokemon/nidoran_f/front.png new file mode 100644 index 000000000..fa14f1dfc Binary files /dev/null and b/gfx/pokemon/nidoran_f/front.png differ diff --git a/gfx/pokemon/nidoran_f/shiny.pal b/gfx/pokemon/nidoran_f/shiny.pal new file mode 100644 index 000000000..06dc1de15 --- /dev/null +++ b/gfx/pokemon/nidoran_f/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 17, 28 + RGB 05, 17, 01 + diff --git a/gfx/pokemon/nidoran_m/anim0.asm b/gfx/pokemon/nidoran_m/anim0.asm new file mode 100644 index 000000000..9b8a38133 --- /dev/null +++ b/gfx/pokemon/nidoran_m/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 12 + frame 2, 22 + setrepeat 3 + frame 0, 06 + frame 1, 06 + dorepeat 3 + endanim +; 0xd0a71 diff --git a/gfx/pokemon/nidoran_m/anim1.asm b/gfx/pokemon/nidoran_m/anim1.asm new file mode 100644 index 000000000..20b437f6a --- /dev/null +++ b/gfx/pokemon/nidoran_m/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd19fd diff --git a/gfx/pokemon/nidoran_m/back.2bpp.lz.c9e54720 b/gfx/pokemon/nidoran_m/back.2bpp.lz.c9e54720 new file mode 100644 index 000000000..4b3be9a60 Binary files /dev/null and b/gfx/pokemon/nidoran_m/back.2bpp.lz.c9e54720 differ diff --git a/gfx/pokemon/nidoran_m/back.png b/gfx/pokemon/nidoran_m/back.png new file mode 100644 index 000000000..f7ee2491b Binary files /dev/null and b/gfx/pokemon/nidoran_m/back.png differ diff --git a/gfx/pokemon/nidoran_m/front.animated.2bpp.lz.b121beaa b/gfx/pokemon/nidoran_m/front.animated.2bpp.lz.b121beaa new file mode 100644 index 000000000..661dadada Binary files /dev/null and b/gfx/pokemon/nidoran_m/front.animated.2bpp.lz.b121beaa differ diff --git a/gfx/pokemon/nidoran_m/front.png b/gfx/pokemon/nidoran_m/front.png new file mode 100644 index 000000000..86f5904a4 Binary files /dev/null and b/gfx/pokemon/nidoran_m/front.png differ diff --git a/gfx/pokemon/nidoran_m/shiny.pal b/gfx/pokemon/nidoran_m/shiny.pal new file mode 100644 index 000000000..771fd4e31 --- /dev/null +++ b/gfx/pokemon/nidoran_m/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 21, 31 + RGB 17, 08, 15 + diff --git a/gfx/pokemon/nidorina/anim0.asm b/gfx/pokemon/nidorina/anim0.asm new file mode 100644 index 000000000..6ab079db4 --- /dev/null +++ b/gfx/pokemon/nidorina/anim0.asm @@ -0,0 +1,9 @@ + frame 3, 20 + setrepeat 2 + frame 0, 06 + frame 1, 12 + frame 0, 03 + frame 2, 06 + dorepeat 2 + endanim +; 0xd0a53 diff --git a/gfx/pokemon/nidorina/anim1.asm b/gfx/pokemon/nidorina/anim1.asm new file mode 100644 index 000000000..6afb1cbc8 --- /dev/null +++ b/gfx/pokemon/nidorina/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 04 + frame 4, 04 + dorepeat 1 + endanim +; 0xd19e9 diff --git a/gfx/pokemon/nidorina/back.2bpp.lz.a00ecf4a b/gfx/pokemon/nidorina/back.2bpp.lz.a00ecf4a new file mode 100644 index 000000000..141d61f81 Binary files /dev/null and b/gfx/pokemon/nidorina/back.2bpp.lz.a00ecf4a differ diff --git a/gfx/pokemon/nidorina/back.png b/gfx/pokemon/nidorina/back.png new file mode 100644 index 000000000..d334bfaab Binary files /dev/null and b/gfx/pokemon/nidorina/back.png differ diff --git a/gfx/pokemon/nidorina/front.animated.2bpp.lz.51532540 b/gfx/pokemon/nidorina/front.animated.2bpp.lz.51532540 new file mode 100644 index 000000000..04523a52b Binary files /dev/null and b/gfx/pokemon/nidorina/front.animated.2bpp.lz.51532540 differ diff --git a/gfx/pokemon/nidorina/front.png b/gfx/pokemon/nidorina/front.png new file mode 100644 index 000000000..c3e49f8e1 Binary files /dev/null and b/gfx/pokemon/nidorina/front.png differ diff --git a/gfx/pokemon/nidorina/shiny.pal b/gfx/pokemon/nidorina/shiny.pal new file mode 100644 index 000000000..ae93e6242 --- /dev/null +++ b/gfx/pokemon/nidorina/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 17, 30 + RGB 06, 15, 10 + diff --git a/gfx/pokemon/nidorino/anim0.asm b/gfx/pokemon/nidorino/anim0.asm new file mode 100644 index 000000000..16a6cb1dc --- /dev/null +++ b/gfx/pokemon/nidorino/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 10 + frame 6, 30 + frame 0, 05 + frame 5, 07 + frame 0, 10 + setrepeat 2 + frame 0, 06 + frame 2, 06 + frame 3, 06 + dorepeat 6 + endanim +; 0xd0a86 diff --git a/gfx/pokemon/nidorino/anim1.asm b/gfx/pokemon/nidorino/anim1.asm new file mode 100644 index 000000000..40e17f454 --- /dev/null +++ b/gfx/pokemon/nidorino/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 3 + frame 4, 06 + frame 5, 06 + dorepeat 1 + frame 0, 06 + frame 4, 06 + endanim +; 0xd1a0a diff --git a/gfx/pokemon/nidorino/back.2bpp.lz.8504fdd1 b/gfx/pokemon/nidorino/back.2bpp.lz.8504fdd1 new file mode 100644 index 000000000..6e6a841e9 Binary files /dev/null and b/gfx/pokemon/nidorino/back.2bpp.lz.8504fdd1 differ diff --git a/gfx/pokemon/nidorino/back.png b/gfx/pokemon/nidorino/back.png new file mode 100644 index 000000000..b40dd9aaf Binary files /dev/null and b/gfx/pokemon/nidorino/back.png differ diff --git a/gfx/pokemon/nidorino/front.animated.2bpp.lz.ba11ef23 b/gfx/pokemon/nidorino/front.animated.2bpp.lz.ba11ef23 new file mode 100644 index 000000000..228c93b52 Binary files /dev/null and b/gfx/pokemon/nidorino/front.animated.2bpp.lz.ba11ef23 differ diff --git a/gfx/pokemon/nidorino/front.png b/gfx/pokemon/nidorino/front.png new file mode 100644 index 000000000..86d37de47 Binary files /dev/null and b/gfx/pokemon/nidorino/front.png differ diff --git a/gfx/pokemon/nidorino/shiny.pal b/gfx/pokemon/nidorino/shiny.pal new file mode 100644 index 000000000..b6d2e6fe9 --- /dev/null +++ b/gfx/pokemon/nidorino/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 23, 31 + RGB 23, 04, 25 + diff --git a/gfx/pokemon/ninetales/anim0.asm b/gfx/pokemon/ninetales/anim0.asm new file mode 100644 index 000000000..0d691ee9d --- /dev/null +++ b/gfx/pokemon/ninetales/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 07 + frame 1, 08 + frame 2, 09 + frame 3, 09 + frame 4, 10 + frame 3, 12 + frame 2, 10 + frame 1, 08 + endanim +; 0xd0acb diff --git a/gfx/pokemon/ninetales/anim1.asm b/gfx/pokemon/ninetales/anim1.asm new file mode 100644 index 000000000..68d1e8051 --- /dev/null +++ b/gfx/pokemon/ninetales/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 5, 06 + dorepeat 1 + endanim +; 0xd1a3d diff --git a/gfx/pokemon/ninetales/back.2bpp.lz.999b3894 b/gfx/pokemon/ninetales/back.2bpp.lz.999b3894 new file mode 100644 index 000000000..e6b264033 Binary files /dev/null and b/gfx/pokemon/ninetales/back.2bpp.lz.999b3894 differ diff --git a/gfx/pokemon/ninetales/back.png b/gfx/pokemon/ninetales/back.png new file mode 100644 index 000000000..98af16d8a Binary files /dev/null and b/gfx/pokemon/ninetales/back.png differ diff --git a/gfx/pokemon/ninetales/front.animated.2bpp.lz.eef934ff b/gfx/pokemon/ninetales/front.animated.2bpp.lz.eef934ff new file mode 100644 index 000000000..4865c6d82 Binary files /dev/null and b/gfx/pokemon/ninetales/front.animated.2bpp.lz.eef934ff differ diff --git a/gfx/pokemon/ninetales/front.png b/gfx/pokemon/ninetales/front.png new file mode 100644 index 000000000..0bfeed4eb Binary files /dev/null and b/gfx/pokemon/ninetales/front.png differ diff --git a/gfx/pokemon/ninetales/shiny.pal b/gfx/pokemon/ninetales/shiny.pal new file mode 100644 index 000000000..6b0dafcc8 --- /dev/null +++ b/gfx/pokemon/ninetales/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 22, 25 + RGB 17, 17, 23 + diff --git a/gfx/pokemon/noctowl/anim0.asm b/gfx/pokemon/noctowl/anim0.asm new file mode 100644 index 000000000..ce19c30a5 --- /dev/null +++ b/gfx/pokemon/noctowl/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 04 + frame 1, 20 + frame 3, 24 + frame 2, 20 + setrepeat 3 + frame 4, 06 + frame 2, 06 + dorepeat 5 + endanim +; 0xd1219 diff --git a/gfx/pokemon/noctowl/anim1.asm b/gfx/pokemon/noctowl/anim1.asm new file mode 100644 index 000000000..4fe81f336 --- /dev/null +++ b/gfx/pokemon/noctowl/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 1 + endanim +; 0xd1f11 diff --git a/gfx/pokemon/noctowl/back.2bpp.lz.9c8ac57f b/gfx/pokemon/noctowl/back.2bpp.lz.9c8ac57f new file mode 100644 index 000000000..9ef83c86e Binary files /dev/null and b/gfx/pokemon/noctowl/back.2bpp.lz.9c8ac57f differ diff --git a/gfx/pokemon/noctowl/back.png b/gfx/pokemon/noctowl/back.png new file mode 100644 index 000000000..6f7237943 Binary files /dev/null and b/gfx/pokemon/noctowl/back.png differ diff --git a/gfx/pokemon/noctowl/front.animated.2bpp.lz.7d6594fe b/gfx/pokemon/noctowl/front.animated.2bpp.lz.7d6594fe new file mode 100644 index 000000000..cd0d1313b Binary files /dev/null and b/gfx/pokemon/noctowl/front.animated.2bpp.lz.7d6594fe differ diff --git a/gfx/pokemon/noctowl/front.png b/gfx/pokemon/noctowl/front.png new file mode 100644 index 000000000..bbc8b1623 Binary files /dev/null and b/gfx/pokemon/noctowl/front.png differ diff --git a/gfx/pokemon/noctowl/shiny.pal b/gfx/pokemon/noctowl/shiny.pal new file mode 100644 index 000000000..d53a230e7 --- /dev/null +++ b/gfx/pokemon/noctowl/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 23, 04 + RGB 23, 10, 06 + diff --git a/gfx/pokemon/octillery/anim0.asm b/gfx/pokemon/octillery/anim0.asm new file mode 100644 index 000000000..2405d46a1 --- /dev/null +++ b/gfx/pokemon/octillery/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 12 + frame 1, 24 + setrepeat 4 + frame 2, 05 + frame 0, 05 + dorepeat 3 + endanim +; 0xd1515 diff --git a/gfx/pokemon/octillery/anim1.asm b/gfx/pokemon/octillery/anim1.asm new file mode 100644 index 000000000..0903a867a --- /dev/null +++ b/gfx/pokemon/octillery/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd211d diff --git a/gfx/pokemon/octillery/back.2bpp.lz.48b6e47d b/gfx/pokemon/octillery/back.2bpp.lz.48b6e47d new file mode 100644 index 000000000..2d12597ca Binary files /dev/null and b/gfx/pokemon/octillery/back.2bpp.lz.48b6e47d differ diff --git a/gfx/pokemon/octillery/back.png b/gfx/pokemon/octillery/back.png new file mode 100644 index 000000000..8717ea071 Binary files /dev/null and b/gfx/pokemon/octillery/back.png differ diff --git a/gfx/pokemon/octillery/front.animated.2bpp.lz.de99954b b/gfx/pokemon/octillery/front.animated.2bpp.lz.de99954b new file mode 100644 index 000000000..9ffec9b38 Binary files /dev/null and b/gfx/pokemon/octillery/front.animated.2bpp.lz.de99954b differ diff --git a/gfx/pokemon/octillery/front.png b/gfx/pokemon/octillery/front.png new file mode 100644 index 000000000..a2359dc98 Binary files /dev/null and b/gfx/pokemon/octillery/front.png differ diff --git a/gfx/pokemon/octillery/shiny.pal b/gfx/pokemon/octillery/shiny.pal new file mode 100644 index 000000000..a5bdc9b71 --- /dev/null +++ b/gfx/pokemon/octillery/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 28, 14 + RGB 20, 18, 03 + diff --git a/gfx/pokemon/oddish/anim0.asm b/gfx/pokemon/oddish/anim0.asm new file mode 100644 index 000000000..338771fce --- /dev/null +++ b/gfx/pokemon/oddish/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 10 + frame 2, 20 + frame 1, 07 + frame 4, 05 + frame 0, 15 + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 6 + endanim +; 0xd0b20 diff --git a/gfx/pokemon/oddish/anim1.asm b/gfx/pokemon/oddish/anim1.asm new file mode 100644 index 000000000..92d041ff5 --- /dev/null +++ b/gfx/pokemon/oddish/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd1a6c diff --git a/gfx/pokemon/oddish/back.2bpp.lz.4f9ec682 b/gfx/pokemon/oddish/back.2bpp.lz.4f9ec682 new file mode 100644 index 000000000..81ba4e5f3 Binary files /dev/null and b/gfx/pokemon/oddish/back.2bpp.lz.4f9ec682 differ diff --git a/gfx/pokemon/oddish/back.png b/gfx/pokemon/oddish/back.png new file mode 100644 index 000000000..11f40353d Binary files /dev/null and b/gfx/pokemon/oddish/back.png differ diff --git a/gfx/pokemon/oddish/front.animated.2bpp.lz.ea2e0dcd b/gfx/pokemon/oddish/front.animated.2bpp.lz.ea2e0dcd new file mode 100644 index 000000000..3864c0b7a Binary files /dev/null and b/gfx/pokemon/oddish/front.animated.2bpp.lz.ea2e0dcd differ diff --git a/gfx/pokemon/oddish/front.png b/gfx/pokemon/oddish/front.png new file mode 100644 index 000000000..c49334613 Binary files /dev/null and b/gfx/pokemon/oddish/front.png differ diff --git a/gfx/pokemon/oddish/shiny.pal b/gfx/pokemon/oddish/shiny.pal new file mode 100644 index 000000000..6e1d339b4 --- /dev/null +++ b/gfx/pokemon/oddish/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 26, 04 + RGB 08, 18, 11 + diff --git a/gfx/pokemon/omanyte/anim0.asm b/gfx/pokemon/omanyte/anim0.asm new file mode 100644 index 000000000..5863efecc --- /dev/null +++ b/gfx/pokemon/omanyte/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 08 + frame 2, 22 + frame 1, 08 + endanim +; 0xd1075 diff --git a/gfx/pokemon/omanyte/anim1.asm b/gfx/pokemon/omanyte/anim1.asm new file mode 100644 index 000000000..ffdce5abd --- /dev/null +++ b/gfx/pokemon/omanyte/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1e03 diff --git a/gfx/pokemon/omanyte/back.2bpp.lz.f442a670 b/gfx/pokemon/omanyte/back.2bpp.lz.f442a670 new file mode 100644 index 000000000..0ee462eaf Binary files /dev/null and b/gfx/pokemon/omanyte/back.2bpp.lz.f442a670 differ diff --git a/gfx/pokemon/omanyte/back.png b/gfx/pokemon/omanyte/back.png new file mode 100644 index 000000000..0c3fb8eb7 Binary files /dev/null and b/gfx/pokemon/omanyte/back.png differ diff --git a/gfx/pokemon/omanyte/front.animated.2bpp.lz.15b343dc b/gfx/pokemon/omanyte/front.animated.2bpp.lz.15b343dc new file mode 100644 index 000000000..7673b2390 Binary files /dev/null and b/gfx/pokemon/omanyte/front.animated.2bpp.lz.15b343dc differ diff --git a/gfx/pokemon/omanyte/front.png b/gfx/pokemon/omanyte/front.png new file mode 100644 index 000000000..1e47c7800 Binary files /dev/null and b/gfx/pokemon/omanyte/front.png differ diff --git a/gfx/pokemon/omanyte/shiny.pal b/gfx/pokemon/omanyte/shiny.pal new file mode 100644 index 000000000..cc1531b57 --- /dev/null +++ b/gfx/pokemon/omanyte/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 19, 10 + RGB 12, 11, 11 + diff --git a/gfx/pokemon/omastar/anim0.asm b/gfx/pokemon/omastar/anim0.asm new file mode 100644 index 000000000..76d8c3aa8 --- /dev/null +++ b/gfx/pokemon/omastar/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 10 + frame 2, 40 + frame 1, 06 + endanim +; 0xd107c diff --git a/gfx/pokemon/omastar/anim1.asm b/gfx/pokemon/omastar/anim1.asm new file mode 100644 index 000000000..60bcf04d2 --- /dev/null +++ b/gfx/pokemon/omastar/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 11 + frame 3, 11 + dorepeat 1 + endanim +; 0xd1e0c diff --git a/gfx/pokemon/omastar/back.2bpp.lz.c75932db b/gfx/pokemon/omastar/back.2bpp.lz.c75932db new file mode 100644 index 000000000..b41a828c5 Binary files /dev/null and b/gfx/pokemon/omastar/back.2bpp.lz.c75932db differ diff --git a/gfx/pokemon/omastar/back.png b/gfx/pokemon/omastar/back.png new file mode 100644 index 000000000..c6ff219e7 Binary files /dev/null and b/gfx/pokemon/omastar/back.png differ diff --git a/gfx/pokemon/omastar/front.animated.2bpp.lz.b3f6c3dc b/gfx/pokemon/omastar/front.animated.2bpp.lz.b3f6c3dc new file mode 100644 index 000000000..544e2d87b Binary files /dev/null and b/gfx/pokemon/omastar/front.animated.2bpp.lz.b3f6c3dc differ diff --git a/gfx/pokemon/omastar/front.png b/gfx/pokemon/omastar/front.png new file mode 100644 index 000000000..382bb5417 Binary files /dev/null and b/gfx/pokemon/omastar/front.png differ diff --git a/gfx/pokemon/omastar/shiny.pal b/gfx/pokemon/omastar/shiny.pal new file mode 100644 index 000000000..2b8017338 --- /dev/null +++ b/gfx/pokemon/omastar/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 28, 02 + RGB 12, 11, 15 + diff --git a/gfx/pokemon/onix/anim0.asm b/gfx/pokemon/onix/anim0.asm new file mode 100644 index 000000000..a5b18f5b6 --- /dev/null +++ b/gfx/pokemon/onix/anim0.asm @@ -0,0 +1,10 @@ + setrepeat 2 + frame 1, 12 + frame 2, 12 + frame 3, 12 + dorepeat 1 + frame 4, 12 + frame 5, 12 + frame 6, 12 + endanim +; 0xd0e08 diff --git a/gfx/pokemon/onix/anim1.asm b/gfx/pokemon/onix/anim1.asm new file mode 100644 index 000000000..e4ae7acac --- /dev/null +++ b/gfx/pokemon/onix/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 10 + frame 7, 10 + frame 8, 10 + dorepeat 1 + endanim +; 0xd1c74 diff --git a/gfx/pokemon/onix/back.2bpp.lz.cb580eb9 b/gfx/pokemon/onix/back.2bpp.lz.cb580eb9 new file mode 100644 index 000000000..05df1a96b Binary files /dev/null and b/gfx/pokemon/onix/back.2bpp.lz.cb580eb9 differ diff --git a/gfx/pokemon/onix/back.png b/gfx/pokemon/onix/back.png new file mode 100644 index 000000000..6aa7be5bc Binary files /dev/null and b/gfx/pokemon/onix/back.png differ diff --git a/gfx/pokemon/onix/front.animated.2bpp.lz.84b7e9ef b/gfx/pokemon/onix/front.animated.2bpp.lz.84b7e9ef new file mode 100644 index 000000000..dc3bfca6e Binary files /dev/null and b/gfx/pokemon/onix/front.animated.2bpp.lz.84b7e9ef differ diff --git a/gfx/pokemon/onix/front.png b/gfx/pokemon/onix/front.png new file mode 100644 index 000000000..188378160 Binary files /dev/null and b/gfx/pokemon/onix/front.png differ diff --git a/gfx/pokemon/onix/shiny.pal b/gfx/pokemon/onix/shiny.pal new file mode 100644 index 000000000..66935962c --- /dev/null +++ b/gfx/pokemon/onix/shiny.pal @@ -0,0 +1,4 @@ + + RGB 15, 21, 04 + RGB 14, 11, 07 + diff --git a/gfx/pokemon/palette_pointers.asm b/gfx/pokemon/palette_pointers.asm new file mode 100644 index 000000000..4ba114413 --- /dev/null +++ b/gfx/pokemon/palette_pointers.asm @@ -0,0 +1,541 @@ +PokemonPalettes: ; a8ce + +; 000 + RGB 30, 22, 17 + RGB 16, 14, 19 +; 000 shiny + RGB 30, 22, 17 + RGB 16, 14, 19 + +BulbasaurPalette: INCLUDE "gfx/pokemon/bulbasaur/normal.pal" +BulbasaurShinyPalette: INCLUDE "gfx/pokemon/bulbasaur/shiny.pal" +IvysaurPalette: INCLUDE "gfx/pokemon/ivysaur/normal.pal" +IvysaurShinyPalette: INCLUDE "gfx/pokemon/ivysaur/shiny.pal" +VenusaurPalette: INCLUDE "gfx/pokemon/venusaur/normal.pal" +VenusaurShinyPalette: INCLUDE "gfx/pokemon/venusaur/shiny.pal" +CharmanderPalette: INCLUDE "gfx/pokemon/charmander/normal.pal" +CharmanderShinyPalette: INCLUDE "gfx/pokemon/charmander/shiny.pal" +CharmeleonPalette: INCLUDE "gfx/pokemon/charmeleon/normal.pal" +CharmeleonShinyPalette: INCLUDE "gfx/pokemon/charmeleon/shiny.pal" +CharizardPalette: INCLUDE "gfx/pokemon/charizard/normal.pal" +CharizardShinyPalette: INCLUDE "gfx/pokemon/charizard/shiny.pal" +SquirtlePalette: INCLUDE "gfx/pokemon/squirtle/normal.pal" +SquirtleShinyPalette: INCLUDE "gfx/pokemon/squirtle/shiny.pal" +WartortlePalette: INCLUDE "gfx/pokemon/wartortle/normal.pal" +WartortleShinyPalette: INCLUDE "gfx/pokemon/wartortle/shiny.pal" +BlastoisePalette: INCLUDE "gfx/pokemon/blastoise/normal.pal" +BlastoiseShinyPalette: INCLUDE "gfx/pokemon/blastoise/shiny.pal" +CaterpiePalette: INCLUDE "gfx/pokemon/caterpie/normal.pal" +CaterpieShinyPalette: INCLUDE "gfx/pokemon/caterpie/shiny.pal" +MetapodPalette: INCLUDE "gfx/pokemon/metapod/normal.pal" +MetapodShinyPalette: INCLUDE "gfx/pokemon/metapod/shiny.pal" +ButterfreePalette: INCLUDE "gfx/pokemon/butterfree/normal.pal" +ButterfreeShinyPalette: INCLUDE "gfx/pokemon/butterfree/shiny.pal" +WeedlePalette: INCLUDE "gfx/pokemon/weedle/normal.pal" +WeedleShinyPalette: INCLUDE "gfx/pokemon/weedle/shiny.pal" +KakunaPalette: INCLUDE "gfx/pokemon/kakuna/normal.pal" +KakunaShinyPalette: INCLUDE "gfx/pokemon/kakuna/shiny.pal" +BeedrillPalette: INCLUDE "gfx/pokemon/beedrill/normal.pal" +BeedrillShinyPalette: INCLUDE "gfx/pokemon/beedrill/shiny.pal" +PidgeyPalette: INCLUDE "gfx/pokemon/pidgey/normal.pal" +PidgeyShinyPalette: INCLUDE "gfx/pokemon/pidgey/shiny.pal" +PidgeottoPalette: INCLUDE "gfx/pokemon/pidgeotto/normal.pal" +PidgeottoShinyPalette: INCLUDE "gfx/pokemon/pidgeotto/shiny.pal" +PidgeotPalette: INCLUDE "gfx/pokemon/pidgeot/normal.pal" +PidgeotShinyPalette: INCLUDE "gfx/pokemon/pidgeot/shiny.pal" +RattataPalette: INCLUDE "gfx/pokemon/rattata/normal.pal" +RattataShinyPalette: INCLUDE "gfx/pokemon/rattata/shiny.pal" +RaticatePalette: INCLUDE "gfx/pokemon/raticate/normal.pal" +RaticateShinyPalette: INCLUDE "gfx/pokemon/raticate/shiny.pal" +SpearowPalette: INCLUDE "gfx/pokemon/spearow/normal.pal" +SpearowShinyPalette: INCLUDE "gfx/pokemon/spearow/shiny.pal" +FearowPalette: INCLUDE "gfx/pokemon/fearow/normal.pal" +FearowShinyPalette: INCLUDE "gfx/pokemon/fearow/shiny.pal" +EkansPalette: INCLUDE "gfx/pokemon/ekans/normal.pal" +EkansShinyPalette: INCLUDE "gfx/pokemon/ekans/shiny.pal" +ArbokPalette: INCLUDE "gfx/pokemon/arbok/normal.pal" +ArbokShinyPalette: INCLUDE "gfx/pokemon/arbok/shiny.pal" +PikachuPalette: INCLUDE "gfx/pokemon/pikachu/normal.pal" +PikachuShinyPalette: INCLUDE "gfx/pokemon/pikachu/shiny.pal" +RaichuPalette: INCLUDE "gfx/pokemon/raichu/normal.pal" +RaichuShinyPalette: INCLUDE "gfx/pokemon/raichu/shiny.pal" +SandshrewPalette: INCLUDE "gfx/pokemon/sandshrew/normal.pal" +SandshrewShinyPalette: INCLUDE "gfx/pokemon/sandshrew/shiny.pal" +SandslashPalette: INCLUDE "gfx/pokemon/sandslash/normal.pal" +SandslashShinyPalette: INCLUDE "gfx/pokemon/sandslash/shiny.pal" +NidoranFPalette: INCLUDE "gfx/pokemon/nidoran_f/normal.pal" +NidoranFShinyPalette: INCLUDE "gfx/pokemon/nidoran_f/shiny.pal" +NidorinaPalette: INCLUDE "gfx/pokemon/nidorina/normal.pal" +NidorinaShinyPalette: INCLUDE "gfx/pokemon/nidorina/shiny.pal" +NidoqueenPalette: INCLUDE "gfx/pokemon/nidoqueen/normal.pal" +NidoqueenShinyPalette: INCLUDE "gfx/pokemon/nidoqueen/shiny.pal" +NidoranMPalette: INCLUDE "gfx/pokemon/nidoran_m/normal.pal" +NidoranMShinyPalette: INCLUDE "gfx/pokemon/nidoran_m/shiny.pal" +NidorinoPalette: INCLUDE "gfx/pokemon/nidorino/normal.pal" +NidorinoShinyPalette: INCLUDE "gfx/pokemon/nidorino/shiny.pal" +NidokingPalette: INCLUDE "gfx/pokemon/nidoking/normal.pal" +NidokingShinyPalette: INCLUDE "gfx/pokemon/nidoking/shiny.pal" +ClefairyPalette: INCLUDE "gfx/pokemon/clefairy/normal.pal" +ClefairyShinyPalette: INCLUDE "gfx/pokemon/clefairy/shiny.pal" +ClefablePalette: INCLUDE "gfx/pokemon/clefable/normal.pal" +ClefableShinyPalette: INCLUDE "gfx/pokemon/clefable/shiny.pal" +VulpixPalette: INCLUDE "gfx/pokemon/vulpix/normal.pal" +VulpixShinyPalette: INCLUDE "gfx/pokemon/vulpix/shiny.pal" +NinetalesPalette: INCLUDE "gfx/pokemon/ninetales/normal.pal" +NinetalesShinyPalette: INCLUDE "gfx/pokemon/ninetales/shiny.pal" +JigglypuffPalette: INCLUDE "gfx/pokemon/jigglypuff/normal.pal" +JigglypuffShinyPalette: INCLUDE "gfx/pokemon/jigglypuff/shiny.pal" +WigglytuffPalette: INCLUDE "gfx/pokemon/wigglytuff/normal.pal" +WigglytuffShinyPalette: INCLUDE "gfx/pokemon/wigglytuff/shiny.pal" +ZubatPalette: INCLUDE "gfx/pokemon/zubat/normal.pal" +ZubatShinyPalette: INCLUDE "gfx/pokemon/zubat/shiny.pal" +GolbatPalette: INCLUDE "gfx/pokemon/golbat/normal.pal" +GolbatShinyPalette: INCLUDE "gfx/pokemon/golbat/shiny.pal" +OddishPalette: INCLUDE "gfx/pokemon/oddish/normal.pal" +OddishShinyPalette: INCLUDE "gfx/pokemon/oddish/shiny.pal" +GloomPalette: INCLUDE "gfx/pokemon/gloom/normal.pal" +GloomShinyPalette: INCLUDE "gfx/pokemon/gloom/shiny.pal" +VileplumePalette: INCLUDE "gfx/pokemon/vileplume/normal.pal" +VileplumeShinyPalette: INCLUDE "gfx/pokemon/vileplume/shiny.pal" +ParasPalette: INCLUDE "gfx/pokemon/paras/normal.pal" +ParasShinyPalette: INCLUDE "gfx/pokemon/paras/shiny.pal" +ParasectPalette: INCLUDE "gfx/pokemon/parasect/normal.pal" +ParasectShinyPalette: INCLUDE "gfx/pokemon/parasect/shiny.pal" +VenonatPalette: INCLUDE "gfx/pokemon/venonat/normal.pal" +VenonatShinyPalette: INCLUDE "gfx/pokemon/venonat/shiny.pal" +VenomothPalette: INCLUDE "gfx/pokemon/venomoth/normal.pal" +VenomothShinyPalette: INCLUDE "gfx/pokemon/venomoth/shiny.pal" +DiglettPalette: INCLUDE "gfx/pokemon/diglett/normal.pal" +DiglettShinyPalette: INCLUDE "gfx/pokemon/diglett/shiny.pal" +DugtrioPalette: INCLUDE "gfx/pokemon/dugtrio/normal.pal" +DugtrioShinyPalette: INCLUDE "gfx/pokemon/dugtrio/shiny.pal" +MeowthPalette: INCLUDE "gfx/pokemon/meowth/normal.pal" +MeowthShinyPalette: INCLUDE "gfx/pokemon/meowth/shiny.pal" +PersianPalette: INCLUDE "gfx/pokemon/persian/normal.pal" +PersianShinyPalette: INCLUDE "gfx/pokemon/persian/shiny.pal" +PsyduckPalette: INCLUDE "gfx/pokemon/psyduck/normal.pal" +PsyduckShinyPalette: INCLUDE "gfx/pokemon/psyduck/shiny.pal" +GolduckPalette: INCLUDE "gfx/pokemon/golduck/normal.pal" +GolduckShinyPalette: INCLUDE "gfx/pokemon/golduck/shiny.pal" +MankeyPalette: INCLUDE "gfx/pokemon/mankey/normal.pal" +MankeyShinyPalette: INCLUDE "gfx/pokemon/mankey/shiny.pal" +PrimeapePalette: INCLUDE "gfx/pokemon/primeape/normal.pal" +PrimeapeShinyPalette: INCLUDE "gfx/pokemon/primeape/shiny.pal" +GrowlithePalette: INCLUDE "gfx/pokemon/growlithe/normal.pal" +GrowlitheShinyPalette: INCLUDE "gfx/pokemon/growlithe/shiny.pal" +ArcaninePalette: INCLUDE "gfx/pokemon/arcanine/normal.pal" +ArcanineShinyPalette: INCLUDE "gfx/pokemon/arcanine/shiny.pal" +PoliwagPalette: INCLUDE "gfx/pokemon/poliwag/normal.pal" +PoliwagShinyPalette: INCLUDE "gfx/pokemon/poliwag/shiny.pal" +PoliwhirlPalette: INCLUDE "gfx/pokemon/poliwhirl/normal.pal" +PoliwhirlShinyPalette: INCLUDE "gfx/pokemon/poliwhirl/shiny.pal" +PoliwrathPalette: INCLUDE "gfx/pokemon/poliwrath/normal.pal" +PoliwrathShinyPalette: INCLUDE "gfx/pokemon/poliwrath/shiny.pal" +AbraPalette: INCLUDE "gfx/pokemon/abra/normal.pal" +AbraShinyPalette: INCLUDE "gfx/pokemon/abra/shiny.pal" +KadabraPalette: INCLUDE "gfx/pokemon/kadabra/normal.pal" +KadabraShinyPalette: INCLUDE "gfx/pokemon/kadabra/shiny.pal" +AlakazamPalette: INCLUDE "gfx/pokemon/alakazam/normal.pal" +AlakazamShinyPalette: INCLUDE "gfx/pokemon/alakazam/shiny.pal" +MachopPalette: INCLUDE "gfx/pokemon/machop/normal.pal" +MachopShinyPalette: INCLUDE "gfx/pokemon/machop/shiny.pal" +MachokePalette: INCLUDE "gfx/pokemon/machoke/normal.pal" +MachokeShinyPalette: INCLUDE "gfx/pokemon/machoke/shiny.pal" +MachampPalette: INCLUDE "gfx/pokemon/machamp/normal.pal" +MachampShinyPalette: INCLUDE "gfx/pokemon/machamp/shiny.pal" +BellsproutPalette: INCLUDE "gfx/pokemon/bellsprout/normal.pal" +BellsproutShinyPalette: INCLUDE "gfx/pokemon/bellsprout/shiny.pal" +WeepinbellPalette: INCLUDE "gfx/pokemon/weepinbell/normal.pal" +WeepinbellShinyPalette: INCLUDE "gfx/pokemon/weepinbell/shiny.pal" +VictreebelPalette: INCLUDE "gfx/pokemon/victreebel/normal.pal" +VictreebelShinyPalette: INCLUDE "gfx/pokemon/victreebel/shiny.pal" +TentacoolPalette: INCLUDE "gfx/pokemon/tentacool/normal.pal" +TentacoolShinyPalette: INCLUDE "gfx/pokemon/tentacool/shiny.pal" +TentacruelPalette: INCLUDE "gfx/pokemon/tentacruel/normal.pal" +TentacruelShinyPalette: INCLUDE "gfx/pokemon/tentacruel/shiny.pal" +GeodudePalette: INCLUDE "gfx/pokemon/geodude/normal.pal" +GeodudeShinyPalette: INCLUDE "gfx/pokemon/geodude/shiny.pal" +GravelerPalette: INCLUDE "gfx/pokemon/graveler/normal.pal" +GravelerShinyPalette: INCLUDE "gfx/pokemon/graveler/shiny.pal" +GolemPalette: INCLUDE "gfx/pokemon/golem/normal.pal" +GolemShinyPalette: INCLUDE "gfx/pokemon/golem/shiny.pal" +PonytaPalette: INCLUDE "gfx/pokemon/ponyta/normal.pal" +PonytaShinyPalette: INCLUDE "gfx/pokemon/ponyta/shiny.pal" +RapidashPalette: INCLUDE "gfx/pokemon/rapidash/normal.pal" +RapidashShinyPalette: INCLUDE "gfx/pokemon/rapidash/shiny.pal" +SlowpokePalette: INCLUDE "gfx/pokemon/slowpoke/normal.pal" +SlowpokeShinyPalette: INCLUDE "gfx/pokemon/slowpoke/shiny.pal" +SlowbroPalette: INCLUDE "gfx/pokemon/slowbro/normal.pal" +SlowbroShinyPalette: INCLUDE "gfx/pokemon/slowbro/shiny.pal" +MagnemitePalette: INCLUDE "gfx/pokemon/magnemite/normal.pal" +MagnemiteShinyPalette: INCLUDE "gfx/pokemon/magnemite/shiny.pal" +MagnetonPalette: INCLUDE "gfx/pokemon/magneton/normal.pal" +MagnetonShinyPalette: INCLUDE "gfx/pokemon/magneton/shiny.pal" +FarfetchDPalette: INCLUDE "gfx/pokemon/farfetch_d/normal.pal" +FarfetchDShinyPalette: INCLUDE "gfx/pokemon/farfetch_d/shiny.pal" +DoduoPalette: INCLUDE "gfx/pokemon/doduo/normal.pal" +DoduoShinyPalette: INCLUDE "gfx/pokemon/doduo/shiny.pal" +DodrioPalette: INCLUDE "gfx/pokemon/dodrio/normal.pal" +DodrioShinyPalette: INCLUDE "gfx/pokemon/dodrio/shiny.pal" +SeelPalette: INCLUDE "gfx/pokemon/seel/normal.pal" +SeelShinyPalette: INCLUDE "gfx/pokemon/seel/shiny.pal" +DewgongPalette: INCLUDE "gfx/pokemon/dewgong/normal.pal" +DewgongShinyPalette: INCLUDE "gfx/pokemon/dewgong/shiny.pal" +GrimerPalette: INCLUDE "gfx/pokemon/grimer/normal.pal" +GrimerShinyPalette: INCLUDE "gfx/pokemon/grimer/shiny.pal" +MukPalette: INCLUDE "gfx/pokemon/muk/normal.pal" +MukShinyPalette: INCLUDE "gfx/pokemon/muk/shiny.pal" +ShellderPalette: INCLUDE "gfx/pokemon/shellder/normal.pal" +ShellderShinyPalette: INCLUDE "gfx/pokemon/shellder/shiny.pal" +CloysterPalette: INCLUDE "gfx/pokemon/cloyster/normal.pal" +CloysterShinyPalette: INCLUDE "gfx/pokemon/cloyster/shiny.pal" +GastlyPalette: INCLUDE "gfx/pokemon/gastly/normal.pal" +GastlyShinyPalette: INCLUDE "gfx/pokemon/gastly/shiny.pal" +HaunterPalette: INCLUDE "gfx/pokemon/haunter/normal.pal" +HaunterShinyPalette: INCLUDE "gfx/pokemon/haunter/shiny.pal" +GengarPalette: INCLUDE "gfx/pokemon/gengar/normal.pal" +GengarShinyPalette: INCLUDE "gfx/pokemon/gengar/shiny.pal" +OnixPalette: INCLUDE "gfx/pokemon/onix/normal.pal" +OnixShinyPalette: INCLUDE "gfx/pokemon/onix/shiny.pal" +DrowzeePalette: INCLUDE "gfx/pokemon/drowzee/normal.pal" +DrowzeeShinyPalette: INCLUDE "gfx/pokemon/drowzee/shiny.pal" +HypnoPalette: INCLUDE "gfx/pokemon/hypno/normal.pal" +HypnoShinyPalette: INCLUDE "gfx/pokemon/hypno/shiny.pal" +KrabbyPalette: INCLUDE "gfx/pokemon/krabby/normal.pal" +KrabbyShinyPalette: INCLUDE "gfx/pokemon/krabby/shiny.pal" +KinglerPalette: INCLUDE "gfx/pokemon/kingler/normal.pal" +KinglerShinyPalette: INCLUDE "gfx/pokemon/kingler/shiny.pal" +VoltorbPalette: INCLUDE "gfx/pokemon/voltorb/normal.pal" +VoltorbShinyPalette: INCLUDE "gfx/pokemon/voltorb/shiny.pal" +ElectrodePalette: INCLUDE "gfx/pokemon/electrode/normal.pal" +ElectrodeShinyPalette: INCLUDE "gfx/pokemon/electrode/shiny.pal" +ExeggcutePalette: INCLUDE "gfx/pokemon/exeggcute/normal.pal" +ExeggcuteShinyPalette: INCLUDE "gfx/pokemon/exeggcute/shiny.pal" +ExeggutorPalette: INCLUDE "gfx/pokemon/exeggutor/normal.pal" +ExeggutorShinyPalette: INCLUDE "gfx/pokemon/exeggutor/shiny.pal" +CubonePalette: INCLUDE "gfx/pokemon/cubone/normal.pal" +CuboneShinyPalette: INCLUDE "gfx/pokemon/cubone/shiny.pal" +MarowakPalette: INCLUDE "gfx/pokemon/marowak/normal.pal" +MarowakShinyPalette: INCLUDE "gfx/pokemon/marowak/shiny.pal" +HitmonleePalette: INCLUDE "gfx/pokemon/hitmonlee/normal.pal" +HitmonleeShinyPalette: INCLUDE "gfx/pokemon/hitmonlee/shiny.pal" +HitmonchanPalette: INCLUDE "gfx/pokemon/hitmonchan/normal.pal" +HitmonchanShinyPalette: INCLUDE "gfx/pokemon/hitmonchan/shiny.pal" +LickitungPalette: INCLUDE "gfx/pokemon/lickitung/normal.pal" +LickitungShinyPalette: INCLUDE "gfx/pokemon/lickitung/shiny.pal" +KoffingPalette: INCLUDE "gfx/pokemon/koffing/normal.pal" +KoffingShinyPalette: INCLUDE "gfx/pokemon/koffing/shiny.pal" +WeezingPalette: INCLUDE "gfx/pokemon/weezing/normal.pal" +WeezingShinyPalette: INCLUDE "gfx/pokemon/weezing/shiny.pal" +RhyhornPalette: INCLUDE "gfx/pokemon/rhyhorn/normal.pal" +RhyhornShinyPalette: INCLUDE "gfx/pokemon/rhyhorn/shiny.pal" +RhydonPalette: INCLUDE "gfx/pokemon/rhydon/normal.pal" +RhydonShinyPalette: INCLUDE "gfx/pokemon/rhydon/shiny.pal" +ChanseyPalette: INCLUDE "gfx/pokemon/chansey/normal.pal" +ChanseyShinyPalette: INCLUDE "gfx/pokemon/chansey/shiny.pal" +TangelaPalette: INCLUDE "gfx/pokemon/tangela/normal.pal" +TangelaShinyPalette: INCLUDE "gfx/pokemon/tangela/shiny.pal" +KangaskhanPalette: INCLUDE "gfx/pokemon/kangaskhan/normal.pal" +KangaskhanShinyPalette: INCLUDE "gfx/pokemon/kangaskhan/shiny.pal" +HorseaPalette: INCLUDE "gfx/pokemon/horsea/normal.pal" +HorseaShinyPalette: INCLUDE "gfx/pokemon/horsea/shiny.pal" +SeadraPalette: INCLUDE "gfx/pokemon/seadra/normal.pal" +SeadraShinyPalette: INCLUDE "gfx/pokemon/seadra/shiny.pal" +GoldeenPalette: INCLUDE "gfx/pokemon/goldeen/normal.pal" +GoldeenShinyPalette: INCLUDE "gfx/pokemon/goldeen/shiny.pal" +SeakingPalette: INCLUDE "gfx/pokemon/seaking/normal.pal" +SeakingShinyPalette: INCLUDE "gfx/pokemon/seaking/shiny.pal" +StaryuPalette: INCLUDE "gfx/pokemon/staryu/normal.pal" +StaryuShinyPalette: INCLUDE "gfx/pokemon/staryu/shiny.pal" +StarmiePalette: INCLUDE "gfx/pokemon/starmie/normal.pal" +StarmieShinyPalette: INCLUDE "gfx/pokemon/starmie/shiny.pal" +MrMimePalette: INCLUDE "gfx/pokemon/mr__mime/normal.pal" +MrMimeShinyPalette: INCLUDE "gfx/pokemon/mr__mime/shiny.pal" +ScytherPalette: INCLUDE "gfx/pokemon/scyther/normal.pal" +ScytherShinyPalette: INCLUDE "gfx/pokemon/scyther/shiny.pal" +JynxPalette: INCLUDE "gfx/pokemon/jynx/normal.pal" +JynxShinyPalette: INCLUDE "gfx/pokemon/jynx/shiny.pal" +ElectabuzzPalette: INCLUDE "gfx/pokemon/electabuzz/normal.pal" +ElectabuzzShinyPalette: INCLUDE "gfx/pokemon/electabuzz/shiny.pal" +MagmarPalette: INCLUDE "gfx/pokemon/magmar/normal.pal" +MagmarShinyPalette: INCLUDE "gfx/pokemon/magmar/shiny.pal" +PinsirPalette: INCLUDE "gfx/pokemon/pinsir/normal.pal" +PinsirShinyPalette: INCLUDE "gfx/pokemon/pinsir/shiny.pal" +TaurosPalette: INCLUDE "gfx/pokemon/tauros/normal.pal" +TaurosShinyPalette: INCLUDE "gfx/pokemon/tauros/shiny.pal" +MagikarpPalette: INCLUDE "gfx/pokemon/magikarp/normal.pal" +MagikarpShinyPalette: INCLUDE "gfx/pokemon/magikarp/shiny.pal" +GyaradosPalette: INCLUDE "gfx/pokemon/gyarados/normal.pal" +GyaradosShinyPalette: INCLUDE "gfx/pokemon/gyarados/shiny.pal" +LaprasPalette: INCLUDE "gfx/pokemon/lapras/normal.pal" +LaprasShinyPalette: INCLUDE "gfx/pokemon/lapras/shiny.pal" +DittoPalette: INCLUDE "gfx/pokemon/ditto/normal.pal" +DittoShinyPalette: INCLUDE "gfx/pokemon/ditto/shiny.pal" +EeveePalette: INCLUDE "gfx/pokemon/eevee/normal.pal" +EeveeShinyPalette: INCLUDE "gfx/pokemon/eevee/shiny.pal" +VaporeonPalette: INCLUDE "gfx/pokemon/vaporeon/normal.pal" +VaporeonShinyPalette: INCLUDE "gfx/pokemon/vaporeon/shiny.pal" +JolteonPalette: INCLUDE "gfx/pokemon/jolteon/normal.pal" +JolteonShinyPalette: INCLUDE "gfx/pokemon/jolteon/shiny.pal" +FlareonPalette: INCLUDE "gfx/pokemon/flareon/normal.pal" +FlareonShinyPalette: INCLUDE "gfx/pokemon/flareon/shiny.pal" +PorygonPalette: INCLUDE "gfx/pokemon/porygon/normal.pal" +PorygonShinyPalette: INCLUDE "gfx/pokemon/porygon/shiny.pal" +OmanytePalette: INCLUDE "gfx/pokemon/omanyte/normal.pal" +OmanyteShinyPalette: INCLUDE "gfx/pokemon/omanyte/shiny.pal" +OmastarPalette: INCLUDE "gfx/pokemon/omastar/normal.pal" +OmastarShinyPalette: INCLUDE "gfx/pokemon/omastar/shiny.pal" +KabutoPalette: INCLUDE "gfx/pokemon/kabuto/normal.pal" +KabutoShinyPalette: INCLUDE "gfx/pokemon/kabuto/shiny.pal" +KabutopsPalette: INCLUDE "gfx/pokemon/kabutops/normal.pal" +KabutopsShinyPalette: INCLUDE "gfx/pokemon/kabutops/shiny.pal" +AerodactylPalette: INCLUDE "gfx/pokemon/aerodactyl/normal.pal" +AerodactylShinyPalette: INCLUDE "gfx/pokemon/aerodactyl/shiny.pal" +SnorlaxPalette: INCLUDE "gfx/pokemon/snorlax/normal.pal" +SnorlaxShinyPalette: INCLUDE "gfx/pokemon/snorlax/shiny.pal" +ArticunoPalette: INCLUDE "gfx/pokemon/articuno/normal.pal" +ArticunoShinyPalette: INCLUDE "gfx/pokemon/articuno/shiny.pal" +ZapdosPalette: INCLUDE "gfx/pokemon/zapdos/normal.pal" +ZapdosShinyPalette: INCLUDE "gfx/pokemon/zapdos/shiny.pal" +MoltresPalette: INCLUDE "gfx/pokemon/moltres/normal.pal" +MoltresShinyPalette: INCLUDE "gfx/pokemon/moltres/shiny.pal" +DratiniPalette: INCLUDE "gfx/pokemon/dratini/normal.pal" +DratiniShinyPalette: INCLUDE "gfx/pokemon/dratini/shiny.pal" +DragonairPalette: INCLUDE "gfx/pokemon/dragonair/normal.pal" +DragonairShinyPalette: INCLUDE "gfx/pokemon/dragonair/shiny.pal" +DragonitePalette: INCLUDE "gfx/pokemon/dragonite/normal.pal" +DragoniteShinyPalette: INCLUDE "gfx/pokemon/dragonite/shiny.pal" +MewtwoPalette: INCLUDE "gfx/pokemon/mewtwo/normal.pal" +MewtwoShinyPalette: INCLUDE "gfx/pokemon/mewtwo/shiny.pal" +MewPalette: INCLUDE "gfx/pokemon/mew/normal.pal" +MewShinyPalette: INCLUDE "gfx/pokemon/mew/shiny.pal" +ChikoritaPalette: INCLUDE "gfx/pokemon/chikorita/normal.pal" +ChikoritaShinyPalette: INCLUDE "gfx/pokemon/chikorita/shiny.pal" +BayleefPalette: INCLUDE "gfx/pokemon/bayleef/normal.pal" +BayleefShinyPalette: INCLUDE "gfx/pokemon/bayleef/shiny.pal" +MeganiumPalette: INCLUDE "gfx/pokemon/meganium/normal.pal" +MeganiumShinyPalette: INCLUDE "gfx/pokemon/meganium/shiny.pal" +CyndaquilPalette: INCLUDE "gfx/pokemon/cyndaquil/normal.pal" +CyndaquilShinyPalette: INCLUDE "gfx/pokemon/cyndaquil/shiny.pal" +QuilavaPalette: INCLUDE "gfx/pokemon/quilava/normal.pal" +QuilavaShinyPalette: INCLUDE "gfx/pokemon/quilava/shiny.pal" +TyphlosionPalette: INCLUDE "gfx/pokemon/typhlosion/normal.pal" +TyphlosionShinyPalette: INCLUDE "gfx/pokemon/typhlosion/shiny.pal" +TotodilePalette: INCLUDE "gfx/pokemon/totodile/normal.pal" +TotodileShinyPalette: INCLUDE "gfx/pokemon/totodile/shiny.pal" +CroconawPalette: INCLUDE "gfx/pokemon/croconaw/normal.pal" +CroconawShinyPalette: INCLUDE "gfx/pokemon/croconaw/shiny.pal" +FeraligatrPalette: INCLUDE "gfx/pokemon/feraligatr/normal.pal" +FeraligatrShinyPalette: INCLUDE "gfx/pokemon/feraligatr/shiny.pal" +SentretPalette: INCLUDE "gfx/pokemon/sentret/normal.pal" +SentretShinyPalette: INCLUDE "gfx/pokemon/sentret/shiny.pal" +FurretPalette: INCLUDE "gfx/pokemon/furret/normal.pal" +FurretShinyPalette: INCLUDE "gfx/pokemon/furret/shiny.pal" +HoothootPalette: INCLUDE "gfx/pokemon/hoothoot/normal.pal" +HoothootShinyPalette: INCLUDE "gfx/pokemon/hoothoot/shiny.pal" +NoctowlPalette: INCLUDE "gfx/pokemon/noctowl/normal.pal" +NoctowlShinyPalette: INCLUDE "gfx/pokemon/noctowl/shiny.pal" +LedybaPalette: INCLUDE "gfx/pokemon/ledyba/normal.pal" +LedybaShinyPalette: INCLUDE "gfx/pokemon/ledyba/shiny.pal" +LedianPalette: INCLUDE "gfx/pokemon/ledian/normal.pal" +LedianShinyPalette: INCLUDE "gfx/pokemon/ledian/shiny.pal" +SpinarakPalette: INCLUDE "gfx/pokemon/spinarak/normal.pal" +SpinarakShinyPalette: INCLUDE "gfx/pokemon/spinarak/shiny.pal" +AriadosPalette: INCLUDE "gfx/pokemon/ariados/normal.pal" +AriadosShinyPalette: INCLUDE "gfx/pokemon/ariados/shiny.pal" +CrobatPalette: INCLUDE "gfx/pokemon/crobat/normal.pal" +CrobatShinyPalette: INCLUDE "gfx/pokemon/crobat/shiny.pal" +ChinchouPalette: INCLUDE "gfx/pokemon/chinchou/normal.pal" +ChinchouShinyPalette: INCLUDE "gfx/pokemon/chinchou/shiny.pal" +LanturnPalette: INCLUDE "gfx/pokemon/lanturn/normal.pal" +LanturnShinyPalette: INCLUDE "gfx/pokemon/lanturn/shiny.pal" +PichuPalette: INCLUDE "gfx/pokemon/pichu/normal.pal" +PichuShinyPalette: INCLUDE "gfx/pokemon/pichu/shiny.pal" +CleffaPalette: INCLUDE "gfx/pokemon/cleffa/normal.pal" +CleffaShinyPalette: INCLUDE "gfx/pokemon/cleffa/shiny.pal" +IgglybuffPalette: INCLUDE "gfx/pokemon/igglybuff/normal.pal" +IgglybuffShinyPalette: INCLUDE "gfx/pokemon/igglybuff/shiny.pal" +TogepiPalette: INCLUDE "gfx/pokemon/togepi/normal.pal" +TogepiShinyPalette: INCLUDE "gfx/pokemon/togepi/shiny.pal" +TogeticPalette: INCLUDE "gfx/pokemon/togetic/normal.pal" +TogeticShinyPalette: INCLUDE "gfx/pokemon/togetic/shiny.pal" +NatuPalette: INCLUDE "gfx/pokemon/natu/normal.pal" +NatuShinyPalette: INCLUDE "gfx/pokemon/natu/shiny.pal" +XatuPalette: INCLUDE "gfx/pokemon/xatu/normal.pal" +XatuShinyPalette: INCLUDE "gfx/pokemon/xatu/shiny.pal" +MareepPalette: INCLUDE "gfx/pokemon/mareep/normal.pal" +MareepShinyPalette: INCLUDE "gfx/pokemon/mareep/shiny.pal" +FlaaffyPalette: INCLUDE "gfx/pokemon/flaaffy/normal.pal" +FlaaffyShinyPalette: INCLUDE "gfx/pokemon/flaaffy/shiny.pal" +AmpharosPalette: INCLUDE "gfx/pokemon/ampharos/normal.pal" +AmpharosShinyPalette: INCLUDE "gfx/pokemon/ampharos/shiny.pal" +BellossomPalette: INCLUDE "gfx/pokemon/bellossom/normal.pal" +BellossomShinyPalette: INCLUDE "gfx/pokemon/bellossom/shiny.pal" +MarillPalette: INCLUDE "gfx/pokemon/marill/normal.pal" +MarillShinyPalette: INCLUDE "gfx/pokemon/marill/shiny.pal" +AzumarillPalette: INCLUDE "gfx/pokemon/azumarill/normal.pal" +AzumarillShinyPalette: INCLUDE "gfx/pokemon/azumarill/shiny.pal" +SudowoodoPalette: INCLUDE "gfx/pokemon/sudowoodo/normal.pal" +SudowoodoShinyPalette: INCLUDE "gfx/pokemon/sudowoodo/shiny.pal" +PolitoedPalette: INCLUDE "gfx/pokemon/politoed/normal.pal" +PolitoedShinyPalette: INCLUDE "gfx/pokemon/politoed/shiny.pal" +HoppipPalette: INCLUDE "gfx/pokemon/hoppip/normal.pal" +HoppipShinyPalette: INCLUDE "gfx/pokemon/hoppip/shiny.pal" +SkiploomPalette: INCLUDE "gfx/pokemon/skiploom/normal.pal" +SkiploomShinyPalette: INCLUDE "gfx/pokemon/skiploom/shiny.pal" +JumpluffPalette: INCLUDE "gfx/pokemon/jumpluff/normal.pal" +JumpluffShinyPalette: INCLUDE "gfx/pokemon/jumpluff/shiny.pal" +AipomPalette: INCLUDE "gfx/pokemon/aipom/normal.pal" +AipomShinyPalette: INCLUDE "gfx/pokemon/aipom/shiny.pal" +SunkernPalette: INCLUDE "gfx/pokemon/sunkern/normal.pal" +SunkernShinyPalette: INCLUDE "gfx/pokemon/sunkern/shiny.pal" +SunfloraPalette: INCLUDE "gfx/pokemon/sunflora/normal.pal" +SunfloraShinyPalette: INCLUDE "gfx/pokemon/sunflora/shiny.pal" +YanmaPalette: INCLUDE "gfx/pokemon/yanma/normal.pal" +YanmaShinyPalette: INCLUDE "gfx/pokemon/yanma/shiny.pal" +WooperPalette: INCLUDE "gfx/pokemon/wooper/normal.pal" +WooperShinyPalette: INCLUDE "gfx/pokemon/wooper/shiny.pal" +QuagsirePalette: INCLUDE "gfx/pokemon/quagsire/normal.pal" +QuagsireShinyPalette: INCLUDE "gfx/pokemon/quagsire/shiny.pal" +EspeonPalette: INCLUDE "gfx/pokemon/espeon/normal.pal" +EspeonShinyPalette: INCLUDE "gfx/pokemon/espeon/shiny.pal" +UmbreonPalette: INCLUDE "gfx/pokemon/umbreon/normal.pal" +UmbreonShinyPalette: INCLUDE "gfx/pokemon/umbreon/shiny.pal" +MurkrowPalette: INCLUDE "gfx/pokemon/murkrow/normal.pal" +MurkrowShinyPalette: INCLUDE "gfx/pokemon/murkrow/shiny.pal" +SlowkingPalette: INCLUDE "gfx/pokemon/slowking/normal.pal" +SlowkingShinyPalette: INCLUDE "gfx/pokemon/slowking/shiny.pal" +MisdreavusPalette: INCLUDE "gfx/pokemon/misdreavus/normal.pal" +MisdreavusShinyPalette: INCLUDE "gfx/pokemon/misdreavus/shiny.pal" +UnownPalette: INCLUDE "gfx/pokemon/unown/normal.pal" +UnownShinyPalette: INCLUDE "gfx/pokemon/unown/shiny.pal" +WobbuffetPalette: INCLUDE "gfx/pokemon/wobbuffet/normal.pal" +WobbuffetShinyPalette: INCLUDE "gfx/pokemon/wobbuffet/shiny.pal" +GirafarigPalette: INCLUDE "gfx/pokemon/girafarig/normal.pal" +GirafarigShinyPalette: INCLUDE "gfx/pokemon/girafarig/shiny.pal" +PinecoPalette: INCLUDE "gfx/pokemon/pineco/normal.pal" +PinecoShinyPalette: INCLUDE "gfx/pokemon/pineco/shiny.pal" +ForretressPalette: INCLUDE "gfx/pokemon/forretress/normal.pal" +ForretressShinyPalette: INCLUDE "gfx/pokemon/forretress/shiny.pal" +DunsparcePalette: INCLUDE "gfx/pokemon/dunsparce/normal.pal" +DunsparceShinyPalette: INCLUDE "gfx/pokemon/dunsparce/shiny.pal" +GligarPalette: INCLUDE "gfx/pokemon/gligar/normal.pal" +GligarShinyPalette: INCLUDE "gfx/pokemon/gligar/shiny.pal" +SteelixPalette: INCLUDE "gfx/pokemon/steelix/normal.pal" +SteelixShinyPalette: INCLUDE "gfx/pokemon/steelix/shiny.pal" +SnubbullPalette: INCLUDE "gfx/pokemon/snubbull/normal.pal" +SnubbullShinyPalette: INCLUDE "gfx/pokemon/snubbull/shiny.pal" +GranbullPalette: INCLUDE "gfx/pokemon/granbull/normal.pal" +GranbullShinyPalette: INCLUDE "gfx/pokemon/granbull/shiny.pal" +QwilfishPalette: INCLUDE "gfx/pokemon/qwilfish/normal.pal" +QwilfishShinyPalette: INCLUDE "gfx/pokemon/qwilfish/shiny.pal" +ScizorPalette: INCLUDE "gfx/pokemon/scizor/normal.pal" +ScizorShinyPalette: INCLUDE "gfx/pokemon/scizor/shiny.pal" +ShucklePalette: INCLUDE "gfx/pokemon/shuckle/normal.pal" +ShuckleShinyPalette: INCLUDE "gfx/pokemon/shuckle/shiny.pal" +HeracrossPalette: INCLUDE "gfx/pokemon/heracross/normal.pal" +HeracrossShinyPalette: INCLUDE "gfx/pokemon/heracross/shiny.pal" +SneaselPalette: INCLUDE "gfx/pokemon/sneasel/normal.pal" +SneaselShinyPalette: INCLUDE "gfx/pokemon/sneasel/shiny.pal" +TeddiursaPalette: INCLUDE "gfx/pokemon/teddiursa/normal.pal" +TeddiursaShinyPalette: INCLUDE "gfx/pokemon/teddiursa/shiny.pal" +UrsaringPalette: INCLUDE "gfx/pokemon/ursaring/normal.pal" +UrsaringShinyPalette: INCLUDE "gfx/pokemon/ursaring/shiny.pal" +SlugmaPalette: INCLUDE "gfx/pokemon/slugma/normal.pal" +SlugmaShinyPalette: INCLUDE "gfx/pokemon/slugma/shiny.pal" +MagcargoPalette: INCLUDE "gfx/pokemon/magcargo/normal.pal" +MagcargoShinyPalette: INCLUDE "gfx/pokemon/magcargo/shiny.pal" +SwinubPalette: INCLUDE "gfx/pokemon/swinub/normal.pal" +SwinubShinyPalette: INCLUDE "gfx/pokemon/swinub/shiny.pal" +PiloswinePalette: INCLUDE "gfx/pokemon/piloswine/normal.pal" +PiloswineShinyPalette: INCLUDE "gfx/pokemon/piloswine/shiny.pal" +CorsolaPalette: INCLUDE "gfx/pokemon/corsola/normal.pal" +CorsolaShinyPalette: INCLUDE "gfx/pokemon/corsola/shiny.pal" +RemoraidPalette: INCLUDE "gfx/pokemon/remoraid/normal.pal" +RemoraidShinyPalette: INCLUDE "gfx/pokemon/remoraid/shiny.pal" +OctilleryPalette: INCLUDE "gfx/pokemon/octillery/normal.pal" +OctilleryShinyPalette: INCLUDE "gfx/pokemon/octillery/shiny.pal" +DelibirdPalette: INCLUDE "gfx/pokemon/delibird/normal.pal" +DelibirdShinyPalette: INCLUDE "gfx/pokemon/delibird/shiny.pal" +MantinePalette: INCLUDE "gfx/pokemon/mantine/normal.pal" +MantineShinyPalette: INCLUDE "gfx/pokemon/mantine/shiny.pal" +SkarmoryPalette: INCLUDE "gfx/pokemon/skarmory/normal.pal" +SkarmoryShinyPalette: INCLUDE "gfx/pokemon/skarmory/shiny.pal" +HoundourPalette: INCLUDE "gfx/pokemon/houndour/normal.pal" +HoundourShinyPalette: INCLUDE "gfx/pokemon/houndour/shiny.pal" +HoundoomPalette: INCLUDE "gfx/pokemon/houndoom/normal.pal" +HoundoomShinyPalette: INCLUDE "gfx/pokemon/houndoom/shiny.pal" +KingdraPalette: INCLUDE "gfx/pokemon/kingdra/normal.pal" +KingdraShinyPalette: INCLUDE "gfx/pokemon/kingdra/shiny.pal" +PhanpyPalette: INCLUDE "gfx/pokemon/phanpy/normal.pal" +PhanpyShinyPalette: INCLUDE "gfx/pokemon/phanpy/shiny.pal" +DonphanPalette: INCLUDE "gfx/pokemon/donphan/normal.pal" +DonphanShinyPalette: INCLUDE "gfx/pokemon/donphan/shiny.pal" +Porygon2Palette: INCLUDE "gfx/pokemon/porygon2/normal.pal" +Porygon2ShinyPalette: INCLUDE "gfx/pokemon/porygon2/shiny.pal" +StantlerPalette: INCLUDE "gfx/pokemon/stantler/normal.pal" +StantlerShinyPalette: INCLUDE "gfx/pokemon/stantler/shiny.pal" +SmearglePalette: INCLUDE "gfx/pokemon/smeargle/normal.pal" +SmeargleShinyPalette: INCLUDE "gfx/pokemon/smeargle/shiny.pal" +TyroguePalette: INCLUDE "gfx/pokemon/tyrogue/normal.pal" +TyrogueShinyPalette: INCLUDE "gfx/pokemon/tyrogue/shiny.pal" +HitmontopPalette: INCLUDE "gfx/pokemon/hitmontop/normal.pal" +HitmontopShinyPalette: INCLUDE "gfx/pokemon/hitmontop/shiny.pal" +SmoochumPalette: INCLUDE "gfx/pokemon/smoochum/normal.pal" +SmoochumShinyPalette: INCLUDE "gfx/pokemon/smoochum/shiny.pal" +ElekidPalette: INCLUDE "gfx/pokemon/elekid/normal.pal" +ElekidShinyPalette: INCLUDE "gfx/pokemon/elekid/shiny.pal" +MagbyPalette: INCLUDE "gfx/pokemon/magby/normal.pal" +MagbyShinyPalette: INCLUDE "gfx/pokemon/magby/shiny.pal" +MiltankPalette: INCLUDE "gfx/pokemon/miltank/normal.pal" +MiltankShinyPalette: INCLUDE "gfx/pokemon/miltank/shiny.pal" +BlisseyPalette: INCLUDE "gfx/pokemon/blissey/normal.pal" +BlisseyShinyPalette: INCLUDE "gfx/pokemon/blissey/shiny.pal" +RaikouPalette: INCLUDE "gfx/pokemon/raikou/normal.pal" +RaikouShinyPalette: INCLUDE "gfx/pokemon/raikou/shiny.pal" +EnteiPalette: INCLUDE "gfx/pokemon/entei/normal.pal" +EnteiShinyPalette: INCLUDE "gfx/pokemon/entei/shiny.pal" +SuicunePalette: INCLUDE "gfx/pokemon/suicune/normal.pal" +SuicuneShinyPalette: INCLUDE "gfx/pokemon/suicune/shiny.pal" +LarvitarPalette: INCLUDE "gfx/pokemon/larvitar/normal.pal" +LarvitarShinyPalette: INCLUDE "gfx/pokemon/larvitar/shiny.pal" +PupitarPalette: INCLUDE "gfx/pokemon/pupitar/normal.pal" +PupitarShinyPalette: INCLUDE "gfx/pokemon/pupitar/shiny.pal" +TyranitarPalette: INCLUDE "gfx/pokemon/tyranitar/normal.pal" +TyranitarShinyPalette: INCLUDE "gfx/pokemon/tyranitar/shiny.pal" +LugiaPalette: INCLUDE "gfx/pokemon/lugia/normal.pal" +LugiaShinyPalette: INCLUDE "gfx/pokemon/lugia/shiny.pal" +HoOhPalette: INCLUDE "gfx/pokemon/ho_oh/normal.pal" +HoOhShinyPalette: INCLUDE "gfx/pokemon/ho_oh/shiny.pal" +CelebiPalette: INCLUDE "gfx/pokemon/celebi/normal.pal" +CelebiShinyPalette: INCLUDE "gfx/pokemon/celebi/shiny.pal" + +; 252 + RGB 30, 26, 11 + RGB 23, 16, 00 +; 252 shiny + RGB 30, 26, 11 + RGB 23, 16, 00 + +; Egg + RGB 30, 26, 11 + RGB 23, 16, 00 +; Egg shiny + RGB 30, 26, 11 + RGB 23, 16, 00 + +; 254 + RGB 30, 26, 11 + RGB 23, 16, 00 +; 254 shiny + RGB 30, 26, 11 + RGB 23, 16, 00 + +; 255 + RGB 23, 23, 23 + RGB 17, 17, 17 +; 255 shiny + RGB 23, 23, 23 + RGB 17, 17, 17 + +; b0ce diff --git a/gfx/pokemon/paras/anim0.asm b/gfx/pokemon/paras/anim0.asm new file mode 100644 index 000000000..6fcc935e9 --- /dev/null +++ b/gfx/pokemon/paras/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 10 + frame 1, 14 + frame 2, 32 + frame 1, 08 + endanim +; 0xd0b4f diff --git a/gfx/pokemon/paras/anim1.asm b/gfx/pokemon/paras/anim1.asm new file mode 100644 index 000000000..3ce495f04 --- /dev/null +++ b/gfx/pokemon/paras/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1a8b diff --git a/gfx/pokemon/paras/back.2bpp.lz.b5a4d1e2 b/gfx/pokemon/paras/back.2bpp.lz.b5a4d1e2 new file mode 100644 index 000000000..d6c3d4a62 Binary files /dev/null and b/gfx/pokemon/paras/back.2bpp.lz.b5a4d1e2 differ diff --git a/gfx/pokemon/paras/back.png b/gfx/pokemon/paras/back.png new file mode 100644 index 000000000..4962bde38 Binary files /dev/null and b/gfx/pokemon/paras/back.png differ diff --git a/gfx/pokemon/paras/front.animated.2bpp.lz.37a2c2f8 b/gfx/pokemon/paras/front.animated.2bpp.lz.37a2c2f8 new file mode 100644 index 000000000..927c831d0 Binary files /dev/null and b/gfx/pokemon/paras/front.animated.2bpp.lz.37a2c2f8 differ diff --git a/gfx/pokemon/paras/front.png b/gfx/pokemon/paras/front.png new file mode 100644 index 000000000..9e67fdc9e Binary files /dev/null and b/gfx/pokemon/paras/front.png differ diff --git a/gfx/pokemon/paras/shiny.pal b/gfx/pokemon/paras/shiny.pal new file mode 100644 index 000000000..7a63c68d7 --- /dev/null +++ b/gfx/pokemon/paras/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 19, 03 + RGB 14, 13, 01 + diff --git a/gfx/pokemon/parasect/anim0.asm b/gfx/pokemon/parasect/anim0.asm new file mode 100644 index 000000000..e9e253cee --- /dev/null +++ b/gfx/pokemon/parasect/anim0.asm @@ -0,0 +1,13 @@ + setrepeat 2 + frame 1, 08 + frame 2, 10 + frame 1, 08 + frame 0, 10 + dorepeat 1 + frame 4, 20 + setrepeat 3 + frame 0, 04 + frame 4, 04 + dorepeat 8 + endanim +; 0xd0b66 diff --git a/gfx/pokemon/parasect/anim1.asm b/gfx/pokemon/parasect/anim1.asm new file mode 100644 index 000000000..8275690a6 --- /dev/null +++ b/gfx/pokemon/parasect/anim1.asm @@ -0,0 +1,5 @@ + frame 5, 30 + frame 0, 05 + frame 4, 20 + endanim +; 0xd1a92 diff --git a/gfx/pokemon/parasect/back.2bpp.lz.ed08ef08 b/gfx/pokemon/parasect/back.2bpp.lz.ed08ef08 new file mode 100644 index 000000000..a63677ff7 Binary files /dev/null and b/gfx/pokemon/parasect/back.2bpp.lz.ed08ef08 differ diff --git a/gfx/pokemon/parasect/back.png b/gfx/pokemon/parasect/back.png new file mode 100644 index 000000000..c0707e7b5 Binary files /dev/null and b/gfx/pokemon/parasect/back.png differ diff --git a/gfx/pokemon/parasect/front.animated.2bpp.lz.f78f9f36 b/gfx/pokemon/parasect/front.animated.2bpp.lz.f78f9f36 new file mode 100644 index 000000000..f1743d07e Binary files /dev/null and b/gfx/pokemon/parasect/front.animated.2bpp.lz.f78f9f36 differ diff --git a/gfx/pokemon/parasect/front.png b/gfx/pokemon/parasect/front.png new file mode 100644 index 000000000..165d0a012 Binary files /dev/null and b/gfx/pokemon/parasect/front.png differ diff --git a/gfx/pokemon/parasect/shiny.pal b/gfx/pokemon/parasect/shiny.pal new file mode 100644 index 000000000..343a793bb --- /dev/null +++ b/gfx/pokemon/parasect/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 21, 09 + RGB 18, 16, 05 + diff --git a/gfx/pokemon/persian/anim0.asm b/gfx/pokemon/persian/anim0.asm new file mode 100644 index 000000000..ae771c09c --- /dev/null +++ b/gfx/pokemon/persian/anim0.asm @@ -0,0 +1,10 @@ + frame 4, 12 + frame 1, 32 + frame 0, 12 + frame 2, 10 + frame 3, 08 + frame 2, 10 + frame 3, 08 + frame 2, 06 + endanim +; 0xd0bd0 diff --git a/gfx/pokemon/persian/anim1.asm b/gfx/pokemon/persian/anim1.asm new file mode 100644 index 000000000..ca9129bfa --- /dev/null +++ b/gfx/pokemon/persian/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd1ad0 diff --git a/gfx/pokemon/persian/back.2bpp.lz.0e1c1c9a b/gfx/pokemon/persian/back.2bpp.lz.0e1c1c9a new file mode 100644 index 000000000..e615d47fb Binary files /dev/null and b/gfx/pokemon/persian/back.2bpp.lz.0e1c1c9a differ diff --git a/gfx/pokemon/persian/back.png b/gfx/pokemon/persian/back.png new file mode 100644 index 000000000..476964b80 Binary files /dev/null and b/gfx/pokemon/persian/back.png differ diff --git a/gfx/pokemon/persian/front.animated.2bpp.lz.0e6a2521 b/gfx/pokemon/persian/front.animated.2bpp.lz.0e6a2521 new file mode 100644 index 000000000..1f13a0cca Binary files /dev/null and b/gfx/pokemon/persian/front.animated.2bpp.lz.0e6a2521 differ diff --git a/gfx/pokemon/persian/front.png b/gfx/pokemon/persian/front.png new file mode 100644 index 000000000..e9a2be761 Binary files /dev/null and b/gfx/pokemon/persian/front.png differ diff --git a/gfx/pokemon/persian/shiny.pal b/gfx/pokemon/persian/shiny.pal new file mode 100644 index 000000000..6ede92a01 --- /dev/null +++ b/gfx/pokemon/persian/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 28, 10 + RGB 28, 09, 27 + diff --git a/gfx/pokemon/phanpy/anim0.asm b/gfx/pokemon/phanpy/anim0.asm new file mode 100644 index 000000000..7ec513762 --- /dev/null +++ b/gfx/pokemon/phanpy/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 10 + frame 2, 10 + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 3 + endanim +; 0xd157e diff --git a/gfx/pokemon/phanpy/anim1.asm b/gfx/pokemon/phanpy/anim1.asm new file mode 100644 index 000000000..43148da49 --- /dev/null +++ b/gfx/pokemon/phanpy/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2160 diff --git a/gfx/pokemon/phanpy/back.2bpp.lz.a5c509b8 b/gfx/pokemon/phanpy/back.2bpp.lz.a5c509b8 new file mode 100644 index 000000000..cef1bf442 Binary files /dev/null and b/gfx/pokemon/phanpy/back.2bpp.lz.a5c509b8 differ diff --git a/gfx/pokemon/phanpy/back.png b/gfx/pokemon/phanpy/back.png new file mode 100644 index 000000000..5efafc74b Binary files /dev/null and b/gfx/pokemon/phanpy/back.png differ diff --git a/gfx/pokemon/phanpy/front.animated.2bpp.lz.53b49445 b/gfx/pokemon/phanpy/front.animated.2bpp.lz.53b49445 new file mode 100644 index 000000000..d919487b8 Binary files /dev/null and b/gfx/pokemon/phanpy/front.animated.2bpp.lz.53b49445 differ diff --git a/gfx/pokemon/phanpy/front.png b/gfx/pokemon/phanpy/front.png new file mode 100644 index 000000000..e2e0eeb14 Binary files /dev/null and b/gfx/pokemon/phanpy/front.png differ diff --git a/gfx/pokemon/phanpy/shiny.pal b/gfx/pokemon/phanpy/shiny.pal new file mode 100644 index 000000000..64b15d904 --- /dev/null +++ b/gfx/pokemon/phanpy/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 24, 25 + RGB 24, 01, 06 + diff --git a/gfx/pokemon/pic_pointers.asm b/gfx/pokemon/pic_pointers.asm new file mode 100644 index 000000000..58631e09a --- /dev/null +++ b/gfx/pokemon/pic_pointers.asm @@ -0,0 +1,511 @@ +PicPointers:: +; entries correspond to constants/pokemon_constants.asm, two apiece + dba_pic BulbasaurFrontpic + dba_pic BulbasaurBackpic + dba_pic IvysaurFrontpic + dba_pic IvysaurBackpic + dba_pic VenusaurFrontpic + dba_pic VenusaurBackpic + dba_pic CharmanderFrontpic + dba_pic CharmanderBackpic + dba_pic CharmeleonFrontpic + dba_pic CharmeleonBackpic + dba_pic CharizardFrontpic + dba_pic CharizardBackpic + dba_pic SquirtleFrontpic + dba_pic SquirtleBackpic + dba_pic WartortleFrontpic + dba_pic WartortleBackpic + dba_pic BlastoiseFrontpic + dba_pic BlastoiseBackpic + dba_pic CaterpieFrontpic + dba_pic CaterpieBackpic + dba_pic MetapodFrontpic + dba_pic MetapodBackpic + dba_pic ButterfreeFrontpic + dba_pic ButterfreeBackpic + dba_pic WeedleFrontpic + dba_pic WeedleBackpic + dba_pic KakunaFrontpic + dba_pic KakunaBackpic + dba_pic BeedrillFrontpic + dba_pic BeedrillBackpic + dba_pic PidgeyFrontpic + dba_pic PidgeyBackpic + dba_pic PidgeottoFrontpic + dba_pic PidgeottoBackpic + dba_pic PidgeotFrontpic + dba_pic PidgeotBackpic + dba_pic RattataFrontpic + dba_pic RattataBackpic + dba_pic RaticateFrontpic + dba_pic RaticateBackpic + dba_pic SpearowFrontpic + dba_pic SpearowBackpic + dba_pic FearowFrontpic + dba_pic FearowBackpic + dba_pic EkansFrontpic + dba_pic EkansBackpic + dba_pic ArbokFrontpic + dba_pic ArbokBackpic + dba_pic PikachuFrontpic + dba_pic PikachuBackpic + dba_pic RaichuFrontpic + dba_pic RaichuBackpic + dba_pic SandshrewFrontpic + dba_pic SandshrewBackpic + dba_pic SandslashFrontpic + dba_pic SandslashBackpic + dba_pic NidoranFFrontpic + dba_pic NidoranFBackpic + dba_pic NidorinaFrontpic + dba_pic NidorinaBackpic + dba_pic NidoqueenFrontpic + dba_pic NidoqueenBackpic + dba_pic NidoranMFrontpic + dba_pic NidoranMBackpic + dba_pic NidorinoFrontpic + dba_pic NidorinoBackpic + dba_pic NidokingFrontpic + dba_pic NidokingBackpic + dba_pic ClefairyFrontpic + dba_pic ClefairyBackpic + dba_pic ClefableFrontpic + dba_pic ClefableBackpic + dba_pic VulpixFrontpic + dba_pic VulpixBackpic + dba_pic NinetalesFrontpic + dba_pic NinetalesBackpic + dba_pic JigglypuffFrontpic + dba_pic JigglypuffBackpic + dba_pic WigglytuffFrontpic + dba_pic WigglytuffBackpic + dba_pic ZubatFrontpic + dba_pic ZubatBackpic + dba_pic GolbatFrontpic + dba_pic GolbatBackpic + dba_pic OddishFrontpic + dba_pic OddishBackpic + dba_pic GloomFrontpic + dba_pic GloomBackpic + dba_pic VileplumeFrontpic + dba_pic VileplumeBackpic + dba_pic ParasFrontpic + dba_pic ParasBackpic + dba_pic ParasectFrontpic + dba_pic ParasectBackpic + dba_pic VenonatFrontpic + dba_pic VenonatBackpic + dba_pic VenomothFrontpic + dba_pic VenomothBackpic + dba_pic DiglettFrontpic + dba_pic DiglettBackpic + dba_pic DugtrioFrontpic + dba_pic DugtrioBackpic + dba_pic MeowthFrontpic + dba_pic MeowthBackpic + dba_pic PersianFrontpic + dba_pic PersianBackpic + dba_pic PsyduckFrontpic + dba_pic PsyduckBackpic + dba_pic GolduckFrontpic + dba_pic GolduckBackpic + dba_pic MankeyFrontpic + dba_pic MankeyBackpic + dba_pic PrimeapeFrontpic + dba_pic PrimeapeBackpic + dba_pic GrowlitheFrontpic + dba_pic GrowlitheBackpic + dba_pic ArcanineFrontpic + dba_pic ArcanineBackpic + dba_pic PoliwagFrontpic + dba_pic PoliwagBackpic + dba_pic PoliwhirlFrontpic + dba_pic PoliwhirlBackpic + dba_pic PoliwrathFrontpic + dba_pic PoliwrathBackpic + dba_pic AbraFrontpic + dba_pic AbraBackpic + dba_pic KadabraFrontpic + dba_pic KadabraBackpic + dba_pic AlakazamFrontpic + dba_pic AlakazamBackpic + dba_pic MachopFrontpic + dba_pic MachopBackpic + dba_pic MachokeFrontpic + dba_pic MachokeBackpic + dba_pic MachampFrontpic + dba_pic MachampBackpic + dba_pic BellsproutFrontpic + dba_pic BellsproutBackpic + dba_pic WeepinbellFrontpic + dba_pic WeepinbellBackpic + dba_pic VictreebelFrontpic + dba_pic VictreebelBackpic + dba_pic TentacoolFrontpic + dba_pic TentacoolBackpic + dba_pic TentacruelFrontpic + dba_pic TentacruelBackpic + dba_pic GeodudeFrontpic + dba_pic GeodudeBackpic + dba_pic GravelerFrontpic + dba_pic GravelerBackpic + dba_pic GolemFrontpic + dba_pic GolemBackpic + dba_pic PonytaFrontpic + dba_pic PonytaBackpic + dba_pic RapidashFrontpic + dba_pic RapidashBackpic + dba_pic SlowpokeFrontpic + dba_pic SlowpokeBackpic + dba_pic SlowbroFrontpic + dba_pic SlowbroBackpic + dba_pic MagnemiteFrontpic + dba_pic MagnemiteBackpic + dba_pic MagnetonFrontpic + dba_pic MagnetonBackpic + dba_pic FarfetchDFrontpic + dba_pic FarfetchDBackpic + dba_pic DoduoFrontpic + dba_pic DoduoBackpic + dba_pic DodrioFrontpic + dba_pic DodrioBackpic + dba_pic SeelFrontpic + dba_pic SeelBackpic + dba_pic DewgongFrontpic + dba_pic DewgongBackpic + dba_pic GrimerFrontpic + dba_pic GrimerBackpic + dba_pic MukFrontpic + dba_pic MukBackpic + dba_pic ShellderFrontpic + dba_pic ShellderBackpic + dba_pic CloysterFrontpic + dba_pic CloysterBackpic + dba_pic GastlyFrontpic + dba_pic GastlyBackpic + dba_pic HaunterFrontpic + dba_pic HaunterBackpic + dba_pic GengarFrontpic + dba_pic GengarBackpic + dba_pic OnixFrontpic + dba_pic OnixBackpic + dba_pic DrowzeeFrontpic + dba_pic DrowzeeBackpic + dba_pic HypnoFrontpic + dba_pic HypnoBackpic + dba_pic KrabbyFrontpic + dba_pic KrabbyBackpic + dba_pic KinglerFrontpic + dba_pic KinglerBackpic + dba_pic VoltorbFrontpic + dba_pic VoltorbBackpic + dba_pic ElectrodeFrontpic + dba_pic ElectrodeBackpic + dba_pic ExeggcuteFrontpic + dba_pic ExeggcuteBackpic + dba_pic ExeggutorFrontpic + dba_pic ExeggutorBackpic + dba_pic CuboneFrontpic + dba_pic CuboneBackpic + dba_pic MarowakFrontpic + dba_pic MarowakBackpic + dba_pic HitmonleeFrontpic + dba_pic HitmonleeBackpic + dba_pic HitmonchanFrontpic + dba_pic HitmonchanBackpic + dba_pic LickitungFrontpic + dba_pic LickitungBackpic + dba_pic KoffingFrontpic + dba_pic KoffingBackpic + dba_pic WeezingFrontpic + dba_pic WeezingBackpic + dba_pic RhyhornFrontpic + dba_pic RhyhornBackpic + dba_pic RhydonFrontpic + dba_pic RhydonBackpic + dba_pic ChanseyFrontpic + dba_pic ChanseyBackpic + dba_pic TangelaFrontpic + dba_pic TangelaBackpic + dba_pic KangaskhanFrontpic + dba_pic KangaskhanBackpic + dba_pic HorseaFrontpic + dba_pic HorseaBackpic + dba_pic SeadraFrontpic + dba_pic SeadraBackpic + dba_pic GoldeenFrontpic + dba_pic GoldeenBackpic + dba_pic SeakingFrontpic + dba_pic SeakingBackpic + dba_pic StaryuFrontpic + dba_pic StaryuBackpic + dba_pic StarmieFrontpic + dba_pic StarmieBackpic + dba_pic MrMimeFrontpic + dba_pic MrMimeBackpic + dba_pic ScytherFrontpic + dba_pic ScytherBackpic + dba_pic JynxFrontpic + dba_pic JynxBackpic + dba_pic ElectabuzzFrontpic + dba_pic ElectabuzzBackpic + dba_pic MagmarFrontpic + dba_pic MagmarBackpic + dba_pic PinsirFrontpic + dba_pic PinsirBackpic + dba_pic TaurosFrontpic + dba_pic TaurosBackpic + dba_pic MagikarpFrontpic + dba_pic MagikarpBackpic + dba_pic GyaradosFrontpic + dba_pic GyaradosBackpic + dba_pic LaprasFrontpic + dba_pic LaprasBackpic + dba_pic DittoFrontpic + dba_pic DittoBackpic + dba_pic EeveeFrontpic + dba_pic EeveeBackpic + dba_pic VaporeonFrontpic + dba_pic VaporeonBackpic + dba_pic JolteonFrontpic + dba_pic JolteonBackpic + dba_pic FlareonFrontpic + dba_pic FlareonBackpic + dba_pic PorygonFrontpic + dba_pic PorygonBackpic + dba_pic OmanyteFrontpic + dba_pic OmanyteBackpic + dba_pic OmastarFrontpic + dba_pic OmastarBackpic + dba_pic KabutoFrontpic + dba_pic KabutoBackpic + dba_pic KabutopsFrontpic + dba_pic KabutopsBackpic + dba_pic AerodactylFrontpic + dba_pic AerodactylBackpic + dba_pic SnorlaxFrontpic + dba_pic SnorlaxBackpic + dba_pic ArticunoFrontpic + dba_pic ArticunoBackpic + dba_pic ZapdosFrontpic + dba_pic ZapdosBackpic + dba_pic MoltresFrontpic + dba_pic MoltresBackpic + dba_pic DratiniFrontpic + dba_pic DratiniBackpic + dba_pic DragonairFrontpic + dba_pic DragonairBackpic + dba_pic DragoniteFrontpic + dba_pic DragoniteBackpic + dba_pic MewtwoFrontpic + dba_pic MewtwoBackpic + dba_pic MewFrontpic + dba_pic MewBackpic + dba_pic ChikoritaFrontpic + dba_pic ChikoritaBackpic + dba_pic BayleefFrontpic + dba_pic BayleefBackpic + dba_pic MeganiumFrontpic + dba_pic MeganiumBackpic + dba_pic CyndaquilFrontpic + dba_pic CyndaquilBackpic + dba_pic QuilavaFrontpic + dba_pic QuilavaBackpic + dba_pic TyphlosionFrontpic + dba_pic TyphlosionBackpic + dba_pic TotodileFrontpic + dba_pic TotodileBackpic + dba_pic CroconawFrontpic + dba_pic CroconawBackpic + dba_pic FeraligatrFrontpic + dba_pic FeraligatrBackpic + dba_pic SentretFrontpic + dba_pic SentretBackpic + dba_pic FurretFrontpic + dba_pic FurretBackpic + dba_pic HoothootFrontpic + dba_pic HoothootBackpic + dba_pic NoctowlFrontpic + dba_pic NoctowlBackpic + dba_pic LedybaFrontpic + dba_pic LedybaBackpic + dba_pic LedianFrontpic + dba_pic LedianBackpic + dba_pic SpinarakFrontpic + dba_pic SpinarakBackpic + dba_pic AriadosFrontpic + dba_pic AriadosBackpic + dba_pic CrobatFrontpic + dba_pic CrobatBackpic + dba_pic ChinchouFrontpic + dba_pic ChinchouBackpic + dba_pic LanturnFrontpic + dba_pic LanturnBackpic + dba_pic PichuFrontpic + dba_pic PichuBackpic + dba_pic CleffaFrontpic + dba_pic CleffaBackpic + dba_pic IgglybuffFrontpic + dba_pic IgglybuffBackpic + dba_pic TogepiFrontpic + dba_pic TogepiBackpic + dba_pic TogeticFrontpic + dba_pic TogeticBackpic + dba_pic NatuFrontpic + dba_pic NatuBackpic + dba_pic XatuFrontpic + dba_pic XatuBackpic + dba_pic MareepFrontpic + dba_pic MareepBackpic + dba_pic FlaaffyFrontpic + dba_pic FlaaffyBackpic + dba_pic AmpharosFrontpic + dba_pic AmpharosBackpic + dba_pic BellossomFrontpic + dba_pic BellossomBackpic + dba_pic MarillFrontpic + dba_pic MarillBackpic + dba_pic AzumarillFrontpic + dba_pic AzumarillBackpic + dba_pic SudowoodoFrontpic + dba_pic SudowoodoBackpic + dba_pic PolitoedFrontpic + dba_pic PolitoedBackpic + dba_pic HoppipFrontpic + dba_pic HoppipBackpic + dba_pic SkiploomFrontpic + dba_pic SkiploomBackpic + dba_pic JumpluffFrontpic + dba_pic JumpluffBackpic + dba_pic AipomFrontpic + dba_pic AipomBackpic + dba_pic SunkernFrontpic + dba_pic SunkernBackpic + dba_pic SunfloraFrontpic + dba_pic SunfloraBackpic + dba_pic YanmaFrontpic + dba_pic YanmaBackpic + dba_pic WooperFrontpic + dba_pic WooperBackpic + dba_pic QuagsireFrontpic + dba_pic QuagsireBackpic + dba_pic EspeonFrontpic + dba_pic EspeonBackpic + dba_pic UmbreonFrontpic + dba_pic UmbreonBackpic + dba_pic MurkrowFrontpic + dba_pic MurkrowBackpic + dba_pic SlowkingFrontpic + dba_pic SlowkingBackpic + dba_pic MisdreavusFrontpic + dba_pic MisdreavusBackpic + + ; Unown pics have their own table. See UnownPicPointers + dbw -1, -1 + dbw -1, -1 + + dba_pic WobbuffetFrontpic + dba_pic WobbuffetBackpic + dba_pic GirafarigFrontpic + dba_pic GirafarigBackpic + dba_pic PinecoFrontpic + dba_pic PinecoBackpic + dba_pic ForretressFrontpic + dba_pic ForretressBackpic + dba_pic DunsparceFrontpic + dba_pic DunsparceBackpic + dba_pic GligarFrontpic + dba_pic GligarBackpic + dba_pic SteelixFrontpic + dba_pic SteelixBackpic + dba_pic SnubbullFrontpic + dba_pic SnubbullBackpic + dba_pic GranbullFrontpic + dba_pic GranbullBackpic + dba_pic QwilfishFrontpic + dba_pic QwilfishBackpic + dba_pic ScizorFrontpic + dba_pic ScizorBackpic + dba_pic ShuckleFrontpic + dba_pic ShuckleBackpic + dba_pic HeracrossFrontpic + dba_pic HeracrossBackpic + dba_pic SneaselFrontpic + dba_pic SneaselBackpic + dba_pic TeddiursaFrontpic + dba_pic TeddiursaBackpic + dba_pic UrsaringFrontpic + dba_pic UrsaringBackpic + dba_pic SlugmaFrontpic + dba_pic SlugmaBackpic + dba_pic MagcargoFrontpic + dba_pic MagcargoBackpic + dba_pic SwinubFrontpic + dba_pic SwinubBackpic + dba_pic PiloswineFrontpic + dba_pic PiloswineBackpic + dba_pic CorsolaFrontpic + dba_pic CorsolaBackpic + dba_pic RemoraidFrontpic + dba_pic RemoraidBackpic + dba_pic OctilleryFrontpic + dba_pic OctilleryBackpic + dba_pic DelibirdFrontpic + dba_pic DelibirdBackpic + dba_pic MantineFrontpic + dba_pic MantineBackpic + dba_pic SkarmoryFrontpic + dba_pic SkarmoryBackpic + dba_pic HoundourFrontpic + dba_pic HoundourBackpic + dba_pic HoundoomFrontpic + dba_pic HoundoomBackpic + dba_pic KingdraFrontpic + dba_pic KingdraBackpic + dba_pic PhanpyFrontpic + dba_pic PhanpyBackpic + dba_pic DonphanFrontpic + dba_pic DonphanBackpic + dba_pic Porygon2Frontpic + dba_pic Porygon2Backpic + dba_pic StantlerFrontpic + dba_pic StantlerBackpic + dba_pic SmeargleFrontpic + dba_pic SmeargleBackpic + dba_pic TyrogueFrontpic + dba_pic TyrogueBackpic + dba_pic HitmontopFrontpic + dba_pic HitmontopBackpic + dba_pic SmoochumFrontpic + dba_pic SmoochumBackpic + dba_pic ElekidFrontpic + dba_pic ElekidBackpic + dba_pic MagbyFrontpic + dba_pic MagbyBackpic + dba_pic MiltankFrontpic + dba_pic MiltankBackpic + dba_pic BlisseyFrontpic + dba_pic BlisseyBackpic + dba_pic RaikouFrontpic + dba_pic RaikouBackpic + dba_pic EnteiFrontpic + dba_pic EnteiBackpic + dba_pic SuicuneFrontpic + dba_pic SuicuneBackpic + dba_pic LarvitarFrontpic + dba_pic LarvitarBackpic + dba_pic PupitarFrontpic + dba_pic PupitarBackpic + dba_pic TyranitarFrontpic + dba_pic TyranitarBackpic + dba_pic LugiaFrontpic + dba_pic LugiaBackpic + dba_pic HoOhFrontpic + dba_pic HoOhBackpic + dba_pic CelebiFrontpic + dba_pic CelebiBackpic + dbw -1, -1 ; unused + dbw -1, -1 ; unused + dba_pic EggPic + dbw -1, -1 ; unused diff --git a/gfx/pokemon/pichu/anim0.asm b/gfx/pokemon/pichu/anim0.asm new file mode 100644 index 000000000..50a1ae73c --- /dev/null +++ b/gfx/pokemon/pichu/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 1, 22 + frame 2, 12 + frame 4, 08 + endanim +; 0xd1289 diff --git a/gfx/pokemon/pichu/anim1.asm b/gfx/pokemon/pichu/anim1.asm new file mode 100644 index 000000000..dd39adcab --- /dev/null +++ b/gfx/pokemon/pichu/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 04 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1f5f diff --git a/gfx/pokemon/pichu/back.2bpp.lz.c5580983 b/gfx/pokemon/pichu/back.2bpp.lz.c5580983 new file mode 100644 index 000000000..61ab083b3 Binary files /dev/null and b/gfx/pokemon/pichu/back.2bpp.lz.c5580983 differ diff --git a/gfx/pokemon/pichu/back.png b/gfx/pokemon/pichu/back.png new file mode 100644 index 000000000..830cf34f4 Binary files /dev/null and b/gfx/pokemon/pichu/back.png differ diff --git a/gfx/pokemon/pichu/front.animated.2bpp.lz.9c1c3bef b/gfx/pokemon/pichu/front.animated.2bpp.lz.9c1c3bef new file mode 100644 index 000000000..06712d244 Binary files /dev/null and b/gfx/pokemon/pichu/front.animated.2bpp.lz.9c1c3bef differ diff --git a/gfx/pokemon/pichu/front.png b/gfx/pokemon/pichu/front.png new file mode 100644 index 000000000..1557f73fb Binary files /dev/null and b/gfx/pokemon/pichu/front.png differ diff --git a/gfx/pokemon/pichu/shiny.pal b/gfx/pokemon/pichu/shiny.pal new file mode 100644 index 000000000..a89172f54 --- /dev/null +++ b/gfx/pokemon/pichu/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 17, 00 + RGB 20, 02, 11 + diff --git a/gfx/pokemon/pidgeot/anim0.asm b/gfx/pokemon/pidgeot/anim0.asm new file mode 100644 index 000000000..34d5d3a98 --- /dev/null +++ b/gfx/pokemon/pidgeot/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 12 + frame 1, 32 + setrepeat 2 + frame 0, 06 + frame 2, 06 + dorepeat 3 + endanim +; 0xd0987 diff --git a/gfx/pokemon/pidgeot/anim1.asm b/gfx/pokemon/pidgeot/anim1.asm new file mode 100644 index 000000000..6ba60e83e --- /dev/null +++ b/gfx/pokemon/pidgeot/anim1.asm @@ -0,0 +1,9 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + frame 2, 06 + frame 0, 06 + frame 2, 06 + endanim +; 0xd1961 diff --git a/gfx/pokemon/pidgeot/back.2bpp.lz.7d9e44a5 b/gfx/pokemon/pidgeot/back.2bpp.lz.7d9e44a5 new file mode 100644 index 000000000..a464dd7d1 Binary files /dev/null and b/gfx/pokemon/pidgeot/back.2bpp.lz.7d9e44a5 differ diff --git a/gfx/pokemon/pidgeot/back.png b/gfx/pokemon/pidgeot/back.png new file mode 100644 index 000000000..a452584e4 Binary files /dev/null and b/gfx/pokemon/pidgeot/back.png differ diff --git a/gfx/pokemon/pidgeot/front.animated.2bpp.lz.c161ad71 b/gfx/pokemon/pidgeot/front.animated.2bpp.lz.c161ad71 new file mode 100644 index 000000000..f5cbb3f56 Binary files /dev/null and b/gfx/pokemon/pidgeot/front.animated.2bpp.lz.c161ad71 differ diff --git a/gfx/pokemon/pidgeot/front.png b/gfx/pokemon/pidgeot/front.png new file mode 100644 index 000000000..a3e598a28 Binary files /dev/null and b/gfx/pokemon/pidgeot/front.png differ diff --git a/gfx/pokemon/pidgeot/shiny.pal b/gfx/pokemon/pidgeot/shiny.pal new file mode 100644 index 000000000..68eefb13f --- /dev/null +++ b/gfx/pokemon/pidgeot/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 20, 14 + RGB 15, 17, 02 + diff --git a/gfx/pokemon/pidgeotto/anim0.asm b/gfx/pokemon/pidgeotto/anim0.asm new file mode 100644 index 000000000..53008855f --- /dev/null +++ b/gfx/pokemon/pidgeotto/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 07 + frame 2, 07 + frame 3, 07 + frame 2, 30 + setrepeat 2 + frame 3, 06 + frame 2, 06 + dorepeat 5 + frame 2, 20 + endanim +; 0xd097a diff --git a/gfx/pokemon/pidgeotto/anim1.asm b/gfx/pokemon/pidgeotto/anim1.asm new file mode 100644 index 000000000..95a27bb15 --- /dev/null +++ b/gfx/pokemon/pidgeotto/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd1952 diff --git a/gfx/pokemon/pidgeotto/back.2bpp.lz.8a0dd470 b/gfx/pokemon/pidgeotto/back.2bpp.lz.8a0dd470 new file mode 100644 index 000000000..d766747ef Binary files /dev/null and b/gfx/pokemon/pidgeotto/back.2bpp.lz.8a0dd470 differ diff --git a/gfx/pokemon/pidgeotto/back.png b/gfx/pokemon/pidgeotto/back.png new file mode 100644 index 000000000..46c5970a4 Binary files /dev/null and b/gfx/pokemon/pidgeotto/back.png differ diff --git a/gfx/pokemon/pidgeotto/front.animated.2bpp.lz.8ce78b51 b/gfx/pokemon/pidgeotto/front.animated.2bpp.lz.8ce78b51 new file mode 100644 index 000000000..0fc3a94fd Binary files /dev/null and b/gfx/pokemon/pidgeotto/front.animated.2bpp.lz.8ce78b51 differ diff --git a/gfx/pokemon/pidgeotto/front.png b/gfx/pokemon/pidgeotto/front.png new file mode 100644 index 000000000..cdf3f1a28 Binary files /dev/null and b/gfx/pokemon/pidgeotto/front.png differ diff --git a/gfx/pokemon/pidgeotto/shiny.pal b/gfx/pokemon/pidgeotto/shiny.pal new file mode 100644 index 000000000..56a28e867 --- /dev/null +++ b/gfx/pokemon/pidgeotto/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 19, 05 + RGB 19, 14, 05 + diff --git a/gfx/pokemon/pidgey/anim0.asm b/gfx/pokemon/pidgey/anim0.asm new file mode 100644 index 000000000..4ca6553d2 --- /dev/null +++ b/gfx/pokemon/pidgey/anim0.asm @@ -0,0 +1,11 @@ + frame 0, 02 + frame 3, 06 + frame 0, 12 + setrepeat 3 + frame 0, 04 + frame 1, 03 + frame 2, 04 + frame 1, 03 + dorepeat 4 + endanim +; 0xd0967 diff --git a/gfx/pokemon/pidgey/anim1.asm b/gfx/pokemon/pidgey/anim1.asm new file mode 100644 index 000000000..25a55fb45 --- /dev/null +++ b/gfx/pokemon/pidgey/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 08 + frame 1, 04 + frame 2, 06 + frame 1, 04 + dorepeat 1 + endanim +; 0xd1949 diff --git a/gfx/pokemon/pidgey/back.2bpp.lz.027129e8 b/gfx/pokemon/pidgey/back.2bpp.lz.027129e8 new file mode 100644 index 000000000..48669456e Binary files /dev/null and b/gfx/pokemon/pidgey/back.2bpp.lz.027129e8 differ diff --git a/gfx/pokemon/pidgey/back.png b/gfx/pokemon/pidgey/back.png new file mode 100644 index 000000000..7ab2fe5fc Binary files /dev/null and b/gfx/pokemon/pidgey/back.png differ diff --git a/gfx/pokemon/pidgey/front.animated.2bpp.lz.9acd46ca b/gfx/pokemon/pidgey/front.animated.2bpp.lz.9acd46ca new file mode 100644 index 000000000..03c579dbf Binary files /dev/null and b/gfx/pokemon/pidgey/front.animated.2bpp.lz.9acd46ca differ diff --git a/gfx/pokemon/pidgey/front.png b/gfx/pokemon/pidgey/front.png new file mode 100644 index 000000000..c65e7494d Binary files /dev/null and b/gfx/pokemon/pidgey/front.png differ diff --git a/gfx/pokemon/pidgey/shiny.pal b/gfx/pokemon/pidgey/shiny.pal new file mode 100644 index 000000000..e209bc93f --- /dev/null +++ b/gfx/pokemon/pidgey/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 28, 12 + RGB 20, 19, 08 + diff --git a/gfx/pokemon/pikachu/anim0.asm b/gfx/pokemon/pikachu/anim0.asm new file mode 100644 index 000000000..6a1ac0954 --- /dev/null +++ b/gfx/pokemon/pikachu/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 07 + setrepeat 2 + frame 2, 07 + frame 3, 07 + dorepeat 2 + frame 2, 26 + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 7 + endanim +; 0xd0a02 diff --git a/gfx/pokemon/pikachu/anim1.asm b/gfx/pokemon/pikachu/anim1.asm new file mode 100644 index 000000000..0454a2855 --- /dev/null +++ b/gfx/pokemon/pikachu/anim1.asm @@ -0,0 +1,10 @@ + setrepeat 3 + frame 0, 05 + frame 5, 05 + dorepeat 1 + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 5 + endanim +; 0xd19ba diff --git a/gfx/pokemon/pikachu/back.2bpp.lz.98998807 b/gfx/pokemon/pikachu/back.2bpp.lz.98998807 new file mode 100644 index 000000000..3f74382ae Binary files /dev/null and b/gfx/pokemon/pikachu/back.2bpp.lz.98998807 differ diff --git a/gfx/pokemon/pikachu/back.png b/gfx/pokemon/pikachu/back.png new file mode 100644 index 000000000..5438e0e5a Binary files /dev/null and b/gfx/pokemon/pikachu/back.png differ diff --git a/gfx/pokemon/pikachu/front.animated.2bpp.lz.9c100565 b/gfx/pokemon/pikachu/front.animated.2bpp.lz.9c100565 new file mode 100644 index 000000000..1dbea0496 Binary files /dev/null and b/gfx/pokemon/pikachu/front.animated.2bpp.lz.9c100565 differ diff --git a/gfx/pokemon/pikachu/front.png b/gfx/pokemon/pikachu/front.png new file mode 100644 index 000000000..07dcb4da6 Binary files /dev/null and b/gfx/pokemon/pikachu/front.png differ diff --git a/gfx/pokemon/pikachu/shiny.pal b/gfx/pokemon/pikachu/shiny.pal new file mode 100644 index 000000000..a89172f54 --- /dev/null +++ b/gfx/pokemon/pikachu/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 17, 00 + RGB 20, 02, 11 + diff --git a/gfx/pokemon/piloswine/anim0.asm b/gfx/pokemon/piloswine/anim0.asm new file mode 100644 index 000000000..5b57b3ef9 --- /dev/null +++ b/gfx/pokemon/piloswine/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 20 + frame 2, 10 + frame 3, 10 + endanim +; 0xd14f6 diff --git a/gfx/pokemon/piloswine/anim1.asm b/gfx/pokemon/piloswine/anim1.asm new file mode 100644 index 000000000..c1cba5ee2 --- /dev/null +++ b/gfx/pokemon/piloswine/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 12 + frame 3, 12 + dorepeat 1 + endanim +; 0xd2102 diff --git a/gfx/pokemon/piloswine/back.2bpp.lz.6fe7da21 b/gfx/pokemon/piloswine/back.2bpp.lz.6fe7da21 new file mode 100644 index 000000000..2bdbd05b7 Binary files /dev/null and b/gfx/pokemon/piloswine/back.2bpp.lz.6fe7da21 differ diff --git a/gfx/pokemon/piloswine/back.png b/gfx/pokemon/piloswine/back.png new file mode 100644 index 000000000..b2963e86f Binary files /dev/null and b/gfx/pokemon/piloswine/back.png differ diff --git a/gfx/pokemon/piloswine/front.animated.2bpp.lz.f6f37ed2 b/gfx/pokemon/piloswine/front.animated.2bpp.lz.f6f37ed2 new file mode 100644 index 000000000..45b87144e Binary files /dev/null and b/gfx/pokemon/piloswine/front.animated.2bpp.lz.f6f37ed2 differ diff --git a/gfx/pokemon/piloswine/front.png b/gfx/pokemon/piloswine/front.png new file mode 100644 index 000000000..822759c1c Binary files /dev/null and b/gfx/pokemon/piloswine/front.png differ diff --git a/gfx/pokemon/piloswine/shiny.pal b/gfx/pokemon/piloswine/shiny.pal new file mode 100644 index 000000000..3afb0539d --- /dev/null +++ b/gfx/pokemon/piloswine/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 19, 00 + RGB 19, 11, 00 + diff --git a/gfx/pokemon/pineco/anim0.asm b/gfx/pokemon/pineco/anim0.asm new file mode 100644 index 000000000..4579032ec --- /dev/null +++ b/gfx/pokemon/pineco/anim0.asm @@ -0,0 +1,4 @@ + frame 1, 06 + frame 2, 18 + endanim +; 0xd1421 diff --git a/gfx/pokemon/pineco/anim1.asm b/gfx/pokemon/pineco/anim1.asm new file mode 100644 index 000000000..f1b4e949e --- /dev/null +++ b/gfx/pokemon/pineco/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd2077 diff --git a/gfx/pokemon/pineco/back.2bpp.lz.70df8ca3 b/gfx/pokemon/pineco/back.2bpp.lz.70df8ca3 new file mode 100644 index 000000000..f4baaadb9 Binary files /dev/null and b/gfx/pokemon/pineco/back.2bpp.lz.70df8ca3 differ diff --git a/gfx/pokemon/pineco/back.png b/gfx/pokemon/pineco/back.png new file mode 100644 index 000000000..ae6299015 Binary files /dev/null and b/gfx/pokemon/pineco/back.png differ diff --git a/gfx/pokemon/pineco/front.animated.2bpp.lz.82d91497 b/gfx/pokemon/pineco/front.animated.2bpp.lz.82d91497 new file mode 100644 index 000000000..c36a27807 Binary files /dev/null and b/gfx/pokemon/pineco/front.animated.2bpp.lz.82d91497 differ diff --git a/gfx/pokemon/pineco/front.png b/gfx/pokemon/pineco/front.png new file mode 100644 index 000000000..2d91d5932 Binary files /dev/null and b/gfx/pokemon/pineco/front.png differ diff --git a/gfx/pokemon/pineco/shiny.pal b/gfx/pokemon/pineco/shiny.pal new file mode 100644 index 000000000..33ee632d5 --- /dev/null +++ b/gfx/pokemon/pineco/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 31, 05 + RGB 28, 10, 05 + diff --git a/gfx/pokemon/pinsir/anim0.asm b/gfx/pokemon/pinsir/anim0.asm new file mode 100644 index 000000000..f45752006 --- /dev/null +++ b/gfx/pokemon/pinsir/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 12 + frame 2, 08 + setrepeat 2 + frame 3, 12 + frame 4, 12 + dorepeat 3 + endanim +; 0xd0fe4 diff --git a/gfx/pokemon/pinsir/anim1.asm b/gfx/pokemon/pinsir/anim1.asm new file mode 100644 index 000000000..73895c2e0 --- /dev/null +++ b/gfx/pokemon/pinsir/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 08 + frame 1, 08 + dorepeat 1 + endanim +; 0xd1d9c diff --git a/gfx/pokemon/pinsir/back.2bpp.lz.09ac7dd4 b/gfx/pokemon/pinsir/back.2bpp.lz.09ac7dd4 new file mode 100644 index 000000000..8803c8a0a Binary files /dev/null and b/gfx/pokemon/pinsir/back.2bpp.lz.09ac7dd4 differ diff --git a/gfx/pokemon/pinsir/back.png b/gfx/pokemon/pinsir/back.png new file mode 100644 index 000000000..978ba561b Binary files /dev/null and b/gfx/pokemon/pinsir/back.png differ diff --git a/gfx/pokemon/pinsir/front.animated.2bpp.lz.1e3839f2 b/gfx/pokemon/pinsir/front.animated.2bpp.lz.1e3839f2 new file mode 100644 index 000000000..d2ec9ecd9 Binary files /dev/null and b/gfx/pokemon/pinsir/front.animated.2bpp.lz.1e3839f2 differ diff --git a/gfx/pokemon/pinsir/front.png b/gfx/pokemon/pinsir/front.png new file mode 100644 index 000000000..5bd4c4cee Binary files /dev/null and b/gfx/pokemon/pinsir/front.png differ diff --git a/gfx/pokemon/pinsir/shiny.pal b/gfx/pokemon/pinsir/shiny.pal new file mode 100644 index 000000000..4f586775a --- /dev/null +++ b/gfx/pokemon/pinsir/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 23, 09 + RGB 11, 11, 15 + diff --git a/gfx/pokemon/politoed/anim0.asm b/gfx/pokemon/politoed/anim0.asm new file mode 100644 index 000000000..72347714f --- /dev/null +++ b/gfx/pokemon/politoed/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 04 + frame 1, 08 + setrepeat 3 + frame 2, 07 + frame 3, 07 + dorepeat 3 + frame 1, 08 + endanim +; 0xd1345 diff --git a/gfx/pokemon/politoed/anim1.asm b/gfx/pokemon/politoed/anim1.asm new file mode 100644 index 000000000..8ec01df37 --- /dev/null +++ b/gfx/pokemon/politoed/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd1fe5 diff --git a/gfx/pokemon/politoed/back.2bpp.lz.7873e52f b/gfx/pokemon/politoed/back.2bpp.lz.7873e52f new file mode 100644 index 000000000..2c492fcaf Binary files /dev/null and b/gfx/pokemon/politoed/back.2bpp.lz.7873e52f differ diff --git a/gfx/pokemon/politoed/back.png b/gfx/pokemon/politoed/back.png new file mode 100644 index 000000000..4376ca6ae Binary files /dev/null and b/gfx/pokemon/politoed/back.png differ diff --git a/gfx/pokemon/politoed/front.animated.2bpp.lz.408a9c1a b/gfx/pokemon/politoed/front.animated.2bpp.lz.408a9c1a new file mode 100644 index 000000000..8890a7ed4 Binary files /dev/null and b/gfx/pokemon/politoed/front.animated.2bpp.lz.408a9c1a differ diff --git a/gfx/pokemon/politoed/front.png b/gfx/pokemon/politoed/front.png new file mode 100644 index 000000000..03aa089e3 Binary files /dev/null and b/gfx/pokemon/politoed/front.png differ diff --git a/gfx/pokemon/politoed/shiny.pal b/gfx/pokemon/politoed/shiny.pal new file mode 100644 index 000000000..1ba49cbc5 --- /dev/null +++ b/gfx/pokemon/politoed/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 19, 31 + RGB 11, 16, 15 + diff --git a/gfx/pokemon/poliwag/anim0.asm b/gfx/pokemon/poliwag/anim0.asm new file mode 100644 index 000000000..8446897c0 --- /dev/null +++ b/gfx/pokemon/poliwag/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 12 + frame 3, 24 + setrepeat 2 + frame 0, 08 + frame 1, 08 + dorepeat 3 + endanim +; 0xd0c33 diff --git a/gfx/pokemon/poliwag/anim1.asm b/gfx/pokemon/poliwag/anim1.asm new file mode 100644 index 000000000..839e57e87 --- /dev/null +++ b/gfx/pokemon/poliwag/anim1.asm @@ -0,0 +1,10 @@ + setrepeat 3 + frame 0, 06 + frame 4, 06 + dorepeat 1 + setrepeat 2 + frame 0, 10 + frame 2, 10 + dorepeat 5 + endanim +; 0xd1b1d diff --git a/gfx/pokemon/poliwag/back.2bpp.lz.35b9ee20 b/gfx/pokemon/poliwag/back.2bpp.lz.35b9ee20 new file mode 100644 index 000000000..58d039d16 Binary files /dev/null and b/gfx/pokemon/poliwag/back.2bpp.lz.35b9ee20 differ diff --git a/gfx/pokemon/poliwag/back.png b/gfx/pokemon/poliwag/back.png new file mode 100644 index 000000000..44348236e Binary files /dev/null and b/gfx/pokemon/poliwag/back.png differ diff --git a/gfx/pokemon/poliwag/front.animated.2bpp.lz.c7d26488 b/gfx/pokemon/poliwag/front.animated.2bpp.lz.c7d26488 new file mode 100644 index 000000000..df9741516 Binary files /dev/null and b/gfx/pokemon/poliwag/front.animated.2bpp.lz.c7d26488 differ diff --git a/gfx/pokemon/poliwag/front.png b/gfx/pokemon/poliwag/front.png new file mode 100644 index 000000000..c61c98fff Binary files /dev/null and b/gfx/pokemon/poliwag/front.png differ diff --git a/gfx/pokemon/poliwag/shiny.pal b/gfx/pokemon/poliwag/shiny.pal new file mode 100644 index 000000000..a6dbd0cfd --- /dev/null +++ b/gfx/pokemon/poliwag/shiny.pal @@ -0,0 +1,4 @@ + + RGB 26, 08, 17 + RGB 08, 08, 29 + diff --git a/gfx/pokemon/poliwhirl/anim0.asm b/gfx/pokemon/poliwhirl/anim0.asm new file mode 100644 index 000000000..14cb89029 --- /dev/null +++ b/gfx/pokemon/poliwhirl/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 07 + frame 2, 05 + setrepeat 2 + frame 3, 10 + frame 4, 10 + dorepeat 3 + frame 2, 16 + endanim +; 0xd0c42 diff --git a/gfx/pokemon/poliwhirl/anim1.asm b/gfx/pokemon/poliwhirl/anim1.asm new file mode 100644 index 000000000..72ba07245 --- /dev/null +++ b/gfx/pokemon/poliwhirl/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 5, 05 + dorepeat 1 + endanim +; 0xd1b26 diff --git a/gfx/pokemon/poliwhirl/back.2bpp.lz.76564593 b/gfx/pokemon/poliwhirl/back.2bpp.lz.76564593 new file mode 100644 index 000000000..a78a2cfff Binary files /dev/null and b/gfx/pokemon/poliwhirl/back.2bpp.lz.76564593 differ diff --git a/gfx/pokemon/poliwhirl/back.png b/gfx/pokemon/poliwhirl/back.png new file mode 100644 index 000000000..51e374cb7 Binary files /dev/null and b/gfx/pokemon/poliwhirl/back.png differ diff --git a/gfx/pokemon/poliwhirl/front.animated.2bpp.lz.9a36033f b/gfx/pokemon/poliwhirl/front.animated.2bpp.lz.9a36033f new file mode 100644 index 000000000..b06f41441 Binary files /dev/null and b/gfx/pokemon/poliwhirl/front.animated.2bpp.lz.9a36033f differ diff --git a/gfx/pokemon/poliwhirl/front.png b/gfx/pokemon/poliwhirl/front.png new file mode 100644 index 000000000..0419f4f9e Binary files /dev/null and b/gfx/pokemon/poliwhirl/front.png differ diff --git a/gfx/pokemon/poliwhirl/shiny.pal b/gfx/pokemon/poliwhirl/shiny.pal new file mode 100644 index 000000000..1a5ee7b27 --- /dev/null +++ b/gfx/pokemon/poliwhirl/shiny.pal @@ -0,0 +1,4 @@ + + RGB 09, 16, 26 + RGB 08, 10, 31 + diff --git a/gfx/pokemon/poliwrath/anim0.asm b/gfx/pokemon/poliwrath/anim0.asm new file mode 100644 index 000000000..2b5fb0eef --- /dev/null +++ b/gfx/pokemon/poliwrath/anim0.asm @@ -0,0 +1,8 @@ + frame 3, 24 + frame 0, 12 + setrepeat 2 + frame 1, 08 + frame 2, 08 + dorepeat 3 + endanim +; 0xd0c4f diff --git a/gfx/pokemon/poliwrath/anim1.asm b/gfx/pokemon/poliwrath/anim1.asm new file mode 100644 index 000000000..f709ea35c --- /dev/null +++ b/gfx/pokemon/poliwrath/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1b2f diff --git a/gfx/pokemon/poliwrath/back.2bpp.lz.240e911e b/gfx/pokemon/poliwrath/back.2bpp.lz.240e911e new file mode 100644 index 000000000..eab9164aa Binary files /dev/null and b/gfx/pokemon/poliwrath/back.2bpp.lz.240e911e differ diff --git a/gfx/pokemon/poliwrath/back.png b/gfx/pokemon/poliwrath/back.png new file mode 100644 index 000000000..fe6216970 Binary files /dev/null and b/gfx/pokemon/poliwrath/back.png differ diff --git a/gfx/pokemon/poliwrath/front.animated.2bpp.lz.fb1157ec b/gfx/pokemon/poliwrath/front.animated.2bpp.lz.fb1157ec new file mode 100644 index 000000000..601937221 Binary files /dev/null and b/gfx/pokemon/poliwrath/front.animated.2bpp.lz.fb1157ec differ diff --git a/gfx/pokemon/poliwrath/front.png b/gfx/pokemon/poliwrath/front.png new file mode 100644 index 000000000..a1271b9e2 Binary files /dev/null and b/gfx/pokemon/poliwrath/front.png differ diff --git a/gfx/pokemon/poliwrath/shiny.pal b/gfx/pokemon/poliwrath/shiny.pal new file mode 100644 index 000000000..f9da6007b --- /dev/null +++ b/gfx/pokemon/poliwrath/shiny.pal @@ -0,0 +1,4 @@ + + RGB 11, 24, 26 + RGB 08, 17, 15 + diff --git a/gfx/pokemon/ponyta/anim0.asm b/gfx/pokemon/ponyta/anim0.asm new file mode 100644 index 000000000..34c3a82b6 --- /dev/null +++ b/gfx/pokemon/ponyta/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 07 + frame 2, 07 + frame 1, 07 + frame 2, 07 + frame 0, 18 + frame 3, 06 + frame 0, 06 + frame 3, 06 + endanim +; 0xd0d18 diff --git a/gfx/pokemon/ponyta/anim1.asm b/gfx/pokemon/ponyta/anim1.asm new file mode 100644 index 000000000..10c9f42dd --- /dev/null +++ b/gfx/pokemon/ponyta/anim1.asm @@ -0,0 +1,5 @@ + frame 4, 06 + frame 0, 06 + frame 5, 06 + endanim +; 0xd1bc4 diff --git a/gfx/pokemon/ponyta/back.2bpp.lz.10ddc7ea b/gfx/pokemon/ponyta/back.2bpp.lz.10ddc7ea new file mode 100644 index 000000000..5d7ecaa93 Binary files /dev/null and b/gfx/pokemon/ponyta/back.2bpp.lz.10ddc7ea differ diff --git a/gfx/pokemon/ponyta/back.png b/gfx/pokemon/ponyta/back.png new file mode 100644 index 000000000..42b1190c6 Binary files /dev/null and b/gfx/pokemon/ponyta/back.png differ diff --git a/gfx/pokemon/ponyta/front.animated.2bpp.lz.2c8708d6 b/gfx/pokemon/ponyta/front.animated.2bpp.lz.2c8708d6 new file mode 100644 index 000000000..5d3aa48db Binary files /dev/null and b/gfx/pokemon/ponyta/front.animated.2bpp.lz.2c8708d6 differ diff --git a/gfx/pokemon/ponyta/front.png b/gfx/pokemon/ponyta/front.png new file mode 100644 index 000000000..a83fbfb15 Binary files /dev/null and b/gfx/pokemon/ponyta/front.png differ diff --git a/gfx/pokemon/ponyta/shiny.pal b/gfx/pokemon/ponyta/shiny.pal new file mode 100644 index 000000000..0358f40dd --- /dev/null +++ b/gfx/pokemon/ponyta/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 19, 16 + RGB 19, 13, 12 + diff --git a/gfx/pokemon/porygon/anim0.asm b/gfx/pokemon/porygon/anim0.asm new file mode 100644 index 000000000..0246a5621 --- /dev/null +++ b/gfx/pokemon/porygon/anim0.asm @@ -0,0 +1,9 @@ + setrepeat 3 + frame 1, 03 + frame 0, 03 + dorepeat 1 + frame 1, 25 + frame 2, 06 + frame 1, 06 + endanim +; 0xd106e diff --git a/gfx/pokemon/porygon/anim1.asm b/gfx/pokemon/porygon/anim1.asm new file mode 100644 index 000000000..89af5d13f --- /dev/null +++ b/gfx/pokemon/porygon/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 1 + endanim +; 0xd1dfa diff --git a/gfx/pokemon/porygon/back.2bpp.lz.b3d71350 b/gfx/pokemon/porygon/back.2bpp.lz.b3d71350 new file mode 100644 index 000000000..5f0a47032 Binary files /dev/null and b/gfx/pokemon/porygon/back.2bpp.lz.b3d71350 differ diff --git a/gfx/pokemon/porygon/back.png b/gfx/pokemon/porygon/back.png new file mode 100644 index 000000000..6833d9206 Binary files /dev/null and b/gfx/pokemon/porygon/back.png differ diff --git a/gfx/pokemon/porygon/front.animated.2bpp.lz.70fc1333 b/gfx/pokemon/porygon/front.animated.2bpp.lz.70fc1333 new file mode 100644 index 000000000..734305a14 Binary files /dev/null and b/gfx/pokemon/porygon/front.animated.2bpp.lz.70fc1333 differ diff --git a/gfx/pokemon/porygon/front.png b/gfx/pokemon/porygon/front.png new file mode 100644 index 000000000..ef4a1d782 Binary files /dev/null and b/gfx/pokemon/porygon/front.png differ diff --git a/gfx/pokemon/porygon/shiny.pal b/gfx/pokemon/porygon/shiny.pal new file mode 100644 index 000000000..bea4751bf --- /dev/null +++ b/gfx/pokemon/porygon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 03, 27 + RGB 12, 11, 25 + diff --git a/gfx/pokemon/porygon2/anim0.asm b/gfx/pokemon/porygon2/anim0.asm new file mode 100644 index 000000000..b94920e29 --- /dev/null +++ b/gfx/pokemon/porygon2/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 1, 06 + frame 2, 08 + frame 0, 06 + dorepeat 1 + endanim +; 0xd1592 diff --git a/gfx/pokemon/porygon2/anim1.asm b/gfx/pokemon/porygon2/anim1.asm new file mode 100644 index 000000000..b3a029047 --- /dev/null +++ b/gfx/pokemon/porygon2/anim1.asm @@ -0,0 +1,3 @@ + frame 3, 30 + endanim +; 0xd216c diff --git a/gfx/pokemon/porygon2/back.2bpp.lz.5bba6e40 b/gfx/pokemon/porygon2/back.2bpp.lz.5bba6e40 new file mode 100644 index 000000000..5be528963 Binary files /dev/null and b/gfx/pokemon/porygon2/back.2bpp.lz.5bba6e40 differ diff --git a/gfx/pokemon/porygon2/back.png b/gfx/pokemon/porygon2/back.png new file mode 100644 index 000000000..a8d7ed4e6 Binary files /dev/null and b/gfx/pokemon/porygon2/back.png differ diff --git a/gfx/pokemon/porygon2/front.animated.2bpp.lz.a6410e75 b/gfx/pokemon/porygon2/front.animated.2bpp.lz.a6410e75 new file mode 100644 index 000000000..5e66bb54d Binary files /dev/null and b/gfx/pokemon/porygon2/front.animated.2bpp.lz.a6410e75 differ diff --git a/gfx/pokemon/porygon2/front.png b/gfx/pokemon/porygon2/front.png new file mode 100644 index 000000000..16e8d44e6 Binary files /dev/null and b/gfx/pokemon/porygon2/front.png differ diff --git a/gfx/pokemon/porygon2/shiny.pal b/gfx/pokemon/porygon2/shiny.pal new file mode 100644 index 000000000..3b0c4dabe --- /dev/null +++ b/gfx/pokemon/porygon2/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 19, 24 + RGB 08, 11, 23 + diff --git a/gfx/pokemon/primeape/anim0.asm b/gfx/pokemon/primeape/anim0.asm new file mode 100644 index 000000000..a2a427059 --- /dev/null +++ b/gfx/pokemon/primeape/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 5 + frame 1, 08 + frame 4, 08 + dorepeat 1 + frame 2, 05 + frame 3, 25 + endanim +; 0xd0c0c diff --git a/gfx/pokemon/primeape/anim1.asm b/gfx/pokemon/primeape/anim1.asm new file mode 100644 index 000000000..7d1c8a2d7 --- /dev/null +++ b/gfx/pokemon/primeape/anim1.asm @@ -0,0 +1,8 @@ + frame 2, 10 + frame 0, 25 + setrepeat 3 + frame 2, 06 + frame 3, 06 + dorepeat 3 + endanim +; 0xd1af8 diff --git a/gfx/pokemon/primeape/back.2bpp.lz.690e407d b/gfx/pokemon/primeape/back.2bpp.lz.690e407d new file mode 100644 index 000000000..c0937a9ae Binary files /dev/null and b/gfx/pokemon/primeape/back.2bpp.lz.690e407d differ diff --git a/gfx/pokemon/primeape/back.png b/gfx/pokemon/primeape/back.png new file mode 100644 index 000000000..172c67b57 Binary files /dev/null and b/gfx/pokemon/primeape/back.png differ diff --git a/gfx/pokemon/primeape/front.animated.2bpp.lz.218352ec b/gfx/pokemon/primeape/front.animated.2bpp.lz.218352ec new file mode 100644 index 000000000..8f513878f Binary files /dev/null and b/gfx/pokemon/primeape/front.animated.2bpp.lz.218352ec differ diff --git a/gfx/pokemon/primeape/front.png b/gfx/pokemon/primeape/front.png new file mode 100644 index 000000000..94c2cedba Binary files /dev/null and b/gfx/pokemon/primeape/front.png differ diff --git a/gfx/pokemon/primeape/shiny.pal b/gfx/pokemon/primeape/shiny.pal new file mode 100644 index 000000000..ee3d37e93 --- /dev/null +++ b/gfx/pokemon/primeape/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 17, 06 + RGB 16, 16, 06 + diff --git a/gfx/pokemon/psyduck/anim0.asm b/gfx/pokemon/psyduck/anim0.asm new file mode 100644 index 000000000..da6f3aec6 --- /dev/null +++ b/gfx/pokemon/psyduck/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 08 + frame 1, 28 + setrepeat 2 + frame 0, 14 + frame 2, 14 + dorepeat 3 + endanim +; 0xd0bdd diff --git a/gfx/pokemon/psyduck/anim1.asm b/gfx/pokemon/psyduck/anim1.asm new file mode 100644 index 000000000..2fabc5b19 --- /dev/null +++ b/gfx/pokemon/psyduck/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 1, 10 + dorepeat 1 + endanim +; 0xd1ad9 diff --git a/gfx/pokemon/psyduck/back.2bpp.lz.d68cddb2 b/gfx/pokemon/psyduck/back.2bpp.lz.d68cddb2 new file mode 100644 index 000000000..d627a146c Binary files /dev/null and b/gfx/pokemon/psyduck/back.2bpp.lz.d68cddb2 differ diff --git a/gfx/pokemon/psyduck/back.png b/gfx/pokemon/psyduck/back.png new file mode 100644 index 000000000..e2aab20b1 Binary files /dev/null and b/gfx/pokemon/psyduck/back.png differ diff --git a/gfx/pokemon/psyduck/front.animated.2bpp.lz.e4efd065 b/gfx/pokemon/psyduck/front.animated.2bpp.lz.e4efd065 new file mode 100644 index 000000000..7988f1b0c Binary files /dev/null and b/gfx/pokemon/psyduck/front.animated.2bpp.lz.e4efd065 differ diff --git a/gfx/pokemon/psyduck/front.png b/gfx/pokemon/psyduck/front.png new file mode 100644 index 000000000..a207b04d8 Binary files /dev/null and b/gfx/pokemon/psyduck/front.png differ diff --git a/gfx/pokemon/psyduck/shiny.pal b/gfx/pokemon/psyduck/shiny.pal new file mode 100644 index 000000000..27cbf08c4 --- /dev/null +++ b/gfx/pokemon/psyduck/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 19, 31 + RGB 10, 11, 20 + diff --git a/gfx/pokemon/pupitar/anim0.asm b/gfx/pokemon/pupitar/anim0.asm new file mode 100644 index 000000000..c3ea44bc9 --- /dev/null +++ b/gfx/pokemon/pupitar/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 25 + setrepeat 2 + frame 0, 04 + frame 1, 04 + frame 2, 04 + dorepeat 2 + endanim +; 0xd164a diff --git a/gfx/pokemon/pupitar/anim1.asm b/gfx/pokemon/pupitar/anim1.asm new file mode 100644 index 000000000..efc0f3bb4 --- /dev/null +++ b/gfx/pokemon/pupitar/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 04 + frame 1, 04 + frame 2, 04 + dorepeat 1 + endanim +; 0xd21f6 diff --git a/gfx/pokemon/pupitar/back.2bpp.lz.100020c1 b/gfx/pokemon/pupitar/back.2bpp.lz.100020c1 new file mode 100644 index 000000000..46cf0e240 Binary files /dev/null and b/gfx/pokemon/pupitar/back.2bpp.lz.100020c1 differ diff --git a/gfx/pokemon/pupitar/back.png b/gfx/pokemon/pupitar/back.png new file mode 100644 index 000000000..ae19688ab Binary files /dev/null and b/gfx/pokemon/pupitar/back.png differ diff --git a/gfx/pokemon/pupitar/front.animated.2bpp.lz.418c0962 b/gfx/pokemon/pupitar/front.animated.2bpp.lz.418c0962 new file mode 100644 index 000000000..c39582db6 Binary files /dev/null and b/gfx/pokemon/pupitar/front.animated.2bpp.lz.418c0962 differ diff --git a/gfx/pokemon/pupitar/front.png b/gfx/pokemon/pupitar/front.png new file mode 100644 index 000000000..afc1897d1 Binary files /dev/null and b/gfx/pokemon/pupitar/front.png differ diff --git a/gfx/pokemon/pupitar/shiny.pal b/gfx/pokemon/pupitar/shiny.pal new file mode 100644 index 000000000..a8c6cb74f --- /dev/null +++ b/gfx/pokemon/pupitar/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 11, 28 + RGB 15, 06, 06 + diff --git a/gfx/pokemon/quagsire/anim0.asm b/gfx/pokemon/quagsire/anim0.asm new file mode 100644 index 000000000..852780069 --- /dev/null +++ b/gfx/pokemon/quagsire/anim0.asm @@ -0,0 +1,6 @@ + frame 1, 09 + frame 2, 12 + frame 3, 09 + frame 4, 09 + endanim +; 0xd13a0 diff --git a/gfx/pokemon/quagsire/anim1.asm b/gfx/pokemon/quagsire/anim1.asm new file mode 100644 index 000000000..f5c2ed31b --- /dev/null +++ b/gfx/pokemon/quagsire/anim1.asm @@ -0,0 +1,4 @@ + frame 2, 35 + frame 1, 08 + endanim +; 0xd2034 diff --git a/gfx/pokemon/quagsire/back.2bpp.lz.64b2ec05 b/gfx/pokemon/quagsire/back.2bpp.lz.64b2ec05 new file mode 100644 index 000000000..543ce394f Binary files /dev/null and b/gfx/pokemon/quagsire/back.2bpp.lz.64b2ec05 differ diff --git a/gfx/pokemon/quagsire/back.png b/gfx/pokemon/quagsire/back.png new file mode 100644 index 000000000..d83a1b810 Binary files /dev/null and b/gfx/pokemon/quagsire/back.png differ diff --git a/gfx/pokemon/quagsire/front.animated.2bpp.lz.bd292a94 b/gfx/pokemon/quagsire/front.animated.2bpp.lz.bd292a94 new file mode 100644 index 000000000..d1f42f064 Binary files /dev/null and b/gfx/pokemon/quagsire/front.animated.2bpp.lz.bd292a94 differ diff --git a/gfx/pokemon/quagsire/front.png b/gfx/pokemon/quagsire/front.png new file mode 100644 index 000000000..d64fe3709 Binary files /dev/null and b/gfx/pokemon/quagsire/front.png differ diff --git a/gfx/pokemon/quagsire/shiny.pal b/gfx/pokemon/quagsire/shiny.pal new file mode 100644 index 000000000..05ed0f64a --- /dev/null +++ b/gfx/pokemon/quagsire/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 21, 26 + RGB 28, 04, 30 + diff --git a/gfx/pokemon/questionmark/front.2bpp.lz.14c284f5 b/gfx/pokemon/questionmark/front.2bpp.lz.14c284f5 new file mode 100644 index 000000000..cd2f7f22e Binary files /dev/null and b/gfx/pokemon/questionmark/front.2bpp.lz.14c284f5 differ diff --git a/gfx/pokemon/questionmark/front.png b/gfx/pokemon/questionmark/front.png new file mode 100644 index 000000000..e2b681c73 Binary files /dev/null and b/gfx/pokemon/questionmark/front.png differ diff --git a/gfx/pokemon/quilava/anim0.asm b/gfx/pokemon/quilava/anim0.asm new file mode 100644 index 000000000..b5df67978 --- /dev/null +++ b/gfx/pokemon/quilava/anim0.asm @@ -0,0 +1,9 @@ + frame 4, 06 + frame 0, 04 + frame 1, 12 + frame 2, 22 + frame 4, 12 + frame 0, 10 + frame 4, 08 + endanim +; 0xd11a3 diff --git a/gfx/pokemon/quilava/anim1.asm b/gfx/pokemon/quilava/anim1.asm new file mode 100644 index 000000000..09f187796 --- /dev/null +++ b/gfx/pokemon/quilava/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1ec3 diff --git a/gfx/pokemon/quilava/back.2bpp.lz.500906e1 b/gfx/pokemon/quilava/back.2bpp.lz.500906e1 new file mode 100644 index 000000000..8514a77c7 Binary files /dev/null and b/gfx/pokemon/quilava/back.2bpp.lz.500906e1 differ diff --git a/gfx/pokemon/quilava/back.png b/gfx/pokemon/quilava/back.png new file mode 100644 index 000000000..79b50b9b0 Binary files /dev/null and b/gfx/pokemon/quilava/back.png differ diff --git a/gfx/pokemon/quilava/front.animated.2bpp.lz.f42f4c67 b/gfx/pokemon/quilava/front.animated.2bpp.lz.f42f4c67 new file mode 100644 index 000000000..33aebb81c Binary files /dev/null and b/gfx/pokemon/quilava/front.animated.2bpp.lz.f42f4c67 differ diff --git a/gfx/pokemon/quilava/front.png b/gfx/pokemon/quilava/front.png new file mode 100644 index 000000000..96ccbb551 Binary files /dev/null and b/gfx/pokemon/quilava/front.png differ diff --git a/gfx/pokemon/quilava/shiny.pal b/gfx/pokemon/quilava/shiny.pal new file mode 100644 index 000000000..5b3df0b4e --- /dev/null +++ b/gfx/pokemon/quilava/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 23, 09 + RGB 22, 00, 19 + diff --git a/gfx/pokemon/qwilfish/anim0.asm b/gfx/pokemon/qwilfish/anim0.asm new file mode 100644 index 000000000..6e5d62d04 --- /dev/null +++ b/gfx/pokemon/qwilfish/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 05 + frame 2, 20 + setrepeat 2 + frame 0, 11 + frame 3, 11 + dorepeat 3 + endanim +; 0xd147c diff --git a/gfx/pokemon/qwilfish/anim1.asm b/gfx/pokemon/qwilfish/anim1.asm new file mode 100644 index 000000000..4330e80cc --- /dev/null +++ b/gfx/pokemon/qwilfish/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 13 + frame 1, 13 + dorepeat 1 + endanim +; 0xd20b0 diff --git a/gfx/pokemon/qwilfish/back.2bpp.lz.b2bb83c6 b/gfx/pokemon/qwilfish/back.2bpp.lz.b2bb83c6 new file mode 100644 index 000000000..09f793f47 Binary files /dev/null and b/gfx/pokemon/qwilfish/back.2bpp.lz.b2bb83c6 differ diff --git a/gfx/pokemon/qwilfish/back.png b/gfx/pokemon/qwilfish/back.png new file mode 100644 index 000000000..107af1018 Binary files /dev/null and b/gfx/pokemon/qwilfish/back.png differ diff --git a/gfx/pokemon/qwilfish/front.animated.2bpp.lz.9e79c033 b/gfx/pokemon/qwilfish/front.animated.2bpp.lz.9e79c033 new file mode 100644 index 000000000..02370c7ba Binary files /dev/null and b/gfx/pokemon/qwilfish/front.animated.2bpp.lz.9e79c033 differ diff --git a/gfx/pokemon/qwilfish/front.png b/gfx/pokemon/qwilfish/front.png new file mode 100644 index 000000000..15a0415cb Binary files /dev/null and b/gfx/pokemon/qwilfish/front.png differ diff --git a/gfx/pokemon/qwilfish/shiny.pal b/gfx/pokemon/qwilfish/shiny.pal new file mode 100644 index 000000000..97c36795e --- /dev/null +++ b/gfx/pokemon/qwilfish/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 21, 22 + RGB 18, 00, 11 + diff --git a/gfx/pokemon/raichu/anim0.asm b/gfx/pokemon/raichu/anim0.asm new file mode 100644 index 000000000..a7312c7ae --- /dev/null +++ b/gfx/pokemon/raichu/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 08 + frame 1, 06 + frame 2, 06 + frame 3, 28 + frame 2, 10 + frame 1, 08 + endanim +; 0xd0a0f diff --git a/gfx/pokemon/raichu/anim1.asm b/gfx/pokemon/raichu/anim1.asm new file mode 100644 index 000000000..87f07ce9c --- /dev/null +++ b/gfx/pokemon/raichu/anim1.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 4, 06 + frame 0, 04 + frame 4, 04 + endanim +; 0xd19c3 diff --git a/gfx/pokemon/raichu/back.2bpp.lz.fa4c7423 b/gfx/pokemon/raichu/back.2bpp.lz.fa4c7423 new file mode 100644 index 000000000..912c378e8 Binary files /dev/null and b/gfx/pokemon/raichu/back.2bpp.lz.fa4c7423 differ diff --git a/gfx/pokemon/raichu/back.png b/gfx/pokemon/raichu/back.png new file mode 100644 index 000000000..36a0df5f3 Binary files /dev/null and b/gfx/pokemon/raichu/back.png differ diff --git a/gfx/pokemon/raichu/front.animated.2bpp.lz.25f943cb b/gfx/pokemon/raichu/front.animated.2bpp.lz.25f943cb new file mode 100644 index 000000000..84115fb00 Binary files /dev/null and b/gfx/pokemon/raichu/front.animated.2bpp.lz.25f943cb differ diff --git a/gfx/pokemon/raichu/front.png b/gfx/pokemon/raichu/front.png new file mode 100644 index 000000000..06bbf12bb Binary files /dev/null and b/gfx/pokemon/raichu/front.png differ diff --git a/gfx/pokemon/raichu/shiny.pal b/gfx/pokemon/raichu/shiny.pal new file mode 100644 index 000000000..0491d1ee2 --- /dev/null +++ b/gfx/pokemon/raichu/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 19, 20 + RGB 24, 19, 02 + diff --git a/gfx/pokemon/raikou/anim0.asm b/gfx/pokemon/raikou/anim0.asm new file mode 100644 index 000000000..91931b3ef --- /dev/null +++ b/gfx/pokemon/raikou/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 06 + setrepeat 5 + frame 2, 03 + frame 3, 03 + dorepeat 2 + frame 2, 35 + endanim +; 0xd1614 diff --git a/gfx/pokemon/raikou/anim1.asm b/gfx/pokemon/raikou/anim1.asm new file mode 100644 index 000000000..ec54577cd --- /dev/null +++ b/gfx/pokemon/raikou/anim1.asm @@ -0,0 +1,8 @@ + frame 4, 20 + frame 5, 08 + frame 6, 08 + frame 4, 05 + frame 6, 05 + frame 4, 30 + endanim +; 0xd21ce diff --git a/gfx/pokemon/raikou/back.2bpp.lz.657ddfaf b/gfx/pokemon/raikou/back.2bpp.lz.657ddfaf new file mode 100644 index 000000000..23fd5c471 Binary files /dev/null and b/gfx/pokemon/raikou/back.2bpp.lz.657ddfaf differ diff --git a/gfx/pokemon/raikou/back.png b/gfx/pokemon/raikou/back.png new file mode 100644 index 000000000..0214e673c Binary files /dev/null and b/gfx/pokemon/raikou/back.png differ diff --git a/gfx/pokemon/raikou/front.animated.2bpp.lz.464b6fd7 b/gfx/pokemon/raikou/front.animated.2bpp.lz.464b6fd7 new file mode 100644 index 000000000..dba4517aa Binary files /dev/null and b/gfx/pokemon/raikou/front.animated.2bpp.lz.464b6fd7 differ diff --git a/gfx/pokemon/raikou/front.png b/gfx/pokemon/raikou/front.png new file mode 100644 index 000000000..4854f2571 Binary files /dev/null and b/gfx/pokemon/raikou/front.png differ diff --git a/gfx/pokemon/raikou/shiny.pal b/gfx/pokemon/raikou/shiny.pal new file mode 100644 index 000000000..509a54c48 --- /dev/null +++ b/gfx/pokemon/raikou/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 15, 00 + RGB 25, 21, 00 + diff --git a/gfx/pokemon/rapidash/anim0.asm b/gfx/pokemon/rapidash/anim0.asm new file mode 100644 index 000000000..6fe29db8f --- /dev/null +++ b/gfx/pokemon/rapidash/anim0.asm @@ -0,0 +1,14 @@ + frame 0, 10 + frame 2, 36 + frame 0, 05 + frame 1, 05 + frame 2, 07 + frame 0, 06 + frame 1, 05 + frame 0, 07 + setrepeat 4 + frame 2, 12 + frame 3, 12 + dorepeat 9 + endanim +; 0xd0d31 diff --git a/gfx/pokemon/rapidash/anim1.asm b/gfx/pokemon/rapidash/anim1.asm new file mode 100644 index 000000000..0105673c9 --- /dev/null +++ b/gfx/pokemon/rapidash/anim1.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 4, 06 + frame 0, 06 + frame 4, 06 + endanim +; 0xd1bcd diff --git a/gfx/pokemon/rapidash/back.2bpp.lz.fdd1946c b/gfx/pokemon/rapidash/back.2bpp.lz.fdd1946c new file mode 100644 index 000000000..3854c29e5 Binary files /dev/null and b/gfx/pokemon/rapidash/back.2bpp.lz.fdd1946c differ diff --git a/gfx/pokemon/rapidash/back.png b/gfx/pokemon/rapidash/back.png new file mode 100644 index 000000000..70de0e5ec Binary files /dev/null and b/gfx/pokemon/rapidash/back.png differ diff --git a/gfx/pokemon/rapidash/front.animated.2bpp.lz.d5ac5a96 b/gfx/pokemon/rapidash/front.animated.2bpp.lz.d5ac5a96 new file mode 100644 index 000000000..231e312fb Binary files /dev/null and b/gfx/pokemon/rapidash/front.animated.2bpp.lz.d5ac5a96 differ diff --git a/gfx/pokemon/rapidash/front.png b/gfx/pokemon/rapidash/front.png new file mode 100644 index 000000000..7930fd606 Binary files /dev/null and b/gfx/pokemon/rapidash/front.png differ diff --git a/gfx/pokemon/rapidash/shiny.pal b/gfx/pokemon/rapidash/shiny.pal new file mode 100644 index 000000000..f6ae96e3c --- /dev/null +++ b/gfx/pokemon/rapidash/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 19, 20 + RGB 17, 10, 27 + diff --git a/gfx/pokemon/raticate/anim0.asm b/gfx/pokemon/raticate/anim0.asm new file mode 100644 index 000000000..ad6450f27 --- /dev/null +++ b/gfx/pokemon/raticate/anim0.asm @@ -0,0 +1,7 @@ + frame 2, 24 + setrepeat 2 + frame 0, 04 + frame 1, 04 + dorepeat 2 + endanim +; 0xd09a3 diff --git a/gfx/pokemon/raticate/anim1.asm b/gfx/pokemon/raticate/anim1.asm new file mode 100644 index 000000000..3ff83aa1c --- /dev/null +++ b/gfx/pokemon/raticate/anim1.asm @@ -0,0 +1,10 @@ + setrepeat 2 + frame 0, 04 + frame 3, 04 + dorepeat 1 + setrepeat 2 + frame 0, 04 + frame 1, 04 + dorepeat 5 + endanim +; 0xd197b diff --git a/gfx/pokemon/raticate/back.2bpp.lz.b2a77d02 b/gfx/pokemon/raticate/back.2bpp.lz.b2a77d02 new file mode 100644 index 000000000..4e69587dd Binary files /dev/null and b/gfx/pokemon/raticate/back.2bpp.lz.b2a77d02 differ diff --git a/gfx/pokemon/raticate/back.png b/gfx/pokemon/raticate/back.png new file mode 100644 index 000000000..fbeef9a41 Binary files /dev/null and b/gfx/pokemon/raticate/back.png differ diff --git a/gfx/pokemon/raticate/front.animated.2bpp.lz.ef1a4689 b/gfx/pokemon/raticate/front.animated.2bpp.lz.ef1a4689 new file mode 100644 index 000000000..5b426cbdd Binary files /dev/null and b/gfx/pokemon/raticate/front.animated.2bpp.lz.ef1a4689 differ diff --git a/gfx/pokemon/raticate/front.png b/gfx/pokemon/raticate/front.png new file mode 100644 index 000000000..37695c19d Binary files /dev/null and b/gfx/pokemon/raticate/front.png differ diff --git a/gfx/pokemon/raticate/shiny.pal b/gfx/pokemon/raticate/shiny.pal new file mode 100644 index 000000000..a0c0f5546 --- /dev/null +++ b/gfx/pokemon/raticate/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 25, 15 + RGB 26, 16, 03 + diff --git a/gfx/pokemon/rattata/anim0.asm b/gfx/pokemon/rattata/anim0.asm new file mode 100644 index 000000000..0c72f16f9 --- /dev/null +++ b/gfx/pokemon/rattata/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 02 + frame 2, 02 + frame 3, 12 + frame 0, 10 + setrepeat 3 + frame 0, 05 + frame 4, 05 + dorepeat 5 + endanim +; 0xd0998 diff --git a/gfx/pokemon/rattata/anim1.asm b/gfx/pokemon/rattata/anim1.asm new file mode 100644 index 000000000..a760b136e --- /dev/null +++ b/gfx/pokemon/rattata/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd196a diff --git a/gfx/pokemon/rattata/back.2bpp.lz.86979cd5 b/gfx/pokemon/rattata/back.2bpp.lz.86979cd5 new file mode 100644 index 000000000..a06c5f1f8 Binary files /dev/null and b/gfx/pokemon/rattata/back.2bpp.lz.86979cd5 differ diff --git a/gfx/pokemon/rattata/back.png b/gfx/pokemon/rattata/back.png new file mode 100644 index 000000000..355f16b4b Binary files /dev/null and b/gfx/pokemon/rattata/back.png differ diff --git a/gfx/pokemon/rattata/front.animated.2bpp.lz.5bdaea2b b/gfx/pokemon/rattata/front.animated.2bpp.lz.5bdaea2b new file mode 100644 index 000000000..7bb18d542 Binary files /dev/null and b/gfx/pokemon/rattata/front.animated.2bpp.lz.5bdaea2b differ diff --git a/gfx/pokemon/rattata/front.png b/gfx/pokemon/rattata/front.png new file mode 100644 index 000000000..cb556cbdb Binary files /dev/null and b/gfx/pokemon/rattata/front.png differ diff --git a/gfx/pokemon/rattata/shiny.pal b/gfx/pokemon/rattata/shiny.pal new file mode 100644 index 000000000..834a29cf0 --- /dev/null +++ b/gfx/pokemon/rattata/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 23, 19 + RGB 20, 17, 13 + diff --git a/gfx/pokemon/remoraid/anim0.asm b/gfx/pokemon/remoraid/anim0.asm new file mode 100644 index 000000000..5fca75d12 --- /dev/null +++ b/gfx/pokemon/remoraid/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 05 + frame 2, 10 + frame 3, 10 + endanim +; 0xd1508 diff --git a/gfx/pokemon/remoraid/anim1.asm b/gfx/pokemon/remoraid/anim1.asm new file mode 100644 index 000000000..cb14bb7a7 --- /dev/null +++ b/gfx/pokemon/remoraid/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 1, 07 + frame 4, 07 + dorepeat 1 + endanim +; 0xd2114 diff --git a/gfx/pokemon/remoraid/back.2bpp.lz.8a6e4f29 b/gfx/pokemon/remoraid/back.2bpp.lz.8a6e4f29 new file mode 100644 index 000000000..414d65a14 Binary files /dev/null and b/gfx/pokemon/remoraid/back.2bpp.lz.8a6e4f29 differ diff --git a/gfx/pokemon/remoraid/back.png b/gfx/pokemon/remoraid/back.png new file mode 100644 index 000000000..2abcc55e0 Binary files /dev/null and b/gfx/pokemon/remoraid/back.png differ diff --git a/gfx/pokemon/remoraid/front.animated.2bpp.lz.4eaf1230 b/gfx/pokemon/remoraid/front.animated.2bpp.lz.4eaf1230 new file mode 100644 index 000000000..6d702b4a1 Binary files /dev/null and b/gfx/pokemon/remoraid/front.animated.2bpp.lz.4eaf1230 differ diff --git a/gfx/pokemon/remoraid/front.png b/gfx/pokemon/remoraid/front.png new file mode 100644 index 000000000..d92ff5838 Binary files /dev/null and b/gfx/pokemon/remoraid/front.png differ diff --git a/gfx/pokemon/remoraid/shiny.pal b/gfx/pokemon/remoraid/shiny.pal new file mode 100644 index 000000000..669e14e4a --- /dev/null +++ b/gfx/pokemon/remoraid/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 11, 14 + RGB 09, 09, 08 + diff --git a/gfx/pokemon/rhydon/anim0.asm b/gfx/pokemon/rhydon/anim0.asm new file mode 100644 index 000000000..77d736a55 --- /dev/null +++ b/gfx/pokemon/rhydon/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 08 + frame 1, 34 + frame 4, 10 + frame 2, 10 + setrepeat 16 + frame 3, 02 + frame 2, 02 + dorepeat 5 + endanim +; 0xd0f15 diff --git a/gfx/pokemon/rhydon/anim1.asm b/gfx/pokemon/rhydon/anim1.asm new file mode 100644 index 000000000..b572a54ed --- /dev/null +++ b/gfx/pokemon/rhydon/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1d0d diff --git a/gfx/pokemon/rhydon/back.2bpp.lz.4a3ea4af b/gfx/pokemon/rhydon/back.2bpp.lz.4a3ea4af new file mode 100644 index 000000000..b626f4ce6 Binary files /dev/null and b/gfx/pokemon/rhydon/back.2bpp.lz.4a3ea4af differ diff --git a/gfx/pokemon/rhydon/back.png b/gfx/pokemon/rhydon/back.png new file mode 100644 index 000000000..4b6f89869 Binary files /dev/null and b/gfx/pokemon/rhydon/back.png differ diff --git a/gfx/pokemon/rhydon/front.animated.2bpp.lz.7257fc4f b/gfx/pokemon/rhydon/front.animated.2bpp.lz.7257fc4f new file mode 100644 index 000000000..0ad1c221b Binary files /dev/null and b/gfx/pokemon/rhydon/front.animated.2bpp.lz.7257fc4f differ diff --git a/gfx/pokemon/rhydon/front.png b/gfx/pokemon/rhydon/front.png new file mode 100644 index 000000000..18a5f0aed Binary files /dev/null and b/gfx/pokemon/rhydon/front.png differ diff --git a/gfx/pokemon/rhydon/shiny.pal b/gfx/pokemon/rhydon/shiny.pal new file mode 100644 index 000000000..b036be1f3 --- /dev/null +++ b/gfx/pokemon/rhydon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 21, 21 + RGB 12, 12, 17 + diff --git a/gfx/pokemon/rhyhorn/anim0.asm b/gfx/pokemon/rhyhorn/anim0.asm new file mode 100644 index 000000000..b966557c4 --- /dev/null +++ b/gfx/pokemon/rhyhorn/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 05 + frame 2, 13 + frame 1, 40 + endanim +; 0xd0f04 diff --git a/gfx/pokemon/rhyhorn/anim1.asm b/gfx/pokemon/rhyhorn/anim1.asm new file mode 100644 index 000000000..66e53642e --- /dev/null +++ b/gfx/pokemon/rhyhorn/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 13 + frame 3, 13 + dorepeat 1 + endanim +; 0xd1d04 diff --git a/gfx/pokemon/rhyhorn/back.2bpp.lz.b9a8e755 b/gfx/pokemon/rhyhorn/back.2bpp.lz.b9a8e755 new file mode 100644 index 000000000..bfcafdcb4 Binary files /dev/null and b/gfx/pokemon/rhyhorn/back.2bpp.lz.b9a8e755 differ diff --git a/gfx/pokemon/rhyhorn/back.png b/gfx/pokemon/rhyhorn/back.png new file mode 100644 index 000000000..d2f6aa62f Binary files /dev/null and b/gfx/pokemon/rhyhorn/back.png differ diff --git a/gfx/pokemon/rhyhorn/front.animated.2bpp.lz.bdfdf7dc b/gfx/pokemon/rhyhorn/front.animated.2bpp.lz.bdfdf7dc new file mode 100644 index 000000000..62a2e8919 Binary files /dev/null and b/gfx/pokemon/rhyhorn/front.animated.2bpp.lz.bdfdf7dc differ diff --git a/gfx/pokemon/rhyhorn/front.png b/gfx/pokemon/rhyhorn/front.png new file mode 100644 index 000000000..e053a9703 Binary files /dev/null and b/gfx/pokemon/rhyhorn/front.png differ diff --git a/gfx/pokemon/rhyhorn/shiny.pal b/gfx/pokemon/rhyhorn/shiny.pal new file mode 100644 index 000000000..4b11a7f20 --- /dev/null +++ b/gfx/pokemon/rhyhorn/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 15, 17 + RGB 15, 11, 13 + diff --git a/gfx/pokemon/sandshrew/anim0.asm b/gfx/pokemon/sandshrew/anim0.asm new file mode 100644 index 000000000..01827dda4 --- /dev/null +++ b/gfx/pokemon/sandshrew/anim0.asm @@ -0,0 +1,13 @@ + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 1 + frame 0, 20 + frame 1, 08 + frame 2, 08 + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 8 + endanim +; 0xd0a26 diff --git a/gfx/pokemon/sandshrew/anim1.asm b/gfx/pokemon/sandshrew/anim1.asm new file mode 100644 index 000000000..545b445bd --- /dev/null +++ b/gfx/pokemon/sandshrew/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 3 + frame 0, 07 + frame 5, 07 + dorepeat 1 + frame 4, 13 + endanim +; 0xd19ce diff --git a/gfx/pokemon/sandshrew/back.2bpp.lz.7655193f b/gfx/pokemon/sandshrew/back.2bpp.lz.7655193f new file mode 100644 index 000000000..63ddb82a1 Binary files /dev/null and b/gfx/pokemon/sandshrew/back.2bpp.lz.7655193f differ diff --git a/gfx/pokemon/sandshrew/back.png b/gfx/pokemon/sandshrew/back.png new file mode 100644 index 000000000..c23af0677 Binary files /dev/null and b/gfx/pokemon/sandshrew/back.png differ diff --git a/gfx/pokemon/sandshrew/front.animated.2bpp.lz.758def3d b/gfx/pokemon/sandshrew/front.animated.2bpp.lz.758def3d new file mode 100644 index 000000000..3d1da3087 Binary files /dev/null and b/gfx/pokemon/sandshrew/front.animated.2bpp.lz.758def3d differ diff --git a/gfx/pokemon/sandshrew/front.png b/gfx/pokemon/sandshrew/front.png new file mode 100644 index 000000000..44b69f12b Binary files /dev/null and b/gfx/pokemon/sandshrew/front.png differ diff --git a/gfx/pokemon/sandshrew/shiny.pal b/gfx/pokemon/sandshrew/shiny.pal new file mode 100644 index 000000000..86d48731e --- /dev/null +++ b/gfx/pokemon/sandshrew/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 16, 10 + RGB 11, 08, 15 + diff --git a/gfx/pokemon/sandslash/anim0.asm b/gfx/pokemon/sandslash/anim0.asm new file mode 100644 index 000000000..040c0c429 --- /dev/null +++ b/gfx/pokemon/sandslash/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 06 + frame 1, 14 + frame 0, 12 + frame 4, 07 + frame 2, 08 + frame 0, 12 + frame 4, 07 + frame 2, 08 + endanim +; 0xd0a37 diff --git a/gfx/pokemon/sandslash/anim1.asm b/gfx/pokemon/sandslash/anim1.asm new file mode 100644 index 000000000..b3480762d --- /dev/null +++ b/gfx/pokemon/sandslash/anim1.asm @@ -0,0 +1,6 @@ + frame 0, 08 + frame 3, 06 + frame 0, 04 + frame 3, 04 + endanim +; 0xd19d7 diff --git a/gfx/pokemon/sandslash/back.2bpp.lz.2999f4c6 b/gfx/pokemon/sandslash/back.2bpp.lz.2999f4c6 new file mode 100644 index 000000000..52bb7ce7d Binary files /dev/null and b/gfx/pokemon/sandslash/back.2bpp.lz.2999f4c6 differ diff --git a/gfx/pokemon/sandslash/back.png b/gfx/pokemon/sandslash/back.png new file mode 100644 index 000000000..43704ad08 Binary files /dev/null and b/gfx/pokemon/sandslash/back.png differ diff --git a/gfx/pokemon/sandslash/front.animated.2bpp.lz.d6498722 b/gfx/pokemon/sandslash/front.animated.2bpp.lz.d6498722 new file mode 100644 index 000000000..cdffe9baf Binary files /dev/null and b/gfx/pokemon/sandslash/front.animated.2bpp.lz.d6498722 differ diff --git a/gfx/pokemon/sandslash/front.png b/gfx/pokemon/sandslash/front.png new file mode 100644 index 000000000..adda651e1 Binary files /dev/null and b/gfx/pokemon/sandslash/front.png differ diff --git a/gfx/pokemon/sandslash/shiny.pal b/gfx/pokemon/sandslash/shiny.pal new file mode 100644 index 000000000..db584124b --- /dev/null +++ b/gfx/pokemon/sandslash/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 18, 04 + RGB 21, 06, 01 + diff --git a/gfx/pokemon/scizor/anim0.asm b/gfx/pokemon/scizor/anim0.asm new file mode 100644 index 000000000..d269c91d1 --- /dev/null +++ b/gfx/pokemon/scizor/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 06 + frame 5, 22 + setrepeat 3 + frame 2, 06 + frame 1, 06 + frame 3, 06 + dorepeat 3 + frame 6, 18 + endanim +; 0xd148d diff --git a/gfx/pokemon/scizor/anim1.asm b/gfx/pokemon/scizor/anim1.asm new file mode 100644 index 000000000..744d6cafc --- /dev/null +++ b/gfx/pokemon/scizor/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd20b9 diff --git a/gfx/pokemon/scizor/back.2bpp.lz.85149f27 b/gfx/pokemon/scizor/back.2bpp.lz.85149f27 new file mode 100644 index 000000000..5a02e7000 Binary files /dev/null and b/gfx/pokemon/scizor/back.2bpp.lz.85149f27 differ diff --git a/gfx/pokemon/scizor/back.png b/gfx/pokemon/scizor/back.png new file mode 100644 index 000000000..53cef907e Binary files /dev/null and b/gfx/pokemon/scizor/back.png differ diff --git a/gfx/pokemon/scizor/front.animated.2bpp.lz.afd0131a b/gfx/pokemon/scizor/front.animated.2bpp.lz.afd0131a new file mode 100644 index 000000000..e7d506f48 Binary files /dev/null and b/gfx/pokemon/scizor/front.animated.2bpp.lz.afd0131a differ diff --git a/gfx/pokemon/scizor/front.png b/gfx/pokemon/scizor/front.png new file mode 100644 index 000000000..2adfb879f Binary files /dev/null and b/gfx/pokemon/scizor/front.png differ diff --git a/gfx/pokemon/scizor/shiny.pal b/gfx/pokemon/scizor/shiny.pal new file mode 100644 index 000000000..e4f5cf30e --- /dev/null +++ b/gfx/pokemon/scizor/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 22, 08 + RGB 06, 14, 07 + diff --git a/gfx/pokemon/scyther/anim0.asm b/gfx/pokemon/scyther/anim0.asm new file mode 100644 index 000000000..572161065 --- /dev/null +++ b/gfx/pokemon/scyther/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 05 + frame 2, 18 + frame 3, 06 + setrepeat 7 + frame 4, 04 + frame 5, 04 + dorepeat 4 + endanim +; 0xd0fa8 diff --git a/gfx/pokemon/scyther/anim1.asm b/gfx/pokemon/scyther/anim1.asm new file mode 100644 index 000000000..e251a964d --- /dev/null +++ b/gfx/pokemon/scyther/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 8 + frame 0, 04 + frame 6, 04 + dorepeat 1 + endanim +; 0xd1d78 diff --git a/gfx/pokemon/scyther/back.2bpp.lz.1d7f8a87 b/gfx/pokemon/scyther/back.2bpp.lz.1d7f8a87 new file mode 100644 index 000000000..421fc4ed0 Binary files /dev/null and b/gfx/pokemon/scyther/back.2bpp.lz.1d7f8a87 differ diff --git a/gfx/pokemon/scyther/back.png b/gfx/pokemon/scyther/back.png new file mode 100644 index 000000000..6af485895 Binary files /dev/null and b/gfx/pokemon/scyther/back.png differ diff --git a/gfx/pokemon/scyther/front.animated.2bpp.lz.86d1a281 b/gfx/pokemon/scyther/front.animated.2bpp.lz.86d1a281 new file mode 100644 index 000000000..02773fc11 Binary files /dev/null and b/gfx/pokemon/scyther/front.animated.2bpp.lz.86d1a281 differ diff --git a/gfx/pokemon/scyther/front.png b/gfx/pokemon/scyther/front.png new file mode 100644 index 000000000..088adc5a4 Binary files /dev/null and b/gfx/pokemon/scyther/front.png differ diff --git a/gfx/pokemon/scyther/shiny.pal b/gfx/pokemon/scyther/shiny.pal new file mode 100644 index 000000000..550d6dece --- /dev/null +++ b/gfx/pokemon/scyther/shiny.pal @@ -0,0 +1,4 @@ + + RGB 17, 24, 00 + RGB 28, 09, 00 + diff --git a/gfx/pokemon/seadra/anim0.asm b/gfx/pokemon/seadra/anim0.asm new file mode 100644 index 000000000..d06adbdb0 --- /dev/null +++ b/gfx/pokemon/seadra/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 10 + frame 1, 10 + frame 2, 10 + dorepeat 1 + endanim +; 0xd0f54 diff --git a/gfx/pokemon/seadra/anim1.asm b/gfx/pokemon/seadra/anim1.asm new file mode 100644 index 000000000..d4c171276 --- /dev/null +++ b/gfx/pokemon/seadra/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 10 + frame 1, 10 + frame 3, 10 + dorepeat 1 + endanim +; 0xd1d40 diff --git a/gfx/pokemon/seadra/back.2bpp.lz.354a02e4 b/gfx/pokemon/seadra/back.2bpp.lz.354a02e4 new file mode 100644 index 000000000..ba9025832 Binary files /dev/null and b/gfx/pokemon/seadra/back.2bpp.lz.354a02e4 differ diff --git a/gfx/pokemon/seadra/back.png b/gfx/pokemon/seadra/back.png new file mode 100644 index 000000000..45ea0bd90 Binary files /dev/null and b/gfx/pokemon/seadra/back.png differ diff --git a/gfx/pokemon/seadra/front.animated.2bpp.lz.efa9c88c b/gfx/pokemon/seadra/front.animated.2bpp.lz.efa9c88c new file mode 100644 index 000000000..6d63f3645 Binary files /dev/null and b/gfx/pokemon/seadra/front.animated.2bpp.lz.efa9c88c differ diff --git a/gfx/pokemon/seadra/front.png b/gfx/pokemon/seadra/front.png new file mode 100644 index 000000000..00a2a827d Binary files /dev/null and b/gfx/pokemon/seadra/front.png differ diff --git a/gfx/pokemon/seadra/shiny.pal b/gfx/pokemon/seadra/shiny.pal new file mode 100644 index 000000000..7dab3b2ec --- /dev/null +++ b/gfx/pokemon/seadra/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 11, 27 + RGB 10, 04, 29 + diff --git a/gfx/pokemon/seaking/anim0.asm b/gfx/pokemon/seaking/anim0.asm new file mode 100644 index 000000000..a147346e2 --- /dev/null +++ b/gfx/pokemon/seaking/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 3 + frame 0, 12 + frame 1, 12 + frame 2, 12 + dorepeat 1 + endanim +; 0xd0f6c diff --git a/gfx/pokemon/seaking/anim1.asm b/gfx/pokemon/seaking/anim1.asm new file mode 100644 index 000000000..3d949a4bb --- /dev/null +++ b/gfx/pokemon/seaking/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 15 + frame 3, 15 + frame 4, 15 + dorepeat 1 + endanim +; 0xd1d54 diff --git a/gfx/pokemon/seaking/back.2bpp.lz.3e699249 b/gfx/pokemon/seaking/back.2bpp.lz.3e699249 new file mode 100644 index 000000000..328a1fb55 Binary files /dev/null and b/gfx/pokemon/seaking/back.2bpp.lz.3e699249 differ diff --git a/gfx/pokemon/seaking/back.png b/gfx/pokemon/seaking/back.png new file mode 100644 index 000000000..121608b9f Binary files /dev/null and b/gfx/pokemon/seaking/back.png differ diff --git a/gfx/pokemon/seaking/front.animated.2bpp.lz.fb4eb288 b/gfx/pokemon/seaking/front.animated.2bpp.lz.fb4eb288 new file mode 100644 index 000000000..e204f1025 Binary files /dev/null and b/gfx/pokemon/seaking/front.animated.2bpp.lz.fb4eb288 differ diff --git a/gfx/pokemon/seaking/front.png b/gfx/pokemon/seaking/front.png new file mode 100644 index 000000000..7b06f5a27 Binary files /dev/null and b/gfx/pokemon/seaking/front.png differ diff --git a/gfx/pokemon/seaking/shiny.pal b/gfx/pokemon/seaking/shiny.pal new file mode 100644 index 000000000..be7291e84 --- /dev/null +++ b/gfx/pokemon/seaking/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 27, 18 + RGB 26, 22, 02 + diff --git a/gfx/pokemon/seel/anim0.asm b/gfx/pokemon/seel/anim0.asm new file mode 100644 index 000000000..ea92a35be --- /dev/null +++ b/gfx/pokemon/seel/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 06 + frame 2, 32 + setrepeat 2 + frame 0, 10 + frame 1, 10 + dorepeat 3 + endanim +; 0xd0d9f diff --git a/gfx/pokemon/seel/anim1.asm b/gfx/pokemon/seel/anim1.asm new file mode 100644 index 000000000..c601e55e5 --- /dev/null +++ b/gfx/pokemon/seel/anim1.asm @@ -0,0 +1,7 @@ + frame 2, 12 + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 2 + endanim +; 0xd1c1b diff --git a/gfx/pokemon/seel/back.2bpp.lz.518a4d40 b/gfx/pokemon/seel/back.2bpp.lz.518a4d40 new file mode 100644 index 000000000..0d5b89dae Binary files /dev/null and b/gfx/pokemon/seel/back.2bpp.lz.518a4d40 differ diff --git a/gfx/pokemon/seel/back.png b/gfx/pokemon/seel/back.png new file mode 100644 index 000000000..45c050d44 Binary files /dev/null and b/gfx/pokemon/seel/back.png differ diff --git a/gfx/pokemon/seel/front.animated.2bpp.lz.2dc48023 b/gfx/pokemon/seel/front.animated.2bpp.lz.2dc48023 new file mode 100644 index 000000000..c8f1343d6 Binary files /dev/null and b/gfx/pokemon/seel/front.animated.2bpp.lz.2dc48023 differ diff --git a/gfx/pokemon/seel/front.png b/gfx/pokemon/seel/front.png new file mode 100644 index 000000000..a25d50d2f Binary files /dev/null and b/gfx/pokemon/seel/front.png differ diff --git a/gfx/pokemon/seel/shiny.pal b/gfx/pokemon/seel/shiny.pal new file mode 100644 index 000000000..bee98179f --- /dev/null +++ b/gfx/pokemon/seel/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 19, 22 + RGB 29, 07, 05 + diff --git a/gfx/pokemon/sentret/anim0.asm b/gfx/pokemon/sentret/anim0.asm new file mode 100644 index 000000000..8080c7303 --- /dev/null +++ b/gfx/pokemon/sentret/anim0.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 15 + frame 1, 15 + dorepeat 1 + endanim +; 0xd11e6 diff --git a/gfx/pokemon/sentret/anim1.asm b/gfx/pokemon/sentret/anim1.asm new file mode 100644 index 000000000..9fcaecad0 --- /dev/null +++ b/gfx/pokemon/sentret/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 07 + frame 2, 07 + dorepeat 1 + endanim +; 0xd1ef2 diff --git a/gfx/pokemon/sentret/back.2bpp.lz.c19b7f3b b/gfx/pokemon/sentret/back.2bpp.lz.c19b7f3b new file mode 100644 index 000000000..511ba5465 Binary files /dev/null and b/gfx/pokemon/sentret/back.2bpp.lz.c19b7f3b differ diff --git a/gfx/pokemon/sentret/back.png b/gfx/pokemon/sentret/back.png new file mode 100644 index 000000000..ce452af47 Binary files /dev/null and b/gfx/pokemon/sentret/back.png differ diff --git a/gfx/pokemon/sentret/front.animated.2bpp.lz.07c594c0 b/gfx/pokemon/sentret/front.animated.2bpp.lz.07c594c0 new file mode 100644 index 000000000..229aa430c Binary files /dev/null and b/gfx/pokemon/sentret/front.animated.2bpp.lz.07c594c0 differ diff --git a/gfx/pokemon/sentret/front.png b/gfx/pokemon/sentret/front.png new file mode 100644 index 000000000..6e080188a Binary files /dev/null and b/gfx/pokemon/sentret/front.png differ diff --git a/gfx/pokemon/sentret/shiny.pal b/gfx/pokemon/sentret/shiny.pal new file mode 100644 index 000000000..86ba2ffba --- /dev/null +++ b/gfx/pokemon/sentret/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 19, 02 + RGB 21, 05, 20 + diff --git a/gfx/pokemon/shellder/anim0.asm b/gfx/pokemon/shellder/anim0.asm new file mode 100644 index 000000000..71aa3d358 --- /dev/null +++ b/gfx/pokemon/shellder/anim0.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd0dc5 diff --git a/gfx/pokemon/shellder/anim1.asm b/gfx/pokemon/shellder/anim1.asm new file mode 100644 index 000000000..c32e9d19c --- /dev/null +++ b/gfx/pokemon/shellder/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 2, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1c49 diff --git a/gfx/pokemon/shellder/back.2bpp.lz.61e27953 b/gfx/pokemon/shellder/back.2bpp.lz.61e27953 new file mode 100644 index 000000000..f0d93b8a8 Binary files /dev/null and b/gfx/pokemon/shellder/back.2bpp.lz.61e27953 differ diff --git a/gfx/pokemon/shellder/back.png b/gfx/pokemon/shellder/back.png new file mode 100644 index 000000000..be61dc743 Binary files /dev/null and b/gfx/pokemon/shellder/back.png differ diff --git a/gfx/pokemon/shellder/front.animated.2bpp.lz.df57d475 b/gfx/pokemon/shellder/front.animated.2bpp.lz.df57d475 new file mode 100644 index 000000000..5a444cfa6 Binary files /dev/null and b/gfx/pokemon/shellder/front.animated.2bpp.lz.df57d475 differ diff --git a/gfx/pokemon/shellder/front.png b/gfx/pokemon/shellder/front.png new file mode 100644 index 000000000..ff863bb56 Binary files /dev/null and b/gfx/pokemon/shellder/front.png differ diff --git a/gfx/pokemon/shellder/shiny.pal b/gfx/pokemon/shellder/shiny.pal new file mode 100644 index 000000000..21c389b28 --- /dev/null +++ b/gfx/pokemon/shellder/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 17, 07 + RGB 21, 09, 04 + diff --git a/gfx/pokemon/shuckle/anim0.asm b/gfx/pokemon/shuckle/anim0.asm new file mode 100644 index 000000000..148d2bf7d --- /dev/null +++ b/gfx/pokemon/shuckle/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 07 + frame 2, 07 + frame 3, 12 + frame 1, 07 + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 5 + endanim +; 0xd149e diff --git a/gfx/pokemon/shuckle/anim1.asm b/gfx/pokemon/shuckle/anim1.asm new file mode 100644 index 000000000..4dd072951 --- /dev/null +++ b/gfx/pokemon/shuckle/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd20c2 diff --git a/gfx/pokemon/shuckle/back.2bpp.lz.8d66899b b/gfx/pokemon/shuckle/back.2bpp.lz.8d66899b new file mode 100644 index 000000000..1cc4efcea Binary files /dev/null and b/gfx/pokemon/shuckle/back.2bpp.lz.8d66899b differ diff --git a/gfx/pokemon/shuckle/back.png b/gfx/pokemon/shuckle/back.png new file mode 100644 index 000000000..9e38480d7 Binary files /dev/null and b/gfx/pokemon/shuckle/back.png differ diff --git a/gfx/pokemon/shuckle/front.animated.2bpp.lz.dee153d4 b/gfx/pokemon/shuckle/front.animated.2bpp.lz.dee153d4 new file mode 100644 index 000000000..95e78302a Binary files /dev/null and b/gfx/pokemon/shuckle/front.animated.2bpp.lz.dee153d4 differ diff --git a/gfx/pokemon/shuckle/front.png b/gfx/pokemon/shuckle/front.png new file mode 100644 index 000000000..5220fe21d Binary files /dev/null and b/gfx/pokemon/shuckle/front.png differ diff --git a/gfx/pokemon/shuckle/shiny.pal b/gfx/pokemon/shuckle/shiny.pal new file mode 100644 index 000000000..63b3644ab --- /dev/null +++ b/gfx/pokemon/shuckle/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 22, 05 + RGB 15, 07, 31 + diff --git a/gfx/pokemon/skarmory/anim0.asm b/gfx/pokemon/skarmory/anim0.asm new file mode 100644 index 000000000..64c2bfaf0 --- /dev/null +++ b/gfx/pokemon/skarmory/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 3 + frame 1, 09 + frame 2, 09 + dorepeat 1 + frame 1, 08 + endanim +; 0xd1544 diff --git a/gfx/pokemon/skarmory/anim1.asm b/gfx/pokemon/skarmory/anim1.asm new file mode 100644 index 000000000..1853c881f --- /dev/null +++ b/gfx/pokemon/skarmory/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd2138 diff --git a/gfx/pokemon/skarmory/back.2bpp.lz.f5e2e2e4 b/gfx/pokemon/skarmory/back.2bpp.lz.f5e2e2e4 new file mode 100644 index 000000000..fca13d16a Binary files /dev/null and b/gfx/pokemon/skarmory/back.2bpp.lz.f5e2e2e4 differ diff --git a/gfx/pokemon/skarmory/back.png b/gfx/pokemon/skarmory/back.png new file mode 100644 index 000000000..7005cb336 Binary files /dev/null and b/gfx/pokemon/skarmory/back.png differ diff --git a/gfx/pokemon/skarmory/front.animated.2bpp.lz.7de4675e b/gfx/pokemon/skarmory/front.animated.2bpp.lz.7de4675e new file mode 100644 index 000000000..e53f5a9ef Binary files /dev/null and b/gfx/pokemon/skarmory/front.animated.2bpp.lz.7de4675e differ diff --git a/gfx/pokemon/skarmory/front.png b/gfx/pokemon/skarmory/front.png new file mode 100644 index 000000000..68e39d93d Binary files /dev/null and b/gfx/pokemon/skarmory/front.png differ diff --git a/gfx/pokemon/skarmory/shiny.pal b/gfx/pokemon/skarmory/shiny.pal new file mode 100644 index 000000000..80c53554d --- /dev/null +++ b/gfx/pokemon/skarmory/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 22, 13 + RGB 05, 15, 01 + diff --git a/gfx/pokemon/skiploom/anim0.asm b/gfx/pokemon/skiploom/anim0.asm new file mode 100644 index 000000000..2ab6422e5 --- /dev/null +++ b/gfx/pokemon/skiploom/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 04 + frame 1, 10 + frame 2, 14 + frame 3, 14 + endanim +; 0xd1357 diff --git a/gfx/pokemon/skiploom/anim1.asm b/gfx/pokemon/skiploom/anim1.asm new file mode 100644 index 000000000..d26d1717e --- /dev/null +++ b/gfx/pokemon/skiploom/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1ff9 diff --git a/gfx/pokemon/skiploom/back.2bpp.lz.54e87a0c b/gfx/pokemon/skiploom/back.2bpp.lz.54e87a0c new file mode 100644 index 000000000..8b197406c Binary files /dev/null and b/gfx/pokemon/skiploom/back.2bpp.lz.54e87a0c differ diff --git a/gfx/pokemon/skiploom/back.png b/gfx/pokemon/skiploom/back.png new file mode 100644 index 000000000..ffe1de918 Binary files /dev/null and b/gfx/pokemon/skiploom/back.png differ diff --git a/gfx/pokemon/skiploom/front.animated.2bpp.lz.6436d556 b/gfx/pokemon/skiploom/front.animated.2bpp.lz.6436d556 new file mode 100644 index 000000000..f48561c76 Binary files /dev/null and b/gfx/pokemon/skiploom/front.animated.2bpp.lz.6436d556 differ diff --git a/gfx/pokemon/skiploom/front.png b/gfx/pokemon/skiploom/front.png new file mode 100644 index 000000000..313b5c9f3 Binary files /dev/null and b/gfx/pokemon/skiploom/front.png differ diff --git a/gfx/pokemon/skiploom/shiny.pal b/gfx/pokemon/skiploom/shiny.pal new file mode 100644 index 000000000..3165d8ee7 --- /dev/null +++ b/gfx/pokemon/skiploom/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 24, 03 + RGB 18, 00, 20 + diff --git a/gfx/pokemon/slowbro/anim0.asm b/gfx/pokemon/slowbro/anim0.asm new file mode 100644 index 000000000..cc288a464 --- /dev/null +++ b/gfx/pokemon/slowbro/anim0.asm @@ -0,0 +1,13 @@ + frame 0, 04 + frame 1, 08 + frame 0, 28 + frame 1, 12 + setrepeat 2 + frame 2, 10 + frame 3, 10 + dorepeat 5 + frame 2, 24 + frame 0, 10 + frame 4, 10 + endanim +; 0xd0d4f diff --git a/gfx/pokemon/slowbro/anim1.asm b/gfx/pokemon/slowbro/anim1.asm new file mode 100644 index 000000000..9e793ee00 --- /dev/null +++ b/gfx/pokemon/slowbro/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd1bd9 diff --git a/gfx/pokemon/slowbro/back.2bpp.lz.3676b1f1 b/gfx/pokemon/slowbro/back.2bpp.lz.3676b1f1 new file mode 100644 index 000000000..af1d60999 Binary files /dev/null and b/gfx/pokemon/slowbro/back.2bpp.lz.3676b1f1 differ diff --git a/gfx/pokemon/slowbro/back.png b/gfx/pokemon/slowbro/back.png new file mode 100644 index 000000000..10c4b20e3 Binary files /dev/null and b/gfx/pokemon/slowbro/back.png differ diff --git a/gfx/pokemon/slowbro/front.animated.2bpp.lz.257e2e84 b/gfx/pokemon/slowbro/front.animated.2bpp.lz.257e2e84 new file mode 100644 index 000000000..0a6d1ac2c Binary files /dev/null and b/gfx/pokemon/slowbro/front.animated.2bpp.lz.257e2e84 differ diff --git a/gfx/pokemon/slowbro/front.png b/gfx/pokemon/slowbro/front.png new file mode 100644 index 000000000..de0280bbf Binary files /dev/null and b/gfx/pokemon/slowbro/front.png differ diff --git a/gfx/pokemon/slowbro/shiny.pal b/gfx/pokemon/slowbro/shiny.pal new file mode 100644 index 000000000..7c1a1e020 --- /dev/null +++ b/gfx/pokemon/slowbro/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 10, 31 + RGB 18, 18, 00 + diff --git a/gfx/pokemon/slowking/anim0.asm b/gfx/pokemon/slowking/anim0.asm new file mode 100644 index 000000000..d7ab700bd --- /dev/null +++ b/gfx/pokemon/slowking/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 07 + frame 2, 25 + frame 3, 35 + frame 1, 07 + frame 2, 25 + setrepeat 2 + frame 0, 06 + frame 1, 06 + dorepeat 6 + endanim +; 0xd13e2 diff --git a/gfx/pokemon/slowking/anim1.asm b/gfx/pokemon/slowking/anim1.asm new file mode 100644 index 000000000..36fd7cd7a --- /dev/null +++ b/gfx/pokemon/slowking/anim1.asm @@ -0,0 +1,4 @@ + frame 1, 07 + frame 2, 50 + endanim +; 0xd2054 diff --git a/gfx/pokemon/slowking/back.2bpp.lz.a90de69e b/gfx/pokemon/slowking/back.2bpp.lz.a90de69e new file mode 100644 index 000000000..e6342e434 Binary files /dev/null and b/gfx/pokemon/slowking/back.2bpp.lz.a90de69e differ diff --git a/gfx/pokemon/slowking/back.png b/gfx/pokemon/slowking/back.png new file mode 100644 index 000000000..a2308a98a Binary files /dev/null and b/gfx/pokemon/slowking/back.png differ diff --git a/gfx/pokemon/slowking/front.animated.2bpp.lz.4c2f7140 b/gfx/pokemon/slowking/front.animated.2bpp.lz.4c2f7140 new file mode 100644 index 000000000..2f9bd1654 Binary files /dev/null and b/gfx/pokemon/slowking/front.animated.2bpp.lz.4c2f7140 differ diff --git a/gfx/pokemon/slowking/front.png b/gfx/pokemon/slowking/front.png new file mode 100644 index 000000000..d648e8f0c Binary files /dev/null and b/gfx/pokemon/slowking/front.png differ diff --git a/gfx/pokemon/slowking/shiny.pal b/gfx/pokemon/slowking/shiny.pal new file mode 100644 index 000000000..6a893a090 --- /dev/null +++ b/gfx/pokemon/slowking/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 10, 31 + RGB 09, 05, 31 + diff --git a/gfx/pokemon/slowpoke/anim0.asm b/gfx/pokemon/slowpoke/anim0.asm new file mode 100644 index 000000000..fa391743c --- /dev/null +++ b/gfx/pokemon/slowpoke/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 05 + frame 2, 28 + frame 1, 10 + endanim +; 0xd0d38 diff --git a/gfx/pokemon/slowpoke/anim1.asm b/gfx/pokemon/slowpoke/anim1.asm new file mode 100644 index 000000000..805a281c5 --- /dev/null +++ b/gfx/pokemon/slowpoke/anim1.asm @@ -0,0 +1,3 @@ + frame 3, 20 + endanim +; 0xd1bd0 diff --git a/gfx/pokemon/slowpoke/back.2bpp.lz.f2d1bb5c b/gfx/pokemon/slowpoke/back.2bpp.lz.f2d1bb5c new file mode 100644 index 000000000..cdaa2178d Binary files /dev/null and b/gfx/pokemon/slowpoke/back.2bpp.lz.f2d1bb5c differ diff --git a/gfx/pokemon/slowpoke/back.png b/gfx/pokemon/slowpoke/back.png new file mode 100644 index 000000000..8672dde51 Binary files /dev/null and b/gfx/pokemon/slowpoke/back.png differ diff --git a/gfx/pokemon/slowpoke/front.animated.2bpp.lz.42347014 b/gfx/pokemon/slowpoke/front.animated.2bpp.lz.42347014 new file mode 100644 index 000000000..23d8e22f2 Binary files /dev/null and b/gfx/pokemon/slowpoke/front.animated.2bpp.lz.42347014 differ diff --git a/gfx/pokemon/slowpoke/front.png b/gfx/pokemon/slowpoke/front.png new file mode 100644 index 000000000..009619adf Binary files /dev/null and b/gfx/pokemon/slowpoke/front.png differ diff --git a/gfx/pokemon/slowpoke/shiny.pal b/gfx/pokemon/slowpoke/shiny.pal new file mode 100644 index 000000000..a70e0d0ed --- /dev/null +++ b/gfx/pokemon/slowpoke/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 11, 26 + RGB 17, 00, 31 + diff --git a/gfx/pokemon/slugma/anim0.asm b/gfx/pokemon/slugma/anim0.asm new file mode 100644 index 000000000..1c867ec37 --- /dev/null +++ b/gfx/pokemon/slugma/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 12 + frame 2, 10 + frame 3, 06 + frame 4, 14 + frame 6, 12 + frame 7, 10 + frame 8, 06 + frame 0, 14 + endanim +; 0xd14d9 diff --git a/gfx/pokemon/slugma/anim1.asm b/gfx/pokemon/slugma/anim1.asm new file mode 100644 index 000000000..5bfe4e799 --- /dev/null +++ b/gfx/pokemon/slugma/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 1 + endanim +; 0xd20ed diff --git a/gfx/pokemon/slugma/back.2bpp.lz.dc25c77a b/gfx/pokemon/slugma/back.2bpp.lz.dc25c77a new file mode 100644 index 000000000..949fbc218 Binary files /dev/null and b/gfx/pokemon/slugma/back.2bpp.lz.dc25c77a differ diff --git a/gfx/pokemon/slugma/back.png b/gfx/pokemon/slugma/back.png new file mode 100644 index 000000000..f0fedc230 Binary files /dev/null and b/gfx/pokemon/slugma/back.png differ diff --git a/gfx/pokemon/slugma/front.animated.2bpp.lz.c1a44906 b/gfx/pokemon/slugma/front.animated.2bpp.lz.c1a44906 new file mode 100644 index 000000000..4c9a0078e Binary files /dev/null and b/gfx/pokemon/slugma/front.animated.2bpp.lz.c1a44906 differ diff --git a/gfx/pokemon/slugma/front.png b/gfx/pokemon/slugma/front.png new file mode 100644 index 000000000..ce63adac6 Binary files /dev/null and b/gfx/pokemon/slugma/front.png differ diff --git a/gfx/pokemon/slugma/shiny.pal b/gfx/pokemon/slugma/shiny.pal new file mode 100644 index 000000000..b66ef094d --- /dev/null +++ b/gfx/pokemon/slugma/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 21, 21 + RGB 11, 11, 11 + diff --git a/gfx/pokemon/smeargle/anim0.asm b/gfx/pokemon/smeargle/anim0.asm new file mode 100644 index 000000000..2144197fc --- /dev/null +++ b/gfx/pokemon/smeargle/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 07 + frame 2, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd15ac diff --git a/gfx/pokemon/smeargle/anim1.asm b/gfx/pokemon/smeargle/anim1.asm new file mode 100644 index 000000000..178b14959 --- /dev/null +++ b/gfx/pokemon/smeargle/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd217e diff --git a/gfx/pokemon/smeargle/back.2bpp.lz.2de2de8c b/gfx/pokemon/smeargle/back.2bpp.lz.2de2de8c new file mode 100644 index 000000000..eb96bfd07 Binary files /dev/null and b/gfx/pokemon/smeargle/back.2bpp.lz.2de2de8c differ diff --git a/gfx/pokemon/smeargle/back.png b/gfx/pokemon/smeargle/back.png new file mode 100644 index 000000000..22ba83c3c Binary files /dev/null and b/gfx/pokemon/smeargle/back.png differ diff --git a/gfx/pokemon/smeargle/front.animated.2bpp.lz.82ec0f51 b/gfx/pokemon/smeargle/front.animated.2bpp.lz.82ec0f51 new file mode 100644 index 000000000..81be921d5 Binary files /dev/null and b/gfx/pokemon/smeargle/front.animated.2bpp.lz.82ec0f51 differ diff --git a/gfx/pokemon/smeargle/front.png b/gfx/pokemon/smeargle/front.png new file mode 100644 index 000000000..2c4a90508 Binary files /dev/null and b/gfx/pokemon/smeargle/front.png differ diff --git a/gfx/pokemon/smeargle/shiny.pal b/gfx/pokemon/smeargle/shiny.pal new file mode 100644 index 000000000..3b0290ba1 --- /dev/null +++ b/gfx/pokemon/smeargle/shiny.pal @@ -0,0 +1,4 @@ + + RGB 24, 25, 08 + RGB 09, 23, 02 + diff --git a/gfx/pokemon/smoochum/anim0.asm b/gfx/pokemon/smoochum/anim0.asm new file mode 100644 index 000000000..39f5e7ebe --- /dev/null +++ b/gfx/pokemon/smoochum/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 06 + frame 2, 08 + frame 3, 24 + endanim +; 0xd15cd diff --git a/gfx/pokemon/smoochum/anim1.asm b/gfx/pokemon/smoochum/anim1.asm new file mode 100644 index 000000000..5ba02f113 --- /dev/null +++ b/gfx/pokemon/smoochum/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 1, 06 + dorepeat 1 + endanim +; 0xd219b diff --git a/gfx/pokemon/smoochum/back.2bpp.lz.af01f906 b/gfx/pokemon/smoochum/back.2bpp.lz.af01f906 new file mode 100644 index 000000000..52c256c16 Binary files /dev/null and b/gfx/pokemon/smoochum/back.2bpp.lz.af01f906 differ diff --git a/gfx/pokemon/smoochum/back.png b/gfx/pokemon/smoochum/back.png new file mode 100644 index 000000000..e5167842e Binary files /dev/null and b/gfx/pokemon/smoochum/back.png differ diff --git a/gfx/pokemon/smoochum/front.animated.2bpp.lz.5977720b b/gfx/pokemon/smoochum/front.animated.2bpp.lz.5977720b new file mode 100644 index 000000000..cd4b75761 Binary files /dev/null and b/gfx/pokemon/smoochum/front.animated.2bpp.lz.5977720b differ diff --git a/gfx/pokemon/smoochum/front.png b/gfx/pokemon/smoochum/front.png new file mode 100644 index 000000000..49ba75639 Binary files /dev/null and b/gfx/pokemon/smoochum/front.png differ diff --git a/gfx/pokemon/smoochum/shiny.pal b/gfx/pokemon/smoochum/shiny.pal new file mode 100644 index 000000000..ee3baba53 --- /dev/null +++ b/gfx/pokemon/smoochum/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 26, 07 + RGB 31, 12, 25 + diff --git a/gfx/pokemon/sneasel/anim0.asm b/gfx/pokemon/sneasel/anim0.asm new file mode 100644 index 000000000..5b7f3fb79 --- /dev/null +++ b/gfx/pokemon/sneasel/anim0.asm @@ -0,0 +1,4 @@ + frame 1, 04 + frame 2, 30 + endanim +; 0xd14aa diff --git a/gfx/pokemon/sneasel/anim1.asm b/gfx/pokemon/sneasel/anim1.asm new file mode 100644 index 000000000..1d3e3a41d --- /dev/null +++ b/gfx/pokemon/sneasel/anim1.asm @@ -0,0 +1,5 @@ + frame 3, 24 + frame 0, 09 + frame 4, 08 + endanim +; 0xd20d2 diff --git a/gfx/pokemon/sneasel/back.2bpp.lz.5298828d b/gfx/pokemon/sneasel/back.2bpp.lz.5298828d new file mode 100644 index 000000000..be5ad2304 Binary files /dev/null and b/gfx/pokemon/sneasel/back.2bpp.lz.5298828d differ diff --git a/gfx/pokemon/sneasel/back.png b/gfx/pokemon/sneasel/back.png new file mode 100644 index 000000000..4b1921c2a Binary files /dev/null and b/gfx/pokemon/sneasel/back.png differ diff --git a/gfx/pokemon/sneasel/front.animated.2bpp.lz.8f7db3e9 b/gfx/pokemon/sneasel/front.animated.2bpp.lz.8f7db3e9 new file mode 100644 index 000000000..4add5f2e0 Binary files /dev/null and b/gfx/pokemon/sneasel/front.animated.2bpp.lz.8f7db3e9 differ diff --git a/gfx/pokemon/sneasel/front.png b/gfx/pokemon/sneasel/front.png new file mode 100644 index 000000000..958d314d9 Binary files /dev/null and b/gfx/pokemon/sneasel/front.png differ diff --git a/gfx/pokemon/sneasel/shiny.pal b/gfx/pokemon/sneasel/shiny.pal new file mode 100644 index 000000000..951cc3786 --- /dev/null +++ b/gfx/pokemon/sneasel/shiny.pal @@ -0,0 +1,4 @@ + + RGB 28, 28, 09 + RGB 31, 09, 31 + diff --git a/gfx/pokemon/snorlax/anim0.asm b/gfx/pokemon/snorlax/anim0.asm new file mode 100644 index 000000000..3825f3bca --- /dev/null +++ b/gfx/pokemon/snorlax/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 10 + frame 2, 43 + frame 1, 10 + frame 0, 15 + setrepeat 2 + frame 0, 09 + frame 3, 09 + dorepeat 5 + endanim +; 0xd10b2 diff --git a/gfx/pokemon/snorlax/anim1.asm b/gfx/pokemon/snorlax/anim1.asm new file mode 100644 index 000000000..4969f8f1f --- /dev/null +++ b/gfx/pokemon/snorlax/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 10 + frame 3, 10 + dorepeat 1 + endanim +; 0xd1e34 diff --git a/gfx/pokemon/snorlax/back.2bpp.lz.90570272 b/gfx/pokemon/snorlax/back.2bpp.lz.90570272 new file mode 100644 index 000000000..dfbfcbb50 Binary files /dev/null and b/gfx/pokemon/snorlax/back.2bpp.lz.90570272 differ diff --git a/gfx/pokemon/snorlax/back.png b/gfx/pokemon/snorlax/back.png new file mode 100644 index 000000000..8493ee5ef Binary files /dev/null and b/gfx/pokemon/snorlax/back.png differ diff --git a/gfx/pokemon/snorlax/front.animated.2bpp.lz.8253357b b/gfx/pokemon/snorlax/front.animated.2bpp.lz.8253357b new file mode 100644 index 000000000..7c610f46c Binary files /dev/null and b/gfx/pokemon/snorlax/front.animated.2bpp.lz.8253357b differ diff --git a/gfx/pokemon/snorlax/front.png b/gfx/pokemon/snorlax/front.png new file mode 100644 index 000000000..e328c4ca6 Binary files /dev/null and b/gfx/pokemon/snorlax/front.png differ diff --git a/gfx/pokemon/snorlax/shiny.pal b/gfx/pokemon/snorlax/shiny.pal new file mode 100644 index 000000000..9a3ed5d55 --- /dev/null +++ b/gfx/pokemon/snorlax/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 22, 11 + RGB 09, 07, 31 + diff --git a/gfx/pokemon/snubbull/anim0.asm b/gfx/pokemon/snubbull/anim0.asm new file mode 100644 index 000000000..d97f9b354 --- /dev/null +++ b/gfx/pokemon/snubbull/anim0.asm @@ -0,0 +1,11 @@ + setrepeat 2 + frame 1, 07 + frame 2, 09 + frame 3, 09 + dorepeat 1 + setrepeat 3 + frame 4, 08 + frame 0, 08 + dorepeat 6 + endanim +; 0xd1462 diff --git a/gfx/pokemon/snubbull/anim1.asm b/gfx/pokemon/snubbull/anim1.asm new file mode 100644 index 000000000..08cae5b71 --- /dev/null +++ b/gfx/pokemon/snubbull/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 4, 12 + frame 5, 12 + dorepeat 1 + endanim +; 0xd209e diff --git a/gfx/pokemon/snubbull/back.2bpp.lz.26eaaa5d b/gfx/pokemon/snubbull/back.2bpp.lz.26eaaa5d new file mode 100644 index 000000000..5b020db5e Binary files /dev/null and b/gfx/pokemon/snubbull/back.2bpp.lz.26eaaa5d differ diff --git a/gfx/pokemon/snubbull/back.png b/gfx/pokemon/snubbull/back.png new file mode 100644 index 000000000..2c9635344 Binary files /dev/null and b/gfx/pokemon/snubbull/back.png differ diff --git a/gfx/pokemon/snubbull/front.animated.2bpp.lz.a1b4eb88 b/gfx/pokemon/snubbull/front.animated.2bpp.lz.a1b4eb88 new file mode 100644 index 000000000..69a534e2c Binary files /dev/null and b/gfx/pokemon/snubbull/front.animated.2bpp.lz.a1b4eb88 differ diff --git a/gfx/pokemon/snubbull/front.png b/gfx/pokemon/snubbull/front.png new file mode 100644 index 000000000..ee352f0e3 Binary files /dev/null and b/gfx/pokemon/snubbull/front.png differ diff --git a/gfx/pokemon/snubbull/shiny.pal b/gfx/pokemon/snubbull/shiny.pal new file mode 100644 index 000000000..04cda49ec --- /dev/null +++ b/gfx/pokemon/snubbull/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 21, 24 + RGB 26, 00, 26 + diff --git a/gfx/pokemon/spearow/anim0.asm b/gfx/pokemon/spearow/anim0.asm new file mode 100644 index 000000000..35780c784 --- /dev/null +++ b/gfx/pokemon/spearow/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 06 + frame 2, 09 + frame 1, 25 + frame 0, 25 + frame 3, 10 + setrepeat 4 + frame 3, 04 + frame 4, 04 + dorepeat 6 + endanim +; 0xd09b6 diff --git a/gfx/pokemon/spearow/anim1.asm b/gfx/pokemon/spearow/anim1.asm new file mode 100644 index 000000000..ed487ecc3 --- /dev/null +++ b/gfx/pokemon/spearow/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 3 + frame 1, 06 + frame 5, 06 + dorepeat 1 + frame 6, 07 + endanim +; 0xd1986 diff --git a/gfx/pokemon/spearow/back.2bpp.lz.b8e760aa b/gfx/pokemon/spearow/back.2bpp.lz.b8e760aa new file mode 100644 index 000000000..9411f32bd Binary files /dev/null and b/gfx/pokemon/spearow/back.2bpp.lz.b8e760aa differ diff --git a/gfx/pokemon/spearow/back.png b/gfx/pokemon/spearow/back.png new file mode 100644 index 000000000..e25a137a2 Binary files /dev/null and b/gfx/pokemon/spearow/back.png differ diff --git a/gfx/pokemon/spearow/front.animated.2bpp.lz.59d61986 b/gfx/pokemon/spearow/front.animated.2bpp.lz.59d61986 new file mode 100644 index 000000000..8def69a01 Binary files /dev/null and b/gfx/pokemon/spearow/front.animated.2bpp.lz.59d61986 differ diff --git a/gfx/pokemon/spearow/front.png b/gfx/pokemon/spearow/front.png new file mode 100644 index 000000000..85c2e7e23 Binary files /dev/null and b/gfx/pokemon/spearow/front.png differ diff --git a/gfx/pokemon/spearow/shiny.pal b/gfx/pokemon/spearow/shiny.pal new file mode 100644 index 000000000..188394e5f --- /dev/null +++ b/gfx/pokemon/spearow/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 26, 00 + RGB 24, 13, 01 + diff --git a/gfx/pokemon/spinarak/anim0.asm b/gfx/pokemon/spinarak/anim0.asm new file mode 100644 index 000000000..be299fc49 --- /dev/null +++ b/gfx/pokemon/spinarak/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 07 + frame 2, 12 + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 3 + endanim +; 0xd1240 diff --git a/gfx/pokemon/spinarak/anim1.asm b/gfx/pokemon/spinarak/anim1.asm new file mode 100644 index 000000000..c605578ef --- /dev/null +++ b/gfx/pokemon/spinarak/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd1f2e diff --git a/gfx/pokemon/spinarak/back.2bpp.lz.14002836 b/gfx/pokemon/spinarak/back.2bpp.lz.14002836 new file mode 100644 index 000000000..3fa2e3b12 Binary files /dev/null and b/gfx/pokemon/spinarak/back.2bpp.lz.14002836 differ diff --git a/gfx/pokemon/spinarak/back.png b/gfx/pokemon/spinarak/back.png new file mode 100644 index 000000000..52f9eb053 Binary files /dev/null and b/gfx/pokemon/spinarak/back.png differ diff --git a/gfx/pokemon/spinarak/front.animated.2bpp.lz.31ab6868 b/gfx/pokemon/spinarak/front.animated.2bpp.lz.31ab6868 new file mode 100644 index 000000000..edbe6e1ce Binary files /dev/null and b/gfx/pokemon/spinarak/front.animated.2bpp.lz.31ab6868 differ diff --git a/gfx/pokemon/spinarak/front.png b/gfx/pokemon/spinarak/front.png new file mode 100644 index 000000000..e35c28646 Binary files /dev/null and b/gfx/pokemon/spinarak/front.png differ diff --git a/gfx/pokemon/spinarak/shiny.pal b/gfx/pokemon/spinarak/shiny.pal new file mode 100644 index 000000000..931425e3c --- /dev/null +++ b/gfx/pokemon/spinarak/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 12, 31 + RGB 20, 09, 31 + diff --git a/gfx/pokemon/squirtle/anim0.asm b/gfx/pokemon/squirtle/anim0.asm new file mode 100644 index 000000000..9969d4263 --- /dev/null +++ b/gfx/pokemon/squirtle/anim0.asm @@ -0,0 +1,10 @@ + frame 3, 10 + setrepeat 2 + frame 1, 09 + frame 2, 05 + dorepeat 2 + frame 1, 10 + frame 3, 15 + frame 4, 05 + endanim +; 0xd08f2 diff --git a/gfx/pokemon/squirtle/anim1.asm b/gfx/pokemon/squirtle/anim1.asm new file mode 100644 index 000000000..de24c37a6 --- /dev/null +++ b/gfx/pokemon/squirtle/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 5, 05 + dorepeat 1 + endanim +; 0xd18de diff --git a/gfx/pokemon/squirtle/back.2bpp.lz.76295ae8 b/gfx/pokemon/squirtle/back.2bpp.lz.76295ae8 new file mode 100644 index 000000000..a8fa8d3fd Binary files /dev/null and b/gfx/pokemon/squirtle/back.2bpp.lz.76295ae8 differ diff --git a/gfx/pokemon/squirtle/back.png b/gfx/pokemon/squirtle/back.png new file mode 100644 index 000000000..231dfa1bb Binary files /dev/null and b/gfx/pokemon/squirtle/back.png differ diff --git a/gfx/pokemon/squirtle/front.animated.2bpp.lz.9b6f9ec9 b/gfx/pokemon/squirtle/front.animated.2bpp.lz.9b6f9ec9 new file mode 100644 index 000000000..175cc5e0d Binary files /dev/null and b/gfx/pokemon/squirtle/front.animated.2bpp.lz.9b6f9ec9 differ diff --git a/gfx/pokemon/squirtle/front.png b/gfx/pokemon/squirtle/front.png new file mode 100644 index 000000000..fd8f05fa9 Binary files /dev/null and b/gfx/pokemon/squirtle/front.png differ diff --git a/gfx/pokemon/squirtle/shiny.pal b/gfx/pokemon/squirtle/shiny.pal new file mode 100644 index 000000000..8df9f8263 --- /dev/null +++ b/gfx/pokemon/squirtle/shiny.pal @@ -0,0 +1,4 @@ + + RGB 13, 23, 08 + RGB 17, 25, 30 + diff --git a/gfx/pokemon/stantler/anim0.asm b/gfx/pokemon/stantler/anim0.asm new file mode 100644 index 000000000..8f4c133d8 --- /dev/null +++ b/gfx/pokemon/stantler/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 14 + frame 0, 12 + frame 1, 14 + frame 0, 22 + frame 2, 08 + frame 0, 08 + frame 2, 08 + endanim +; 0xd15a1 diff --git a/gfx/pokemon/stantler/anim1.asm b/gfx/pokemon/stantler/anim1.asm new file mode 100644 index 000000000..7444d761a --- /dev/null +++ b/gfx/pokemon/stantler/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd2175 diff --git a/gfx/pokemon/stantler/back.2bpp.lz.16502aac b/gfx/pokemon/stantler/back.2bpp.lz.16502aac new file mode 100644 index 000000000..a0ab53039 Binary files /dev/null and b/gfx/pokemon/stantler/back.2bpp.lz.16502aac differ diff --git a/gfx/pokemon/stantler/back.png b/gfx/pokemon/stantler/back.png new file mode 100644 index 000000000..90e7b4a65 Binary files /dev/null and b/gfx/pokemon/stantler/back.png differ diff --git a/gfx/pokemon/stantler/front.animated.2bpp.lz.46b7dd06 b/gfx/pokemon/stantler/front.animated.2bpp.lz.46b7dd06 new file mode 100644 index 000000000..87a56e667 Binary files /dev/null and b/gfx/pokemon/stantler/front.animated.2bpp.lz.46b7dd06 differ diff --git a/gfx/pokemon/stantler/front.png b/gfx/pokemon/stantler/front.png new file mode 100644 index 000000000..ac8628445 Binary files /dev/null and b/gfx/pokemon/stantler/front.png differ diff --git a/gfx/pokemon/stantler/shiny.pal b/gfx/pokemon/stantler/shiny.pal new file mode 100644 index 000000000..efdc404e9 --- /dev/null +++ b/gfx/pokemon/stantler/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 20, 07 + RGB 20, 05, 01 + diff --git a/gfx/pokemon/starmie/anim0.asm b/gfx/pokemon/starmie/anim0.asm new file mode 100644 index 000000000..c81477807 --- /dev/null +++ b/gfx/pokemon/starmie/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 5 + frame 0, 06 + frame 1, 06 + dorepeat 1 + frame 2, 07 + frame 3, 07 + endanim +; 0xd0f86 diff --git a/gfx/pokemon/starmie/anim1.asm b/gfx/pokemon/starmie/anim1.asm new file mode 100644 index 000000000..7508e6e10 --- /dev/null +++ b/gfx/pokemon/starmie/anim1.asm @@ -0,0 +1,5 @@ + frame 2, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1d66 diff --git a/gfx/pokemon/starmie/back.2bpp.lz.a8923741 b/gfx/pokemon/starmie/back.2bpp.lz.a8923741 new file mode 100644 index 000000000..8085f0f44 Binary files /dev/null and b/gfx/pokemon/starmie/back.2bpp.lz.a8923741 differ diff --git a/gfx/pokemon/starmie/back.png b/gfx/pokemon/starmie/back.png new file mode 100644 index 000000000..f4e67e4fa Binary files /dev/null and b/gfx/pokemon/starmie/back.png differ diff --git a/gfx/pokemon/starmie/front.animated.2bpp.lz.522b6699 b/gfx/pokemon/starmie/front.animated.2bpp.lz.522b6699 new file mode 100644 index 000000000..b9019f6c6 Binary files /dev/null and b/gfx/pokemon/starmie/front.animated.2bpp.lz.522b6699 differ diff --git a/gfx/pokemon/starmie/front.png b/gfx/pokemon/starmie/front.png new file mode 100644 index 000000000..2378c948b Binary files /dev/null and b/gfx/pokemon/starmie/front.png differ diff --git a/gfx/pokemon/starmie/shiny.pal b/gfx/pokemon/starmie/shiny.pal new file mode 100644 index 000000000..c9932cd86 --- /dev/null +++ b/gfx/pokemon/starmie/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 09, 11 + RGB 11, 11, 31 + diff --git a/gfx/pokemon/staryu/anim0.asm b/gfx/pokemon/staryu/anim0.asm new file mode 100644 index 000000000..d257949e7 --- /dev/null +++ b/gfx/pokemon/staryu/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 24 + frame 0, 08 + frame 1, 12 + frame 2, 04 + frame 3, 04 + frame 2, 04 + endanim +; 0xd0f79 diff --git a/gfx/pokemon/staryu/anim1.asm b/gfx/pokemon/staryu/anim1.asm new file mode 100644 index 000000000..184806574 --- /dev/null +++ b/gfx/pokemon/staryu/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 04 + frame 2, 04 + frame 3, 04 + dorepeat 1 + endanim +; 0xd1d5f diff --git a/gfx/pokemon/staryu/back.2bpp.lz.79ea9d00 b/gfx/pokemon/staryu/back.2bpp.lz.79ea9d00 new file mode 100644 index 000000000..65366eb7c Binary files /dev/null and b/gfx/pokemon/staryu/back.2bpp.lz.79ea9d00 differ diff --git a/gfx/pokemon/staryu/back.png b/gfx/pokemon/staryu/back.png new file mode 100644 index 000000000..9cab96362 Binary files /dev/null and b/gfx/pokemon/staryu/back.png differ diff --git a/gfx/pokemon/staryu/front.animated.2bpp.lz.22f1d06b b/gfx/pokemon/staryu/front.animated.2bpp.lz.22f1d06b new file mode 100644 index 000000000..8d0bdacb9 Binary files /dev/null and b/gfx/pokemon/staryu/front.animated.2bpp.lz.22f1d06b differ diff --git a/gfx/pokemon/staryu/front.png b/gfx/pokemon/staryu/front.png new file mode 100644 index 000000000..74949a9b1 Binary files /dev/null and b/gfx/pokemon/staryu/front.png differ diff --git a/gfx/pokemon/staryu/shiny.pal b/gfx/pokemon/staryu/shiny.pal new file mode 100644 index 000000000..11546faee --- /dev/null +++ b/gfx/pokemon/staryu/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 16, 19 + RGB 08, 13, 30 + diff --git a/gfx/pokemon/steelix/anim0.asm b/gfx/pokemon/steelix/anim0.asm new file mode 100644 index 000000000..9acb2af0a --- /dev/null +++ b/gfx/pokemon/steelix/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 14 + frame 2, 18 + frame 3, 28 + frame 2, 08 + frame 1, 06 + endanim +; 0xd144f diff --git a/gfx/pokemon/steelix/anim1.asm b/gfx/pokemon/steelix/anim1.asm new file mode 100644 index 000000000..3c1de78fb --- /dev/null +++ b/gfx/pokemon/steelix/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd2095 diff --git a/gfx/pokemon/steelix/back.2bpp.lz.f3c03e61 b/gfx/pokemon/steelix/back.2bpp.lz.f3c03e61 new file mode 100644 index 000000000..e4cb2d6dc Binary files /dev/null and b/gfx/pokemon/steelix/back.2bpp.lz.f3c03e61 differ diff --git a/gfx/pokemon/steelix/back.png b/gfx/pokemon/steelix/back.png new file mode 100644 index 000000000..6788dacd9 Binary files /dev/null and b/gfx/pokemon/steelix/back.png differ diff --git a/gfx/pokemon/steelix/front.animated.2bpp.lz.42f3f8d1 b/gfx/pokemon/steelix/front.animated.2bpp.lz.42f3f8d1 new file mode 100644 index 000000000..2da642f04 Binary files /dev/null and b/gfx/pokemon/steelix/front.animated.2bpp.lz.42f3f8d1 differ diff --git a/gfx/pokemon/steelix/front.png b/gfx/pokemon/steelix/front.png new file mode 100644 index 000000000..30df74f27 Binary files /dev/null and b/gfx/pokemon/steelix/front.png differ diff --git a/gfx/pokemon/steelix/shiny.pal b/gfx/pokemon/steelix/shiny.pal new file mode 100644 index 000000000..d929c214f --- /dev/null +++ b/gfx/pokemon/steelix/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 15, 03 + RGB 15, 08, 08 + diff --git a/gfx/pokemon/sudowoodo/anim0.asm b/gfx/pokemon/sudowoodo/anim0.asm new file mode 100644 index 000000000..8e974a074 --- /dev/null +++ b/gfx/pokemon/sudowoodo/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 10 + frame 1, 10 + frame 2, 10 + frame 1, 10 + dorepeat 1 + endanim +; 0xd1336 diff --git a/gfx/pokemon/sudowoodo/anim1.asm b/gfx/pokemon/sudowoodo/anim1.asm new file mode 100644 index 000000000..e42e960f9 --- /dev/null +++ b/gfx/pokemon/sudowoodo/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 09 + frame 3, 09 + dorepeat 1 + endanim +; 0xd1fdc diff --git a/gfx/pokemon/sudowoodo/back.2bpp.lz.728036c6 b/gfx/pokemon/sudowoodo/back.2bpp.lz.728036c6 new file mode 100644 index 000000000..c10731ea9 Binary files /dev/null and b/gfx/pokemon/sudowoodo/back.2bpp.lz.728036c6 differ diff --git a/gfx/pokemon/sudowoodo/back.png b/gfx/pokemon/sudowoodo/back.png new file mode 100644 index 000000000..cd7466ac3 Binary files /dev/null and b/gfx/pokemon/sudowoodo/back.png differ diff --git a/gfx/pokemon/sudowoodo/front.animated.2bpp.lz.b0f04991 b/gfx/pokemon/sudowoodo/front.animated.2bpp.lz.b0f04991 new file mode 100644 index 000000000..160f800cf Binary files /dev/null and b/gfx/pokemon/sudowoodo/front.animated.2bpp.lz.b0f04991 differ diff --git a/gfx/pokemon/sudowoodo/front.png b/gfx/pokemon/sudowoodo/front.png new file mode 100644 index 000000000..cc794899a Binary files /dev/null and b/gfx/pokemon/sudowoodo/front.png differ diff --git a/gfx/pokemon/sudowoodo/shiny.pal b/gfx/pokemon/sudowoodo/shiny.pal new file mode 100644 index 000000000..b82128b50 --- /dev/null +++ b/gfx/pokemon/sudowoodo/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 20, 08 + RGB 29, 03, 12 + diff --git a/gfx/pokemon/suicune/anim0.asm b/gfx/pokemon/suicune/anim0.asm new file mode 100644 index 000000000..0f2528116 --- /dev/null +++ b/gfx/pokemon/suicune/anim0.asm @@ -0,0 +1,13 @@ + frame 1, 10 + frame 2, 10 + frame 3, 10 + frame 4, 10 + frame 5, 10 + setrepeat 2 + frame 6, 03 + frame 7, 03 + frame 8, 03 + frame 0, 03 + dorepeat 6 + endanim +; 0xd1634 diff --git a/gfx/pokemon/suicune/anim1.asm b/gfx/pokemon/suicune/anim1.asm new file mode 100644 index 000000000..9e018683a --- /dev/null +++ b/gfx/pokemon/suicune/anim1.asm @@ -0,0 +1,7 @@ + frame 9, 35 + setrepeat 2 + frame 0, 06 + frame 9, 06 + dorepeat 2 + endanim +; 0xd21e2 diff --git a/gfx/pokemon/suicune/back.2bpp.lz.5c49d112 b/gfx/pokemon/suicune/back.2bpp.lz.5c49d112 new file mode 100644 index 000000000..a8106fbb4 Binary files /dev/null and b/gfx/pokemon/suicune/back.2bpp.lz.5c49d112 differ diff --git a/gfx/pokemon/suicune/back.png b/gfx/pokemon/suicune/back.png new file mode 100644 index 000000000..b02456055 Binary files /dev/null and b/gfx/pokemon/suicune/back.png differ diff --git a/gfx/pokemon/suicune/front.animated.2bpp.lz.64698c0a b/gfx/pokemon/suicune/front.animated.2bpp.lz.64698c0a new file mode 100644 index 000000000..cbc9dfdbf Binary files /dev/null and b/gfx/pokemon/suicune/front.animated.2bpp.lz.64698c0a differ diff --git a/gfx/pokemon/suicune/front.png b/gfx/pokemon/suicune/front.png new file mode 100644 index 000000000..f369cff81 Binary files /dev/null and b/gfx/pokemon/suicune/front.png differ diff --git a/gfx/pokemon/suicune/shiny.pal b/gfx/pokemon/suicune/shiny.pal new file mode 100644 index 000000000..776effbc3 --- /dev/null +++ b/gfx/pokemon/suicune/shiny.pal @@ -0,0 +1,4 @@ + + RGB 25, 24, 31 + RGB 16, 19, 24 + diff --git a/gfx/pokemon/sunflora/anim0.asm b/gfx/pokemon/sunflora/anim0.asm new file mode 100644 index 000000000..aad8ddadd --- /dev/null +++ b/gfx/pokemon/sunflora/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 12 + frame 2, 06 + frame 3, 16 + endanim +; 0xd137b diff --git a/gfx/pokemon/sunflora/anim1.asm b/gfx/pokemon/sunflora/anim1.asm new file mode 100644 index 000000000..e78d5449e --- /dev/null +++ b/gfx/pokemon/sunflora/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 4, 08 + dorepeat 1 + endanim +; 0xd201d diff --git a/gfx/pokemon/sunflora/back.2bpp.lz.9d0684f0 b/gfx/pokemon/sunflora/back.2bpp.lz.9d0684f0 new file mode 100644 index 000000000..3fb3432ba Binary files /dev/null and b/gfx/pokemon/sunflora/back.2bpp.lz.9d0684f0 differ diff --git a/gfx/pokemon/sunflora/back.png b/gfx/pokemon/sunflora/back.png new file mode 100644 index 000000000..e30eca3b0 Binary files /dev/null and b/gfx/pokemon/sunflora/back.png differ diff --git a/gfx/pokemon/sunflora/front.animated.2bpp.lz.258c3e67 b/gfx/pokemon/sunflora/front.animated.2bpp.lz.258c3e67 new file mode 100644 index 000000000..1026c3719 Binary files /dev/null and b/gfx/pokemon/sunflora/front.animated.2bpp.lz.258c3e67 differ diff --git a/gfx/pokemon/sunflora/front.png b/gfx/pokemon/sunflora/front.png new file mode 100644 index 000000000..377124363 Binary files /dev/null and b/gfx/pokemon/sunflora/front.png differ diff --git a/gfx/pokemon/sunflora/shiny.pal b/gfx/pokemon/sunflora/shiny.pal new file mode 100644 index 000000000..a52ad6f96 --- /dev/null +++ b/gfx/pokemon/sunflora/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 31, 04 + RGB 18, 18, 00 + diff --git a/gfx/pokemon/sunkern/anim0.asm b/gfx/pokemon/sunkern/anim0.asm new file mode 100644 index 000000000..c282b1fb2 --- /dev/null +++ b/gfx/pokemon/sunkern/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 24 + setrepeat 3 + frame 0, 04 + frame 2, 04 + dorepeat 2 + endanim +; 0xd1374 diff --git a/gfx/pokemon/sunkern/anim1.asm b/gfx/pokemon/sunkern/anim1.asm new file mode 100644 index 000000000..f92d267a1 --- /dev/null +++ b/gfx/pokemon/sunkern/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd2014 diff --git a/gfx/pokemon/sunkern/back.2bpp.lz.d28f6303 b/gfx/pokemon/sunkern/back.2bpp.lz.d28f6303 new file mode 100644 index 000000000..a9ba0f738 Binary files /dev/null and b/gfx/pokemon/sunkern/back.2bpp.lz.d28f6303 differ diff --git a/gfx/pokemon/sunkern/back.png b/gfx/pokemon/sunkern/back.png new file mode 100644 index 000000000..f6a12a830 Binary files /dev/null and b/gfx/pokemon/sunkern/back.png differ diff --git a/gfx/pokemon/sunkern/front.animated.2bpp.lz.316c5261 b/gfx/pokemon/sunkern/front.animated.2bpp.lz.316c5261 new file mode 100644 index 000000000..77a21af73 Binary files /dev/null and b/gfx/pokemon/sunkern/front.animated.2bpp.lz.316c5261 differ diff --git a/gfx/pokemon/sunkern/front.png b/gfx/pokemon/sunkern/front.png new file mode 100644 index 000000000..5bc994e6d Binary files /dev/null and b/gfx/pokemon/sunkern/front.png differ diff --git a/gfx/pokemon/sunkern/shiny.pal b/gfx/pokemon/sunkern/shiny.pal new file mode 100644 index 000000000..3215a861c --- /dev/null +++ b/gfx/pokemon/sunkern/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 31, 01 + RGB 14, 22, 00 + diff --git a/gfx/pokemon/swinub/anim0.asm b/gfx/pokemon/swinub/anim0.asm new file mode 100644 index 000000000..f1d93138a --- /dev/null +++ b/gfx/pokemon/swinub/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 24 + setrepeat 2 + frame 0, 09 + frame 2, 09 + dorepeat 2 + endanim +; 0xd14ef diff --git a/gfx/pokemon/swinub/anim1.asm b/gfx/pokemon/swinub/anim1.asm new file mode 100644 index 000000000..5fe97a2ba --- /dev/null +++ b/gfx/pokemon/swinub/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 1 + endanim +; 0xd20f9 diff --git a/gfx/pokemon/swinub/back.2bpp.lz.1ebbfabf b/gfx/pokemon/swinub/back.2bpp.lz.1ebbfabf new file mode 100644 index 000000000..51b90aae2 Binary files /dev/null and b/gfx/pokemon/swinub/back.2bpp.lz.1ebbfabf differ diff --git a/gfx/pokemon/swinub/back.png b/gfx/pokemon/swinub/back.png new file mode 100644 index 000000000..254b08e27 Binary files /dev/null and b/gfx/pokemon/swinub/back.png differ diff --git a/gfx/pokemon/swinub/front.animated.2bpp.lz.228147a5 b/gfx/pokemon/swinub/front.animated.2bpp.lz.228147a5 new file mode 100644 index 000000000..00171e0f3 Binary files /dev/null and b/gfx/pokemon/swinub/front.animated.2bpp.lz.228147a5 differ diff --git a/gfx/pokemon/swinub/front.png b/gfx/pokemon/swinub/front.png new file mode 100644 index 000000000..52fcadade Binary files /dev/null and b/gfx/pokemon/swinub/front.png differ diff --git a/gfx/pokemon/swinub/shiny.pal b/gfx/pokemon/swinub/shiny.pal new file mode 100644 index 000000000..4e3eadacb --- /dev/null +++ b/gfx/pokemon/swinub/shiny.pal @@ -0,0 +1,4 @@ + + RGB 15, 18, 30 + RGB 31, 06, 04 + diff --git a/gfx/pokemon/tangela/anim0.asm b/gfx/pokemon/tangela/anim0.asm new file mode 100644 index 000000000..57a237afe --- /dev/null +++ b/gfx/pokemon/tangela/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 36 + frame 0, 24 + frame 2, 10 + endanim +; 0xd0f2d diff --git a/gfx/pokemon/tangela/anim1.asm b/gfx/pokemon/tangela/anim1.asm new file mode 100644 index 000000000..7d8b2550f --- /dev/null +++ b/gfx/pokemon/tangela/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 2, 06 + dorepeat 1 + endanim +; 0xd1d1f diff --git a/gfx/pokemon/tangela/back.2bpp.lz.435194a6 b/gfx/pokemon/tangela/back.2bpp.lz.435194a6 new file mode 100644 index 000000000..9ad73a0b6 Binary files /dev/null and b/gfx/pokemon/tangela/back.2bpp.lz.435194a6 differ diff --git a/gfx/pokemon/tangela/back.png b/gfx/pokemon/tangela/back.png new file mode 100644 index 000000000..edbe07de1 Binary files /dev/null and b/gfx/pokemon/tangela/back.png differ diff --git a/gfx/pokemon/tangela/front.animated.2bpp.lz.7cb3fed8 b/gfx/pokemon/tangela/front.animated.2bpp.lz.7cb3fed8 new file mode 100644 index 000000000..345732b84 Binary files /dev/null and b/gfx/pokemon/tangela/front.animated.2bpp.lz.7cb3fed8 differ diff --git a/gfx/pokemon/tangela/front.png b/gfx/pokemon/tangela/front.png new file mode 100644 index 000000000..23c506929 Binary files /dev/null and b/gfx/pokemon/tangela/front.png differ diff --git a/gfx/pokemon/tangela/shiny.pal b/gfx/pokemon/tangela/shiny.pal new file mode 100644 index 000000000..089ec35c4 --- /dev/null +++ b/gfx/pokemon/tangela/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 30, 00 + RGB 17, 06, 06 + diff --git a/gfx/pokemon/tauros/anim0.asm b/gfx/pokemon/tauros/anim0.asm new file mode 100644 index 000000000..52c9264c3 --- /dev/null +++ b/gfx/pokemon/tauros/anim0.asm @@ -0,0 +1,11 @@ + frame 0, 08 + frame 3, 10 + frame 1, 28 + frame 0, 12 + setrepeat 3 + frame 2, 11 + frame 3, 11 + dorepeat 5 + frame 1, 07 + endanim +; 0xd0ff7 diff --git a/gfx/pokemon/tauros/anim1.asm b/gfx/pokemon/tauros/anim1.asm new file mode 100644 index 000000000..ab6608d0d --- /dev/null +++ b/gfx/pokemon/tauros/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd1da5 diff --git a/gfx/pokemon/tauros/back.2bpp.lz.f487c586 b/gfx/pokemon/tauros/back.2bpp.lz.f487c586 new file mode 100644 index 000000000..219aee479 Binary files /dev/null and b/gfx/pokemon/tauros/back.2bpp.lz.f487c586 differ diff --git a/gfx/pokemon/tauros/back.png b/gfx/pokemon/tauros/back.png new file mode 100644 index 000000000..9345301d3 Binary files /dev/null and b/gfx/pokemon/tauros/back.png differ diff --git a/gfx/pokemon/tauros/front.animated.2bpp.lz.982dd0db b/gfx/pokemon/tauros/front.animated.2bpp.lz.982dd0db new file mode 100644 index 000000000..d395b145b Binary files /dev/null and b/gfx/pokemon/tauros/front.animated.2bpp.lz.982dd0db differ diff --git a/gfx/pokemon/tauros/front.png b/gfx/pokemon/tauros/front.png new file mode 100644 index 000000000..535526411 Binary files /dev/null and b/gfx/pokemon/tauros/front.png differ diff --git a/gfx/pokemon/tauros/shiny.pal b/gfx/pokemon/tauros/shiny.pal new file mode 100644 index 000000000..cc360615c --- /dev/null +++ b/gfx/pokemon/tauros/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 27, 14 + RGB 09, 14, 10 + diff --git a/gfx/pokemon/teddiursa/anim0.asm b/gfx/pokemon/teddiursa/anim0.asm new file mode 100644 index 000000000..78bbeae60 --- /dev/null +++ b/gfx/pokemon/teddiursa/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 08 + frame 2, 28 + frame 0, 24 + setrepeat 3 + frame 0, 10 + frame 3, 10 + dorepeat 4 + endanim +; 0xd14b9 diff --git a/gfx/pokemon/teddiursa/anim1.asm b/gfx/pokemon/teddiursa/anim1.asm new file mode 100644 index 000000000..85cae5284 --- /dev/null +++ b/gfx/pokemon/teddiursa/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 4, 06 + dorepeat 1 + endanim +; 0xd20db diff --git a/gfx/pokemon/teddiursa/back.2bpp.lz.53f6e34e b/gfx/pokemon/teddiursa/back.2bpp.lz.53f6e34e new file mode 100644 index 000000000..a6d267ef8 Binary files /dev/null and b/gfx/pokemon/teddiursa/back.2bpp.lz.53f6e34e differ diff --git a/gfx/pokemon/teddiursa/back.png b/gfx/pokemon/teddiursa/back.png new file mode 100644 index 000000000..0d4640318 Binary files /dev/null and b/gfx/pokemon/teddiursa/back.png differ diff --git a/gfx/pokemon/teddiursa/front.animated.2bpp.lz.5f9648c7 b/gfx/pokemon/teddiursa/front.animated.2bpp.lz.5f9648c7 new file mode 100644 index 000000000..40c22315e Binary files /dev/null and b/gfx/pokemon/teddiursa/front.animated.2bpp.lz.5f9648c7 differ diff --git a/gfx/pokemon/teddiursa/front.png b/gfx/pokemon/teddiursa/front.png new file mode 100644 index 000000000..83dd4896d Binary files /dev/null and b/gfx/pokemon/teddiursa/front.png differ diff --git a/gfx/pokemon/teddiursa/shiny.pal b/gfx/pokemon/teddiursa/shiny.pal new file mode 100644 index 000000000..f3b997329 --- /dev/null +++ b/gfx/pokemon/teddiursa/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 29, 10 + RGB 13, 20, 01 + diff --git a/gfx/pokemon/tentacool/anim0.asm b/gfx/pokemon/tentacool/anim0.asm new file mode 100644 index 000000000..19b7d3a14 --- /dev/null +++ b/gfx/pokemon/tentacool/anim0.asm @@ -0,0 +1,6 @@ + frame 1, 09 + frame 2, 05 + frame 4, 10 + frame 5, 16 + endanim +; 0xd0cd3 diff --git a/gfx/pokemon/tentacool/anim1.asm b/gfx/pokemon/tentacool/anim1.asm new file mode 100644 index 000000000..4e9ba0b11 --- /dev/null +++ b/gfx/pokemon/tentacool/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + endanim +; 0xd1b95 diff --git a/gfx/pokemon/tentacool/back.2bpp.lz.ae7b2102 b/gfx/pokemon/tentacool/back.2bpp.lz.ae7b2102 new file mode 100644 index 000000000..c0b615905 Binary files /dev/null and b/gfx/pokemon/tentacool/back.2bpp.lz.ae7b2102 differ diff --git a/gfx/pokemon/tentacool/back.png b/gfx/pokemon/tentacool/back.png new file mode 100644 index 000000000..7a7724189 Binary files /dev/null and b/gfx/pokemon/tentacool/back.png differ diff --git a/gfx/pokemon/tentacool/front.animated.2bpp.lz.7a86457c b/gfx/pokemon/tentacool/front.animated.2bpp.lz.7a86457c new file mode 100644 index 000000000..57916e4e9 Binary files /dev/null and b/gfx/pokemon/tentacool/front.animated.2bpp.lz.7a86457c differ diff --git a/gfx/pokemon/tentacool/front.png b/gfx/pokemon/tentacool/front.png new file mode 100644 index 000000000..1e4684719 Binary files /dev/null and b/gfx/pokemon/tentacool/front.png differ diff --git a/gfx/pokemon/tentacool/shiny.pal b/gfx/pokemon/tentacool/shiny.pal new file mode 100644 index 000000000..1fec33a22 --- /dev/null +++ b/gfx/pokemon/tentacool/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 19, 31 + RGB 08, 19, 13 + diff --git a/gfx/pokemon/tentacruel/anim0.asm b/gfx/pokemon/tentacruel/anim0.asm new file mode 100644 index 000000000..4fed8e9d4 --- /dev/null +++ b/gfx/pokemon/tentacruel/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 2, 15 + frame 1, 23 + dorepeat 1 + frame 2, 08 + endanim +; 0xd0cde diff --git a/gfx/pokemon/tentacruel/anim1.asm b/gfx/pokemon/tentacruel/anim1.asm new file mode 100644 index 000000000..fd8d510b4 --- /dev/null +++ b/gfx/pokemon/tentacruel/anim1.asm @@ -0,0 +1,7 @@ + frame 2, 20 + setrepeat 7 + frame 2, 03 + frame 3, 03 + dorepeat 2 + endanim +; 0xd1ba0 diff --git a/gfx/pokemon/tentacruel/back.2bpp.lz.0e344f19 b/gfx/pokemon/tentacruel/back.2bpp.lz.0e344f19 new file mode 100644 index 000000000..89d7a492d Binary files /dev/null and b/gfx/pokemon/tentacruel/back.2bpp.lz.0e344f19 differ diff --git a/gfx/pokemon/tentacruel/back.png b/gfx/pokemon/tentacruel/back.png new file mode 100644 index 000000000..4430f740f Binary files /dev/null and b/gfx/pokemon/tentacruel/back.png differ diff --git a/gfx/pokemon/tentacruel/front.animated.2bpp.lz.f13e5904 b/gfx/pokemon/tentacruel/front.animated.2bpp.lz.f13e5904 new file mode 100644 index 000000000..ec6f4c2c8 Binary files /dev/null and b/gfx/pokemon/tentacruel/front.animated.2bpp.lz.f13e5904 differ diff --git a/gfx/pokemon/tentacruel/front.png b/gfx/pokemon/tentacruel/front.png new file mode 100644 index 000000000..fad5553fe Binary files /dev/null and b/gfx/pokemon/tentacruel/front.png differ diff --git a/gfx/pokemon/tentacruel/shiny.pal b/gfx/pokemon/tentacruel/shiny.pal new file mode 100644 index 000000000..afe40aff6 --- /dev/null +++ b/gfx/pokemon/tentacruel/shiny.pal @@ -0,0 +1,4 @@ + + RGB 17, 20, 31 + RGB 05, 20, 00 + diff --git a/gfx/pokemon/togepi/anim0.asm b/gfx/pokemon/togepi/anim0.asm new file mode 100644 index 000000000..a09192323 --- /dev/null +++ b/gfx/pokemon/togepi/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 10 + frame 1, 12 + dorepeat 1 + frame 0, 06 + frame 2, 06 + endanim +; 0xd12a6 diff --git a/gfx/pokemon/togepi/anim1.asm b/gfx/pokemon/togepi/anim1.asm new file mode 100644 index 000000000..e3bd76591 --- /dev/null +++ b/gfx/pokemon/togepi/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 2, 06 + dorepeat 1 + endanim +; 0xd1f7a diff --git a/gfx/pokemon/togepi/back.2bpp.lz.0e22cc02 b/gfx/pokemon/togepi/back.2bpp.lz.0e22cc02 new file mode 100644 index 000000000..ed6fab2ec Binary files /dev/null and b/gfx/pokemon/togepi/back.2bpp.lz.0e22cc02 differ diff --git a/gfx/pokemon/togepi/back.png b/gfx/pokemon/togepi/back.png new file mode 100644 index 000000000..de6bc8a40 Binary files /dev/null and b/gfx/pokemon/togepi/back.png differ diff --git a/gfx/pokemon/togepi/front.animated.2bpp.lz.0cf7ba07 b/gfx/pokemon/togepi/front.animated.2bpp.lz.0cf7ba07 new file mode 100644 index 000000000..8ceaf38bf Binary files /dev/null and b/gfx/pokemon/togepi/front.animated.2bpp.lz.0cf7ba07 differ diff --git a/gfx/pokemon/togepi/front.png b/gfx/pokemon/togepi/front.png new file mode 100644 index 000000000..3fc23b9d7 Binary files /dev/null and b/gfx/pokemon/togepi/front.png differ diff --git a/gfx/pokemon/togepi/shiny.pal b/gfx/pokemon/togepi/shiny.pal new file mode 100644 index 000000000..6e194e5d9 --- /dev/null +++ b/gfx/pokemon/togepi/shiny.pal @@ -0,0 +1,4 @@ + + RGB 30, 26, 11 + RGB 08, 15, 31 + diff --git a/gfx/pokemon/togetic/anim0.asm b/gfx/pokemon/togetic/anim0.asm new file mode 100644 index 000000000..cd1ac8f9b --- /dev/null +++ b/gfx/pokemon/togetic/anim0.asm @@ -0,0 +1,8 @@ + frame 2, 09 + frame 1, 09 + setrepeat 2 + frame 5, 09 + frame 4, 09 + dorepeat 3 + endanim +; 0xd12b3 diff --git a/gfx/pokemon/togetic/anim1.asm b/gfx/pokemon/togetic/anim1.asm new file mode 100644 index 000000000..543befa82 --- /dev/null +++ b/gfx/pokemon/togetic/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1f83 diff --git a/gfx/pokemon/togetic/back.2bpp.lz.62cbb330 b/gfx/pokemon/togetic/back.2bpp.lz.62cbb330 new file mode 100644 index 000000000..134d5718a Binary files /dev/null and b/gfx/pokemon/togetic/back.2bpp.lz.62cbb330 differ diff --git a/gfx/pokemon/togetic/back.png b/gfx/pokemon/togetic/back.png new file mode 100644 index 000000000..9a92e0970 Binary files /dev/null and b/gfx/pokemon/togetic/back.png differ diff --git a/gfx/pokemon/togetic/front.animated.2bpp.lz.5797583e b/gfx/pokemon/togetic/front.animated.2bpp.lz.5797583e new file mode 100644 index 000000000..13e98ae1d Binary files /dev/null and b/gfx/pokemon/togetic/front.animated.2bpp.lz.5797583e differ diff --git a/gfx/pokemon/togetic/front.png b/gfx/pokemon/togetic/front.png new file mode 100644 index 000000000..9851c9011 Binary files /dev/null and b/gfx/pokemon/togetic/front.png differ diff --git a/gfx/pokemon/togetic/shiny.pal b/gfx/pokemon/togetic/shiny.pal new file mode 100644 index 000000000..10e7182f5 --- /dev/null +++ b/gfx/pokemon/togetic/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 24, 08 + RGB 02, 16, 31 + diff --git a/gfx/pokemon/totodile/anim0.asm b/gfx/pokemon/totodile/anim0.asm new file mode 100644 index 000000000..c320f4646 --- /dev/null +++ b/gfx/pokemon/totodile/anim0.asm @@ -0,0 +1,10 @@ + setrepeat 3 + frame 1, 10 + frame 2, 10 + dorepeat 1 + setrepeat 3 + frame 0, 10 + frame 2, 10 + dorepeat 5 + endanim +; 0xd11c7 diff --git a/gfx/pokemon/totodile/anim1.asm b/gfx/pokemon/totodile/anim1.asm new file mode 100644 index 000000000..35379db93 --- /dev/null +++ b/gfx/pokemon/totodile/anim1.asm @@ -0,0 +1,7 @@ + frame 1, 35 + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 2 + endanim +; 0xd1ed7 diff --git a/gfx/pokemon/totodile/back.2bpp.lz.ab6bc2a1 b/gfx/pokemon/totodile/back.2bpp.lz.ab6bc2a1 new file mode 100644 index 000000000..6d73c934f Binary files /dev/null and b/gfx/pokemon/totodile/back.2bpp.lz.ab6bc2a1 differ diff --git a/gfx/pokemon/totodile/back.png b/gfx/pokemon/totodile/back.png new file mode 100644 index 000000000..5cf6adf42 Binary files /dev/null and b/gfx/pokemon/totodile/back.png differ diff --git a/gfx/pokemon/totodile/front.animated.2bpp.lz.afce8cd0 b/gfx/pokemon/totodile/front.animated.2bpp.lz.afce8cd0 new file mode 100644 index 000000000..8e1ebd2f5 Binary files /dev/null and b/gfx/pokemon/totodile/front.animated.2bpp.lz.afce8cd0 differ diff --git a/gfx/pokemon/totodile/front.png b/gfx/pokemon/totodile/front.png new file mode 100644 index 000000000..634d04189 Binary files /dev/null and b/gfx/pokemon/totodile/front.png differ diff --git a/gfx/pokemon/totodile/shiny.pal b/gfx/pokemon/totodile/shiny.pal new file mode 100644 index 000000000..c947fe43a --- /dev/null +++ b/gfx/pokemon/totodile/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 26, 15 + RGB 14, 09, 28 + diff --git a/gfx/pokemon/typhlosion/anim0.asm b/gfx/pokemon/typhlosion/anim0.asm new file mode 100644 index 000000000..bb4b30d6c --- /dev/null +++ b/gfx/pokemon/typhlosion/anim0.asm @@ -0,0 +1,11 @@ + frame 1, 08 + setrepeat 6 + frame 2, 04 + frame 3, 04 + dorepeat 2 + setrepeat 2 + frame 5, 03 + frame 1, 03 + dorepeat 6 + endanim +; 0xd11b6 diff --git a/gfx/pokemon/typhlosion/anim1.asm b/gfx/pokemon/typhlosion/anim1.asm new file mode 100644 index 000000000..2f7ed3abc --- /dev/null +++ b/gfx/pokemon/typhlosion/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 08 + dorepeat 1 + endanim +; 0xd1ecc diff --git a/gfx/pokemon/typhlosion/back.2bpp.lz.83be0292 b/gfx/pokemon/typhlosion/back.2bpp.lz.83be0292 new file mode 100644 index 000000000..592306fa6 Binary files /dev/null and b/gfx/pokemon/typhlosion/back.2bpp.lz.83be0292 differ diff --git a/gfx/pokemon/typhlosion/back.png b/gfx/pokemon/typhlosion/back.png new file mode 100644 index 000000000..1808f3089 Binary files /dev/null and b/gfx/pokemon/typhlosion/back.png differ diff --git a/gfx/pokemon/typhlosion/front.animated.2bpp.lz.65adc1e1 b/gfx/pokemon/typhlosion/front.animated.2bpp.lz.65adc1e1 new file mode 100644 index 000000000..9dba415ad Binary files /dev/null and b/gfx/pokemon/typhlosion/front.animated.2bpp.lz.65adc1e1 differ diff --git a/gfx/pokemon/typhlosion/front.png b/gfx/pokemon/typhlosion/front.png new file mode 100644 index 000000000..aef81a01b Binary files /dev/null and b/gfx/pokemon/typhlosion/front.png differ diff --git a/gfx/pokemon/typhlosion/shiny.pal b/gfx/pokemon/typhlosion/shiny.pal new file mode 100644 index 000000000..5b3df0b4e --- /dev/null +++ b/gfx/pokemon/typhlosion/shiny.pal @@ -0,0 +1,4 @@ + + RGB 29, 23, 09 + RGB 22, 00, 19 + diff --git a/gfx/pokemon/tyranitar/anim0.asm b/gfx/pokemon/tyranitar/anim0.asm new file mode 100644 index 000000000..f345bdd8e --- /dev/null +++ b/gfx/pokemon/tyranitar/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 14 + frame 2, 16 + frame 3, 16 + frame 1, 14 + frame 4, 16 + frame 0, 16 + frame 4, 16 + endanim +; 0xd1659 diff --git a/gfx/pokemon/tyranitar/anim1.asm b/gfx/pokemon/tyranitar/anim1.asm new file mode 100644 index 000000000..29788fd1d --- /dev/null +++ b/gfx/pokemon/tyranitar/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 08 + frame 5, 08 + dorepeat 1 + endanim +; 0xd21ff diff --git a/gfx/pokemon/tyranitar/back.2bpp.lz.05b022c9 b/gfx/pokemon/tyranitar/back.2bpp.lz.05b022c9 new file mode 100644 index 000000000..572e56d69 Binary files /dev/null and b/gfx/pokemon/tyranitar/back.2bpp.lz.05b022c9 differ diff --git a/gfx/pokemon/tyranitar/back.png b/gfx/pokemon/tyranitar/back.png new file mode 100644 index 000000000..07f6d1b57 Binary files /dev/null and b/gfx/pokemon/tyranitar/back.png differ diff --git a/gfx/pokemon/tyranitar/front.animated.2bpp.lz.e0e9187e b/gfx/pokemon/tyranitar/front.animated.2bpp.lz.e0e9187e new file mode 100644 index 000000000..07d48a5fe Binary files /dev/null and b/gfx/pokemon/tyranitar/front.animated.2bpp.lz.e0e9187e differ diff --git a/gfx/pokemon/tyranitar/front.png b/gfx/pokemon/tyranitar/front.png new file mode 100644 index 000000000..4b1ba3416 Binary files /dev/null and b/gfx/pokemon/tyranitar/front.png differ diff --git a/gfx/pokemon/tyranitar/shiny.pal b/gfx/pokemon/tyranitar/shiny.pal new file mode 100644 index 000000000..4eebd8b4f --- /dev/null +++ b/gfx/pokemon/tyranitar/shiny.pal @@ -0,0 +1,4 @@ + + RGB 21, 18, 15 + RGB 19, 01, 31 + diff --git a/gfx/pokemon/tyrogue/anim0.asm b/gfx/pokemon/tyrogue/anim0.asm new file mode 100644 index 000000000..e1470d816 --- /dev/null +++ b/gfx/pokemon/tyrogue/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 08 + setrepeat 4 + frame 2, 05 + frame 3, 06 + dorepeat 2 + endanim +; 0xd15b7 diff --git a/gfx/pokemon/tyrogue/anim1.asm b/gfx/pokemon/tyrogue/anim1.asm new file mode 100644 index 000000000..da73f62e3 --- /dev/null +++ b/gfx/pokemon/tyrogue/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 4, 05 + dorepeat 1 + endanim +; 0xd2187 diff --git a/gfx/pokemon/tyrogue/back.2bpp.lz.5d84cef1 b/gfx/pokemon/tyrogue/back.2bpp.lz.5d84cef1 new file mode 100644 index 000000000..9c9a0babc Binary files /dev/null and b/gfx/pokemon/tyrogue/back.2bpp.lz.5d84cef1 differ diff --git a/gfx/pokemon/tyrogue/back.png b/gfx/pokemon/tyrogue/back.png new file mode 100644 index 000000000..22c1d61c4 Binary files /dev/null and b/gfx/pokemon/tyrogue/back.png differ diff --git a/gfx/pokemon/tyrogue/front.animated.2bpp.lz.a3790421 b/gfx/pokemon/tyrogue/front.animated.2bpp.lz.a3790421 new file mode 100644 index 000000000..8245825fb Binary files /dev/null and b/gfx/pokemon/tyrogue/front.animated.2bpp.lz.a3790421 differ diff --git a/gfx/pokemon/tyrogue/front.png b/gfx/pokemon/tyrogue/front.png new file mode 100644 index 000000000..af8af4a4e Binary files /dev/null and b/gfx/pokemon/tyrogue/front.png differ diff --git a/gfx/pokemon/tyrogue/shiny.pal b/gfx/pokemon/tyrogue/shiny.pal new file mode 100644 index 000000000..53e0a5c1e --- /dev/null +++ b/gfx/pokemon/tyrogue/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 19, 18 + RGB 09, 13, 29 + diff --git a/gfx/pokemon/umbreon/anim0.asm b/gfx/pokemon/umbreon/anim0.asm new file mode 100644 index 000000000..541539979 --- /dev/null +++ b/gfx/pokemon/umbreon/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 07 + frame 2, 30 + setrepeat 2 + frame 2, 08 + frame 3, 08 + dorepeat 3 + frame 2, 30 + endanim +; 0xd13be diff --git a/gfx/pokemon/umbreon/anim1.asm b/gfx/pokemon/umbreon/anim1.asm new file mode 100644 index 000000000..adb0158e2 --- /dev/null +++ b/gfx/pokemon/umbreon/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 04 + frame 4, 04 + dorepeat 1 + endanim +; 0xd2046 diff --git a/gfx/pokemon/umbreon/back.2bpp.lz.55e50b8c b/gfx/pokemon/umbreon/back.2bpp.lz.55e50b8c new file mode 100644 index 000000000..cf39af2c6 Binary files /dev/null and b/gfx/pokemon/umbreon/back.2bpp.lz.55e50b8c differ diff --git a/gfx/pokemon/umbreon/back.png b/gfx/pokemon/umbreon/back.png new file mode 100644 index 000000000..f1cce4fc8 Binary files /dev/null and b/gfx/pokemon/umbreon/back.png differ diff --git a/gfx/pokemon/umbreon/front.animated.2bpp.lz.b484be57 b/gfx/pokemon/umbreon/front.animated.2bpp.lz.b484be57 new file mode 100644 index 000000000..64a338138 Binary files /dev/null and b/gfx/pokemon/umbreon/front.animated.2bpp.lz.b484be57 differ diff --git a/gfx/pokemon/umbreon/front.png b/gfx/pokemon/umbreon/front.png new file mode 100644 index 000000000..c1bf9c2f8 Binary files /dev/null and b/gfx/pokemon/umbreon/front.png differ diff --git a/gfx/pokemon/umbreon/shiny.pal b/gfx/pokemon/umbreon/shiny.pal new file mode 100644 index 000000000..9173bbb15 --- /dev/null +++ b/gfx/pokemon/umbreon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 10, 11, 31 + RGB 06, 07, 05 + diff --git a/gfx/pokemon/unown/anim0.asm b/gfx/pokemon/unown/anim0.asm new file mode 100644 index 000000000..510d2751c --- /dev/null +++ b/gfx/pokemon/unown/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 05 + frame 2, 05 + frame 3, 05 + frame 4, 05 + frame 5, 05 + frame 6, 05 + frame 7, 05 + frame 8, 05 + frame 9, 05 + frame 10, 05 + endanim +; 0xd13fe diff --git a/gfx/pokemon/unown/anim1.asm b/gfx/pokemon/unown/anim1.asm new file mode 100644 index 000000000..3d0f65488 --- /dev/null +++ b/gfx/pokemon/unown/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 11, 05 + dorepeat 1 + endanim +; 0xd2066 diff --git a/gfx/pokemon/unown/bitmask.asm b/gfx/pokemon/unown/bitmask.asm new file mode 100644 index 000000000..f0ae4e5b2 --- /dev/null +++ b/gfx/pokemon/unown/bitmask.asm @@ -0,0 +1,31 @@ +; 0 + db %00100000 + db %10101100 + db %01100111 + db %00000000 +; 1 + db %10100000 + db %10111100 + db %01100111 + db %00000000 +; 2 + db %10000000 + db %00110000 + db %00000100 + db %00000000 +; 3 + db %10100000 + db %10111100 + db %00100101 + db %00000000 +; 4 + db %00100000 + db %10101100 + db %00100101 + db %00000000 +; 5 + db %00000000 + db %00010000 + db %00000000 + db %00000000 +; 0xd36ab diff --git a/gfx/pokemon/unown/frames.asm b/gfx/pokemon/unown/frames.asm new file mode 100644 index 000000000..ca996e90a --- /dev/null +++ b/gfx/pokemon/unown/frames.asm @@ -0,0 +1,45 @@ + dw .frame1 + dw .frame2 + dw .frame3 + dw .frame4 + dw .frame5 + dw .frame6 + dw .frame7 + dw .frame8 + dw .frame9 + dw .frame10 + dw .frame11 +.frame1 + db $00 ; bitmask + db $19, $1a, $1b, $1c, $00, $1d, $1e, $1f, $00, $20 +.frame2 + db $00 ; bitmask + db $19, $1a, $1b, $21, $00, $1d, $1e, $22, $00, $20 +.frame3 + db $01 ; bitmask + db $23, $24, $25, $26, $27, $1c, $00, $28, $29, $1f, $2a, $2b +.frame4 + db $01 ; bitmask + db $23, $24, $25, $26, $27, $21, $00, $28, $29, $22, $2a, $2b +.frame5 + db $02 ; bitmask + db $24, $27, $1c, $1f +.frame6 + db $02 ; bitmask + db $24, $27, $21, $22 +.frame7 + db $03 ; bitmask + db $19, $24, $1a, $1b, $27, $1c, $00, $2c, $1f, $2d +.frame8 + db $03 ; bitmask + db $19, $24, $1a, $1b, $27, $21, $00, $2c, $22, $2d +.frame9 + db $04 ; bitmask + db $23, $25, $2e, $1c, $00, $2f, $1f, $2d +.frame10 + db $04 ; bitmask + db $23, $25, $2e, $21, $00, $2f, $22, $2d +.frame11 + db $05 ; bitmask + db $27 +; 0xd8e5e diff --git a/gfx/pokemon/unown/normal.pal b/gfx/pokemon/unown/normal.pal new file mode 100644 index 000000000..19f5252a7 --- /dev/null +++ b/gfx/pokemon/unown/normal.pal @@ -0,0 +1,4 @@ + + RGB 15, 15, 16 + RGB 07, 07, 08 + diff --git a/gfx/pokemon/unown/shiny.pal b/gfx/pokemon/unown/shiny.pal new file mode 100644 index 000000000..6a30f11e6 --- /dev/null +++ b/gfx/pokemon/unown/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 19, 31 + RGB 02, 11, 31 + diff --git a/gfx/pokemon/unown_a/anim0.asm b/gfx/pokemon/unown_a/anim0.asm new file mode 100644 index 000000000..7243ed0fb --- /dev/null +++ b/gfx/pokemon/unown_a/anim0.asm @@ -0,0 +1,13 @@ + frame 0, 08 + frame 1, 08 + frame 2, 24 + frame 1, 08 + frame 0, 08 + setrepeat 2 + frame 3, 07 + frame 0, 07 + frame 4, 07 + frame 0, 07 + dorepeat 6 + endanim +; 0xd2274 diff --git a/gfx/pokemon/unown_a/anim1.asm b/gfx/pokemon/unown_a/anim1.asm new file mode 100644 index 000000000..d995ba44d --- /dev/null +++ b/gfx/pokemon/unown_a/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 5, 06 + dorepeat 1 + endanim +; 0xd240e diff --git a/gfx/pokemon/unown_a/back.2bpp.lz.b8389572 b/gfx/pokemon/unown_a/back.2bpp.lz.b8389572 new file mode 100644 index 000000000..08833e3e2 Binary files /dev/null and b/gfx/pokemon/unown_a/back.2bpp.lz.b8389572 differ diff --git a/gfx/pokemon/unown_a/back.png b/gfx/pokemon/unown_a/back.png new file mode 100644 index 000000000..48f7c0200 Binary files /dev/null and b/gfx/pokemon/unown_a/back.png differ diff --git a/gfx/pokemon/unown_a/front.animated.2bpp.lz.47e16756 b/gfx/pokemon/unown_a/front.animated.2bpp.lz.47e16756 new file mode 100644 index 000000000..6f0639575 Binary files /dev/null and b/gfx/pokemon/unown_a/front.animated.2bpp.lz.47e16756 differ diff --git a/gfx/pokemon/unown_a/front.png b/gfx/pokemon/unown_a/front.png new file mode 100644 index 000000000..1949bdc9a Binary files /dev/null and b/gfx/pokemon/unown_a/front.png differ diff --git a/gfx/pokemon/unown_anim_pointers.asm b/gfx/pokemon/unown_anim_pointers.asm new file mode 100644 index 000000000..46aa757e4 --- /dev/null +++ b/gfx/pokemon/unown_anim_pointers.asm @@ -0,0 +1,27 @@ +UnownAnimationPointers: + dw UnownAAnimation + dw UnownBAnimation + dw UnownCAnimation + dw UnownDAnimation + dw UnownEAnimation + dw UnownFAnimation + dw UnownGAnimation + dw UnownHAnimation + dw UnownIAnimation + dw UnownJAnimation + dw UnownKAnimation + dw UnownLAnimation + dw UnownMAnimation + dw UnownNAnimation + dw UnownOAnimation + dw UnownPAnimation + dw UnownQAnimation + dw UnownRAnimation + dw UnownSAnimation + dw UnownTAnimation + dw UnownUAnimation + dw UnownVAnimation + dw UnownWAnimation + dw UnownXAnimation + dw UnownYAnimation + dw UnownZAnimation diff --git a/gfx/pokemon/unown_anims.asm b/gfx/pokemon/unown_anims.asm new file mode 100644 index 000000000..cb5bf0aa2 --- /dev/null +++ b/gfx/pokemon/unown_anims.asm @@ -0,0 +1,27 @@ +UnownAnimations: +UnownAAnimation: INCLUDE "gfx/pokemon/unown_a/anim0.asm" +UnownBAnimation: INCLUDE "gfx/pokemon/unown_b/anim0.asm" +UnownCAnimation: INCLUDE "gfx/pokemon/unown_c/anim0.asm" +UnownDAnimation: INCLUDE "gfx/pokemon/unown_d/anim0.asm" +UnownEAnimation: INCLUDE "gfx/pokemon/unown_e/anim0.asm" +UnownFAnimation: INCLUDE "gfx/pokemon/unown_f/anim0.asm" +UnownGAnimation: INCLUDE "gfx/pokemon/unown_g/anim0.asm" +UnownHAnimation: INCLUDE "gfx/pokemon/unown_h/anim0.asm" +UnownIAnimation: INCLUDE "gfx/pokemon/unown_i/anim0.asm" +UnownJAnimation: INCLUDE "gfx/pokemon/unown_j/anim0.asm" +UnownKAnimation: INCLUDE "gfx/pokemon/unown_k/anim0.asm" +UnownLAnimation: INCLUDE "gfx/pokemon/unown_l/anim0.asm" +UnownMAnimation: INCLUDE "gfx/pokemon/unown_m/anim0.asm" +UnownNAnimation: INCLUDE "gfx/pokemon/unown_n/anim0.asm" +UnownOAnimation: INCLUDE "gfx/pokemon/unown_o/anim0.asm" +UnownPAnimation: INCLUDE "gfx/pokemon/unown_p/anim0.asm" +UnownQAnimation: INCLUDE "gfx/pokemon/unown_q/anim0.asm" +UnownRAnimation: INCLUDE "gfx/pokemon/unown_r/anim0.asm" +UnownSAnimation: INCLUDE "gfx/pokemon/unown_s/anim0.asm" +UnownTAnimation: INCLUDE "gfx/pokemon/unown_t/anim0.asm" +UnownUAnimation: INCLUDE "gfx/pokemon/unown_u/anim0.asm" +UnownVAnimation: INCLUDE "gfx/pokemon/unown_v/anim0.asm" +UnownWAnimation: INCLUDE "gfx/pokemon/unown_w/anim0.asm" +UnownXAnimation: INCLUDE "gfx/pokemon/unown_x/anim0.asm" +UnownYAnimation: INCLUDE "gfx/pokemon/unown_y/anim0.asm" +UnownZAnimation: INCLUDE "gfx/pokemon/unown_z/anim0.asm" diff --git a/gfx/pokemon/unown_b/anim0.asm b/gfx/pokemon/unown_b/anim0.asm new file mode 100644 index 000000000..7683b9e84 --- /dev/null +++ b/gfx/pokemon/unown_b/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 08 + frame 2, 18 + frame 3, 06 + setrepeat 3 + frame 4, 04 + frame 5, 04 + dorepeat 4 + endanim +; 0xd2283 diff --git a/gfx/pokemon/unown_b/anim1.asm b/gfx/pokemon/unown_b/anim1.asm new file mode 100644 index 000000000..b8e03b299 --- /dev/null +++ b/gfx/pokemon/unown_b/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 03 + frame 6, 04 + dorepeat 1 + endanim +; 0xd2417 diff --git a/gfx/pokemon/unown_b/back.2bpp.lz.72a0840f b/gfx/pokemon/unown_b/back.2bpp.lz.72a0840f new file mode 100644 index 000000000..46375f630 Binary files /dev/null and b/gfx/pokemon/unown_b/back.2bpp.lz.72a0840f differ diff --git a/gfx/pokemon/unown_b/back.png b/gfx/pokemon/unown_b/back.png new file mode 100644 index 000000000..3ceaba03c Binary files /dev/null and b/gfx/pokemon/unown_b/back.png differ diff --git a/gfx/pokemon/unown_b/front.animated.2bpp.lz.5742d494 b/gfx/pokemon/unown_b/front.animated.2bpp.lz.5742d494 new file mode 100644 index 000000000..661c64a9e Binary files /dev/null and b/gfx/pokemon/unown_b/front.animated.2bpp.lz.5742d494 differ diff --git a/gfx/pokemon/unown_b/front.png b/gfx/pokemon/unown_b/front.png new file mode 100644 index 000000000..9858a26ba Binary files /dev/null and b/gfx/pokemon/unown_b/front.png differ diff --git a/gfx/pokemon/unown_bitmask_pointers.asm b/gfx/pokemon/unown_bitmask_pointers.asm new file mode 100644 index 000000000..a20db9700 --- /dev/null +++ b/gfx/pokemon/unown_bitmask_pointers.asm @@ -0,0 +1,27 @@ +UnownBitmasksPointers: + dw UnownABitmasks + dw UnownBBitmasks + dw UnownCBitmasks + dw UnownDBitmasks + dw UnownEBitmasks + dw UnownFBitmasks + dw UnownGBitmasks + dw UnownHBitmasks + dw UnownIBitmasks + dw UnownJBitmasks + dw UnownKBitmasks + dw UnownLBitmasks + dw UnownMBitmasks + dw UnownNBitmasks + dw UnownOBitmasks + dw UnownPBitmasks + dw UnownQBitmasks + dw UnownRBitmasks + dw UnownSBitmasks + dw UnownTBitmasks + dw UnownUBitmasks + dw UnownVBitmasks + dw UnownWBitmasks + dw UnownXBitmasks + dw UnownYBitmasks + dw UnownZBitmasks diff --git a/gfx/pokemon/unown_bitmasks.asm b/gfx/pokemon/unown_bitmasks.asm new file mode 100644 index 000000000..99604c98f --- /dev/null +++ b/gfx/pokemon/unown_bitmasks.asm @@ -0,0 +1,26 @@ +UnownABitmasks: INCLUDE "gfx/pokemon/unown_a/bitmask.asm" +UnownBBitmasks: INCLUDE "gfx/pokemon/unown_b/bitmask.asm" +UnownCBitmasks: INCLUDE "gfx/pokemon/unown_c/bitmask.asm" +UnownDBitmasks: INCLUDE "gfx/pokemon/unown_d/bitmask.asm" +UnownEBitmasks: INCLUDE "gfx/pokemon/unown_e/bitmask.asm" +UnownFBitmasks: INCLUDE "gfx/pokemon/unown_f/bitmask.asm" +UnownGBitmasks: INCLUDE "gfx/pokemon/unown_g/bitmask.asm" +UnownHBitmasks: INCLUDE "gfx/pokemon/unown_h/bitmask.asm" +UnownIBitmasks: INCLUDE "gfx/pokemon/unown_i/bitmask.asm" +UnownJBitmasks: INCLUDE "gfx/pokemon/unown_j/bitmask.asm" +UnownKBitmasks: INCLUDE "gfx/pokemon/unown_k/bitmask.asm" +UnownLBitmasks: INCLUDE "gfx/pokemon/unown_l/bitmask.asm" +UnownMBitmasks: INCLUDE "gfx/pokemon/unown_m/bitmask.asm" +UnownNBitmasks: INCLUDE "gfx/pokemon/unown_n/bitmask.asm" +UnownOBitmasks: INCLUDE "gfx/pokemon/unown_o/bitmask.asm" +UnownPBitmasks: INCLUDE "gfx/pokemon/unown_p/bitmask.asm" +UnownQBitmasks: INCLUDE "gfx/pokemon/unown_q/bitmask.asm" +UnownRBitmasks: INCLUDE "gfx/pokemon/unown_r/bitmask.asm" +UnownSBitmasks: INCLUDE "gfx/pokemon/unown_s/bitmask.asm" +UnownTBitmasks: INCLUDE "gfx/pokemon/unown_t/bitmask.asm" +UnownUBitmasks: INCLUDE "gfx/pokemon/unown_u/bitmask.asm" +UnownVBitmasks: INCLUDE "gfx/pokemon/unown_v/bitmask.asm" +UnownWBitmasks: INCLUDE "gfx/pokemon/unown_w/bitmask.asm" +UnownXBitmasks: INCLUDE "gfx/pokemon/unown_x/bitmask.asm" +UnownYBitmasks: INCLUDE "gfx/pokemon/unown_y/bitmask.asm" +UnownZBitmasks: INCLUDE "gfx/pokemon/unown_z/bitmask.asm" diff --git a/gfx/pokemon/unown_c/anim0.asm b/gfx/pokemon/unown_c/anim0.asm new file mode 100644 index 000000000..1e8b894ab --- /dev/null +++ b/gfx/pokemon/unown_c/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 05 + frame 1, 05 + frame 2, 05 + setrepeat 2 + frame 3, 04 + frame 2, 04 + dorepeat 4 + endanim +; 0xd2292 diff --git a/gfx/pokemon/unown_c/anim1.asm b/gfx/pokemon/unown_c/anim1.asm new file mode 100644 index 000000000..fcf07ced3 --- /dev/null +++ b/gfx/pokemon/unown_c/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd2420 diff --git a/gfx/pokemon/unown_c/back.2bpp.lz.f92b665a b/gfx/pokemon/unown_c/back.2bpp.lz.f92b665a new file mode 100644 index 000000000..796ba6d6a Binary files /dev/null and b/gfx/pokemon/unown_c/back.2bpp.lz.f92b665a differ diff --git a/gfx/pokemon/unown_c/back.png b/gfx/pokemon/unown_c/back.png new file mode 100644 index 000000000..7f7655dd7 Binary files /dev/null and b/gfx/pokemon/unown_c/back.png differ diff --git a/gfx/pokemon/unown_c/front.animated.2bpp.lz.5fef639b b/gfx/pokemon/unown_c/front.animated.2bpp.lz.5fef639b new file mode 100644 index 000000000..18fb3b48b Binary files /dev/null and b/gfx/pokemon/unown_c/front.animated.2bpp.lz.5fef639b differ diff --git a/gfx/pokemon/unown_c/front.png b/gfx/pokemon/unown_c/front.png new file mode 100644 index 000000000..057fffdc7 Binary files /dev/null and b/gfx/pokemon/unown_c/front.png differ diff --git a/gfx/pokemon/unown_d/anim0.asm b/gfx/pokemon/unown_d/anim0.asm new file mode 100644 index 000000000..51c3b2de1 --- /dev/null +++ b/gfx/pokemon/unown_d/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 2, 10 + frame 0, 08 + frame 1, 10 + frame 0, 08 + dorepeat 1 + endanim +; 0xd229f diff --git a/gfx/pokemon/unown_d/anim1.asm b/gfx/pokemon/unown_d/anim1.asm new file mode 100644 index 000000000..17604ce36 --- /dev/null +++ b/gfx/pokemon/unown_d/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2429 diff --git a/gfx/pokemon/unown_d/back.2bpp.lz.c8213d32 b/gfx/pokemon/unown_d/back.2bpp.lz.c8213d32 new file mode 100644 index 000000000..8a967332f Binary files /dev/null and b/gfx/pokemon/unown_d/back.2bpp.lz.c8213d32 differ diff --git a/gfx/pokemon/unown_d/back.png b/gfx/pokemon/unown_d/back.png new file mode 100644 index 000000000..443c7c589 Binary files /dev/null and b/gfx/pokemon/unown_d/back.png differ diff --git a/gfx/pokemon/unown_d/front.animated.2bpp.lz.7810a57f b/gfx/pokemon/unown_d/front.animated.2bpp.lz.7810a57f new file mode 100644 index 000000000..d8004662d Binary files /dev/null and b/gfx/pokemon/unown_d/front.animated.2bpp.lz.7810a57f differ diff --git a/gfx/pokemon/unown_d/front.png b/gfx/pokemon/unown_d/front.png new file mode 100644 index 000000000..df2114a35 Binary files /dev/null and b/gfx/pokemon/unown_d/front.png differ diff --git a/gfx/pokemon/unown_e/anim0.asm b/gfx/pokemon/unown_e/anim0.asm new file mode 100644 index 000000000..0a58feb4d --- /dev/null +++ b/gfx/pokemon/unown_e/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 05 + frame 1, 06 + frame 0, 05 + setrepeat 2 + frame 2, 03 + frame 0, 02 + dorepeat 4 + endanim +; 0xd22ae diff --git a/gfx/pokemon/unown_e/anim1.asm b/gfx/pokemon/unown_e/anim1.asm new file mode 100644 index 000000000..53db93c1f --- /dev/null +++ b/gfx/pokemon/unown_e/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2432 diff --git a/gfx/pokemon/unown_e/back.2bpp.lz.777a8ecd b/gfx/pokemon/unown_e/back.2bpp.lz.777a8ecd new file mode 100644 index 000000000..dfc768a1e Binary files /dev/null and b/gfx/pokemon/unown_e/back.2bpp.lz.777a8ecd differ diff --git a/gfx/pokemon/unown_e/back.png b/gfx/pokemon/unown_e/back.png new file mode 100644 index 000000000..567ebcfb2 Binary files /dev/null and b/gfx/pokemon/unown_e/back.png differ diff --git a/gfx/pokemon/unown_e/front.animated.2bpp.lz.83f43ff7 b/gfx/pokemon/unown_e/front.animated.2bpp.lz.83f43ff7 new file mode 100644 index 000000000..5358f5ff9 Binary files /dev/null and b/gfx/pokemon/unown_e/front.animated.2bpp.lz.83f43ff7 differ diff --git a/gfx/pokemon/unown_e/front.png b/gfx/pokemon/unown_e/front.png new file mode 100644 index 000000000..36d98fe38 Binary files /dev/null and b/gfx/pokemon/unown_e/front.png differ diff --git a/gfx/pokemon/unown_extra_pointers.asm b/gfx/pokemon/unown_extra_pointers.asm new file mode 100644 index 000000000..5b466064d --- /dev/null +++ b/gfx/pokemon/unown_extra_pointers.asm @@ -0,0 +1,27 @@ +UnownAnimationExtraPointers: + dw UnownAAnimationExtra + dw UnownBAnimationExtra + dw UnownCAnimationExtra + dw UnownDAnimationExtra + dw UnownEAnimationExtra + dw UnownFAnimationExtra + dw UnownGAnimationExtra + dw UnownHAnimationExtra + dw UnownIAnimationExtra + dw UnownJAnimationExtra + dw UnownKAnimationExtra + dw UnownLAnimationExtra + dw UnownMAnimationExtra + dw UnownNAnimationExtra + dw UnownOAnimationExtra + dw UnownPAnimationExtra + dw UnownQAnimationExtra + dw UnownRAnimationExtra + dw UnownSAnimationExtra + dw UnownTAnimationExtra + dw UnownUAnimationExtra + dw UnownVAnimationExtra + dw UnownWAnimationExtra + dw UnownXAnimationExtra + dw UnownYAnimationExtra + dw UnownZAnimationExtra diff --git a/gfx/pokemon/unown_extras.asm b/gfx/pokemon/unown_extras.asm new file mode 100644 index 000000000..218a539fe --- /dev/null +++ b/gfx/pokemon/unown_extras.asm @@ -0,0 +1,26 @@ +UnownAAnimationExtra: INCLUDE "gfx/pokemon/unown_a/anim1.asm" +UnownBAnimationExtra: INCLUDE "gfx/pokemon/unown_b/anim1.asm" +UnownCAnimationExtra: INCLUDE "gfx/pokemon/unown_c/anim1.asm" +UnownDAnimationExtra: INCLUDE "gfx/pokemon/unown_d/anim1.asm" +UnownEAnimationExtra: INCLUDE "gfx/pokemon/unown_e/anim1.asm" +UnownFAnimationExtra: INCLUDE "gfx/pokemon/unown_f/anim1.asm" +UnownGAnimationExtra: INCLUDE "gfx/pokemon/unown_g/anim1.asm" +UnownHAnimationExtra: INCLUDE "gfx/pokemon/unown_h/anim1.asm" +UnownIAnimationExtra: INCLUDE "gfx/pokemon/unown_i/anim1.asm" +UnownJAnimationExtra: INCLUDE "gfx/pokemon/unown_j/anim1.asm" +UnownKAnimationExtra: INCLUDE "gfx/pokemon/unown_k/anim1.asm" +UnownLAnimationExtra: INCLUDE "gfx/pokemon/unown_l/anim1.asm" +UnownMAnimationExtra: INCLUDE "gfx/pokemon/unown_m/anim1.asm" +UnownNAnimationExtra: INCLUDE "gfx/pokemon/unown_n/anim1.asm" +UnownOAnimationExtra: INCLUDE "gfx/pokemon/unown_o/anim1.asm" +UnownPAnimationExtra: INCLUDE "gfx/pokemon/unown_p/anim1.asm" +UnownQAnimationExtra: INCLUDE "gfx/pokemon/unown_q/anim1.asm" +UnownRAnimationExtra: INCLUDE "gfx/pokemon/unown_r/anim1.asm" +UnownSAnimationExtra: INCLUDE "gfx/pokemon/unown_s/anim1.asm" +UnownTAnimationExtra: INCLUDE "gfx/pokemon/unown_t/anim1.asm" +UnownUAnimationExtra: INCLUDE "gfx/pokemon/unown_u/anim1.asm" +UnownVAnimationExtra: INCLUDE "gfx/pokemon/unown_v/anim1.asm" +UnownWAnimationExtra: INCLUDE "gfx/pokemon/unown_w/anim1.asm" +UnownXAnimationExtra: INCLUDE "gfx/pokemon/unown_x/anim1.asm" +UnownYAnimationExtra: INCLUDE "gfx/pokemon/unown_y/anim1.asm" +UnownZAnimationExtra: INCLUDE "gfx/pokemon/unown_z/anim1.asm" diff --git a/gfx/pokemon/unown_f/anim0.asm b/gfx/pokemon/unown_f/anim0.asm new file mode 100644 index 000000000..f81c298a6 --- /dev/null +++ b/gfx/pokemon/unown_f/anim0.asm @@ -0,0 +1,10 @@ + setrepeat 2 + frame 1, 11 + frame 2, 11 + dorepeat 1 + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 5 + endanim +; 0xd22bf diff --git a/gfx/pokemon/unown_f/anim1.asm b/gfx/pokemon/unown_f/anim1.asm new file mode 100644 index 000000000..a75176981 --- /dev/null +++ b/gfx/pokemon/unown_f/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd243b diff --git a/gfx/pokemon/unown_f/back.2bpp.lz.3fe1c85a b/gfx/pokemon/unown_f/back.2bpp.lz.3fe1c85a new file mode 100644 index 000000000..47e54ab66 Binary files /dev/null and b/gfx/pokemon/unown_f/back.2bpp.lz.3fe1c85a differ diff --git a/gfx/pokemon/unown_f/back.png b/gfx/pokemon/unown_f/back.png new file mode 100644 index 000000000..de60198da Binary files /dev/null and b/gfx/pokemon/unown_f/back.png differ diff --git a/gfx/pokemon/unown_f/front.animated.2bpp.lz.ec888954 b/gfx/pokemon/unown_f/front.animated.2bpp.lz.ec888954 new file mode 100644 index 000000000..4e0339419 Binary files /dev/null and b/gfx/pokemon/unown_f/front.animated.2bpp.lz.ec888954 differ diff --git a/gfx/pokemon/unown_f/front.png b/gfx/pokemon/unown_f/front.png new file mode 100644 index 000000000..f47dcb53b Binary files /dev/null and b/gfx/pokemon/unown_f/front.png differ diff --git a/gfx/pokemon/unown_frame_pointers.asm b/gfx/pokemon/unown_frame_pointers.asm new file mode 100644 index 000000000..8907f5303 --- /dev/null +++ b/gfx/pokemon/unown_frame_pointers.asm @@ -0,0 +1,27 @@ +UnownFramesPointers: + dw UnownAFrames + dw UnownBFrames + dw UnownCFrames + dw UnownDFrames + dw UnownEFrames + dw UnownFFrames + dw UnownGFrames + dw UnownHFrames + dw UnownIFrames + dw UnownJFrames + dw UnownKFrames + dw UnownLFrames + dw UnownMFrames + dw UnownNFrames + dw UnownOFrames + dw UnownPFrames + dw UnownQFrames + dw UnownRFrames + dw UnownSFrames + dw UnownTFrames + dw UnownUFrames + dw UnownVFrames + dw UnownWFrames + dw UnownXFrames + dw UnownYFrames + dw UnownZFrames diff --git a/gfx/pokemon/unown_frames.asm b/gfx/pokemon/unown_frames.asm new file mode 100644 index 000000000..7b7c5bc7e --- /dev/null +++ b/gfx/pokemon/unown_frames.asm @@ -0,0 +1,27 @@ +UnownsFrames: +UnownAFrames: INCLUDE "gfx/pokemon/unown_a/frames.asm" +UnownBFrames: INCLUDE "gfx/pokemon/unown_b/frames.asm" +UnownCFrames: INCLUDE "gfx/pokemon/unown_c/frames.asm" +UnownDFrames: INCLUDE "gfx/pokemon/unown_d/frames.asm" +UnownEFrames: INCLUDE "gfx/pokemon/unown_e/frames.asm" +UnownFFrames: INCLUDE "gfx/pokemon/unown_f/frames.asm" +UnownGFrames: INCLUDE "gfx/pokemon/unown_g/frames.asm" +UnownHFrames: INCLUDE "gfx/pokemon/unown_h/frames.asm" +UnownIFrames: INCLUDE "gfx/pokemon/unown_i/frames.asm" +UnownJFrames: INCLUDE "gfx/pokemon/unown_j/frames.asm" +UnownKFrames: INCLUDE "gfx/pokemon/unown_k/frames.asm" +UnownLFrames: INCLUDE "gfx/pokemon/unown_l/frames.asm" +UnownMFrames: INCLUDE "gfx/pokemon/unown_m/frames.asm" +UnownNFrames: INCLUDE "gfx/pokemon/unown_n/frames.asm" +UnownOFrames: INCLUDE "gfx/pokemon/unown_o/frames.asm" +UnownPFrames: INCLUDE "gfx/pokemon/unown_p/frames.asm" +UnownQFrames: INCLUDE "gfx/pokemon/unown_q/frames.asm" +UnownRFrames: INCLUDE "gfx/pokemon/unown_r/frames.asm" +UnownSFrames: INCLUDE "gfx/pokemon/unown_s/frames.asm" +UnownTFrames: INCLUDE "gfx/pokemon/unown_t/frames.asm" +UnownUFrames: INCLUDE "gfx/pokemon/unown_u/frames.asm" +UnownVFrames: INCLUDE "gfx/pokemon/unown_v/frames.asm" +UnownWFrames: INCLUDE "gfx/pokemon/unown_w/frames.asm" +UnownXFrames: INCLUDE "gfx/pokemon/unown_x/frames.asm" +UnownYFrames: INCLUDE "gfx/pokemon/unown_y/frames.asm" +UnownZFrames: INCLUDE "gfx/pokemon/unown_z/frames.asm" diff --git a/gfx/pokemon/unown_g/anim0.asm b/gfx/pokemon/unown_g/anim0.asm new file mode 100644 index 000000000..48100274f --- /dev/null +++ b/gfx/pokemon/unown_g/anim0.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 1, 06 + frame 2, 06 + frame 0, 06 + dorepeat 1 + endanim +; 0xd22ca diff --git a/gfx/pokemon/unown_g/anim1.asm b/gfx/pokemon/unown_g/anim1.asm new file mode 100644 index 000000000..45906aed4 --- /dev/null +++ b/gfx/pokemon/unown_g/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2444 diff --git a/gfx/pokemon/unown_g/back.2bpp.lz.91650439 b/gfx/pokemon/unown_g/back.2bpp.lz.91650439 new file mode 100644 index 000000000..1f380f3ba Binary files /dev/null and b/gfx/pokemon/unown_g/back.2bpp.lz.91650439 differ diff --git a/gfx/pokemon/unown_g/back.png b/gfx/pokemon/unown_g/back.png new file mode 100644 index 000000000..b31728f31 Binary files /dev/null and b/gfx/pokemon/unown_g/back.png differ diff --git a/gfx/pokemon/unown_g/front.animated.2bpp.lz.c0b74162 b/gfx/pokemon/unown_g/front.animated.2bpp.lz.c0b74162 new file mode 100644 index 000000000..0e6e343f9 Binary files /dev/null and b/gfx/pokemon/unown_g/front.animated.2bpp.lz.c0b74162 differ diff --git a/gfx/pokemon/unown_g/front.png b/gfx/pokemon/unown_g/front.png new file mode 100644 index 000000000..1439f4d7e Binary files /dev/null and b/gfx/pokemon/unown_g/front.png differ diff --git a/gfx/pokemon/unown_h/anim0.asm b/gfx/pokemon/unown_h/anim0.asm new file mode 100644 index 000000000..fdee3822b --- /dev/null +++ b/gfx/pokemon/unown_h/anim0.asm @@ -0,0 +1,11 @@ + frame 5, 12 + frame 1, 06 + frame 2, 04 + frame 3, 03 + frame 4, 02 + frame 1, 02 + frame 2, 02 + frame 3, 02 + frame 4, 02 + endanim +; 0xd22dd diff --git a/gfx/pokemon/unown_h/anim1.asm b/gfx/pokemon/unown_h/anim1.asm new file mode 100644 index 000000000..e6fb90d5e --- /dev/null +++ b/gfx/pokemon/unown_h/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 5, 05 + dorepeat 1 + endanim +; 0xd244d diff --git a/gfx/pokemon/unown_h/back.2bpp.lz.78421e5b b/gfx/pokemon/unown_h/back.2bpp.lz.78421e5b new file mode 100644 index 000000000..926bf5757 Binary files /dev/null and b/gfx/pokemon/unown_h/back.2bpp.lz.78421e5b differ diff --git a/gfx/pokemon/unown_h/back.png b/gfx/pokemon/unown_h/back.png new file mode 100644 index 000000000..abf0b39e5 Binary files /dev/null and b/gfx/pokemon/unown_h/back.png differ diff --git a/gfx/pokemon/unown_h/front.animated.2bpp.lz.9a6afeb9 b/gfx/pokemon/unown_h/front.animated.2bpp.lz.9a6afeb9 new file mode 100644 index 000000000..be2d0293c Binary files /dev/null and b/gfx/pokemon/unown_h/front.animated.2bpp.lz.9a6afeb9 differ diff --git a/gfx/pokemon/unown_h/front.png b/gfx/pokemon/unown_h/front.png new file mode 100644 index 000000000..3c644c7da Binary files /dev/null and b/gfx/pokemon/unown_h/front.png differ diff --git a/gfx/pokemon/unown_i/anim0.asm b/gfx/pokemon/unown_i/anim0.asm new file mode 100644 index 000000000..38e19a0c9 --- /dev/null +++ b/gfx/pokemon/unown_i/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 1, 06 + frame 0, 05 + frame 2, 06 + frame 0, 05 + dorepeat 1 + endanim +; 0xd22ea diff --git a/gfx/pokemon/unown_i/anim1.asm b/gfx/pokemon/unown_i/anim1.asm new file mode 100644 index 000000000..1d5ce67ad --- /dev/null +++ b/gfx/pokemon/unown_i/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2456 diff --git a/gfx/pokemon/unown_i/back.2bpp.lz.7feb4b30 b/gfx/pokemon/unown_i/back.2bpp.lz.7feb4b30 new file mode 100644 index 000000000..7dcea181f Binary files /dev/null and b/gfx/pokemon/unown_i/back.2bpp.lz.7feb4b30 differ diff --git a/gfx/pokemon/unown_i/back.png b/gfx/pokemon/unown_i/back.png new file mode 100644 index 000000000..0d861d9f8 Binary files /dev/null and b/gfx/pokemon/unown_i/back.png differ diff --git a/gfx/pokemon/unown_i/front.animated.2bpp.lz.f5e7f816 b/gfx/pokemon/unown_i/front.animated.2bpp.lz.f5e7f816 new file mode 100644 index 000000000..dfd89c266 Binary files /dev/null and b/gfx/pokemon/unown_i/front.animated.2bpp.lz.f5e7f816 differ diff --git a/gfx/pokemon/unown_i/front.png b/gfx/pokemon/unown_i/front.png new file mode 100644 index 000000000..971439d5a Binary files /dev/null and b/gfx/pokemon/unown_i/front.png differ diff --git a/gfx/pokemon/unown_j/anim0.asm b/gfx/pokemon/unown_j/anim0.asm new file mode 100644 index 000000000..3a7467d45 --- /dev/null +++ b/gfx/pokemon/unown_j/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 03 + frame 1, 05 + frame 2, 07 + frame 1, 05 + dorepeat 1 + endanim +; 0xd22f7 diff --git a/gfx/pokemon/unown_j/anim1.asm b/gfx/pokemon/unown_j/anim1.asm new file mode 100644 index 000000000..d46b36028 --- /dev/null +++ b/gfx/pokemon/unown_j/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd245f diff --git a/gfx/pokemon/unown_j/back.2bpp.lz.b0f3bec2 b/gfx/pokemon/unown_j/back.2bpp.lz.b0f3bec2 new file mode 100644 index 000000000..c0eabf3ba Binary files /dev/null and b/gfx/pokemon/unown_j/back.2bpp.lz.b0f3bec2 differ diff --git a/gfx/pokemon/unown_j/back.png b/gfx/pokemon/unown_j/back.png new file mode 100644 index 000000000..93df2154c Binary files /dev/null and b/gfx/pokemon/unown_j/back.png differ diff --git a/gfx/pokemon/unown_j/front.animated.2bpp.lz.d8bf9223 b/gfx/pokemon/unown_j/front.animated.2bpp.lz.d8bf9223 new file mode 100644 index 000000000..ec8e536d3 Binary files /dev/null and b/gfx/pokemon/unown_j/front.animated.2bpp.lz.d8bf9223 differ diff --git a/gfx/pokemon/unown_j/front.png b/gfx/pokemon/unown_j/front.png new file mode 100644 index 000000000..03316dc6e Binary files /dev/null and b/gfx/pokemon/unown_j/front.png differ diff --git a/gfx/pokemon/unown_k/anim0.asm b/gfx/pokemon/unown_k/anim0.asm new file mode 100644 index 000000000..0948f212d --- /dev/null +++ b/gfx/pokemon/unown_k/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 07 + frame 1, 07 + frame 2, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd2304 diff --git a/gfx/pokemon/unown_k/anim1.asm b/gfx/pokemon/unown_k/anim1.asm new file mode 100644 index 000000000..8f8a4acb1 --- /dev/null +++ b/gfx/pokemon/unown_k/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2468 diff --git a/gfx/pokemon/unown_k/back.2bpp.lz.745fda48 b/gfx/pokemon/unown_k/back.2bpp.lz.745fda48 new file mode 100644 index 000000000..0f4e8fda7 Binary files /dev/null and b/gfx/pokemon/unown_k/back.2bpp.lz.745fda48 differ diff --git a/gfx/pokemon/unown_k/back.png b/gfx/pokemon/unown_k/back.png new file mode 100644 index 000000000..1fbb8b041 Binary files /dev/null and b/gfx/pokemon/unown_k/back.png differ diff --git a/gfx/pokemon/unown_k/front.animated.2bpp.lz.fb25b385 b/gfx/pokemon/unown_k/front.animated.2bpp.lz.fb25b385 new file mode 100644 index 000000000..b617e898c Binary files /dev/null and b/gfx/pokemon/unown_k/front.animated.2bpp.lz.fb25b385 differ diff --git a/gfx/pokemon/unown_k/front.png b/gfx/pokemon/unown_k/front.png new file mode 100644 index 000000000..ce6b81e9f Binary files /dev/null and b/gfx/pokemon/unown_k/front.png differ diff --git a/gfx/pokemon/unown_l/anim0.asm b/gfx/pokemon/unown_l/anim0.asm new file mode 100644 index 000000000..7b4e5e21c --- /dev/null +++ b/gfx/pokemon/unown_l/anim0.asm @@ -0,0 +1,12 @@ + setrepeat 2 + frame 0, 05 + frame 1, 06 + frame 2, 07 + frame 1, 06 + dorepeat 1 + frame 0, 10 + frame 3, 11 + frame 4, 12 + frame 3, 11 + endanim +; 0xd2319 diff --git a/gfx/pokemon/unown_l/anim1.asm b/gfx/pokemon/unown_l/anim1.asm new file mode 100644 index 000000000..859dec2ec --- /dev/null +++ b/gfx/pokemon/unown_l/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 5, 05 + dorepeat 1 + endanim +; 0xd2471 diff --git a/gfx/pokemon/unown_l/back.2bpp.lz.e38e0d57 b/gfx/pokemon/unown_l/back.2bpp.lz.e38e0d57 new file mode 100644 index 000000000..4f48955df Binary files /dev/null and b/gfx/pokemon/unown_l/back.2bpp.lz.e38e0d57 differ diff --git a/gfx/pokemon/unown_l/back.png b/gfx/pokemon/unown_l/back.png new file mode 100644 index 000000000..470d46c05 Binary files /dev/null and b/gfx/pokemon/unown_l/back.png differ diff --git a/gfx/pokemon/unown_l/front.animated.2bpp.lz.26195a59 b/gfx/pokemon/unown_l/front.animated.2bpp.lz.26195a59 new file mode 100644 index 000000000..d0eee7516 Binary files /dev/null and b/gfx/pokemon/unown_l/front.animated.2bpp.lz.26195a59 differ diff --git a/gfx/pokemon/unown_l/front.png b/gfx/pokemon/unown_l/front.png new file mode 100644 index 000000000..ff86501db Binary files /dev/null and b/gfx/pokemon/unown_l/front.png differ diff --git a/gfx/pokemon/unown_m/anim0.asm b/gfx/pokemon/unown_m/anim0.asm new file mode 100644 index 000000000..bb5292446 --- /dev/null +++ b/gfx/pokemon/unown_m/anim0.asm @@ -0,0 +1,12 @@ + frame 1, 06 + frame 2, 06 + frame 1, 03 + frame 0, 03 + setrepeat 2 + frame 0, 02 + frame 1, 02 + frame 2, 02 + frame 1, 02 + dorepeat 5 + endanim +; 0xd232e diff --git a/gfx/pokemon/unown_m/anim1.asm b/gfx/pokemon/unown_m/anim1.asm new file mode 100644 index 000000000..710300f20 --- /dev/null +++ b/gfx/pokemon/unown_m/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd247a diff --git a/gfx/pokemon/unown_m/back.2bpp.lz.38d93bc8 b/gfx/pokemon/unown_m/back.2bpp.lz.38d93bc8 new file mode 100644 index 000000000..3ab40cb03 Binary files /dev/null and b/gfx/pokemon/unown_m/back.2bpp.lz.38d93bc8 differ diff --git a/gfx/pokemon/unown_m/back.png b/gfx/pokemon/unown_m/back.png new file mode 100644 index 000000000..a7f90e72b Binary files /dev/null and b/gfx/pokemon/unown_m/back.png differ diff --git a/gfx/pokemon/unown_m/front.animated.2bpp.lz.2659315e b/gfx/pokemon/unown_m/front.animated.2bpp.lz.2659315e new file mode 100644 index 000000000..04e1592ce Binary files /dev/null and b/gfx/pokemon/unown_m/front.animated.2bpp.lz.2659315e differ diff --git a/gfx/pokemon/unown_m/front.png b/gfx/pokemon/unown_m/front.png new file mode 100644 index 000000000..b55a03682 Binary files /dev/null and b/gfx/pokemon/unown_m/front.png differ diff --git a/gfx/pokemon/unown_n/anim0.asm b/gfx/pokemon/unown_n/anim0.asm new file mode 100644 index 000000000..1f6924926 --- /dev/null +++ b/gfx/pokemon/unown_n/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 06 + frame 1, 06 + frame 2, 20 + frame 1, 06 + frame 0, 16 + frame 1, 03 + frame 2, 04 + frame 1, 03 + endanim +; 0xd233f diff --git a/gfx/pokemon/unown_n/anim1.asm b/gfx/pokemon/unown_n/anim1.asm new file mode 100644 index 000000000..5275e3463 --- /dev/null +++ b/gfx/pokemon/unown_n/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2483 diff --git a/gfx/pokemon/unown_n/back.2bpp.lz.c8b7d3a4 b/gfx/pokemon/unown_n/back.2bpp.lz.c8b7d3a4 new file mode 100644 index 000000000..c39417aa8 Binary files /dev/null and b/gfx/pokemon/unown_n/back.2bpp.lz.c8b7d3a4 differ diff --git a/gfx/pokemon/unown_n/back.png b/gfx/pokemon/unown_n/back.png new file mode 100644 index 000000000..801959468 Binary files /dev/null and b/gfx/pokemon/unown_n/back.png differ diff --git a/gfx/pokemon/unown_n/front.animated.2bpp.lz.96ce7c62 b/gfx/pokemon/unown_n/front.animated.2bpp.lz.96ce7c62 new file mode 100644 index 000000000..ec17bff9f Binary files /dev/null and b/gfx/pokemon/unown_n/front.animated.2bpp.lz.96ce7c62 differ diff --git a/gfx/pokemon/unown_n/front.png b/gfx/pokemon/unown_n/front.png new file mode 100644 index 000000000..2ba3f9a17 Binary files /dev/null and b/gfx/pokemon/unown_n/front.png differ diff --git a/gfx/pokemon/unown_o/anim0.asm b/gfx/pokemon/unown_o/anim0.asm new file mode 100644 index 000000000..581d47b9d --- /dev/null +++ b/gfx/pokemon/unown_o/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 06 + frame 3, 06 + frame 1, 12 + frame 2, 32 + frame 1, 10 + frame 3, 04 + endanim +; 0xd234c diff --git a/gfx/pokemon/unown_o/anim1.asm b/gfx/pokemon/unown_o/anim1.asm new file mode 100644 index 000000000..fec231c84 --- /dev/null +++ b/gfx/pokemon/unown_o/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd248c diff --git a/gfx/pokemon/unown_o/back.2bpp.lz.89ba693c b/gfx/pokemon/unown_o/back.2bpp.lz.89ba693c new file mode 100644 index 000000000..4d4b4fd4f Binary files /dev/null and b/gfx/pokemon/unown_o/back.2bpp.lz.89ba693c differ diff --git a/gfx/pokemon/unown_o/back.png b/gfx/pokemon/unown_o/back.png new file mode 100644 index 000000000..68c4e2743 Binary files /dev/null and b/gfx/pokemon/unown_o/back.png differ diff --git a/gfx/pokemon/unown_o/front.animated.2bpp.lz.a9151b66 b/gfx/pokemon/unown_o/front.animated.2bpp.lz.a9151b66 new file mode 100644 index 000000000..66b6b8141 Binary files /dev/null and b/gfx/pokemon/unown_o/front.animated.2bpp.lz.a9151b66 differ diff --git a/gfx/pokemon/unown_o/front.png b/gfx/pokemon/unown_o/front.png new file mode 100644 index 000000000..7fd75de36 Binary files /dev/null and b/gfx/pokemon/unown_o/front.png differ diff --git a/gfx/pokemon/unown_p/anim0.asm b/gfx/pokemon/unown_p/anim0.asm new file mode 100644 index 000000000..0cbaf30ed --- /dev/null +++ b/gfx/pokemon/unown_p/anim0.asm @@ -0,0 +1,5 @@ + frame 1, 10 + frame 2, 36 + frame 1, 06 + endanim +; 0xd2353 diff --git a/gfx/pokemon/unown_p/anim1.asm b/gfx/pokemon/unown_p/anim1.asm new file mode 100644 index 000000000..51e0e0941 --- /dev/null +++ b/gfx/pokemon/unown_p/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd2495 diff --git a/gfx/pokemon/unown_p/back.2bpp.lz.09c618c4 b/gfx/pokemon/unown_p/back.2bpp.lz.09c618c4 new file mode 100644 index 000000000..19fd45591 Binary files /dev/null and b/gfx/pokemon/unown_p/back.2bpp.lz.09c618c4 differ diff --git a/gfx/pokemon/unown_p/back.png b/gfx/pokemon/unown_p/back.png new file mode 100644 index 000000000..5098b51ce Binary files /dev/null and b/gfx/pokemon/unown_p/back.png differ diff --git a/gfx/pokemon/unown_p/front.animated.2bpp.lz.83a096fc b/gfx/pokemon/unown_p/front.animated.2bpp.lz.83a096fc new file mode 100644 index 000000000..53d4bfbcd Binary files /dev/null and b/gfx/pokemon/unown_p/front.animated.2bpp.lz.83a096fc differ diff --git a/gfx/pokemon/unown_p/front.png b/gfx/pokemon/unown_p/front.png new file mode 100644 index 000000000..eca40f041 Binary files /dev/null and b/gfx/pokemon/unown_p/front.png differ diff --git a/gfx/pokemon/unown_pic_pointers.asm b/gfx/pokemon/unown_pic_pointers.asm new file mode 100644 index 000000000..1ae0da6b6 --- /dev/null +++ b/gfx/pokemon/unown_pic_pointers.asm @@ -0,0 +1,54 @@ +UnownPicPointers:: +; entries correspond to Unown letters, two apiece + dba_pic UnownAFrontpic + dba_pic UnownABackpic + dba_pic UnownBFrontpic + dba_pic UnownBBackpic + dba_pic UnownCFrontpic + dba_pic UnownCBackpic + dba_pic UnownDFrontpic + dba_pic UnownDBackpic + dba_pic UnownEFrontpic + dba_pic UnownEBackpic + dba_pic UnownFFrontpic + dba_pic UnownFBackpic + dba_pic UnownGFrontpic + dba_pic UnownGBackpic + dba_pic UnownHFrontpic + dba_pic UnownHBackpic + dba_pic UnownIFrontpic + dba_pic UnownIBackpic + dba_pic UnownJFrontpic + dba_pic UnownJBackpic + dba_pic UnownKFrontpic + dba_pic UnownKBackpic + dba_pic UnownLFrontpic + dba_pic UnownLBackpic + dba_pic UnownMFrontpic + dba_pic UnownMBackpic + dba_pic UnownNFrontpic + dba_pic UnownNBackpic + dba_pic UnownOFrontpic + dba_pic UnownOBackpic + dba_pic UnownPFrontpic + dba_pic UnownPBackpic + dba_pic UnownQFrontpic + dba_pic UnownQBackpic + dba_pic UnownRFrontpic + dba_pic UnownRBackpic + dba_pic UnownSFrontpic + dba_pic UnownSBackpic + dba_pic UnownTFrontpic + dba_pic UnownTBackpic + dba_pic UnownUFrontpic + dba_pic UnownUBackpic + dba_pic UnownVFrontpic + dba_pic UnownVBackpic + dba_pic UnownWFrontpic + dba_pic UnownWBackpic + dba_pic UnownXFrontpic + dba_pic UnownXBackpic + dba_pic UnownYFrontpic + dba_pic UnownYBackpic + dba_pic UnownZFrontpic + dba_pic UnownZBackpic diff --git a/gfx/pokemon/unown_q/anim0.asm b/gfx/pokemon/unown_q/anim0.asm new file mode 100644 index 000000000..555f61cf3 --- /dev/null +++ b/gfx/pokemon/unown_q/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 05 + frame 1, 05 + frame 2, 05 + frame 1, 05 + dorepeat 1 + endanim +; 0xd2360 diff --git a/gfx/pokemon/unown_q/anim1.asm b/gfx/pokemon/unown_q/anim1.asm new file mode 100644 index 000000000..a17caa474 --- /dev/null +++ b/gfx/pokemon/unown_q/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd249e diff --git a/gfx/pokemon/unown_q/back.2bpp.lz.e32430b4 b/gfx/pokemon/unown_q/back.2bpp.lz.e32430b4 new file mode 100644 index 000000000..5199cdc6c Binary files /dev/null and b/gfx/pokemon/unown_q/back.2bpp.lz.e32430b4 differ diff --git a/gfx/pokemon/unown_q/back.png b/gfx/pokemon/unown_q/back.png new file mode 100644 index 000000000..9b2b34c51 Binary files /dev/null and b/gfx/pokemon/unown_q/back.png differ diff --git a/gfx/pokemon/unown_q/front.animated.2bpp.lz.44dad60c b/gfx/pokemon/unown_q/front.animated.2bpp.lz.44dad60c new file mode 100644 index 000000000..65536e23f Binary files /dev/null and b/gfx/pokemon/unown_q/front.animated.2bpp.lz.44dad60c differ diff --git a/gfx/pokemon/unown_q/front.png b/gfx/pokemon/unown_q/front.png new file mode 100644 index 000000000..98f19fdc1 Binary files /dev/null and b/gfx/pokemon/unown_q/front.png differ diff --git a/gfx/pokemon/unown_r/anim0.asm b/gfx/pokemon/unown_r/anim0.asm new file mode 100644 index 000000000..fde5a58ab --- /dev/null +++ b/gfx/pokemon/unown_r/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 07 + frame 1, 07 + frame 2, 07 + frame 1, 07 + dorepeat 1 + endanim +; 0xd236d diff --git a/gfx/pokemon/unown_r/anim1.asm b/gfx/pokemon/unown_r/anim1.asm new file mode 100644 index 000000000..b1db8166a --- /dev/null +++ b/gfx/pokemon/unown_r/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd24a7 diff --git a/gfx/pokemon/unown_r/back.2bpp.lz.5df8287c b/gfx/pokemon/unown_r/back.2bpp.lz.5df8287c new file mode 100644 index 000000000..a8a243e0b Binary files /dev/null and b/gfx/pokemon/unown_r/back.2bpp.lz.5df8287c differ diff --git a/gfx/pokemon/unown_r/back.png b/gfx/pokemon/unown_r/back.png new file mode 100644 index 000000000..a3d7de37e Binary files /dev/null and b/gfx/pokemon/unown_r/back.png differ diff --git a/gfx/pokemon/unown_r/front.animated.2bpp.lz.8e67e3fc b/gfx/pokemon/unown_r/front.animated.2bpp.lz.8e67e3fc new file mode 100644 index 000000000..9e76761d1 Binary files /dev/null and b/gfx/pokemon/unown_r/front.animated.2bpp.lz.8e67e3fc differ diff --git a/gfx/pokemon/unown_r/front.png b/gfx/pokemon/unown_r/front.png new file mode 100644 index 000000000..a7038ec16 Binary files /dev/null and b/gfx/pokemon/unown_r/front.png differ diff --git a/gfx/pokemon/unown_s/anim0.asm b/gfx/pokemon/unown_s/anim0.asm new file mode 100644 index 000000000..9cac3910d --- /dev/null +++ b/gfx/pokemon/unown_s/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 12 + frame 0, 10 + frame 2, 12 + frame 0, 24 + setrepeat 2 + frame 1, 03 + frame 2, 03 + dorepeat 5 + endanim +; 0xd237e diff --git a/gfx/pokemon/unown_s/anim1.asm b/gfx/pokemon/unown_s/anim1.asm new file mode 100644 index 000000000..49483f8f5 --- /dev/null +++ b/gfx/pokemon/unown_s/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd24b0 diff --git a/gfx/pokemon/unown_s/back.2bpp.lz.abd4ad58 b/gfx/pokemon/unown_s/back.2bpp.lz.abd4ad58 new file mode 100644 index 000000000..8441f2519 Binary files /dev/null and b/gfx/pokemon/unown_s/back.2bpp.lz.abd4ad58 differ diff --git a/gfx/pokemon/unown_s/back.png b/gfx/pokemon/unown_s/back.png new file mode 100644 index 000000000..75de76a29 Binary files /dev/null and b/gfx/pokemon/unown_s/back.png differ diff --git a/gfx/pokemon/unown_s/front.animated.2bpp.lz.f3db4e89 b/gfx/pokemon/unown_s/front.animated.2bpp.lz.f3db4e89 new file mode 100644 index 000000000..d16dea5e9 Binary files /dev/null and b/gfx/pokemon/unown_s/front.animated.2bpp.lz.f3db4e89 differ diff --git a/gfx/pokemon/unown_s/front.png b/gfx/pokemon/unown_s/front.png new file mode 100644 index 000000000..b854e648b Binary files /dev/null and b/gfx/pokemon/unown_s/front.png differ diff --git a/gfx/pokemon/unown_t/anim0.asm b/gfx/pokemon/unown_t/anim0.asm new file mode 100644 index 000000000..feba7be07 --- /dev/null +++ b/gfx/pokemon/unown_t/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 1, 05 + frame 0, 05 + frame 2, 05 + frame 0, 05 + dorepeat 1 + endanim +; 0xd238b diff --git a/gfx/pokemon/unown_t/anim1.asm b/gfx/pokemon/unown_t/anim1.asm new file mode 100644 index 000000000..d295d6830 --- /dev/null +++ b/gfx/pokemon/unown_t/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd24b9 diff --git a/gfx/pokemon/unown_t/back.2bpp.lz.87d48ca0 b/gfx/pokemon/unown_t/back.2bpp.lz.87d48ca0 new file mode 100644 index 000000000..8d415b53d Binary files /dev/null and b/gfx/pokemon/unown_t/back.2bpp.lz.87d48ca0 differ diff --git a/gfx/pokemon/unown_t/back.png b/gfx/pokemon/unown_t/back.png new file mode 100644 index 000000000..edbe2a1de Binary files /dev/null and b/gfx/pokemon/unown_t/back.png differ diff --git a/gfx/pokemon/unown_t/front.animated.2bpp.lz.8bdc40ae b/gfx/pokemon/unown_t/front.animated.2bpp.lz.8bdc40ae new file mode 100644 index 000000000..83100fbdb Binary files /dev/null and b/gfx/pokemon/unown_t/front.animated.2bpp.lz.8bdc40ae differ diff --git a/gfx/pokemon/unown_t/front.png b/gfx/pokemon/unown_t/front.png new file mode 100644 index 000000000..807b4af12 Binary files /dev/null and b/gfx/pokemon/unown_t/front.png differ diff --git a/gfx/pokemon/unown_u/anim0.asm b/gfx/pokemon/unown_u/anim0.asm new file mode 100644 index 000000000..12c53636d --- /dev/null +++ b/gfx/pokemon/unown_u/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 1, 12 + frame 2, 14 + frame 1, 12 + endanim +; 0xd2394 diff --git a/gfx/pokemon/unown_u/anim1.asm b/gfx/pokemon/unown_u/anim1.asm new file mode 100644 index 000000000..834e75999 --- /dev/null +++ b/gfx/pokemon/unown_u/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd24c2 diff --git a/gfx/pokemon/unown_u/back.2bpp.lz.40b63dfb b/gfx/pokemon/unown_u/back.2bpp.lz.40b63dfb new file mode 100644 index 000000000..ad395b7ec Binary files /dev/null and b/gfx/pokemon/unown_u/back.2bpp.lz.40b63dfb differ diff --git a/gfx/pokemon/unown_u/back.png b/gfx/pokemon/unown_u/back.png new file mode 100644 index 000000000..4efb1dd2a Binary files /dev/null and b/gfx/pokemon/unown_u/back.png differ diff --git a/gfx/pokemon/unown_u/front.animated.2bpp.lz.2690db54 b/gfx/pokemon/unown_u/front.animated.2bpp.lz.2690db54 new file mode 100644 index 000000000..622825cbe Binary files /dev/null and b/gfx/pokemon/unown_u/front.animated.2bpp.lz.2690db54 differ diff --git a/gfx/pokemon/unown_u/front.png b/gfx/pokemon/unown_u/front.png new file mode 100644 index 000000000..2d7950f18 Binary files /dev/null and b/gfx/pokemon/unown_u/front.png differ diff --git a/gfx/pokemon/unown_v/anim0.asm b/gfx/pokemon/unown_v/anim0.asm new file mode 100644 index 000000000..acc500009 --- /dev/null +++ b/gfx/pokemon/unown_v/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 10 + frame 1, 10 + frame 2, 10 + frame 1, 10 + endanim +; 0xd239d diff --git a/gfx/pokemon/unown_v/anim1.asm b/gfx/pokemon/unown_v/anim1.asm new file mode 100644 index 000000000..818f727ea --- /dev/null +++ b/gfx/pokemon/unown_v/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd24cb diff --git a/gfx/pokemon/unown_v/back.2bpp.lz.5b1a6acc b/gfx/pokemon/unown_v/back.2bpp.lz.5b1a6acc new file mode 100644 index 000000000..21c3191f2 Binary files /dev/null and b/gfx/pokemon/unown_v/back.2bpp.lz.5b1a6acc differ diff --git a/gfx/pokemon/unown_v/back.png b/gfx/pokemon/unown_v/back.png new file mode 100644 index 000000000..0097a050f Binary files /dev/null and b/gfx/pokemon/unown_v/back.png differ diff --git a/gfx/pokemon/unown_v/front.animated.2bpp.lz.d196c60e b/gfx/pokemon/unown_v/front.animated.2bpp.lz.d196c60e new file mode 100644 index 000000000..aee5ce362 Binary files /dev/null and b/gfx/pokemon/unown_v/front.animated.2bpp.lz.d196c60e differ diff --git a/gfx/pokemon/unown_v/front.png b/gfx/pokemon/unown_v/front.png new file mode 100644 index 000000000..a687e5d7c Binary files /dev/null and b/gfx/pokemon/unown_v/front.png differ diff --git a/gfx/pokemon/unown_w/anim0.asm b/gfx/pokemon/unown_w/anim0.asm new file mode 100644 index 000000000..620ff03e5 --- /dev/null +++ b/gfx/pokemon/unown_w/anim0.asm @@ -0,0 +1,6 @@ + frame 0, 06 + frame 1, 18 + frame 0, 06 + frame 2, 12 + endanim +; 0xd23a6 diff --git a/gfx/pokemon/unown_w/anim1.asm b/gfx/pokemon/unown_w/anim1.asm new file mode 100644 index 000000000..b43d44bbc --- /dev/null +++ b/gfx/pokemon/unown_w/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd24d4 diff --git a/gfx/pokemon/unown_w/back.2bpp.lz.a55282bf b/gfx/pokemon/unown_w/back.2bpp.lz.a55282bf new file mode 100644 index 000000000..882648c4d Binary files /dev/null and b/gfx/pokemon/unown_w/back.2bpp.lz.a55282bf differ diff --git a/gfx/pokemon/unown_w/back.png b/gfx/pokemon/unown_w/back.png new file mode 100644 index 000000000..629d7ccb2 Binary files /dev/null and b/gfx/pokemon/unown_w/back.png differ diff --git a/gfx/pokemon/unown_w/front.animated.2bpp.lz.5b45fa3d b/gfx/pokemon/unown_w/front.animated.2bpp.lz.5b45fa3d new file mode 100644 index 000000000..78a7fefac Binary files /dev/null and b/gfx/pokemon/unown_w/front.animated.2bpp.lz.5b45fa3d differ diff --git a/gfx/pokemon/unown_w/front.png b/gfx/pokemon/unown_w/front.png new file mode 100644 index 000000000..b65b96735 Binary files /dev/null and b/gfx/pokemon/unown_w/front.png differ diff --git a/gfx/pokemon/unown_x/anim0.asm b/gfx/pokemon/unown_x/anim0.asm new file mode 100644 index 000000000..0bb204da6 --- /dev/null +++ b/gfx/pokemon/unown_x/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 03 + frame 1, 06 + frame 0, 03 + frame 2, 06 + dorepeat 1 + endanim +; 0xd23b3 diff --git a/gfx/pokemon/unown_x/anim1.asm b/gfx/pokemon/unown_x/anim1.asm new file mode 100644 index 000000000..22b15a504 --- /dev/null +++ b/gfx/pokemon/unown_x/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + endanim +; 0xd24dd diff --git a/gfx/pokemon/unown_x/back.2bpp.lz.0001a198 b/gfx/pokemon/unown_x/back.2bpp.lz.0001a198 new file mode 100644 index 000000000..591af9668 Binary files /dev/null and b/gfx/pokemon/unown_x/back.2bpp.lz.0001a198 differ diff --git a/gfx/pokemon/unown_x/back.png b/gfx/pokemon/unown_x/back.png new file mode 100644 index 000000000..f2213d93f Binary files /dev/null and b/gfx/pokemon/unown_x/back.png differ diff --git a/gfx/pokemon/unown_x/front.animated.2bpp.lz.3362c680 b/gfx/pokemon/unown_x/front.animated.2bpp.lz.3362c680 new file mode 100644 index 000000000..11adc7c6f Binary files /dev/null and b/gfx/pokemon/unown_x/front.animated.2bpp.lz.3362c680 differ diff --git a/gfx/pokemon/unown_x/front.png b/gfx/pokemon/unown_x/front.png new file mode 100644 index 000000000..d0cef6024 Binary files /dev/null and b/gfx/pokemon/unown_x/front.png differ diff --git a/gfx/pokemon/unown_y/anim0.asm b/gfx/pokemon/unown_y/anim0.asm new file mode 100644 index 000000000..e65aa4134 --- /dev/null +++ b/gfx/pokemon/unown_y/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 06 + frame 3, 24 + frame 0, 06 + setrepeat 3 + frame 1, 05 + frame 2, 05 + dorepeat 4 + endanim +; 0xd23c2 diff --git a/gfx/pokemon/unown_y/anim1.asm b/gfx/pokemon/unown_y/anim1.asm new file mode 100644 index 000000000..e1a9a2acb --- /dev/null +++ b/gfx/pokemon/unown_y/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd24e6 diff --git a/gfx/pokemon/unown_y/back.2bpp.lz.292d9ff2 b/gfx/pokemon/unown_y/back.2bpp.lz.292d9ff2 new file mode 100644 index 000000000..ab7563e0d Binary files /dev/null and b/gfx/pokemon/unown_y/back.2bpp.lz.292d9ff2 differ diff --git a/gfx/pokemon/unown_y/back.png b/gfx/pokemon/unown_y/back.png new file mode 100644 index 000000000..141f16157 Binary files /dev/null and b/gfx/pokemon/unown_y/back.png differ diff --git a/gfx/pokemon/unown_y/front.animated.2bpp.lz.8cd89db4 b/gfx/pokemon/unown_y/front.animated.2bpp.lz.8cd89db4 new file mode 100644 index 000000000..1604f7e7b Binary files /dev/null and b/gfx/pokemon/unown_y/front.animated.2bpp.lz.8cd89db4 differ diff --git a/gfx/pokemon/unown_y/front.png b/gfx/pokemon/unown_y/front.png new file mode 100644 index 000000000..1b2fbdfcd Binary files /dev/null and b/gfx/pokemon/unown_y/front.png differ diff --git a/gfx/pokemon/unown_z/anim0.asm b/gfx/pokemon/unown_z/anim0.asm new file mode 100644 index 000000000..197978f9b --- /dev/null +++ b/gfx/pokemon/unown_z/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 06 + frame 2, 10 + frame 1, 03 + frame 0, 03 + frame 3, 03 + frame 0, 03 + frame 3, 03 + endanim +; 0xd23d1 diff --git a/gfx/pokemon/unown_z/anim1.asm b/gfx/pokemon/unown_z/anim1.asm new file mode 100644 index 000000000..4eb7513f6 --- /dev/null +++ b/gfx/pokemon/unown_z/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 05 + frame 4, 05 + dorepeat 1 + endanim +; 0xd24ef diff --git a/gfx/pokemon/unown_z/back.2bpp.lz.a41240a1 b/gfx/pokemon/unown_z/back.2bpp.lz.a41240a1 new file mode 100644 index 000000000..31bcb7baa Binary files /dev/null and b/gfx/pokemon/unown_z/back.2bpp.lz.a41240a1 differ diff --git a/gfx/pokemon/unown_z/back.png b/gfx/pokemon/unown_z/back.png new file mode 100644 index 000000000..987d4d9df Binary files /dev/null and b/gfx/pokemon/unown_z/back.png differ diff --git a/gfx/pokemon/unown_z/front.animated.2bpp.lz.2d4170a0 b/gfx/pokemon/unown_z/front.animated.2bpp.lz.2d4170a0 new file mode 100644 index 000000000..0d9b8b4f8 Binary files /dev/null and b/gfx/pokemon/unown_z/front.animated.2bpp.lz.2d4170a0 differ diff --git a/gfx/pokemon/unown_z/front.png b/gfx/pokemon/unown_z/front.png new file mode 100644 index 000000000..60fc433bc Binary files /dev/null and b/gfx/pokemon/unown_z/front.png differ diff --git a/gfx/pokemon/ursaring/anim0.asm b/gfx/pokemon/ursaring/anim0.asm new file mode 100644 index 000000000..f571913ea --- /dev/null +++ b/gfx/pokemon/ursaring/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 13 + frame 4, 10 + setrepeat 4 + frame 2, 09 + frame 3, 09 + dorepeat 3 + frame 1, 10 + endanim +; 0xd14c8 diff --git a/gfx/pokemon/ursaring/anim1.asm b/gfx/pokemon/ursaring/anim1.asm new file mode 100644 index 000000000..01ebc0f1a --- /dev/null +++ b/gfx/pokemon/ursaring/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 5 + frame 0, 09 + frame 5, 09 + dorepeat 1 + endanim +; 0xd20e4 diff --git a/gfx/pokemon/ursaring/back.2bpp.lz.0966cee1 b/gfx/pokemon/ursaring/back.2bpp.lz.0966cee1 new file mode 100644 index 000000000..263eac805 Binary files /dev/null and b/gfx/pokemon/ursaring/back.2bpp.lz.0966cee1 differ diff --git a/gfx/pokemon/ursaring/back.png b/gfx/pokemon/ursaring/back.png new file mode 100644 index 000000000..266218522 Binary files /dev/null and b/gfx/pokemon/ursaring/back.png differ diff --git a/gfx/pokemon/ursaring/front.animated.2bpp.lz.5bcb8114 b/gfx/pokemon/ursaring/front.animated.2bpp.lz.5bcb8114 new file mode 100644 index 000000000..f98dd0cb0 Binary files /dev/null and b/gfx/pokemon/ursaring/front.animated.2bpp.lz.5bcb8114 differ diff --git a/gfx/pokemon/ursaring/front.png b/gfx/pokemon/ursaring/front.png new file mode 100644 index 000000000..31c28d585 Binary files /dev/null and b/gfx/pokemon/ursaring/front.png differ diff --git a/gfx/pokemon/ursaring/shiny.pal b/gfx/pokemon/ursaring/shiny.pal new file mode 100644 index 000000000..b2e472ea3 --- /dev/null +++ b/gfx/pokemon/ursaring/shiny.pal @@ -0,0 +1,4 @@ + + RGB 26, 29, 25 + RGB 18, 22, 00 + diff --git a/gfx/pokemon/vaporeon/anim0.asm b/gfx/pokemon/vaporeon/anim0.asm new file mode 100644 index 000000000..d13f1dd94 --- /dev/null +++ b/gfx/pokemon/vaporeon/anim0.asm @@ -0,0 +1,7 @@ + frame 0, 04 + setrepeat 3 + frame 1, 10 + frame 2, 10 + dorepeat 2 + endanim +; 0xd1043 diff --git a/gfx/pokemon/vaporeon/anim1.asm b/gfx/pokemon/vaporeon/anim1.asm new file mode 100644 index 000000000..79c386650 --- /dev/null +++ b/gfx/pokemon/vaporeon/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1ddf diff --git a/gfx/pokemon/vaporeon/back.2bpp.lz.aafe2ea4 b/gfx/pokemon/vaporeon/back.2bpp.lz.aafe2ea4 new file mode 100644 index 000000000..9ea248261 Binary files /dev/null and b/gfx/pokemon/vaporeon/back.2bpp.lz.aafe2ea4 differ diff --git a/gfx/pokemon/vaporeon/back.png b/gfx/pokemon/vaporeon/back.png new file mode 100644 index 000000000..61ed8e4ba Binary files /dev/null and b/gfx/pokemon/vaporeon/back.png differ diff --git a/gfx/pokemon/vaporeon/front.animated.2bpp.lz.6e1ee993 b/gfx/pokemon/vaporeon/front.animated.2bpp.lz.6e1ee993 new file mode 100644 index 000000000..67793c7ec Binary files /dev/null and b/gfx/pokemon/vaporeon/front.animated.2bpp.lz.6e1ee993 differ diff --git a/gfx/pokemon/vaporeon/front.png b/gfx/pokemon/vaporeon/front.png new file mode 100644 index 000000000..f8ed11756 Binary files /dev/null and b/gfx/pokemon/vaporeon/front.png differ diff --git a/gfx/pokemon/vaporeon/shiny.pal b/gfx/pokemon/vaporeon/shiny.pal new file mode 100644 index 000000000..b8571c740 --- /dev/null +++ b/gfx/pokemon/vaporeon/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 21, 31 + RGB 15, 10, 24 + diff --git a/gfx/pokemon/venomoth/anim0.asm b/gfx/pokemon/venomoth/anim0.asm new file mode 100644 index 000000000..ba6014d59 --- /dev/null +++ b/gfx/pokemon/venomoth/anim0.asm @@ -0,0 +1,6 @@ + setrepeat 6 + frame 0, 06 + frame 1, 06 + dorepeat 1 + endanim +; 0xd0b8c diff --git a/gfx/pokemon/venomoth/anim1.asm b/gfx/pokemon/venomoth/anim1.asm new file mode 100644 index 000000000..619c19b73 --- /dev/null +++ b/gfx/pokemon/venomoth/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 04 + frame 2, 04 + dorepeat 1 + endanim +; 0xd1aa4 diff --git a/gfx/pokemon/venomoth/back.2bpp.lz.ba3cccb7 b/gfx/pokemon/venomoth/back.2bpp.lz.ba3cccb7 new file mode 100644 index 000000000..721527c2a Binary files /dev/null and b/gfx/pokemon/venomoth/back.2bpp.lz.ba3cccb7 differ diff --git a/gfx/pokemon/venomoth/back.png b/gfx/pokemon/venomoth/back.png new file mode 100644 index 000000000..5fbf6bba9 Binary files /dev/null and b/gfx/pokemon/venomoth/back.png differ diff --git a/gfx/pokemon/venomoth/front.animated.2bpp.lz.6c0096ec b/gfx/pokemon/venomoth/front.animated.2bpp.lz.6c0096ec new file mode 100644 index 000000000..5f32ad682 Binary files /dev/null and b/gfx/pokemon/venomoth/front.animated.2bpp.lz.6c0096ec differ diff --git a/gfx/pokemon/venomoth/front.png b/gfx/pokemon/venomoth/front.png new file mode 100644 index 000000000..eb3c291b8 Binary files /dev/null and b/gfx/pokemon/venomoth/front.png differ diff --git a/gfx/pokemon/venomoth/shiny.pal b/gfx/pokemon/venomoth/shiny.pal new file mode 100644 index 000000000..50d971276 --- /dev/null +++ b/gfx/pokemon/venomoth/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 15, 31 + RGB 17, 06, 21 + diff --git a/gfx/pokemon/venonat/anim0.asm b/gfx/pokemon/venonat/anim0.asm new file mode 100644 index 000000000..508cbd84a --- /dev/null +++ b/gfx/pokemon/venonat/anim0.asm @@ -0,0 +1,16 @@ + frame 2, 10 + frame 0, 10 + frame 2, 10 + frame 0, 06 + frame 1, 06 + frame 0, 06 + setrepeat 3 + frame 1, 04 + frame 0, 04 + dorepeat 7 + setrepeat 2 + frame 1, 02 + frame 0, 02 + dorepeat 11 + endanim +; 0xd0b83 diff --git a/gfx/pokemon/venonat/anim1.asm b/gfx/pokemon/venonat/anim1.asm new file mode 100644 index 000000000..ecd7a45f1 --- /dev/null +++ b/gfx/pokemon/venonat/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 12 + frame 2, 16 + dorepeat 1 + endanim +; 0xd1a9b diff --git a/gfx/pokemon/venonat/back.2bpp.lz.63b1017a b/gfx/pokemon/venonat/back.2bpp.lz.63b1017a new file mode 100644 index 000000000..b28c7523d Binary files /dev/null and b/gfx/pokemon/venonat/back.2bpp.lz.63b1017a differ diff --git a/gfx/pokemon/venonat/back.png b/gfx/pokemon/venonat/back.png new file mode 100644 index 000000000..09b946146 Binary files /dev/null and b/gfx/pokemon/venonat/back.png differ diff --git a/gfx/pokemon/venonat/front.animated.2bpp.lz.02a36f08 b/gfx/pokemon/venonat/front.animated.2bpp.lz.02a36f08 new file mode 100644 index 000000000..f6b057e8f Binary files /dev/null and b/gfx/pokemon/venonat/front.animated.2bpp.lz.02a36f08 differ diff --git a/gfx/pokemon/venonat/front.png b/gfx/pokemon/venonat/front.png new file mode 100644 index 000000000..466b6b4c3 Binary files /dev/null and b/gfx/pokemon/venonat/front.png differ diff --git a/gfx/pokemon/venonat/shiny.pal b/gfx/pokemon/venonat/shiny.pal new file mode 100644 index 000000000..0660ed752 --- /dev/null +++ b/gfx/pokemon/venonat/shiny.pal @@ -0,0 +1,4 @@ + + RGB 14, 17, 31 + RGB 11, 05, 22 + diff --git a/gfx/pokemon/venusaur/anim0.asm b/gfx/pokemon/venusaur/anim0.asm new file mode 100644 index 000000000..9ee74b6c0 --- /dev/null +++ b/gfx/pokemon/venusaur/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 10 + frame 2, 35 + frame 3, 08 + frame 4, 08 + setrepeat 2 + frame 0, 10 + frame 5, 10 + dorepeat 5 + endanim +; 0xd08b6 diff --git a/gfx/pokemon/venusaur/anim1.asm b/gfx/pokemon/venusaur/anim1.asm new file mode 100644 index 000000000..6eebd7cd3 --- /dev/null +++ b/gfx/pokemon/venusaur/anim1.asm @@ -0,0 +1,6 @@ + frame 1, 35 + frame 0, 13 + frame 6, 13 + frame 7, 13 + endanim +; 0xd18b6 diff --git a/gfx/pokemon/venusaur/back.2bpp.lz.1d5b9ebe b/gfx/pokemon/venusaur/back.2bpp.lz.1d5b9ebe new file mode 100644 index 000000000..27ca82e8a Binary files /dev/null and b/gfx/pokemon/venusaur/back.2bpp.lz.1d5b9ebe differ diff --git a/gfx/pokemon/venusaur/back.png b/gfx/pokemon/venusaur/back.png new file mode 100644 index 000000000..b611551f6 Binary files /dev/null and b/gfx/pokemon/venusaur/back.png differ diff --git a/gfx/pokemon/venusaur/front.animated.2bpp.lz.48d131f4 b/gfx/pokemon/venusaur/front.animated.2bpp.lz.48d131f4 new file mode 100644 index 000000000..d436da0bd Binary files /dev/null and b/gfx/pokemon/venusaur/front.animated.2bpp.lz.48d131f4 differ diff --git a/gfx/pokemon/venusaur/front.png b/gfx/pokemon/venusaur/front.png new file mode 100644 index 000000000..2cd0293cc Binary files /dev/null and b/gfx/pokemon/venusaur/front.png differ diff --git a/gfx/pokemon/venusaur/shiny.pal b/gfx/pokemon/venusaur/shiny.pal new file mode 100644 index 000000000..6cffe65cb --- /dev/null +++ b/gfx/pokemon/venusaur/shiny.pal @@ -0,0 +1,4 @@ + + RGB 18, 25, 11 + RGB 31, 22, 03 + diff --git a/gfx/pokemon/victreebel/anim0.asm b/gfx/pokemon/victreebel/anim0.asm new file mode 100644 index 000000000..ec490f7fb --- /dev/null +++ b/gfx/pokemon/victreebel/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 10 + frame 2, 25 + frame 3, 10 + frame 4, 10 + frame 5, 10 + endanim +; 0xd0cca diff --git a/gfx/pokemon/victreebel/anim1.asm b/gfx/pokemon/victreebel/anim1.asm new file mode 100644 index 000000000..121550865 --- /dev/null +++ b/gfx/pokemon/victreebel/anim1.asm @@ -0,0 +1,7 @@ + setrepeat 2 + frame 0, 06 + frame 4, 06 + frame 5, 05 + dorepeat 1 + endanim +; 0xd1b8c diff --git a/gfx/pokemon/victreebel/back.2bpp.lz.a80b1dc4 b/gfx/pokemon/victreebel/back.2bpp.lz.a80b1dc4 new file mode 100644 index 000000000..d4b014f67 Binary files /dev/null and b/gfx/pokemon/victreebel/back.2bpp.lz.a80b1dc4 differ diff --git a/gfx/pokemon/victreebel/back.png b/gfx/pokemon/victreebel/back.png new file mode 100644 index 000000000..6f3ec484e Binary files /dev/null and b/gfx/pokemon/victreebel/back.png differ diff --git a/gfx/pokemon/victreebel/front.animated.2bpp.lz.d5d535c1 b/gfx/pokemon/victreebel/front.animated.2bpp.lz.d5d535c1 new file mode 100644 index 000000000..c53114990 Binary files /dev/null and b/gfx/pokemon/victreebel/front.animated.2bpp.lz.d5d535c1 differ diff --git a/gfx/pokemon/victreebel/front.png b/gfx/pokemon/victreebel/front.png new file mode 100644 index 000000000..7fc688ef3 Binary files /dev/null and b/gfx/pokemon/victreebel/front.png differ diff --git a/gfx/pokemon/victreebel/shiny.pal b/gfx/pokemon/victreebel/shiny.pal new file mode 100644 index 000000000..c538a41fa --- /dev/null +++ b/gfx/pokemon/victreebel/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 23, 03 + RGB 14, 12, 31 + diff --git a/gfx/pokemon/vileplume/anim0.asm b/gfx/pokemon/vileplume/anim0.asm new file mode 100644 index 000000000..98c2a86de --- /dev/null +++ b/gfx/pokemon/vileplume/anim0.asm @@ -0,0 +1,10 @@ + frame 1, 07 + frame 2, 25 + frame 3, 05 + frame 1, 05 + frame 0, 05 + frame 1, 05 + frame 0, 07 + frame 1, 07 + endanim +; 0xd0b46 diff --git a/gfx/pokemon/vileplume/anim1.asm b/gfx/pokemon/vileplume/anim1.asm new file mode 100644 index 000000000..e57622363 --- /dev/null +++ b/gfx/pokemon/vileplume/anim1.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 05 + frame 3, 05 + dorepeat 1 + frame 0, 12 + frame 3, 07 + endanim +; 0xd1a82 diff --git a/gfx/pokemon/vileplume/back.2bpp.lz.9f944092 b/gfx/pokemon/vileplume/back.2bpp.lz.9f944092 new file mode 100644 index 000000000..823f0e112 Binary files /dev/null and b/gfx/pokemon/vileplume/back.2bpp.lz.9f944092 differ diff --git a/gfx/pokemon/vileplume/back.png b/gfx/pokemon/vileplume/back.png new file mode 100644 index 000000000..4e0e9fbe3 Binary files /dev/null and b/gfx/pokemon/vileplume/back.png differ diff --git a/gfx/pokemon/vileplume/front.animated.2bpp.lz.db2287e6 b/gfx/pokemon/vileplume/front.animated.2bpp.lz.db2287e6 new file mode 100644 index 000000000..05ca10ba5 Binary files /dev/null and b/gfx/pokemon/vileplume/front.animated.2bpp.lz.db2287e6 differ diff --git a/gfx/pokemon/vileplume/front.png b/gfx/pokemon/vileplume/front.png new file mode 100644 index 000000000..6a8a4c0fd Binary files /dev/null and b/gfx/pokemon/vileplume/front.png differ diff --git a/gfx/pokemon/vileplume/shiny.pal b/gfx/pokemon/vileplume/shiny.pal new file mode 100644 index 000000000..d65151640 --- /dev/null +++ b/gfx/pokemon/vileplume/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 21, 03 + RGB 08, 15, 13 + diff --git a/gfx/pokemon/voltorb/anim0.asm b/gfx/pokemon/voltorb/anim0.asm new file mode 100644 index 000000000..fdb49b9af --- /dev/null +++ b/gfx/pokemon/voltorb/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 08 + frame 1, 08 + setrepeat 2 + frame 0, 06 + frame 1, 04 + dorepeat 3 + endanim +; 0xd0e57 diff --git a/gfx/pokemon/voltorb/anim1.asm b/gfx/pokemon/voltorb/anim1.asm new file mode 100644 index 000000000..be799fe4a --- /dev/null +++ b/gfx/pokemon/voltorb/anim1.asm @@ -0,0 +1,7 @@ + frame 1, 04 + setrepeat 2 + frame 2, 08 + frame 0, 08 + dorepeat 2 + endanim +; 0xd1ca5 diff --git a/gfx/pokemon/voltorb/back.2bpp.lz.f19cefe9 b/gfx/pokemon/voltorb/back.2bpp.lz.f19cefe9 new file mode 100644 index 000000000..fe102da9a Binary files /dev/null and b/gfx/pokemon/voltorb/back.2bpp.lz.f19cefe9 differ diff --git a/gfx/pokemon/voltorb/back.png b/gfx/pokemon/voltorb/back.png new file mode 100644 index 000000000..e2e46de54 Binary files /dev/null and b/gfx/pokemon/voltorb/back.png differ diff --git a/gfx/pokemon/voltorb/front.animated.2bpp.lz.64051f97 b/gfx/pokemon/voltorb/front.animated.2bpp.lz.64051f97 new file mode 100644 index 000000000..94f35f9aa Binary files /dev/null and b/gfx/pokemon/voltorb/front.animated.2bpp.lz.64051f97 differ diff --git a/gfx/pokemon/voltorb/front.png b/gfx/pokemon/voltorb/front.png new file mode 100644 index 000000000..90dcedaf9 Binary files /dev/null and b/gfx/pokemon/voltorb/front.png differ diff --git a/gfx/pokemon/voltorb/shiny.pal b/gfx/pokemon/voltorb/shiny.pal new file mode 100644 index 000000000..b8509a81f --- /dev/null +++ b/gfx/pokemon/voltorb/shiny.pal @@ -0,0 +1,4 @@ + + RGB 20, 20, 17 + RGB 09, 02, 28 + diff --git a/gfx/pokemon/vulpix/anim0.asm b/gfx/pokemon/vulpix/anim0.asm new file mode 100644 index 000000000..878054202 --- /dev/null +++ b/gfx/pokemon/vulpix/anim0.asm @@ -0,0 +1,11 @@ + setrepeat 2 + frame 0, 10 + frame 1, 05 + frame 2, 05 + dorepeat 1 + setrepeat 2 + frame 0, 04 + frame 3, 05 + dorepeat 6 + endanim +; 0xd0aba diff --git a/gfx/pokemon/vulpix/anim1.asm b/gfx/pokemon/vulpix/anim1.asm new file mode 100644 index 000000000..f7c9e3671 --- /dev/null +++ b/gfx/pokemon/vulpix/anim1.asm @@ -0,0 +1,7 @@ + frame 4, 10 + frame 3, 10 + frame 4, 10 + frame 0, 05 + frame 3, 05 + endanim +; 0xd1a34 diff --git a/gfx/pokemon/vulpix/back.2bpp.lz.0c7852c8 b/gfx/pokemon/vulpix/back.2bpp.lz.0c7852c8 new file mode 100644 index 000000000..ce2535141 Binary files /dev/null and b/gfx/pokemon/vulpix/back.2bpp.lz.0c7852c8 differ diff --git a/gfx/pokemon/vulpix/back.png b/gfx/pokemon/vulpix/back.png new file mode 100644 index 000000000..cd37be416 Binary files /dev/null and b/gfx/pokemon/vulpix/back.png differ diff --git a/gfx/pokemon/vulpix/front.animated.2bpp.lz.df94d884 b/gfx/pokemon/vulpix/front.animated.2bpp.lz.df94d884 new file mode 100644 index 000000000..9248ce808 Binary files /dev/null and b/gfx/pokemon/vulpix/front.animated.2bpp.lz.df94d884 differ diff --git a/gfx/pokemon/vulpix/front.png b/gfx/pokemon/vulpix/front.png new file mode 100644 index 000000000..43c19a3f8 Binary files /dev/null and b/gfx/pokemon/vulpix/front.png differ diff --git a/gfx/pokemon/vulpix/shiny.pal b/gfx/pokemon/vulpix/shiny.pal new file mode 100644 index 000000000..0084507cd --- /dev/null +++ b/gfx/pokemon/vulpix/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 24, 01 + RGB 22, 16, 01 + diff --git a/gfx/pokemon/wartortle/anim0.asm b/gfx/pokemon/wartortle/anim0.asm new file mode 100644 index 000000000..832b87b88 --- /dev/null +++ b/gfx/pokemon/wartortle/anim0.asm @@ -0,0 +1,8 @@ + frame 0, 04 + frame 2, 34 + setrepeat 3 + frame 0, 09 + frame 1, 09 + dorepeat 3 + endanim +; 0xd08ff diff --git a/gfx/pokemon/wartortle/anim1.asm b/gfx/pokemon/wartortle/anim1.asm new file mode 100644 index 000000000..40c4fcd14 --- /dev/null +++ b/gfx/pokemon/wartortle/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd18e7 diff --git a/gfx/pokemon/wartortle/back.2bpp.lz.f2338cb4 b/gfx/pokemon/wartortle/back.2bpp.lz.f2338cb4 new file mode 100644 index 000000000..5734c20cb Binary files /dev/null and b/gfx/pokemon/wartortle/back.2bpp.lz.f2338cb4 differ diff --git a/gfx/pokemon/wartortle/back.png b/gfx/pokemon/wartortle/back.png new file mode 100644 index 000000000..bb53292eb Binary files /dev/null and b/gfx/pokemon/wartortle/back.png differ diff --git a/gfx/pokemon/wartortle/front.animated.2bpp.lz.f50d25f5 b/gfx/pokemon/wartortle/front.animated.2bpp.lz.f50d25f5 new file mode 100644 index 000000000..29642807d Binary files /dev/null and b/gfx/pokemon/wartortle/front.animated.2bpp.lz.f50d25f5 differ diff --git a/gfx/pokemon/wartortle/front.png b/gfx/pokemon/wartortle/front.png new file mode 100644 index 000000000..f4a4ad33f Binary files /dev/null and b/gfx/pokemon/wartortle/front.png differ diff --git a/gfx/pokemon/wartortle/shiny.pal b/gfx/pokemon/wartortle/shiny.pal new file mode 100644 index 000000000..c108dfdbf --- /dev/null +++ b/gfx/pokemon/wartortle/shiny.pal @@ -0,0 +1,4 @@ + + RGB 13, 23, 08 + RGB 18, 19, 31 + diff --git a/gfx/pokemon/weedle/anim0.asm b/gfx/pokemon/weedle/anim0.asm new file mode 100644 index 000000000..5d959a772 --- /dev/null +++ b/gfx/pokemon/weedle/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 06 + frame 1, 18 + setrepeat 2 + frame 0, 06 + frame 3, 06 + frame 4, 06 + frame 3, 06 + dorepeat 3 + endanim +; 0xd093a diff --git a/gfx/pokemon/weedle/anim1.asm b/gfx/pokemon/weedle/anim1.asm new file mode 100644 index 000000000..30dcb9185 --- /dev/null +++ b/gfx/pokemon/weedle/anim1.asm @@ -0,0 +1,12 @@ + setrepeat 2 + frame 0, 04 + frame 2, 04 + dorepeat 1 + setrepeat 2 + frame 0, 05 + frame 3, 05 + frame 4, 05 + frame 3, 05 + dorepeat 5 + endanim +; 0xd1922 diff --git a/gfx/pokemon/weedle/back.2bpp.lz.f26ac339 b/gfx/pokemon/weedle/back.2bpp.lz.f26ac339 new file mode 100644 index 000000000..64decb914 Binary files /dev/null and b/gfx/pokemon/weedle/back.2bpp.lz.f26ac339 differ diff --git a/gfx/pokemon/weedle/back.png b/gfx/pokemon/weedle/back.png new file mode 100644 index 000000000..b20e4a53d Binary files /dev/null and b/gfx/pokemon/weedle/back.png differ diff --git a/gfx/pokemon/weedle/front.animated.2bpp.lz.9e1dedbd b/gfx/pokemon/weedle/front.animated.2bpp.lz.9e1dedbd new file mode 100644 index 000000000..091df588a Binary files /dev/null and b/gfx/pokemon/weedle/front.animated.2bpp.lz.9e1dedbd differ diff --git a/gfx/pokemon/weedle/front.png b/gfx/pokemon/weedle/front.png new file mode 100644 index 000000000..3dfa35241 Binary files /dev/null and b/gfx/pokemon/weedle/front.png differ diff --git a/gfx/pokemon/weedle/shiny.pal b/gfx/pokemon/weedle/shiny.pal new file mode 100644 index 000000000..45cc7073c --- /dev/null +++ b/gfx/pokemon/weedle/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 27, 05 + RGB 26, 07, 29 + diff --git a/gfx/pokemon/weepinbell/anim0.asm b/gfx/pokemon/weepinbell/anim0.asm new file mode 100644 index 000000000..6f710d29a --- /dev/null +++ b/gfx/pokemon/weepinbell/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 0, 05 + frame 1, 05 + frame 2, 05 + dorepeat 1 + frame 3, 12 + endanim +; 0xd0cbf diff --git a/gfx/pokemon/weepinbell/anim1.asm b/gfx/pokemon/weepinbell/anim1.asm new file mode 100644 index 000000000..0e56c9cc1 --- /dev/null +++ b/gfx/pokemon/weepinbell/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 07 + frame 3, 07 + dorepeat 1 + endanim +; 0xd1b81 diff --git a/gfx/pokemon/weepinbell/back.2bpp.lz.f84a5fe6 b/gfx/pokemon/weepinbell/back.2bpp.lz.f84a5fe6 new file mode 100644 index 000000000..26e44257c Binary files /dev/null and b/gfx/pokemon/weepinbell/back.2bpp.lz.f84a5fe6 differ diff --git a/gfx/pokemon/weepinbell/back.png b/gfx/pokemon/weepinbell/back.png new file mode 100644 index 000000000..cb20b0da8 Binary files /dev/null and b/gfx/pokemon/weepinbell/back.png differ diff --git a/gfx/pokemon/weepinbell/front.animated.2bpp.lz.7b06c092 b/gfx/pokemon/weepinbell/front.animated.2bpp.lz.7b06c092 new file mode 100644 index 000000000..a7e7d60b5 Binary files /dev/null and b/gfx/pokemon/weepinbell/front.animated.2bpp.lz.7b06c092 differ diff --git a/gfx/pokemon/weepinbell/front.png b/gfx/pokemon/weepinbell/front.png new file mode 100644 index 000000000..eb6d4658c Binary files /dev/null and b/gfx/pokemon/weepinbell/front.png differ diff --git a/gfx/pokemon/weepinbell/shiny.pal b/gfx/pokemon/weepinbell/shiny.pal new file mode 100644 index 000000000..e4f10596c --- /dev/null +++ b/gfx/pokemon/weepinbell/shiny.pal @@ -0,0 +1,4 @@ + + RGB 22, 28, 07 + RGB 19, 09, 19 + diff --git a/gfx/pokemon/weezing/anim0.asm b/gfx/pokemon/weezing/anim0.asm new file mode 100644 index 000000000..e64ca5d37 --- /dev/null +++ b/gfx/pokemon/weezing/anim0.asm @@ -0,0 +1,8 @@ + frame 1, 15 + setrepeat 2 + frame 2, 10 + frame 3, 10 + frame 4, 10 + dorepeat 2 + endanim +; 0xd0efd diff --git a/gfx/pokemon/weezing/anim1.asm b/gfx/pokemon/weezing/anim1.asm new file mode 100644 index 000000000..1ba31dd74 --- /dev/null +++ b/gfx/pokemon/weezing/anim1.asm @@ -0,0 +1,8 @@ + frame 0, 12 + setrepeat 3 + frame 1, 08 + frame 5, 08 + dorepeat 2 + frame 1, 12 + endanim +; 0xd1cfb diff --git a/gfx/pokemon/weezing/back.2bpp.lz.5ac5b672 b/gfx/pokemon/weezing/back.2bpp.lz.5ac5b672 new file mode 100644 index 000000000..a85124f3a Binary files /dev/null and b/gfx/pokemon/weezing/back.2bpp.lz.5ac5b672 differ diff --git a/gfx/pokemon/weezing/back.png b/gfx/pokemon/weezing/back.png new file mode 100644 index 000000000..8f4b076a0 Binary files /dev/null and b/gfx/pokemon/weezing/back.png differ diff --git a/gfx/pokemon/weezing/front.animated.2bpp.lz.75928bd0 b/gfx/pokemon/weezing/front.animated.2bpp.lz.75928bd0 new file mode 100644 index 000000000..3c6f24a41 Binary files /dev/null and b/gfx/pokemon/weezing/front.animated.2bpp.lz.75928bd0 differ diff --git a/gfx/pokemon/weezing/front.png b/gfx/pokemon/weezing/front.png new file mode 100644 index 000000000..7fd7b9312 Binary files /dev/null and b/gfx/pokemon/weezing/front.png differ diff --git a/gfx/pokemon/weezing/shiny.pal b/gfx/pokemon/weezing/shiny.pal new file mode 100644 index 000000000..8132fea04 --- /dev/null +++ b/gfx/pokemon/weezing/shiny.pal @@ -0,0 +1,4 @@ + + RGB 16, 20, 25 + RGB 09, 12, 23 + diff --git a/gfx/pokemon/wigglytuff/anim0.asm b/gfx/pokemon/wigglytuff/anim0.asm new file mode 100644 index 000000000..53b468fdd --- /dev/null +++ b/gfx/pokemon/wigglytuff/anim0.asm @@ -0,0 +1,9 @@ + frame 0, 04 + frame 1, 20 + frame 2, 08 + frame 0, 08 + frame 2, 06 + frame 0, 06 + frame 2, 04 + endanim +; 0xd0aed diff --git a/gfx/pokemon/wigglytuff/anim1.asm b/gfx/pokemon/wigglytuff/anim1.asm new file mode 100644 index 000000000..b99bf002c --- /dev/null +++ b/gfx/pokemon/wigglytuff/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 3 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd1a4f diff --git a/gfx/pokemon/wigglytuff/back.2bpp.lz.fee674ac b/gfx/pokemon/wigglytuff/back.2bpp.lz.fee674ac new file mode 100644 index 000000000..3b3732986 Binary files /dev/null and b/gfx/pokemon/wigglytuff/back.2bpp.lz.fee674ac differ diff --git a/gfx/pokemon/wigglytuff/back.png b/gfx/pokemon/wigglytuff/back.png new file mode 100644 index 000000000..5e264305b Binary files /dev/null and b/gfx/pokemon/wigglytuff/back.png differ diff --git a/gfx/pokemon/wigglytuff/front.animated.2bpp.lz.49311d0b b/gfx/pokemon/wigglytuff/front.animated.2bpp.lz.49311d0b new file mode 100644 index 000000000..c633d2a0a Binary files /dev/null and b/gfx/pokemon/wigglytuff/front.animated.2bpp.lz.49311d0b differ diff --git a/gfx/pokemon/wigglytuff/front.png b/gfx/pokemon/wigglytuff/front.png new file mode 100644 index 000000000..229f6647a Binary files /dev/null and b/gfx/pokemon/wigglytuff/front.png differ diff --git a/gfx/pokemon/wigglytuff/shiny.pal b/gfx/pokemon/wigglytuff/shiny.pal new file mode 100644 index 000000000..38ce5d76d --- /dev/null +++ b/gfx/pokemon/wigglytuff/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 17, 31 + RGB 09, 24, 03 + diff --git a/gfx/pokemon/wobbuffet/anim0.asm b/gfx/pokemon/wobbuffet/anim0.asm new file mode 100644 index 000000000..340f3df46 --- /dev/null +++ b/gfx/pokemon/wobbuffet/anim0.asm @@ -0,0 +1,4 @@ + frame 1, 07 + frame 2, 30 + endanim +; 0xd1403 diff --git a/gfx/pokemon/wobbuffet/anim1.asm b/gfx/pokemon/wobbuffet/anim1.asm new file mode 100644 index 000000000..8a3564daa --- /dev/null +++ b/gfx/pokemon/wobbuffet/anim1.asm @@ -0,0 +1,3 @@ + frame 0, 30 + endanim +; 0xd2069 diff --git a/gfx/pokemon/wobbuffet/back.2bpp.lz.a862192a b/gfx/pokemon/wobbuffet/back.2bpp.lz.a862192a new file mode 100644 index 000000000..87dba2049 Binary files /dev/null and b/gfx/pokemon/wobbuffet/back.2bpp.lz.a862192a differ diff --git a/gfx/pokemon/wobbuffet/back.png b/gfx/pokemon/wobbuffet/back.png new file mode 100644 index 000000000..103f69106 Binary files /dev/null and b/gfx/pokemon/wobbuffet/back.png differ diff --git a/gfx/pokemon/wobbuffet/front.animated.2bpp.lz.f1f4687d b/gfx/pokemon/wobbuffet/front.animated.2bpp.lz.f1f4687d new file mode 100644 index 000000000..ce7aa46c8 Binary files /dev/null and b/gfx/pokemon/wobbuffet/front.animated.2bpp.lz.f1f4687d differ diff --git a/gfx/pokemon/wobbuffet/front.png b/gfx/pokemon/wobbuffet/front.png new file mode 100644 index 000000000..e1b7935aa Binary files /dev/null and b/gfx/pokemon/wobbuffet/front.png differ diff --git a/gfx/pokemon/wobbuffet/shiny.pal b/gfx/pokemon/wobbuffet/shiny.pal new file mode 100644 index 000000000..c721c9ba6 --- /dev/null +++ b/gfx/pokemon/wobbuffet/shiny.pal @@ -0,0 +1,4 @@ + + RGB 23, 07, 25 + RGB 07, 09, 16 + diff --git a/gfx/pokemon/wooper/anim0.asm b/gfx/pokemon/wooper/anim0.asm new file mode 100644 index 000000000..2c9becf9e --- /dev/null +++ b/gfx/pokemon/wooper/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 2 + frame 1, 08 + frame 2, 08 + dorepeat 1 + frame 0, 08 + frame 4, 08 + endanim +; 0xd1397 diff --git a/gfx/pokemon/wooper/anim1.asm b/gfx/pokemon/wooper/anim1.asm new file mode 100644 index 000000000..3f152d035 --- /dev/null +++ b/gfx/pokemon/wooper/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 06 + frame 3, 06 + dorepeat 1 + endanim +; 0xd202f diff --git a/gfx/pokemon/wooper/back.2bpp.lz.4f4b7917 b/gfx/pokemon/wooper/back.2bpp.lz.4f4b7917 new file mode 100644 index 000000000..973037f02 Binary files /dev/null and b/gfx/pokemon/wooper/back.2bpp.lz.4f4b7917 differ diff --git a/gfx/pokemon/wooper/back.png b/gfx/pokemon/wooper/back.png new file mode 100644 index 000000000..83fca2bf5 Binary files /dev/null and b/gfx/pokemon/wooper/back.png differ diff --git a/gfx/pokemon/wooper/front.animated.2bpp.lz.4e440469 b/gfx/pokemon/wooper/front.animated.2bpp.lz.4e440469 new file mode 100644 index 000000000..3d5d53c1b Binary files /dev/null and b/gfx/pokemon/wooper/front.animated.2bpp.lz.4e440469 differ diff --git a/gfx/pokemon/wooper/front.png b/gfx/pokemon/wooper/front.png new file mode 100644 index 000000000..9a232b113 Binary files /dev/null and b/gfx/pokemon/wooper/front.png differ diff --git a/gfx/pokemon/wooper/shiny.pal b/gfx/pokemon/wooper/shiny.pal new file mode 100644 index 000000000..aa3475256 --- /dev/null +++ b/gfx/pokemon/wooper/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 17, 31 + RGB 31, 21, 00 + diff --git a/gfx/pokemon/xatu/anim0.asm b/gfx/pokemon/xatu/anim0.asm new file mode 100644 index 000000000..002f905b8 --- /dev/null +++ b/gfx/pokemon/xatu/anim0.asm @@ -0,0 +1,10 @@ + frame 0, 04 + frame 3, 12 + frame 2, 12 + frame 1, 12 + setrepeat 2 + frame 0, 12 + frame 4, 12 + dorepeat 5 + endanim +; 0xd12cd diff --git a/gfx/pokemon/xatu/anim1.asm b/gfx/pokemon/xatu/anim1.asm new file mode 100644 index 000000000..3fa8d7875 --- /dev/null +++ b/gfx/pokemon/xatu/anim1.asm @@ -0,0 +1,11 @@ + setrepeat 2 + frame 0, 08 + frame 3, 08 + dorepeat 1 + frame 0, 18 + setrepeat 2 + frame 1, 08 + frame 2, 08 + dorepeat 6 + endanim +; 0xd1f99 diff --git a/gfx/pokemon/xatu/back.2bpp.lz.4de765ff b/gfx/pokemon/xatu/back.2bpp.lz.4de765ff new file mode 100644 index 000000000..8b6889ffb Binary files /dev/null and b/gfx/pokemon/xatu/back.2bpp.lz.4de765ff differ diff --git a/gfx/pokemon/xatu/back.png b/gfx/pokemon/xatu/back.png new file mode 100644 index 000000000..94f56f87d Binary files /dev/null and b/gfx/pokemon/xatu/back.png differ diff --git a/gfx/pokemon/xatu/front.animated.2bpp.lz.4f452e43 b/gfx/pokemon/xatu/front.animated.2bpp.lz.4f452e43 new file mode 100644 index 000000000..4b5918b3a Binary files /dev/null and b/gfx/pokemon/xatu/front.animated.2bpp.lz.4f452e43 differ diff --git a/gfx/pokemon/xatu/front.png b/gfx/pokemon/xatu/front.png new file mode 100644 index 000000000..f6335d27d Binary files /dev/null and b/gfx/pokemon/xatu/front.png differ diff --git a/gfx/pokemon/xatu/shiny.pal b/gfx/pokemon/xatu/shiny.pal new file mode 100644 index 000000000..00ac32371 --- /dev/null +++ b/gfx/pokemon/xatu/shiny.pal @@ -0,0 +1,4 @@ + + RGB 19, 27, 00 + RGB 23, 12, 02 + diff --git a/gfx/pokemon/yanma/anim0.asm b/gfx/pokemon/yanma/anim0.asm new file mode 100644 index 000000000..4f1aaa929 --- /dev/null +++ b/gfx/pokemon/yanma/anim0.asm @@ -0,0 +1,9 @@ + frame 1, 10 + frame 0, 05 + frame 3, 05 + setrepeat 5 + frame 0, 03 + frame 2, 03 + dorepeat 4 + endanim +; 0xd138a diff --git a/gfx/pokemon/yanma/anim1.asm b/gfx/pokemon/yanma/anim1.asm new file mode 100644 index 000000000..75464b3f1 --- /dev/null +++ b/gfx/pokemon/yanma/anim1.asm @@ -0,0 +1,6 @@ + setrepeat 2 + frame 0, 04 + frame 3, 04 + dorepeat 1 + endanim +; 0xd2026 diff --git a/gfx/pokemon/yanma/back.2bpp.lz.2ca27ab3 b/gfx/pokemon/yanma/back.2bpp.lz.2ca27ab3 new file mode 100644 index 000000000..47105f12f Binary files /dev/null and b/gfx/pokemon/yanma/back.2bpp.lz.2ca27ab3 differ diff --git a/gfx/pokemon/yanma/back.png b/gfx/pokemon/yanma/back.png new file mode 100644 index 000000000..cc21b1a28 Binary files /dev/null and b/gfx/pokemon/yanma/back.png differ diff --git a/gfx/pokemon/yanma/front.animated.2bpp.lz.25f91adf b/gfx/pokemon/yanma/front.animated.2bpp.lz.25f91adf new file mode 100644 index 000000000..1987afdc9 Binary files /dev/null and b/gfx/pokemon/yanma/front.animated.2bpp.lz.25f91adf differ diff --git a/gfx/pokemon/yanma/front.png b/gfx/pokemon/yanma/front.png new file mode 100644 index 000000000..1812eea58 Binary files /dev/null and b/gfx/pokemon/yanma/front.png differ diff --git a/gfx/pokemon/yanma/shiny.pal b/gfx/pokemon/yanma/shiny.pal new file mode 100644 index 000000000..cbbdc755b --- /dev/null +++ b/gfx/pokemon/yanma/shiny.pal @@ -0,0 +1,4 @@ + + RGB 09, 26, 10 + RGB 13, 14, 30 + diff --git a/gfx/pokemon/zapdos/anim0.asm b/gfx/pokemon/zapdos/anim0.asm new file mode 100644 index 000000000..a22540c2a --- /dev/null +++ b/gfx/pokemon/zapdos/anim0.asm @@ -0,0 +1,7 @@ + frame 1, 10 + setrepeat 3 + frame 2, 10 + frame 3, 10 + dorepeat 2 + endanim +; 0xd10cc diff --git a/gfx/pokemon/zapdos/anim1.asm b/gfx/pokemon/zapdos/anim1.asm new file mode 100644 index 000000000..3d8c8fd57 --- /dev/null +++ b/gfx/pokemon/zapdos/anim1.asm @@ -0,0 +1,5 @@ + frame 1, 08 + frame 2, 50 + frame 1, 06 + endanim +; 0xd1e48 diff --git a/gfx/pokemon/zapdos/back.2bpp.lz.a44c7524 b/gfx/pokemon/zapdos/back.2bpp.lz.a44c7524 new file mode 100644 index 000000000..2f2167941 Binary files /dev/null and b/gfx/pokemon/zapdos/back.2bpp.lz.a44c7524 differ diff --git a/gfx/pokemon/zapdos/back.png b/gfx/pokemon/zapdos/back.png new file mode 100644 index 000000000..8b1b740ea Binary files /dev/null and b/gfx/pokemon/zapdos/back.png differ diff --git a/gfx/pokemon/zapdos/front.animated.2bpp.lz.05cb214a b/gfx/pokemon/zapdos/front.animated.2bpp.lz.05cb214a new file mode 100644 index 000000000..0f048171c Binary files /dev/null and b/gfx/pokemon/zapdos/front.animated.2bpp.lz.05cb214a differ diff --git a/gfx/pokemon/zapdos/front.png b/gfx/pokemon/zapdos/front.png new file mode 100644 index 000000000..ae1b68cd0 Binary files /dev/null and b/gfx/pokemon/zapdos/front.png differ diff --git a/gfx/pokemon/zapdos/shiny.pal b/gfx/pokemon/zapdos/shiny.pal new file mode 100644 index 000000000..e73dbe6ff --- /dev/null +++ b/gfx/pokemon/zapdos/shiny.pal @@ -0,0 +1,4 @@ + + RGB 31, 19, 00 + RGB 31, 04, 00 + diff --git a/gfx/pokemon/zubat/anim0.asm b/gfx/pokemon/zubat/anim0.asm new file mode 100644 index 000000000..a34a66671 --- /dev/null +++ b/gfx/pokemon/zubat/anim0.asm @@ -0,0 +1,8 @@ + setrepeat 4 + frame 1, 07 + frame 2, 07 + dorepeat 1 + frame 3, 07 + frame 0, 07 + endanim +; 0xd0afa diff --git a/gfx/pokemon/zubat/anim1.asm b/gfx/pokemon/zubat/anim1.asm new file mode 100644 index 000000000..cfba587f9 --- /dev/null +++ b/gfx/pokemon/zubat/anim1.asm @@ -0,0 +1,7 @@ + frame 2, 35 + setrepeat 2 + frame 0, 12 + frame 3, 12 + dorepeat 2 + endanim +; 0xd1a5a diff --git a/gfx/pokemon/zubat/back.2bpp.lz.aa77eb62 b/gfx/pokemon/zubat/back.2bpp.lz.aa77eb62 new file mode 100644 index 000000000..d50e00e90 Binary files /dev/null and b/gfx/pokemon/zubat/back.2bpp.lz.aa77eb62 differ diff --git a/gfx/pokemon/zubat/back.png b/gfx/pokemon/zubat/back.png new file mode 100644 index 000000000..2e1eb35cf Binary files /dev/null and b/gfx/pokemon/zubat/back.png differ diff --git a/gfx/pokemon/zubat/front.animated.2bpp.lz.f12e6581 b/gfx/pokemon/zubat/front.animated.2bpp.lz.f12e6581 new file mode 100644 index 000000000..b22e1d971 Binary files /dev/null and b/gfx/pokemon/zubat/front.animated.2bpp.lz.f12e6581 differ diff --git a/gfx/pokemon/zubat/front.png b/gfx/pokemon/zubat/front.png new file mode 100644 index 000000000..1dbccda8e Binary files /dev/null and b/gfx/pokemon/zubat/front.png differ diff --git a/gfx/pokemon/zubat/shiny.pal b/gfx/pokemon/zubat/shiny.pal new file mode 100644 index 000000000..722f84ed2 --- /dev/null +++ b/gfx/pokemon/zubat/shiny.pal @@ -0,0 +1,4 @@ + + RGB 27, 15, 30 + RGB 10, 17, 06 + diff --git a/main.asm b/main.asm index 6fd426e8a..8aa861f26 100644 --- a/main.asm +++ b/main.asm @@ -406,25 +406,25 @@ INCLUDE "battle/anim_objects.asm" SECTION "Pic Animations 1", ROMX -INCLUDE "gfx/pics/animation.asm" -INCLUDE "gfx/pics/anim_pointers.asm" -INCLUDE "gfx/pics/anims.asm" -INCLUDE "gfx/pics/extra_pointers.asm" -INCLUDE "gfx/pics/extras.asm" -INCLUDE "gfx/pics/unown_anim_pointers.asm" -INCLUDE "gfx/pics/unown_anims.asm" -INCLUDE "gfx/pics/unown_extra_pointers.asm" -INCLUDE "gfx/pics/unown_extras.asm" -INCLUDE "gfx/pics/bitmask_pointers.asm" -INCLUDE "gfx/pics/bitmasks.asm" -INCLUDE "gfx/pics/unown_bitmask_pointers.asm" -INCLUDE "gfx/pics/unown_bitmasks.asm" +INCLUDE "gfx/pokemon/animation.asm" +INCLUDE "gfx/pokemon/anim_pointers.asm" +INCLUDE "gfx/pokemon/anims.asm" +INCLUDE "gfx/pokemon/extra_pointers.asm" +INCLUDE "gfx/pokemon/extras.asm" +INCLUDE "gfx/pokemon/unown_anim_pointers.asm" +INCLUDE "gfx/pokemon/unown_anims.asm" +INCLUDE "gfx/pokemon/unown_extra_pointers.asm" +INCLUDE "gfx/pokemon/unown_extras.asm" +INCLUDE "gfx/pokemon/bitmask_pointers.asm" +INCLUDE "gfx/pokemon/bitmasks.asm" +INCLUDE "gfx/pokemon/unown_bitmask_pointers.asm" +INCLUDE "gfx/pokemon/unown_bitmasks.asm" SECTION "Pic Animations 2", ROMX -INCLUDE "gfx/pics/frame_pointers.asm" -INCLUDE "gfx/pics/kanto_frames.asm" +INCLUDE "gfx/pokemon/frame_pointers.asm" +INCLUDE "gfx/pokemon/kanto_frames.asm" SECTION "Font Inversed", ROMX @@ -435,9 +435,9 @@ INCBIN "gfx/font/font_inversed.1bpp" SECTION "Pic Animations 3", ROMX -INCLUDE "gfx/pics/johto_frames.asm" -INCLUDE "gfx/pics/unown_frame_pointers.asm" -INCLUDE "gfx/pics/unown_frames.asm" +INCLUDE "gfx/pokemon/johto_frames.asm" +INCLUDE "gfx/pokemon/unown_frame_pointers.asm" +INCLUDE "gfx/pokemon/unown_frames.asm" SECTION "bank38", ROMX -- cgit v1.2.3 From 38b84c5b112fc49815078cab07599044aef912f6 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 13:00:23 -0500 Subject: Remove unused label (last few commits resolve #434) --- engine/link.asm | 2 +- wram.asm | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/link.asm b/engine/link.asm index bb3e98b3e..5c45707d7 100755 --- a/engine/link.asm +++ b/engine/link.asm @@ -861,7 +861,7 @@ Link_PrepPartyData_Gen2: ; 28595 pop bc dec b jr nz, .loop2 -; Copy the mail metadata to wcabf +; Copy the mail data to wcabf ld hl, sPartyMail ld b, PARTY_LENGTH .loop3 diff --git a/wram.asm b/wram.asm index f489b10c5..7ee007c70 100644 --- a/wram.asm +++ b/wram.asm @@ -805,7 +805,6 @@ NEXTU ; c6d0 wPokedexDataStart:: wPokedexOrder:: ds $100 ; >= NUM_POKEMON wPokedexOrderEnd:: -wPokedexMetadata:: wDexListingScrollOffset:: db ; offset of the first displayed entry from the start wDexListingCursor:: db ; Dex cursor wDexListingEnd:: db ; Last mon to display -- cgit v1.2.3 From af5f884314522f319de2c6003316ecb647a8c008 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 13:06:27 -0500 Subject: Align columns --- audio/wave_samples.asm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/audio/wave_samples.asm b/audio/wave_samples.asm index 8c5bafa75..d48259888 100644 --- a/audio/wave_samples.asm +++ b/audio/wave_samples.asm @@ -1,14 +1,14 @@ WaveSamples: ; e8db2 ; these are streams of 32 4-bit values used as wavepatterns ; nothing interesting here! - dn 0, 2, 4, 6, 8, 10, 12, 14, 15, 15, 15, 14, 14, 13, 13, 12, 12, 11, 10, 9, 8, 7, 6, 5, 4, 4, 3, 3, 2, 2, 1, 1 - dn 0, 2, 4, 6, 8, 10, 12, 14, 14, 15, 15, 15, 15, 14, 14, 14, 13, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 2, 1, 1 - dn 1, 3, 6, 9, 11, 13, 14, 14, 14, 14, 15, 15, 15, 15, 14, 13, 13, 14, 15, 15, 15, 15, 14, 14, 14, 14, 13, 11, 9, 6, 3, 1 - dn 0, 2, 4, 6, 8, 10, 12, 13, 14, 15, 15, 14, 13, 14, 15, 15, 14, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 - dn 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 14, 15, 7, 7, 15, 14, 14, 13, 12, 10, 8, 7, 6, 5, 4, 3, 2, 1, 0 - dn 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 3, 3, 2, 2, 1, 1, 15, 15, 14, 14, 12, 12, 10, 10, 8, 8, 10, 10, 12, 12, 14, 14 - dn 0, 2, 4, 6, 8, 10, 12, 14, 12, 11, 10, 9, 8, 7, 6, 5, 15, 15, 15, 14, 14, 13, 13, 12, 4, 4, 3, 3, 2, 2, 1, 1 - dn 12, 0, 10, 9, 8, 7, 15, 5, 15, 15, 15, 14, 14, 13, 13, 12, 4, 4, 3, 3, 2, 2, 15, 1, 0, 2, 4, 6, 8, 10, 12, 14 - dn 4, 4, 3, 3, 2, 2, 1, 15, 0, 0, 4, 6, 8, 10, 12, 14, 15, 8, 15, 14, 14, 13, 13, 12, 12, 11, 10, 9, 8, 7, 6, 5 - dn 1, 1, 0, 0, 0, 0, 0, 8, 0, 0, 1, 3, 5, 7, 9, 10, 11, 4, 11, 10, 10, 9, 9, 8, 8, 7, 6, 5, 4, 3, 2, 1 + dn 0, 2, 4, 6, 8, 10, 12, 14, 15, 15, 15, 14, 14, 13, 13, 12, 12, 11, 10, 9, 8, 7, 6, 5, 4, 4, 3, 3, 2, 2, 1, 1 + dn 0, 2, 4, 6, 8, 10, 12, 14, 14, 15, 15, 15, 15, 14, 14, 14, 13, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 2, 1, 1 + dn 1, 3, 6, 9, 11, 13, 14, 14, 14, 14, 15, 15, 15, 15, 14, 13, 13, 14, 15, 15, 15, 15, 14, 14, 14, 14, 13, 11, 9, 6, 3, 1 + dn 0, 2, 4, 6, 8, 10, 12, 13, 14, 15, 15, 14, 13, 14, 15, 15, 14, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 + dn 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 14, 15, 7, 7, 15, 14, 14, 13, 12, 10, 8, 7, 6, 5, 4, 3, 2, 1, 0 + dn 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 3, 3, 2, 2, 1, 1, 15, 15, 14, 14, 12, 12, 10, 10, 8, 8, 10, 10, 12, 12, 14, 14 + dn 0, 2, 4, 6, 8, 10, 12, 14, 12, 11, 10, 9, 8, 7, 6, 5, 15, 15, 15, 14, 14, 13, 13, 12, 4, 4, 3, 3, 2, 2, 1, 1 + dn 12, 0, 10, 9, 8, 7, 15, 5, 15, 15, 15, 14, 14, 13, 13, 12, 4, 4, 3, 3, 2, 2, 15, 1, 0, 2, 4, 6, 8, 10, 12, 14 + dn 4, 4, 3, 3, 2, 2, 1, 15, 0, 0, 4, 6, 8, 10, 12, 14, 15, 8, 15, 14, 14, 13, 13, 12, 12, 11, 10, 9, 8, 7, 6, 5 + dn 1, 1, 0, 0, 0, 0, 0, 8, 0, 0, 1, 3, 5, 7, 9, 10, 11, 4, 11, 10, 10, 9, 9, 8, 8, 7, 6, 5, 4, 3, 2, 1 ; e8e52 -- cgit v1.2.3 From 85cded6ec5b329bb69a47544487b53bc0260f427 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 13:10:12 -0500 Subject: Update docs --- docs/music_commands.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/music_commands.md b/docs/music_commands.md index 43d607ff9..21befa71f 100644 --- a/docs/music_commands.md +++ b/docs/music_commands.md @@ -7,8 +7,6 @@ See also: [Sound Engine Commands](https://github.com/pret/pokecrystal/wiki/Sound ## `musicheader` *n*, *index*, *address* -## `cry_header` *n*, *index*, *address* - ## `note` *pitch*, *length* (Used on all channels) -- cgit v1.2.3 From 8983c0c80935eee544e39857712e8651d82ddb59 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 14:39:16 -0500 Subject: =?UTF-8?q?dwb=20=E2=86=92=20dab?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- macros/predef.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/predef.asm b/macros/predef.asm index b99c6e1f2..139e3bf3a 100644 --- a/macros/predef.asm +++ b/macros/predef.asm @@ -1,6 +1,6 @@ add_predef: MACRO \1Predef:: - dwb \1, BANK(\1) + dab \1 ENDM predef_id: MACRO -- cgit v1.2.3 From 2f98c2032fd47ada3484bfc37d590992f286d3d4 Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 15:09:39 -0500 Subject: Constant comments --- data/map_objects.asm | 74 ++++++++++++++++++++++++++-------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/data/map_objects.asm b/data/map_objects.asm index 09de8dc52..af8b6d623 100755 --- a/data/map_objects.asm +++ b/data/map_objects.asm @@ -6,42 +6,42 @@ endm SpriteMovementData:: ; 4273 ; entries correspond to SPRITEMOVEDATA_* constants ; function, facing, action, flags1, flags2, palette flags - sprite_movement_data SPRITEMOVEFN_00, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; 00 - sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $0c, $00, %0000 ; 01 - sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_XY, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 02 - sprite_movement_data SPRITEMOVEFN_SLOW_RANDOM_SPIN, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 03 - sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_Y, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 04 - sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_X, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 05 - sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 06 - sprite_movement_data SPRITEMOVEFN_STANDING, UP, OBJECT_ACTION_STAND, $00, $00, %0000 ; 07 - sprite_movement_data SPRITEMOVEFN_STANDING, LEFT, OBJECT_ACTION_STAND, $00, $00, %0000 ; 08 - sprite_movement_data SPRITEMOVEFN_STANDING, RIGHT, OBJECT_ACTION_STAND, $00, $00, %0000 ; 09 - sprite_movement_data SPRITEMOVEFN_FAST_RANDOM_SPIN, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 0a - sprite_movement_data SPRITEMOVEFN_OBEY_DPAD, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; 0b - sprite_movement_data SPRITEMOVEFN_08, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 0c - sprite_movement_data SPRITEMOVEFN_09, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 0d - sprite_movement_data SPRITEMOVEFN_0A, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 0e - sprite_movement_data SPRITEMOVEFN_0B, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 0f - sprite_movement_data SPRITEMOVEFN_0C, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 10 - sprite_movement_data SPRITEMOVEFN_0D, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 11 - sprite_movement_data SPRITEMOVEFN_0E, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 12 - sprite_movement_data SPRITEMOVEFN_FOLLOW, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; 13 - sprite_movement_data SPRITEMOVEFN_SCRIPTED, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; 14 - sprite_movement_data SPRITEMOVEFN_BIG_SNORLAX, DOWN, OBJECT_ACTION_BIG_SNORLAX, $2e, $01, %1100 ; 15 - sprite_movement_data SPRITEMOVEFN_BOUNCE, DOWN, OBJECT_ACTION_BOUNCE, $2e, $00, %0000 ; 16 - sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $0c, $00, %0000 ; 17 - sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $2e, $10, %0000 ; 18 - sprite_movement_data SPRITEMOVEFN_STRENGTH, DOWN, OBJECT_ACTION_STAND, $2e, $00, %0100 ; 19 - sprite_movement_data SPRITEMOVEFN_FOLLOWNOTEXACT, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; 1a - sprite_movement_data SPRITEMOVEFN_SHADOW, DOWN, OBJECT_ACTION_00, $8e, $01, %0000 ; 1b - sprite_movement_data SPRITEMOVEFN_EMOTE, DOWN, OBJECT_ACTION_EMOTE, $8e, $02, %0000 ; 1c - sprite_movement_data SPRITEMOVEFN_SCREENSHAKE, DOWN, OBJECT_ACTION_00, $82, $00, %0000 ; 1d - sprite_movement_data SPRITEMOVEFN_SPIN_COUNTERCLOCKWISE, LEFT, OBJECT_ACTION_STAND, $00, $00, %0000 ; 1e - sprite_movement_data SPRITEMOVEFN_SPIN_CLOCKWISE, RIGHT, OBJECT_ACTION_STAND, $00, $00, %0000 ; 1f - sprite_movement_data SPRITEMOVEFN_STRENGTH, DOWN, OBJECT_ACTION_BIG_LAPRAS, $2e, $01, %1100 ; 20 - sprite_movement_data SPRITEMOVEFN_STRENGTH, DOWN, OBJECT_ACTION_BIG_DOLL, $2e, $01, %1100 ; 21 - sprite_movement_data SPRITEMOVEFN_BOULDERDUST, DOWN, OBJECT_ACTION_BOULDER_DUST, $8e, $01, %0000 ; 22 - sprite_movement_data SPRITEMOVEFN_GRASS, DOWN, OBJECT_ACTION_GRASS_SHAKE, $8e, $02, %0000 ; 23 - sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_XY, DOWN, OBJECT_ACTION_STAND, $00, $00, %0010 ; 24 + sprite_movement_data SPRITEMOVEFN_00, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; SPRITEMOVEDATA_00 + sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $0c, $00, %0000 ; SPRITEMOVEDATA_ITEM_TREE + sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_XY, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_WANDER + sprite_movement_data SPRITEMOVEFN_SLOW_RANDOM_SPIN, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_SPINRANDOM_SLOW + sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_Y, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_WALK_UP_DOWN + sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_X, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_WALK_LEFT_RIGHT + sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_STANDING_DOWN + sprite_movement_data SPRITEMOVEFN_STANDING, UP, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_STANDING_UP + sprite_movement_data SPRITEMOVEFN_STANDING, LEFT, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_STANDING_LEFT + sprite_movement_data SPRITEMOVEFN_STANDING, RIGHT, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_STANDING_RIGHT + sprite_movement_data SPRITEMOVEFN_FAST_RANDOM_SPIN, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_SPINRANDOM_FAST + sprite_movement_data SPRITEMOVEFN_OBEY_DPAD, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; SPRITEMOVEDATA_PLAYER + sprite_movement_data SPRITEMOVEFN_08, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_0C + sprite_movement_data SPRITEMOVEFN_09, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_0D + sprite_movement_data SPRITEMOVEFN_0A, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_0E + sprite_movement_data SPRITEMOVEFN_0B, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_0F + sprite_movement_data SPRITEMOVEFN_0C, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_10 + sprite_movement_data SPRITEMOVEFN_0D, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_11 + sprite_movement_data SPRITEMOVEFN_0E, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_12 + sprite_movement_data SPRITEMOVEFN_FOLLOW, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; SPRITEMOVEDATA_FOLLOWING + sprite_movement_data SPRITEMOVEFN_SCRIPTED, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; SPRITEMOVEDATA_SCRIPTED + sprite_movement_data SPRITEMOVEFN_BIG_SNORLAX, DOWN, OBJECT_ACTION_BIG_SNORLAX, $2e, $01, %1100 ; SPRITEMOVEDATA_SNORLAX + sprite_movement_data SPRITEMOVEFN_BOUNCE, DOWN, OBJECT_ACTION_BOUNCE, $2e, $00, %0000 ; SPRITEMOVEDATA_POKEMON + sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $0c, $00, %0000 ; SPRITEMOVEDATA_SUDOWOODO + sprite_movement_data SPRITEMOVEFN_STANDING, DOWN, OBJECT_ACTION_STAND, $2e, $10, %0000 ; SPRITEMOVEDATA_SMASHABLE_ROCK + sprite_movement_data SPRITEMOVEFN_STRENGTH, DOWN, OBJECT_ACTION_STAND, $2e, $00, %0100 ; SPRITEMOVEDATA_STRENGTH_BOULDER + sprite_movement_data SPRITEMOVEFN_FOLLOWNOTEXACT, DOWN, OBJECT_ACTION_STAND, $02, $00, %0000 ; SPRITEMOVEDATA_FOLLOWNOTEXACT + sprite_movement_data SPRITEMOVEFN_SHADOW, DOWN, OBJECT_ACTION_00, $8e, $01, %0000 ; SPRITEMOVEDATA_SHADOW + sprite_movement_data SPRITEMOVEFN_EMOTE, DOWN, OBJECT_ACTION_EMOTE, $8e, $02, %0000 ; SPRITEMOVEDATA_EMOTE + sprite_movement_data SPRITEMOVEFN_SCREENSHAKE, DOWN, OBJECT_ACTION_00, $82, $00, %0000 ; SPRITEMOVEDATA_SCREENSHAKE + sprite_movement_data SPRITEMOVEFN_SPIN_COUNTERCLOCKWISE, LEFT, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_SPINCOUNTERCLOCKWISE + sprite_movement_data SPRITEMOVEFN_SPIN_CLOCKWISE, RIGHT, OBJECT_ACTION_STAND, $00, $00, %0000 ; SPRITEMOVEDATA_SPINCLOCKWISE + sprite_movement_data SPRITEMOVEFN_STRENGTH, DOWN, OBJECT_ACTION_BIG_LAPRAS, $2e, $01, %1100 ; SPRITEMOVEDATA_20 + sprite_movement_data SPRITEMOVEFN_STRENGTH, DOWN, OBJECT_ACTION_BIG_DOLL, $2e, $01, %1100 ; SPRITEMOVEDATA_BIGDOLL + sprite_movement_data SPRITEMOVEFN_BOULDERDUST, DOWN, OBJECT_ACTION_BOULDER_DUST, $8e, $01, %0000 ; SPRITEMOVEDATA_BOULDERDUST + sprite_movement_data SPRITEMOVEFN_GRASS, DOWN, OBJECT_ACTION_GRASS_SHAKE, $8e, $02, %0000 ; SPRITEMOVEDATA_GRASS + sprite_movement_data SPRITEMOVEFN_RANDOM_WALK_XY, DOWN, OBJECT_ACTION_STAND, $00, $00, %0010 ; SPRITEMOVEDATA_LAPRAS sprite_movement_data SPRITEMOVEFN_00, DOWN, OBJECT_ACTION_STAND, $00, $00, %0000 ; 25 ; 4357 -- cgit v1.2.3 From b5417fafec7dd37cb4be391f3bd3d4541a2a381e Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 17:47:05 -0500 Subject: Split battle/ into data/ and engine/ components --- Makefile | 34 +- battle/ai/items.asm | 882 --- battle/ai/move.asm | 221 - battle/ai/redundant.asm | 198 - battle/ai/scoring.asm | 3598 --------- battle/ai/switch.asm | 672 -- battle/anim_commands.asm | 1515 ---- battle/anim_gfx.asm | 41 - battle/anim_objects.asm | 9 - battle/anims.asm | 5175 ------------ battle/bg_effects.asm | 2957 ------- battle/core.asm | 9511 ---------------------- battle/effect_command_pointers.asm | 180 - battle/effect_commands.asm | 10069 ------------------------ battle/effects/attract.asm | 79 - battle/effects/curse.asm | 97 - battle/effects/endure.asm | 17 - battle/effects/foresight.asm | 23 - battle/effects/metronome.asm | 61 - battle/effects/mirror_move.asm | 52 - battle/effects/nightmare.asm | 38 - battle/effects/perish_song.asm | 40 - battle/effects/present.asm | 93 - battle/effects/protect.asm | 80 - battle/effects/rollout.asm | 99 - battle/effects/sandstorm.asm | 19 - battle/effects/spikes.asm | 27 - battle/effects/thief.asm | 116 - battle/effects/transform.asm | 141 - battle/hidden_power.asm | 111 - battle/link_result.asm | 162 - battle/menu.asm | 118 - battle/misc.asm | 257 - battle/move_names.asm | 252 - battle/moves/move_descriptions.asm | 1270 --- battle/moves/move_effects.asm | 2075 ----- battle/moves/move_effects_pointers.asm | 159 - battle/moves/moves.asm | 265 - battle/objects/data.asm | 209 - battle/objects/engine.asm | 314 - battle/objects/framesets.asm | 1270 --- battle/objects/functions.asm | 4156 ---------- battle/objects/helpers.asm | 130 - battle/objects/oam.asm | 1085 --- battle/objects/object_gfx.asm | 51 - battle/sliding_intro.asm | 104 - battle/trainer_huds.asm | 269 - battle/type_matchup.asm | 128 - battle/used_move_text.asm | 341 - constants.asm | 1 + constants/animation_constants.asm | 24 +- constants/battle_constants.asm | 4 +- constants/item_constants.asm | 2 +- constants/map_setup_constants.asm | 42 +- constants/move_constants.asm | 8 +- constants/pokemon_data_constants.asm | 12 + constants/sprite_anim_constants.asm | 316 + constants/sprite_data_constants.asm | 317 - constants/type_constants.asm | 4 +- data/anims/ball_colors.asm | 16 + data/anims/framesets.asm | 1271 +++ data/anims/oam.asm | 1086 +++ data/anims/object_gfx.asm | 51 + data/anims/objects.asm | 209 + data/battle/ball_colors.asm | 16 - data/battle/flee_mons.asm | 36 - data/flypoints.asm | 38 - data/maps/flypoints.asm | 38 + data/maps/map_setup_scripts.asm | 177 + data/moves/effect_command_pointers.asm | 180 + data/moves/move_anims.asm | 5176 ++++++++++++ data/moves/move_descriptions.asm | 1270 +++ data/moves/move_effects.asm | 2075 +++++ data/moves/move_effects_pointers.asm | 159 + data/moves/move_names.asm | 252 + data/moves/moves.asm | 265 + data/moves/tmhm_moves.asm | 66 + data/mystery_gift/decos.asm | 40 - data/mystery_gift/items.asm | 40 - data/mystery_gift_decos.asm | 40 + data/mystery_gift_items.asm | 40 + data/sprite_anim_frames.asm | 499 -- data/sprite_anim_oam.asm | 1131 --- data/sprite_anim_seqs.asm | 49 - data/sprites/framesets.asm | 499 ++ data/sprites/oam.asm | 1131 +++ data/sprites/sequences.asm | 49 + data/tmhm_moves.asm | 69 - data/type_matchups.asm | 125 + data/type_names.asm | 50 + data/wild/flee_mons.asm | 36 + docs/bugs_and_glitches.md | 26 +- docs/move_anim_commands.md | 2 +- docs/pic_animations.md | 2 +- engine/anim_hp_bar.asm | 435 - engine/anims/anim_commands.asm | 1514 ++++ engine/anims/bg_effects.asm | 2958 +++++++ engine/anims/engine.asm | 314 + engine/anims/functions.asm | 4157 ++++++++++ engine/anims/helpers.asm | 130 + engine/battle/ai/items.asm | 882 +++ engine/battle/ai/move.asm | 221 + engine/battle/ai/redundant.asm | 198 + engine/battle/ai/scoring.asm | 3598 +++++++++ engine/battle/ai/switch.asm | 672 ++ engine/battle/anim_hp_bar.asm | 435 + engine/battle/battle_transition.asm | 873 ++ engine/battle/core.asm | 9511 ++++++++++++++++++++++ engine/battle/effect_commands.asm | 10066 +++++++++++++++++++++++ engine/battle/effect_commands/attract.asm | 79 + engine/battle/effect_commands/curse.asm | 97 + engine/battle/effect_commands/endure.asm | 17 + engine/battle/effect_commands/foresight.asm | 23 + engine/battle/effect_commands/metronome.asm | 61 + engine/battle/effect_commands/mirror_move.asm | 52 + engine/battle/effect_commands/nightmare.asm | 38 + engine/battle/effect_commands/perish_song.asm | 40 + engine/battle/effect_commands/present.asm | 93 + engine/battle/effect_commands/protect.asm | 80 + engine/battle/effect_commands/rollout.asm | 99 + engine/battle/effect_commands/sandstorm.asm | 19 + engine/battle/effect_commands/spikes.asm | 27 + engine/battle/effect_commands/thief.asm | 116 + engine/battle/effect_commands/transform.asm | 141 + engine/battle/hidden_power.asm | 111 + engine/battle/link_result.asm | 162 + engine/battle/menu.asm | 118 + engine/battle/misc.asm | 257 + engine/battle/read_trainer_attributes.asm | 64 + engine/battle/read_trainer_party.asm | 398 + engine/battle/sliding_intro.asm | 104 + engine/battle/start_battle.asm | 197 + engine/battle/trainer_huds.asm | 269 + engine/battle/trainer_scripts.asm | 31 + engine/battle/used_move_text.asm | 338 + engine/battle_transition.asm | 873 -- engine/map_setup.asm | 180 +- engine/mystery_gift_2.asm | 4 +- engine/pokegear.asm | 2 +- engine/read_trainer_attributes.asm | 64 - engine/read_trainer_party.asm | 398 - engine/sprites.asm | 6 +- engine/start_battle.asm | 197 - engine/tmhm.asm | 2 +- engine/trainer_scripts.asm | 31 - engine/types.asm | 101 + gfx/anims.asm | 41 + gfx/anims/aeroblast.2bpp.lz.2f07c4ea | Bin 0 -> 128 bytes gfx/anims/aeroblast.png | Bin 0 -> 187 bytes gfx/anims/angels.2bpp.lz.b026d81e | Bin 0 -> 368 bytes gfx/anims/angels.png | Bin 0 -> 363 bytes gfx/anims/beam.2bpp.lz.80b6d613 | Bin 0 -> 144 bytes gfx/anims/beam.png | Bin 0 -> 562 bytes gfx/anims/bubble.2bpp.lz.03b8ac99 | Bin 0 -> 160 bytes gfx/anims/bubble.png | Bin 0 -> 237 bytes gfx/anims/charge.2bpp.lz.95d3ea98 | Bin 0 -> 112 bytes gfx/anims/charge.png | Bin 0 -> 188 bytes gfx/anims/cut.2bpp.lz.03d343ed | Bin 0 -> 96 bytes gfx/anims/cut.png | Bin 0 -> 170 bytes gfx/anims/egg.2bpp.lz.41dd1a53 | Bin 0 -> 128 bytes gfx/anims/egg.png | Bin 0 -> 200 bytes gfx/anims/explosion.2bpp.lz.55fc334f | Bin 0 -> 96 bytes gfx/anims/explosion.png | Bin 0 -> 157 bytes gfx/anims/fire.2bpp.lz.d7701cda | Bin 0 -> 96 bytes gfx/anims/fire.png | Bin 0 -> 153 bytes gfx/anims/flower.2bpp.lz.1bc2e9d2 | Bin 0 -> 96 bytes gfx/anims/flower.png | Bin 0 -> 149 bytes gfx/anims/globe.2bpp.lz.710dbb8e | Bin 0 -> 240 bytes gfx/anims/globe.png | Bin 0 -> 292 bytes gfx/anims/haze.2bpp.lz.91424607 | Bin 0 -> 144 bytes gfx/anims/haze.png | Bin 0 -> 173 bytes gfx/anims/hit.2bpp.lz.2b3c83f2 | Bin 0 -> 240 bytes gfx/anims/hit.png | Bin 0 -> 306 bytes gfx/anims/horn.2bpp.lz.48908aae | Bin 0 -> 96 bytes gfx/anims/horn.png | Bin 0 -> 179 bytes gfx/anims/ice.2bpp.lz.664d900f | Bin 0 -> 64 bytes gfx/anims/ice.png | Bin 0 -> 137 bytes gfx/anims/lightning.2bpp.lz.a88fc131 | Bin 0 -> 320 bytes gfx/anims/lightning.png | Bin 0 -> 820 bytes gfx/anims/misc.2bpp.lz.4b20c3d7 | Bin 0 -> 416 bytes gfx/anims/misc.png | Bin 0 -> 1082 bytes gfx/anims/noise.2bpp.lz.acb4a76e | Bin 0 -> 192 bytes gfx/anims/noise.png | Bin 0 -> 526 bytes gfx/anims/objects.2bpp.lz.83f812de | Bin 0 -> 224 bytes gfx/anims/objects.png | Bin 0 -> 705 bytes gfx/anims/plant.2bpp.lz.4a00c417 | Bin 0 -> 224 bytes gfx/anims/plant.png | Bin 0 -> 293 bytes gfx/anims/poison.2bpp.lz.fc7dc9c1 | Bin 0 -> 112 bytes gfx/anims/poison.png | Bin 0 -> 166 bytes gfx/anims/pokeball.2bpp.lz.c58f7e01 | Bin 0 -> 80 bytes gfx/anims/pokeball.png | Bin 0 -> 388 bytes gfx/anims/powder.2bpp.lz.bfd566bb | Bin 0 -> 32 bytes gfx/anims/powder.png | Bin 0 -> 100 bytes gfx/anims/psychic.2bpp.lz.d80f285c | Bin 0 -> 112 bytes gfx/anims/psychic.png | Bin 0 -> 175 bytes gfx/anims/reflect.2bpp.lz.9a9c822d | Bin 0 -> 112 bytes gfx/anims/reflect.png | Bin 0 -> 211 bytes gfx/anims/rocks.2bpp.lz.73d0153e | Bin 0 -> 240 bytes gfx/anims/rocks.png | Bin 0 -> 669 bytes gfx/anims/rope.2bpp.lz.209d63dd | Bin 0 -> 192 bytes gfx/anims/rope.png | Bin 0 -> 256 bytes gfx/anims/sand.2bpp.lz.c87c0eaa | Bin 0 -> 96 bytes gfx/anims/sand.png | Bin 0 -> 384 bytes gfx/anims/shapes.2bpp.lz.262d77f0 | Bin 0 -> 160 bytes gfx/anims/shapes.png | Bin 0 -> 237 bytes gfx/anims/shine.2bpp.lz.5fb79056 | Bin 0 -> 224 bytes gfx/anims/shine.png | Bin 0 -> 273 bytes gfx/anims/skyattack.2bpp.lz.31738ab8 | Bin 0 -> 352 bytes gfx/anims/skyattack.png | Bin 0 -> 393 bytes gfx/anims/smoke.2bpp.lz.aa05905e | Bin 0 -> 144 bytes gfx/anims/smoke.png | Bin 0 -> 191 bytes gfx/anims/speed.2bpp.lz.1732b364 | Bin 0 -> 80 bytes gfx/anims/speed.png | Bin 0 -> 136 bytes gfx/anims/status.2bpp.lz.0c0aa13e | Bin 0 -> 288 bytes gfx/anims/status.png | Bin 0 -> 364 bytes gfx/anims/water.2bpp.lz.7b52ed12 | Bin 0 -> 208 bytes gfx/anims/water.png | Bin 0 -> 277 bytes gfx/anims/wave.2bpp.lz.bee99402 | Bin 0 -> 160 bytes gfx/anims/wave.png | Bin 0 -> 205 bytes gfx/anims/web.2bpp.lz.80e3d480 | Bin 0 -> 128 bytes gfx/anims/web.png | Bin 0 -> 191 bytes gfx/anims/whip.2bpp.lz.d80d8d6e | Bin 0 -> 128 bytes gfx/anims/whip.png | Bin 0 -> 210 bytes gfx/anims/wind.2bpp.lz.5a785180 | Bin 0 -> 192 bytes gfx/anims/wind.png | Bin 0 -> 286 bytes gfx/fx/aeroblast.2bpp.lz.2f07c4ea | Bin 128 -> 0 bytes gfx/fx/aeroblast.png | Bin 187 -> 0 bytes gfx/fx/angels.2bpp.lz.b026d81e | Bin 368 -> 0 bytes gfx/fx/angels.png | Bin 363 -> 0 bytes gfx/fx/beam.2bpp.lz.80b6d613 | Bin 144 -> 0 bytes gfx/fx/beam.png | Bin 562 -> 0 bytes gfx/fx/bubble.2bpp.lz.03b8ac99 | Bin 160 -> 0 bytes gfx/fx/bubble.png | Bin 237 -> 0 bytes gfx/fx/charge.2bpp.lz.95d3ea98 | Bin 112 -> 0 bytes gfx/fx/charge.png | Bin 188 -> 0 bytes gfx/fx/cut.2bpp.lz.03d343ed | Bin 96 -> 0 bytes gfx/fx/cut.png | Bin 170 -> 0 bytes gfx/fx/egg.2bpp.lz.41dd1a53 | Bin 128 -> 0 bytes gfx/fx/egg.png | Bin 200 -> 0 bytes gfx/fx/explosion.2bpp.lz.55fc334f | Bin 96 -> 0 bytes gfx/fx/explosion.png | Bin 157 -> 0 bytes gfx/fx/fire.2bpp.lz.d7701cda | Bin 96 -> 0 bytes gfx/fx/fire.png | Bin 153 -> 0 bytes gfx/fx/flower.2bpp.lz.1bc2e9d2 | Bin 96 -> 0 bytes gfx/fx/flower.png | Bin 149 -> 0 bytes gfx/fx/globe.2bpp.lz.710dbb8e | Bin 240 -> 0 bytes gfx/fx/globe.png | Bin 292 -> 0 bytes gfx/fx/haze.2bpp.lz.91424607 | Bin 144 -> 0 bytes gfx/fx/haze.png | Bin 173 -> 0 bytes gfx/fx/hit.2bpp.lz.2b3c83f2 | Bin 240 -> 0 bytes gfx/fx/hit.png | Bin 306 -> 0 bytes gfx/fx/horn.2bpp.lz.48908aae | Bin 96 -> 0 bytes gfx/fx/horn.png | Bin 179 -> 0 bytes gfx/fx/ice.2bpp.lz.664d900f | Bin 64 -> 0 bytes gfx/fx/ice.png | Bin 137 -> 0 bytes gfx/fx/lightning.2bpp.lz.a88fc131 | Bin 320 -> 0 bytes gfx/fx/lightning.png | Bin 820 -> 0 bytes gfx/fx/misc.2bpp.lz.4b20c3d7 | Bin 416 -> 0 bytes gfx/fx/misc.png | Bin 1082 -> 0 bytes gfx/fx/noise.2bpp.lz.acb4a76e | Bin 192 -> 0 bytes gfx/fx/noise.png | Bin 526 -> 0 bytes gfx/fx/objects.2bpp.lz.83f812de | Bin 224 -> 0 bytes gfx/fx/objects.png | Bin 705 -> 0 bytes gfx/fx/plant.2bpp.lz.4a00c417 | Bin 224 -> 0 bytes gfx/fx/plant.png | Bin 293 -> 0 bytes gfx/fx/poison.2bpp.lz.fc7dc9c1 | Bin 112 -> 0 bytes gfx/fx/poison.png | Bin 166 -> 0 bytes gfx/fx/pokeball.2bpp.lz.c58f7e01 | Bin 80 -> 0 bytes gfx/fx/pokeball.png | Bin 388 -> 0 bytes gfx/fx/powder.2bpp.lz.bfd566bb | Bin 32 -> 0 bytes gfx/fx/powder.png | Bin 100 -> 0 bytes gfx/fx/psychic.2bpp.lz.d80f285c | Bin 112 -> 0 bytes gfx/fx/psychic.png | Bin 175 -> 0 bytes gfx/fx/reflect.2bpp.lz.9a9c822d | Bin 112 -> 0 bytes gfx/fx/reflect.png | Bin 211 -> 0 bytes gfx/fx/rocks.2bpp.lz.73d0153e | Bin 240 -> 0 bytes gfx/fx/rocks.png | Bin 669 -> 0 bytes gfx/fx/rope.2bpp.lz.209d63dd | Bin 192 -> 0 bytes gfx/fx/rope.png | Bin 256 -> 0 bytes gfx/fx/sand.2bpp.lz.c87c0eaa | Bin 96 -> 0 bytes gfx/fx/sand.png | Bin 384 -> 0 bytes gfx/fx/shapes.2bpp.lz.262d77f0 | Bin 160 -> 0 bytes gfx/fx/shapes.png | Bin 237 -> 0 bytes gfx/fx/shine.2bpp.lz.5fb79056 | Bin 224 -> 0 bytes gfx/fx/shine.png | Bin 273 -> 0 bytes gfx/fx/skyattack.2bpp.lz.31738ab8 | Bin 352 -> 0 bytes gfx/fx/skyattack.png | Bin 393 -> 0 bytes gfx/fx/smoke.2bpp.lz.aa05905e | Bin 144 -> 0 bytes gfx/fx/smoke.png | Bin 191 -> 0 bytes gfx/fx/speed.2bpp.lz.1732b364 | Bin 80 -> 0 bytes gfx/fx/speed.png | Bin 136 -> 0 bytes gfx/fx/status.2bpp.lz.0c0aa13e | Bin 288 -> 0 bytes gfx/fx/status.png | Bin 364 -> 0 bytes gfx/fx/water.2bpp.lz.7b52ed12 | Bin 208 -> 0 bytes gfx/fx/water.png | Bin 277 -> 0 bytes gfx/fx/wave.2bpp.lz.bee99402 | Bin 160 -> 0 bytes gfx/fx/wave.png | Bin 205 -> 0 bytes gfx/fx/web.2bpp.lz.80e3d480 | Bin 128 -> 0 bytes gfx/fx/web.png | Bin 191 -> 0 bytes gfx/fx/whip.2bpp.lz.d80d8d6e | Bin 128 -> 0 bytes gfx/fx/whip.png | Bin 210 -> 0 bytes gfx/fx/wind.2bpp.lz.5a785180 | Bin 192 -> 0 bytes gfx/fx/wind.png | Bin 286 -> 0 bytes macros/scripts/effect_commands.asm | 2 +- macros/scripts/move_anim.asm | 2 +- main.asm | 70 +- pokecrystal.link | 2 +- text/battle_tower.asm | 1 - text/types.asm | 149 - 309 files changed, 53410 insertions(+), 53419 deletions(-) delete mode 100644 battle/ai/items.asm delete mode 100755 battle/ai/move.asm delete mode 100755 battle/ai/redundant.asm delete mode 100644 battle/ai/scoring.asm delete mode 100755 battle/ai/switch.asm delete mode 100644 battle/anim_commands.asm delete mode 100644 battle/anim_gfx.asm delete mode 100644 battle/anim_objects.asm delete mode 100644 battle/anims.asm delete mode 100644 battle/bg_effects.asm delete mode 100644 battle/core.asm delete mode 100644 battle/effect_command_pointers.asm delete mode 100644 battle/effect_commands.asm delete mode 100755 battle/effects/attract.asm delete mode 100644 battle/effects/curse.asm delete mode 100644 battle/effects/endure.asm delete mode 100644 battle/effects/foresight.asm delete mode 100644 battle/effects/metronome.asm delete mode 100644 battle/effects/mirror_move.asm delete mode 100644 battle/effects/nightmare.asm delete mode 100644 battle/effects/perish_song.asm delete mode 100755 battle/effects/present.asm delete mode 100644 battle/effects/protect.asm delete mode 100644 battle/effects/rollout.asm delete mode 100644 battle/effects/sandstorm.asm delete mode 100644 battle/effects/spikes.asm delete mode 100644 battle/effects/thief.asm delete mode 100755 battle/effects/transform.asm delete mode 100644 battle/hidden_power.asm delete mode 100755 battle/link_result.asm delete mode 100755 battle/menu.asm delete mode 100644 battle/misc.asm delete mode 100644 battle/move_names.asm delete mode 100644 battle/moves/move_descriptions.asm delete mode 100644 battle/moves/move_effects.asm delete mode 100644 battle/moves/move_effects_pointers.asm delete mode 100644 battle/moves/moves.asm delete mode 100755 battle/objects/data.asm delete mode 100755 battle/objects/engine.asm delete mode 100755 battle/objects/framesets.asm delete mode 100755 battle/objects/functions.asm delete mode 100755 battle/objects/helpers.asm delete mode 100755 battle/objects/oam.asm delete mode 100755 battle/objects/object_gfx.asm delete mode 100755 battle/sliding_intro.asm delete mode 100755 battle/trainer_huds.asm delete mode 100644 battle/type_matchup.asm delete mode 100755 battle/used_move_text.asm create mode 100644 constants/sprite_anim_constants.asm create mode 100644 data/anims/ball_colors.asm create mode 100755 data/anims/framesets.asm create mode 100755 data/anims/oam.asm create mode 100755 data/anims/object_gfx.asm create mode 100755 data/anims/objects.asm delete mode 100644 data/battle/ball_colors.asm delete mode 100644 data/battle/flee_mons.asm delete mode 100644 data/flypoints.asm create mode 100644 data/maps/flypoints.asm create mode 100644 data/maps/map_setup_scripts.asm create mode 100644 data/moves/effect_command_pointers.asm create mode 100644 data/moves/move_anims.asm create mode 100644 data/moves/move_descriptions.asm create mode 100644 data/moves/move_effects.asm create mode 100644 data/moves/move_effects_pointers.asm create mode 100644 data/moves/move_names.asm create mode 100644 data/moves/moves.asm create mode 100644 data/moves/tmhm_moves.asm delete mode 100644 data/mystery_gift/decos.asm delete mode 100644 data/mystery_gift/items.asm create mode 100644 data/mystery_gift_decos.asm create mode 100644 data/mystery_gift_items.asm delete mode 100755 data/sprite_anim_frames.asm delete mode 100644 data/sprite_anim_oam.asm delete mode 100644 data/sprite_anim_seqs.asm create mode 100755 data/sprites/framesets.asm create mode 100644 data/sprites/oam.asm create mode 100644 data/sprites/sequences.asm delete mode 100644 data/tmhm_moves.asm create mode 100644 data/type_matchups.asm create mode 100644 data/type_names.asm create mode 100644 data/wild/flee_mons.asm delete mode 100755 engine/anim_hp_bar.asm create mode 100644 engine/anims/anim_commands.asm create mode 100644 engine/anims/bg_effects.asm create mode 100755 engine/anims/engine.asm create mode 100755 engine/anims/functions.asm create mode 100755 engine/anims/helpers.asm create mode 100644 engine/battle/ai/items.asm create mode 100755 engine/battle/ai/move.asm create mode 100755 engine/battle/ai/redundant.asm create mode 100644 engine/battle/ai/scoring.asm create mode 100755 engine/battle/ai/switch.asm create mode 100755 engine/battle/anim_hp_bar.asm create mode 100644 engine/battle/battle_transition.asm create mode 100644 engine/battle/core.asm create mode 100644 engine/battle/effect_commands.asm create mode 100755 engine/battle/effect_commands/attract.asm create mode 100644 engine/battle/effect_commands/curse.asm create mode 100644 engine/battle/effect_commands/endure.asm create mode 100644 engine/battle/effect_commands/foresight.asm create mode 100644 engine/battle/effect_commands/metronome.asm create mode 100644 engine/battle/effect_commands/mirror_move.asm create mode 100644 engine/battle/effect_commands/nightmare.asm create mode 100644 engine/battle/effect_commands/perish_song.asm create mode 100755 engine/battle/effect_commands/present.asm create mode 100644 engine/battle/effect_commands/protect.asm create mode 100644 engine/battle/effect_commands/rollout.asm create mode 100644 engine/battle/effect_commands/sandstorm.asm create mode 100644 engine/battle/effect_commands/spikes.asm create mode 100644 engine/battle/effect_commands/thief.asm create mode 100755 engine/battle/effect_commands/transform.asm create mode 100644 engine/battle/hidden_power.asm create mode 100755 engine/battle/link_result.asm create mode 100755 engine/battle/menu.asm create mode 100644 engine/battle/misc.asm create mode 100644 engine/battle/read_trainer_attributes.asm create mode 100755 engine/battle/read_trainer_party.asm create mode 100755 engine/battle/sliding_intro.asm create mode 100644 engine/battle/start_battle.asm create mode 100755 engine/battle/trainer_huds.asm create mode 100644 engine/battle/trainer_scripts.asm create mode 100755 engine/battle/used_move_text.asm delete mode 100644 engine/battle_transition.asm delete mode 100644 engine/read_trainer_attributes.asm delete mode 100755 engine/read_trainer_party.asm delete mode 100644 engine/start_battle.asm delete mode 100644 engine/trainer_scripts.asm create mode 100644 engine/types.asm create mode 100644 gfx/anims.asm create mode 100644 gfx/anims/aeroblast.2bpp.lz.2f07c4ea create mode 100644 gfx/anims/aeroblast.png create mode 100644 gfx/anims/angels.2bpp.lz.b026d81e create mode 100644 gfx/anims/angels.png create mode 100644 gfx/anims/beam.2bpp.lz.80b6d613 create mode 100755 gfx/anims/beam.png create mode 100644 gfx/anims/bubble.2bpp.lz.03b8ac99 create mode 100644 gfx/anims/bubble.png create mode 100644 gfx/anims/charge.2bpp.lz.95d3ea98 create mode 100644 gfx/anims/charge.png create mode 100644 gfx/anims/cut.2bpp.lz.03d343ed create mode 100644 gfx/anims/cut.png create mode 100644 gfx/anims/egg.2bpp.lz.41dd1a53 create mode 100644 gfx/anims/egg.png create mode 100644 gfx/anims/explosion.2bpp.lz.55fc334f create mode 100644 gfx/anims/explosion.png create mode 100644 gfx/anims/fire.2bpp.lz.d7701cda create mode 100644 gfx/anims/fire.png create mode 100644 gfx/anims/flower.2bpp.lz.1bc2e9d2 create mode 100644 gfx/anims/flower.png create mode 100644 gfx/anims/globe.2bpp.lz.710dbb8e create mode 100644 gfx/anims/globe.png create mode 100644 gfx/anims/haze.2bpp.lz.91424607 create mode 100644 gfx/anims/haze.png create mode 100644 gfx/anims/hit.2bpp.lz.2b3c83f2 create mode 100644 gfx/anims/hit.png create mode 100644 gfx/anims/horn.2bpp.lz.48908aae create mode 100644 gfx/anims/horn.png create mode 100644 gfx/anims/ice.2bpp.lz.664d900f create mode 100644 gfx/anims/ice.png create mode 100644 gfx/anims/lightning.2bpp.lz.a88fc131 create mode 100755 gfx/anims/lightning.png create mode 100644 gfx/anims/misc.2bpp.lz.4b20c3d7 create mode 100755 gfx/anims/misc.png create mode 100644 gfx/anims/noise.2bpp.lz.acb4a76e create mode 100755 gfx/anims/noise.png create mode 100644 gfx/anims/objects.2bpp.lz.83f812de create mode 100755 gfx/anims/objects.png create mode 100644 gfx/anims/plant.2bpp.lz.4a00c417 create mode 100644 gfx/anims/plant.png create mode 100644 gfx/anims/poison.2bpp.lz.fc7dc9c1 create mode 100755 gfx/anims/poison.png create mode 100644 gfx/anims/pokeball.2bpp.lz.c58f7e01 create mode 100755 gfx/anims/pokeball.png create mode 100644 gfx/anims/powder.2bpp.lz.bfd566bb create mode 100644 gfx/anims/powder.png create mode 100644 gfx/anims/psychic.2bpp.lz.d80f285c create mode 100644 gfx/anims/psychic.png create mode 100644 gfx/anims/reflect.2bpp.lz.9a9c822d create mode 100644 gfx/anims/reflect.png create mode 100644 gfx/anims/rocks.2bpp.lz.73d0153e create mode 100755 gfx/anims/rocks.png create mode 100644 gfx/anims/rope.2bpp.lz.209d63dd create mode 100644 gfx/anims/rope.png create mode 100644 gfx/anims/sand.2bpp.lz.c87c0eaa create mode 100755 gfx/anims/sand.png create mode 100644 gfx/anims/shapes.2bpp.lz.262d77f0 create mode 100644 gfx/anims/shapes.png create mode 100644 gfx/anims/shine.2bpp.lz.5fb79056 create mode 100644 gfx/anims/shine.png create mode 100644 gfx/anims/skyattack.2bpp.lz.31738ab8 create mode 100644 gfx/anims/skyattack.png create mode 100644 gfx/anims/smoke.2bpp.lz.aa05905e create mode 100644 gfx/anims/smoke.png create mode 100644 gfx/anims/speed.2bpp.lz.1732b364 create mode 100644 gfx/anims/speed.png create mode 100644 gfx/anims/status.2bpp.lz.0c0aa13e create mode 100644 gfx/anims/status.png create mode 100644 gfx/anims/water.2bpp.lz.7b52ed12 create mode 100644 gfx/anims/water.png create mode 100644 gfx/anims/wave.2bpp.lz.bee99402 create mode 100644 gfx/anims/wave.png create mode 100644 gfx/anims/web.2bpp.lz.80e3d480 create mode 100644 gfx/anims/web.png create mode 100644 gfx/anims/whip.2bpp.lz.d80d8d6e create mode 100644 gfx/anims/whip.png create mode 100644 gfx/anims/wind.2bpp.lz.5a785180 create mode 100644 gfx/anims/wind.png delete mode 100644 gfx/fx/aeroblast.2bpp.lz.2f07c4ea delete mode 100644 gfx/fx/aeroblast.png delete mode 100644 gfx/fx/angels.2bpp.lz.b026d81e delete mode 100644 gfx/fx/angels.png delete mode 100644 gfx/fx/beam.2bpp.lz.80b6d613 delete mode 100755 gfx/fx/beam.png delete mode 100644 gfx/fx/bubble.2bpp.lz.03b8ac99 delete mode 100644 gfx/fx/bubble.png delete mode 100644 gfx/fx/charge.2bpp.lz.95d3ea98 delete mode 100644 gfx/fx/charge.png delete mode 100644 gfx/fx/cut.2bpp.lz.03d343ed delete mode 100644 gfx/fx/cut.png delete mode 100644 gfx/fx/egg.2bpp.lz.41dd1a53 delete mode 100644 gfx/fx/egg.png delete mode 100644 gfx/fx/explosion.2bpp.lz.55fc334f delete mode 100644 gfx/fx/explosion.png delete mode 100644 gfx/fx/fire.2bpp.lz.d7701cda delete mode 100644 gfx/fx/fire.png delete mode 100644 gfx/fx/flower.2bpp.lz.1bc2e9d2 delete mode 100644 gfx/fx/flower.png delete mode 100644 gfx/fx/globe.2bpp.lz.710dbb8e delete mode 100644 gfx/fx/globe.png delete mode 100644 gfx/fx/haze.2bpp.lz.91424607 delete mode 100644 gfx/fx/haze.png delete mode 100644 gfx/fx/hit.2bpp.lz.2b3c83f2 delete mode 100644 gfx/fx/hit.png delete mode 100644 gfx/fx/horn.2bpp.lz.48908aae delete mode 100644 gfx/fx/horn.png delete mode 100644 gfx/fx/ice.2bpp.lz.664d900f delete mode 100644 gfx/fx/ice.png delete mode 100644 gfx/fx/lightning.2bpp.lz.a88fc131 delete mode 100755 gfx/fx/lightning.png delete mode 100644 gfx/fx/misc.2bpp.lz.4b20c3d7 delete mode 100755 gfx/fx/misc.png delete mode 100644 gfx/fx/noise.2bpp.lz.acb4a76e delete mode 100755 gfx/fx/noise.png delete mode 100644 gfx/fx/objects.2bpp.lz.83f812de delete mode 100755 gfx/fx/objects.png delete mode 100644 gfx/fx/plant.2bpp.lz.4a00c417 delete mode 100644 gfx/fx/plant.png delete mode 100644 gfx/fx/poison.2bpp.lz.fc7dc9c1 delete mode 100755 gfx/fx/poison.png delete mode 100644 gfx/fx/pokeball.2bpp.lz.c58f7e01 delete mode 100755 gfx/fx/pokeball.png delete mode 100644 gfx/fx/powder.2bpp.lz.bfd566bb delete mode 100644 gfx/fx/powder.png delete mode 100644 gfx/fx/psychic.2bpp.lz.d80f285c delete mode 100644 gfx/fx/psychic.png delete mode 100644 gfx/fx/reflect.2bpp.lz.9a9c822d delete mode 100644 gfx/fx/reflect.png delete mode 100644 gfx/fx/rocks.2bpp.lz.73d0153e delete mode 100755 gfx/fx/rocks.png delete mode 100644 gfx/fx/rope.2bpp.lz.209d63dd delete mode 100644 gfx/fx/rope.png delete mode 100644 gfx/fx/sand.2bpp.lz.c87c0eaa delete mode 100755 gfx/fx/sand.png delete mode 100644 gfx/fx/shapes.2bpp.lz.262d77f0 delete mode 100644 gfx/fx/shapes.png delete mode 100644 gfx/fx/shine.2bpp.lz.5fb79056 delete mode 100644 gfx/fx/shine.png delete mode 100644 gfx/fx/skyattack.2bpp.lz.31738ab8 delete mode 100644 gfx/fx/skyattack.png delete mode 100644 gfx/fx/smoke.2bpp.lz.aa05905e delete mode 100644 gfx/fx/smoke.png delete mode 100644 gfx/fx/speed.2bpp.lz.1732b364 delete mode 100644 gfx/fx/speed.png delete mode 100644 gfx/fx/status.2bpp.lz.0c0aa13e delete mode 100644 gfx/fx/status.png delete mode 100644 gfx/fx/water.2bpp.lz.7b52ed12 delete mode 100644 gfx/fx/water.png delete mode 100644 gfx/fx/wave.2bpp.lz.bee99402 delete mode 100644 gfx/fx/wave.png delete mode 100644 gfx/fx/web.2bpp.lz.80e3d480 delete mode 100644 gfx/fx/web.png delete mode 100644 gfx/fx/whip.2bpp.lz.d80d8d6e delete mode 100644 gfx/fx/whip.png delete mode 100644 gfx/fx/wind.2bpp.lz.5a785180 delete mode 100644 gfx/fx/wind.png delete mode 100644 text/types.asm diff --git a/Makefile b/Makefile index c30d4a180..f507fa362 100644 --- a/Makefile +++ b/Makefile @@ -169,23 +169,23 @@ gfx/slots/slots_3.2bpp: tools/gfx += --interleave --png=$< --remove-duplicates - gfx/card_flip/card_flip_2.2bpp: tools/gfx += --remove-whitespace -gfx/fx/angels.2bpp: tools/gfx += --trim-whitespace -gfx/fx/beam.2bpp: tools/gfx += --remove-xflip --remove-yflip --remove-whitespace -gfx/fx/bubble.2bpp: tools/gfx += --trim-whitespace -gfx/fx/charge.2bpp: tools/gfx += --trim-whitespace -gfx/fx/egg.2bpp: tools/gfx += --remove-whitespace -gfx/fx/explosion.2bpp: tools/gfx += --remove-whitespace -gfx/fx/hit.2bpp: tools/gfx += --remove-whitespace -gfx/fx/horn.2bpp: tools/gfx += --remove-whitespace -gfx/fx/lightning.2bpp: tools/gfx += --remove-whitespace -gfx/fx/misc.2bpp: tools/gfx += --remove-duplicates --remove-xflip -gfx/fx/noise.2bpp: tools/gfx += --remove-whitespace -gfx/fx/objects.2bpp: tools/gfx += --remove-whitespace --remove-xflip -gfx/fx/pokeball.2bpp: tools/gfx += --remove-xflip --keep-whitespace -gfx/fx/reflect.2bpp: tools/gfx += --remove-whitespace -gfx/fx/rocks.2bpp: tools/gfx += --remove-whitespace -gfx/fx/skyattack.2bpp: tools/gfx += --remove-whitespace -gfx/fx/status.2bpp: tools/gfx += --remove-whitespace +gfx/anims/angels.2bpp: tools/gfx += --trim-whitespace +gfx/anims/beam.2bpp: tools/gfx += --remove-xflip --remove-yflip --remove-whitespace +gfx/anims/bubble.2bpp: tools/gfx += --trim-whitespace +gfx/anims/charge.2bpp: tools/gfx += --trim-whitespace +gfx/anims/egg.2bpp: tools/gfx += --remove-whitespace +gfx/anims/explosion.2bpp: tools/gfx += --remove-whitespace +gfx/anims/hit.2bpp: tools/gfx += --remove-whitespace +gfx/anims/horn.2bpp: tools/gfx += --remove-whitespace +gfx/anims/lightning.2bpp: tools/gfx += --remove-whitespace +gfx/anims/misc.2bpp: tools/gfx += --remove-duplicates --remove-xflip +gfx/anims/noise.2bpp: tools/gfx += --remove-whitespace +gfx/anims/objects.2bpp: tools/gfx += --remove-whitespace --remove-xflip +gfx/anims/pokeball.2bpp: tools/gfx += --remove-xflip --keep-whitespace +gfx/anims/reflect.2bpp: tools/gfx += --remove-whitespace +gfx/anims/rocks.2bpp: tools/gfx += --remove-whitespace +gfx/anims/skyattack.2bpp: tools/gfx += --remove-whitespace +gfx/anims/status.2bpp: tools/gfx += --remove-whitespace gfx/player/chris.2bpp: rgbgfx += -h gfx/player/chris_back.2bpp: rgbgfx += -h diff --git a/battle/ai/items.asm b/battle/ai/items.asm deleted file mode 100644 index 09595077a..000000000 --- a/battle/ai/items.asm +++ /dev/null @@ -1,882 +0,0 @@ -AI_SwitchOrTryItem: ; 38000 - and a - - ld a, [wBattleMode] - dec a - ret z - - ld a, [wLinkMode] - and a - ret nz - - farcall CheckEnemyLockedIn - ret nz - - ld a, [PlayerSubStatus5] - bit SUBSTATUS_CANT_RUN, a - jr nz, DontSwitch - - ld a, [wEnemyWrapCount] - and a - jr nz, DontSwitch - - ld hl, TrainerClassAttributes + TRNATTR_AI_ITEM_SWITCH - ld a, [InBattleTowerBattle] ; Load always the first TrainerClass for BattleTower-Trainers - and a - jr nz, .ok - - ld a, [TrainerClass] - dec a - ld bc, NUM_TRAINER_ATTRIBUTES - call AddNTimes -.ok - bit SWITCH_OFTEN_F, [hl] - jp nz, SwitchOften - bit SWITCH_RARELY_F, [hl] - jp nz, SwitchRarely - bit SWITCH_SOMETIMES_F, [hl] - jp nz, SwitchSometimes - ; fallthrough - -DontSwitch: ; 38041 - call AI_TryItem - ret -; 38045 - -SwitchOften: ; 38045 - callfar CheckAbleToSwitch - ld a, [wEnemySwitchMonParam] - and $f0 - jp z, DontSwitch - - cp $10 - jr nz, .not_10 - call Random - cp 1 + 50 percent - jr c, .switch - jp DontSwitch -.not_10 - - cp $20 - jr nz, .not_20 - call Random - cp -1 + 79 percent - jr c, .switch - jp DontSwitch -.not_20 - - ; $30 - call Random - cp 4 percent - jp c, DontSwitch - -.switch - ld a, [wEnemySwitchMonParam] - and $f - inc a - ; In register 'a' is the number (1-6) of the Pkmn to switch to - ld [wEnemySwitchMonIndex], a - jp AI_TrySwitch -; 38083 - -SwitchRarely: ; 38083 - callfar CheckAbleToSwitch - ld a, [wEnemySwitchMonParam] - and $f0 - jp z, DontSwitch - - cp $10 - jr nz, .not_10 - call Random - cp 8 percent - jr c, .switch - jp DontSwitch -.not_10 - - cp $20 - jr nz, .not_20 - call Random - cp 12 percent - jr c, .switch - jp DontSwitch -.not_20 - - ; $30 - call Random - cp -1 + 79 percent - jp c, DontSwitch - -.switch - ld a, [wEnemySwitchMonParam] - and $f - inc a - ld [wEnemySwitchMonIndex], a - jp AI_TrySwitch -; 380c1 - -SwitchSometimes: ; 380c1 - callfar CheckAbleToSwitch - ld a, [wEnemySwitchMonParam] - and $f0 - jp z, DontSwitch - - cp $10 - jr nz, .not_10 - call Random - cp -1 + 20 percent - jr c, .switch - jp DontSwitch -.not_10 - - cp $20 - jr nz, .not_20 - call Random - cp 1 + 50 percent - jr c, .switch - jp DontSwitch -.not_20 - - ; $30 - call Random - cp -1 + 20 percent - jp c, DontSwitch - -.switch - ld a, [wEnemySwitchMonParam] - and $f - inc a - ld [wEnemySwitchMonIndex], a - jp AI_TrySwitch -; 380ff - - -CheckSubstatusCantRun: ; 380ff - ld a, [EnemySubStatus5] - bit SUBSTATUS_CANT_RUN, a - ret -; 38105 - - -AI_TryItem: ; 38105 - ; items are not allowed in the BattleTower - ld a, [InBattleTowerBattle] - and a - ret nz - - ld a, [wEnemyTrainerItem1] - ld b, a - ld a, [wEnemyTrainerItem2] - or b - ret z - - call .IsHighestLevel - ret nc - - ld a, [TrainerClass] - dec a - ld hl, TrainerClassAttributes + TRNATTR_AI_ITEM_SWITCH - ld bc, NUM_TRAINER_ATTRIBUTES - call AddNTimes - ld b, h - ld c, l - ld hl, AI_Items - ld de, wEnemyTrainerItem1 -.loop - ld a, [hl] - and a - inc a - ret z - - ld a, [de] - cp [hl] - jr z, .has_item - inc de - ld a, [de] - cp [hl] - jr z, .has_item - - dec de - inc hl - inc hl - inc hl - jr .loop - -.has_item - inc hl - - push hl - push de - ld de, .callback - push de - ld a, [hli] - ld h, [hl] - ld l, a - jp hl -.callback - pop de - pop hl - - inc hl - inc hl - jr c, .loop - -.used_item - xor a - ld [de], a - inc a - ld [wEnemyGoesFirst], a - - ld hl, EnemySubStatus3 - res SUBSTATUS_BIDE, [hl] - - xor a - ld [EnemyFuryCutterCount], a - ld [EnemyProtectCount], a - ld [wEnemyRageCounter], a - - ld hl, EnemySubStatus4 - res SUBSTATUS_RAGE, [hl] - - xor a - ld [LastEnemyCounterMove], a - - scf - ret - - -.IsHighestLevel: ; 38170 - ld a, [OTPartyCount] - ld d, a - ld e, 0 - ld hl, OTPartyMon1Level - ld bc, PARTYMON_STRUCT_LENGTH -.next - ld a, [hl] - cp e - jr c, .ok - ld e, a -.ok - add hl, bc - dec d - jr nz, .next - - ld a, [CurOTMon] - ld hl, OTPartyMon1Level - call AddNTimes - ld a, [hl] - cp e - jr nc, .yes - -.no - and a - ret - -.yes - scf - ret -; 38196 - - -AI_Items: ; 39196 - dbw FULL_RESTORE, .FullRestore - dbw MAX_POTION, .MaxPotion - dbw HYPER_POTION, .HyperPotion - dbw SUPER_POTION, .SuperPotion - dbw POTION, .Potion - dbw X_ACCURACY, .XAccuracy - dbw FULL_HEAL, .FullHeal - dbw GUARD_SPEC, .GuardSpec - dbw DIRE_HIT, .DireHit - dbw X_ATTACK, .XAttack - dbw X_DEFEND, .XDefend - dbw X_SPEED, .XSpeed - dbw X_SPECIAL, .XSpecial - db $ff -; 381be - -.FullHeal: ; 381be - call .Status - jp c, .DontUse - call EnemyUsedFullHeal - jp .Use -; 381ca - -.Status: ; 381ca (e:41ca) - ld a, [EnemyMonStatus] - and a - jp z, .DontUse - - ld a, [bc] - bit CONTEXT_USE_F, a - jr nz, .StatusCheckContext - ld a, [bc] - bit ALWAYS_USE_F, a - jp nz, .Use - call Random - cp -1 + 20 percent - jp c, .Use - jp .DontUse - -.StatusCheckContext: - ld a, [EnemySubStatus5] - bit SUBSTATUS_TOXIC, a - jr z, .FailToxicCheck - ld a, [EnemyToxicCount] - cp 4 - jr c, .FailToxicCheck - call Random - cp 1 + 50 percent - jp c, .Use -.FailToxicCheck: - ld a, [EnemyMonStatus] - and 1 << FRZ | SLP - jp z, .DontUse - jp .Use -; 38208 - -.FullRestore: ; 38208 - call .HealItem - jp nc, .UseFullRestore - ld a, [bc] - bit CONTEXT_USE_F, a - jp z, .DontUse - call .Status - jp c, .DontUse - -.UseFullRestore: - call EnemyUsedFullRestore - jp .Use -; 38220 - -.MaxPotion: ; 38220 - call .HealItem - jp c, .DontUse - call EnemyUsedMaxPotion - jp .Use - -.HealItem: ; 3822c (e:422c) - ld a, [bc] - bit CONTEXT_USE_F, a - jr nz, .CheckHalfOrQuarterHP - callfar AICheckEnemyHalfHP - jp c, .DontUse - ld a, [bc] - bit UNKNOWN_USE_F, a - jp nz, .CheckQuarterHP - callfar AICheckEnemyQuarterHP - jp nc, .UseHealItem - call Random - cp 1 + 50 percent - jp c, .UseHealItem - jp .DontUse - -.CheckQuarterHP: ; 38254 (e:4254) - callfar AICheckEnemyQuarterHP - jp c, .DontUse - call Random - cp -1 + 20 percent - jp c, .DontUse - jr .UseHealItem - -.CheckHalfOrQuarterHP: ; 38267 (e:4267) - callfar AICheckEnemyHalfHP - jp c, .DontUse - callfar AICheckEnemyQuarterHP - jp nc, .UseHealItem - call Random - cp -1 + 20 percent - jp nc, .DontUse - -.UseHealItem: ; 38281 (e:4281) - jp .Use -; 38284 - -.HyperPotion: ; 38284 - call .HealItem - jp c, .DontUse - ld b, 200 - call EnemyUsedHyperPotion - jp .Use -; 38292 (e:4292) - -.SuperPotion: ; 38292 - call .HealItem - jp c, .DontUse - ld b, 50 - call EnemyUsedSuperPotion - jp .Use -; 382a0 - -.Potion: ; 382a0 - call .HealItem - jp c, .DontUse - ld b, 20 - call EnemyUsedPotion - jp .Use -; 382ae - -.asm_382ae ; This appears to be unused - callfar AICheckEnemyMaxHP - jr c, .dont_use - push bc - ld de, EnemyMonMaxHP + 1 - ld hl, EnemyMonHP + 1 - ld a, [de] - sub [hl] - jr z, .check_40_percent - dec hl - dec de - ld c, a - sbc [hl] - and a - jr nz, .check_40_percent - ld a, c - cp b - jp c, .check_50_percent - callfar AICheckEnemyQuarterHP - jr c, .check_40_percent - -.check_50_percent - pop bc - ld a, [bc] - bit UNKNOWN_USE_F, a - jp z, .Use - call Random - cp 1 + 50 percent - jp c, .Use - -.dont_use - jp .DontUse - -.check_40_percent - pop bc - ld a, [bc] - bit UNKNOWN_USE_F, a - jp z, .DontUse - call Random - cp 1 + 39 percent - jp c, .Use - jp .DontUse -; 382f9 - -.XAccuracy: ; 382f9 - call .XItem - jp c, .DontUse - call EnemyUsedXAccuracy - jp .Use -; 38305 - -.GuardSpec: ; 38305 - call .XItem - jp c, .DontUse - call EnemyUsedGuardSpec - jp .Use -; 38311 - -.DireHit: ; 38311 - call .XItem - jp c, .DontUse - call EnemyUsedDireHit - jp .Use -; 3831d (e:431d) - -.XAttack: ; 3831d - call .XItem - jp c, .DontUse - call EnemyUsedXAttack - jp .Use -; 38329 - -.XDefend: ; 38329 - call .XItem - jp c, .DontUse - call EnemyUsedXDefend - jp .Use -; 38335 - -.XSpeed: ; 38335 - call .XItem - jp c, .DontUse - call EnemyUsedXSpeed - jp .Use -; 38341 - -.XSpecial: ; 38341 - call .XItem - jp c, .DontUse - call EnemyUsedXSpecial - jp .Use -; 3834d - -.XItem: ; 3834d (e:434d) - ld a, [EnemyTurnsTaken] - and a - jr nz, .notfirstturnout - ld a, [bc] - bit ALWAYS_USE_F, a - jp nz, .Use - call Random - cp 1 + 50 percent - jp c, .DontUse - ld a, [bc] - bit CONTEXT_USE_F, a - jp nz, .Use - call Random - cp 1 + 50 percent - jp c, .DontUse - jp .Use -.notfirstturnout - ld a, [bc] - bit ALWAYS_USE_F, a - jp z, .DontUse - call Random - cp -1 + 20 percent - jp nc, .DontUse - jp .Use - -.DontUse: - scf - ret - -.Use: - and a - ret - - -AIUpdateHUD: ; 38387 - call UpdateEnemyMonInParty - farcall UpdateEnemyHUD - ld a, $1 - ld [hBGMapMode], a - ld hl, wEnemyItemState - dec [hl] - scf - ret -; 3839a - -AIUsedItemSound: ; 3839a - push de - ld de, SFX_FULL_HEAL - call PlaySFX - pop de - ret -; 383a3 - - -EnemyUsedFullHeal: ; 383a3 (e:43a3) - call AIUsedItemSound - call AI_HealStatus - ld a, FULL_HEAL - jp PrintText_UsedItemOn_AND_AIUpdateHUD - -EnemyUsedMaxPotion: ; 383ae (e:43ae) - ld a, MAX_POTION - ld [CurEnemyItem], a - jr FullRestoreContinue - -EnemyUsedFullRestore: ; 383b5 (e:43b5) - call AI_HealStatus - ld a, FULL_RESTORE - ld [CurEnemyItem], a - ld hl, EnemySubStatus3 - res SUBSTATUS_CONFUSED, [hl] - xor a - ld [EnemyConfuseCount], a - -FullRestoreContinue: ; 383c6 - ld de, wCurHPAnimOldHP - ld hl, EnemyMonHP + 1 - ld a, [hld] - ld [de], a - inc de - ld a, [hl] - ld [de], a - inc de - ld hl, EnemyMonMaxHP + 1 - ld a, [hld] - ld [de], a - inc de - ld [wCurHPAnimMaxHP], a - ld [EnemyMonHP + 1], a - ld a, [hl] - ld [de], a - ld [wCurHPAnimMaxHP + 1], a - ld [EnemyMonHP], a - jr EnemyPotionFinish -; 383e8 (e:43e8) - -EnemyUsedPotion: ; 383e8 - ld a, POTION - ld b, 20 - jr EnemyPotionContinue - -EnemyUsedSuperPotion: ; 383ee - ld a, SUPER_POTION - ld b, 50 - jr EnemyPotionContinue - -EnemyUsedHyperPotion: ; 383f4 (e:43f4) - ld a, HYPER_POTION - ld b, 200 - -EnemyPotionContinue: ; 383f8 - ld [CurEnemyItem], a - ld hl, EnemyMonHP + 1 - ld a, [hl] - ld [wCurHPAnimOldHP], a - add b - ld [hld], a - ld [wCurHPAnimNewHP], a - ld a, [hl] - ld [wCurHPAnimOldHP + 1], a - ld [wCurHPAnimNewHP + 1], a - jr nc, .ok - inc a - ld [hl], a - ld [wCurHPAnimNewHP + 1], a -.ok - inc hl - ld a, [hld] - ld b, a - ld de, EnemyMonMaxHP + 1 - ld a, [de] - dec de - ld [wCurHPAnimMaxHP], a - sub b - ld a, [hli] - ld b, a - ld a, [de] - ld [wCurHPAnimMaxHP + 1], a - sbc b - jr nc, EnemyPotionFinish - inc de - ld a, [de] - dec de - ld [hld], a - ld [wCurHPAnimNewHP], a - ld a, [de] - ld [hl], a - ld [wCurHPAnimNewHP + 1], a - -EnemyPotionFinish: ; 38436 - call PrintText_UsedItemOn - hlcoord 2, 2 - xor a - ld [wWhichHPBar], a - call AIUsedItemSound - predef AnimateHPBar - jp AIUpdateHUD - - -AI_TrySwitch: ; 3844b -; Determine whether the AI can switch based on how many Pokemon are still alive. -; If it can switch, it will. - ld a, [OTPartyCount] - ld c, a - ld hl, OTPartyMon1HP - ld d, 0 -.SwitchLoop: - ld a, [hli] - ld b, a - ld a, [hld] - or b - jr z, .fainted - inc d -.fainted - push bc - ld bc, PARTYMON_STRUCT_LENGTH - add hl, bc - pop bc - dec c - jr nz, .SwitchLoop - - ld a, d - cp 2 - jp nc, AI_Switch - and a - ret -; 3846c - -AI_Switch: ; 3846c - ld a, $1 - ld [wEnemyIsSwitching], a - ld [wEnemyGoesFirst], a - ld hl, EnemySubStatus4 - res SUBSTATUS_RAGE, [hl] - xor a - ld [hBattleTurn], a - callfar PursuitSwitch - - push af - ld a, [CurOTMon] - ld hl, OTPartyMon1Status - ld bc, PARTYMON_STRUCT_LENGTH - call AddNTimes - ld d, h - ld e, l - ld hl, EnemyMonStatus - ld bc, MON_MAXHP - MON_STATUS - call CopyBytes - pop af - - jr c, .skiptext - ld hl, TextJump_EnemyWithdrew - call PrintText - -.skiptext - ld a, 1 - ld [wBattleHasJustStarted], a - callfar NewEnemyMonStatus - callfar ResetEnemyStatLevels - ld hl, PlayerSubStatus1 - res SUBSTATUS_IN_LOVE, [hl] - farcall EnemySwitch - farcall ResetBattleParticipants - xor a - ld [wBattleHasJustStarted], a - ld a, [wLinkMode] - and a - ret nz - scf - ret -; 384d0 - -TextJump_EnemyWithdrew: ; 384d0 - text_jump Text_EnemyWithdrew - db "@" -; 384d5 - -Function384d5: ; This appears to be unused - call AIUsedItemSound - call AI_HealStatus - ld a, FULL_HEAL_RED ; X_SPEED - jp PrintText_UsedItemOn_AND_AIUpdateHUD -; 384e0 - -AI_HealStatus: ; 384e0 - ld a, [CurOTMon] - ld hl, OTPartyMon1Status - ld bc, PARTYMON_STRUCT_LENGTH - call AddNTimes - xor a - ld [hl], a - ld [EnemyMonStatus], a - ; Bug: this should reset SUBSTATUS_NIGHTMARE too - ; Uncomment the lines below to fix - ; ld hl, EnemySubStatus1 - ; res SUBSTATUS_NIGHTMARE, [hl] - ld hl, EnemySubStatus5 - res SUBSTATUS_TOXIC, [hl] - ret -; 384f7 - -EnemyUsedXAccuracy: ; 384f7 - call AIUsedItemSound - ld hl, EnemySubStatus4 - set SUBSTATUS_X_ACCURACY, [hl] - ld a, X_ACCURACY - jp PrintText_UsedItemOn_AND_AIUpdateHUD -; 38504 - -EnemyUsedGuardSpec: ; 38504 - call AIUsedItemSound - ld hl, EnemySubStatus4 - set SUBSTATUS_MIST, [hl] - ld a, GUARD_SPEC - jp PrintText_UsedItemOn_AND_AIUpdateHUD -; 38511 - -EnemyUsedDireHit: ; 38511 - call AIUsedItemSound - ld hl, EnemySubStatus4 - set SUBSTATUS_FOCUS_ENERGY, [hl] - ld a, DIRE_HIT - jp PrintText_UsedItemOn_AND_AIUpdateHUD -; 3851e - -Function3851e: ; This appears to be unused - ld [hDivisor], a - ld hl, EnemyMonMaxHP - ld a, [hli] - ld [hDividend], a - ld a, [hl] - ld [hDividend + 1], a - ld b, 2 - call Divide - ld a, [hQuotient + 2] - ld c, a - ld a, [hQuotient + 1] - ld b, a - ld hl, EnemyMonHP + 1 - ld a, [hld] - ld e, a - ld a, [hl] - ld d, a - ld a, d - sub b - ret nz - ld a, e - sub c - ret -; 38541 - -EnemyUsedXAttack: ; 38541 - ld b, ATTACK - ld a, X_ATTACK - jr EnemyUsedXItem -; 38547 - -EnemyUsedXDefend: ; 38547 - ld b, DEFENSE - ld a, X_DEFEND - jr EnemyUsedXItem -; 3854d - -EnemyUsedXSpeed: ; 3854d - ld b, SPEED - ld a, X_SPEED - jr EnemyUsedXItem -; 38553 - -EnemyUsedXSpecial: ; 38553 - ld b, SP_ATTACK - ld a, X_SPECIAL - - -; Parameter -; a = ITEM_CONSTANT -; b = BATTLE_CONSTANT (ATTACK, DEFENSE, SPEED, SP_ATTACK, SP_DEFENSE, ACCURACY, EVASION) -EnemyUsedXItem: - ld [CurEnemyItem], a - push bc - call PrintText_UsedItemOn - pop bc - farcall CheckIfStatCanBeRaised - jp AIUpdateHUD -; 38568 - - -; Parameter -; a = ITEM_CONSTANT -PrintText_UsedItemOn_AND_AIUpdateHUD: ; 38568 - ld [CurEnemyItem], a - call PrintText_UsedItemOn - jp AIUpdateHUD -; 38571 - -PrintText_UsedItemOn: ; 38571 - ld a, [CurEnemyItem] - ld [wd265], a - call GetItemName - ld hl, StringBuffer1 - ld de, wMonOrItemNameBuffer - ld bc, ITEM_NAME_LENGTH - call CopyBytes - ld hl, TextJump_EnemyUsedOn - jp PrintText -; 3858c - -TextJump_EnemyUsedOn: ; 3858c - text_jump Text_EnemyUsedOn - db "@" -; 38591 diff --git a/battle/ai/move.asm b/battle/ai/move.asm deleted file mode 100755 index 11586c0da..000000000 --- a/battle/ai/move.asm +++ /dev/null @@ -1,221 +0,0 @@ -AIChooseMove: ; 440ce -; Score each move in EnemyMonMoves starting from Buffer1. Lower is better. -; Pick the move with the lowest score. - -; Wildmons attack at random. - ld a, [wBattleMode] - dec a - ret z - - ld a, [wLinkMode] - and a - ret nz - -; No use picking a move if there's no choice. - farcall CheckEnemyLockedIn - ret nz - - -; The default score is 20. Unusable moves are given a score of 80. - ld a, 20 - ld hl, Buffer1 - ld [hli], a - ld [hli], a - ld [hli], a - ld [hl], a - -; Don't pick disabled moves. - ld a, [EnemyDisabledMove] - and a - jr z, .CheckPP - - ld hl, EnemyMonMoves - ld c, 0 -.CheckDisabledMove: - cp [hl] - jr z, .ScoreDisabledMove - inc c - inc hl - jr .CheckDisabledMove -.ScoreDisabledMove: - ld hl, Buffer1 - ld b, 0 - add hl, bc - ld [hl], 80 - -; Don't pick moves with 0 PP. -.CheckPP: - ld hl, Buffer1 - 1 - ld de, EnemyMonPP - ld b, 0 -.CheckMovePP: - inc b - ld a, b - cp EnemyMonMovesEnd - EnemyMonMoves + 1 - jr z, .ApplyLayers - inc hl - ld a, [de] - inc de - and $3f - jr nz, .CheckMovePP - ld [hl], 80 - jr .CheckMovePP - - -; Apply AI scoring layers depending on the trainer class. -.ApplyLayers: - ld hl, TrainerClassAttributes + TRNATTR_AI_MOVE_WEIGHTS - - ; If we have a battle in BattleTower just load the Attributes of the first TrainerClass (Falkner) - ; so we have always the same AI, regardless of the loaded class of trainer - ld a, [InBattleTowerBattle] - bit 0, a - jr nz, .battle_tower_skip - - ld a, [TrainerClass] - dec a - ld bc, 7 ; Trainer2AI - Trainer1AI - call AddNTimes - -.battle_tower_skip - lb bc, CHECK_FLAG, 0 - push bc - push hl - -.CheckLayer: - pop hl - pop bc - - ld a, c - cp 16 ; up to 16 scoring layers - jr z, .DecrementScores - - push bc - ld d, BANK(TrainerClassAttributes) - predef FlagPredef - ld d, c - pop bc - - inc c - push bc - push hl - - ld a, d - and a - jr z, .CheckLayer - - ld hl, AIScoringPointers - dec c - ld b, 0 - add hl, bc - add hl, bc - ld a, [hli] - ld h, [hl] - ld l, a - ld a, BANK(AIScoring) - call FarCall_hl - - jr .CheckLayer - -; Decrement the scores of all moves one by one until one reaches 0. -.DecrementScores: - ld hl, Buffer1 - ld de, EnemyMonMoves - ld c, EnemyMonMovesEnd - EnemyMonMoves - -.DecrementNextScore: - ; If the enemy has no moves, this will infinite. - ld a, [de] - inc de - and a - jr z, .DecrementScores - - ; We are done whenever a score reaches 0 - dec [hl] - jr z, .PickLowestScoreMoves - - ; If we just decremented the fourth move's score, go back to the first move - inc hl - dec c - jr z, .DecrementScores - - jr .DecrementNextScore - -; In order to avoid bias towards the moves located first in memory, increment the scores -; that were decremented one more time than the rest (in case there was a tie). -; This means that the minimum score will be 1. -.PickLowestScoreMoves: - ld a, c - -.move_loop - inc [hl] - dec hl - inc a - cp NUM_MOVES + 1 - jr nz, .move_loop - - ld hl, Buffer1 - ld de, EnemyMonMoves - ld c, NUM_MOVES - -; Give a score of 0 to a blank move -.loop2 - ld a, [de] - and a - jr nz, .skip_load - ld [hl], a - -; Disregard the move if its score is not 1 -.skip_load - ld a, [hl] - dec a - jr z, .keep - xor a - ld [hli], a - jr .after_toss - -.keep - ld a, [de] - ld [hli], a -.after_toss - inc de - dec c - jr nz, .loop2 - -; Randomly choose one of the moves with a score of 1 -.ChooseMove: - ld hl, Buffer1 - call Random - and 3 - ld c, a - ld b, 0 - add hl, bc - ld a, [hl] - and a - jr z, .ChooseMove - - ld [CurEnemyMove], a - ld a, c - ld [CurEnemyMoveNum], a - ret -; 441af - - -AIScoringPointers: ; 441af - dw AI_Basic - dw AI_Setup - dw AI_Types - dw AI_Offensive - dw AI_Smart - dw AI_Opportunist - dw AI_Aggressive - dw AI_Cautious - dw AI_Status - dw AI_Risky - dw AI_None - dw AI_None - dw AI_None - dw AI_None - dw AI_None - dw AI_None -; 441cf diff --git a/battle/ai/redundant.asm b/battle/ai/redundant.asm deleted file mode 100755 index 2e8f7c6df..000000000 --- a/battle/ai/redundant.asm +++ /dev/null @@ -1,198 +0,0 @@ -AI_Redundant: ; 2c41a -; Check if move effect c will fail because it's already been used. -; Return z if the move is a good choice. -; Return nz if the move is a bad choice. - ld a, c - ld de, 3 - ld hl, .Moves - call IsInArray - jp nc, .NotRedundant - inc hl - ld a, [hli] - ld h, [hl] - ld l, a - jp hl - -.Moves: ; 2c42c - dbw EFFECT_DREAM_EATER, .DreamEater - dbw EFFECT_HEAL, .Heal - dbw EFFECT_LIGHT_SCREEN, .LightScreen - dbw EFFECT_MIST, .Mist - dbw EFFECT_FOCUS_ENERGY, .FocusEnergy - dbw EFFECT_CONFUSE, .Confuse - dbw EFFECT_TRANSFORM, .Transform - dbw EFFECT_REFLECT, .Reflect - dbw EFFECT_SUBSTITUTE, .Substitute - dbw EFFECT_LEECH_SEED, .LeechSeed - dbw EFFECT_DISABLE, .Disable - dbw EFFECT_ENCORE, .Encore - dbw EFFECT_SNORE, .Snore - dbw EFFECT_SLEEP_TALK, .SleepTalk - dbw EFFECT_MEAN_LOOK, .MeanLook - dbw EFFECT_NIGHTMARE, .Nightmare - dbw EFFECT_SPIKES, .Spikes - dbw EFFECT_FORESIGHT, .Foresight - dbw EFFECT_PERISH_SONG, .PerishSong - dbw EFFECT_SANDSTORM, .Sandstorm - dbw EFFECT_ATTRACT, .Attract - dbw EFFECT_SAFEGUARD, .Safeguard - dbw EFFECT_RAIN_DANCE, .RainDance - dbw EFFECT_SUNNY_DAY, .SunnyDay - dbw EFFECT_TELEPORT, .Teleport - dbw EFFECT_MORNING_SUN, .MorningSun - dbw EFFECT_SYNTHESIS, .Synthesis - dbw EFFECT_MOONLIGHT, .Moonlight - dbw EFFECT_SWAGGER, .Swagger - dbw EFFECT_FUTURE_SIGHT, .FutureSight - db -1 - -.LightScreen: ; 2c487 - ld a, [EnemyScreens] - bit SCREENS_LIGHT_SCREEN, a - ret - -.Mist: ; 2c48d - ld a, [EnemySubStatus4] - bit SUBSTATUS_MIST, a - ret - -.FocusEnergy: ; 2c493 - ld a, [EnemySubStatus4] - bit SUBSTATUS_FOCUS_ENERGY, a - ret - -.Confuse: ; 2c499 - ld a, [PlayerSubStatus3] - bit SUBSTATUS_CONFUSED, a - ret nz - ld a, [PlayerScreens] - bit SCREENS_SAFEGUARD, a - ret - -.Transform: ; 2c4a5 - ld a, [EnemySubStatus5] - bit SUBSTATUS_TRANSFORMED, a - ret - -.Reflect: ; 2c4ab - ld a, [EnemyScreens] - bit SCREENS_REFLECT, a - ret - -.Substitute: ; 2c4b1 - ld a, [EnemySubStatus4] - bit SUBSTATUS_SUBSTITUTE, a - ret - -.LeechSeed: ; 2c4b7 - ld a, [PlayerSubStatus4] - bit SUBSTATUS_LEECH_SEED, a - ret - -.Disable: ; 2c4bd - ld a, [PlayerDisableCount] - and a - ret - -.Encore: ; 2c4c2 - ld a, [PlayerSubStatus5] - bit SUBSTATUS_ENCORED, a - ret - -.Snore: -.SleepTalk: ; 2c4c8 - ld a, [EnemyMonStatus] - and SLP - jr z, .Redundant - jr .NotRedundant - -.MeanLook: ; 2c4d1 - ld a, [EnemySubStatus5] - bit SUBSTATUS_CANT_RUN, a - ret - -.Nightmare: ; 2c4d7 - ld a, [BattleMonStatus] - and a - jr z, .Redundant - ld a, [PlayerSubStatus1] - bit SUBSTATUS_NIGHTMARE, a - ret - -.Spikes: ; 2c4e3 - ld a, [PlayerScreens] - bit SCREENS_SPIKES, a - ret - -.Foresight: ; 2c4e9 - ld a, [PlayerSubStatus1] - bit SUBSTATUS_IDENTIFIED, a - ret - -.PerishSong: ; 2c4ef - ld a, [PlayerSubStatus1] - bit SUBSTATUS_PERISH, a - ret - -.Sandstorm: ; 2c4f5 - ld a, [Weather] - cp WEATHER_SANDSTORM - jr z, .Redundant - jr .NotRedundant - -.Attract: ; 2c4fe - farcall CheckOppositeGender - jr c, .Redundant - ld a, [PlayerSubStatus1] - bit SUBSTATUS_IN_LOVE, a - ret - -.Safeguard: ; 2c50c - ld a, [EnemyScreens] - bit SCREENS_SAFEGUARD, a - ret - -.RainDance: ; 2c512 - ld a, [Weather] - cp WEATHER_RAIN - jr z, .Redundant - jr .NotRedundant - -.SunnyDay: ; 2c51b - ld a, [Weather] - cp WEATHER_SUN - jr z, .Redundant - jr .NotRedundant - -.DreamEater: ; 2c524 - ld a, [BattleMonStatus] - and SLP - jr z, .Redundant - jr .NotRedundant - -.Swagger: ; 2c52d - ld a, [PlayerSubStatus3] - bit SUBSTATUS_CONFUSED, a - ret - -.FutureSight: ; 2c533 - ld a, [EnemyScreens] - bit 5, a - ret - -.Heal: -.MorningSun: -.Synthesis: -.Moonlight: ; 2c539 - farcall AICheckEnemyMaxHP - jr nc, .NotRedundant - -.Teleport: -.Redundant: ; 2c541 - ld a, 1 - and a - ret - -.NotRedundant: ; 2c545 - xor a - ret diff --git a/battle/ai/scoring.asm b/battle/ai/scoring.asm deleted file mode 100644 index 44194d6f7..000000000 --- a/battle/ai/scoring.asm +++ /dev/null @@ -1,3598 +0,0 @@ -AIScoring: ; 38591 - -AI_Basic: ; 38591 -; Don't do anything redundant: -; -Using status-only moves if the player can't be statused -; -Using moves that fail if they've already been used - - ld hl, Buffer1 - 1 - ld de, EnemyMonMoves - ld b, EnemyMonMovesEnd - EnemyMonMoves + 1 -.checkmove - dec b - ret z - - inc hl - ld a, [de] - and a - ret z - - inc de - call AIGetEnemyMove - - ld a, [wEnemyMoveStruct + MOVE_EFFECT] - ld c, a - -; Dismiss moves with special effects if they are -; useless or not a good choice right now. -; For example, healing moves, weather moves, Dream Eater... - push hl - push de - push bc - farcall AI_Redundant - pop bc - pop de - pop hl - jr nz, .discourage - -; Dismiss status-only moves if the player can't be statused. - ld a, [wEnemyMoveStruct + MOVE_EFFECT] - push hl - push de - push bc - ld hl, .statusonlyeffects - ld de, 1 - call IsInArray - - pop bc - pop de - pop hl - jr nc, .checkmove - - ld a, [BattleMonStatus] - and a - jr nz, .discourage - -; Dismiss Safeguard if it's already active. - ld a, [PlayerScreens] - bit SCREENS_SAFEGUARD, a - jr z, .checkmove - -.discourage - call AIDiscourageMove - jr .checkmove -; 385db - -.statusonlyeffects - db EFFECT_SLEEP - db EFFECT_TOXIC - db EFFECT_POISON - db EFFECT_PARALYZE - db $ff -; 385e0 - - - -AI_Setup: ; 385e0 -; Use stat-modifying moves on turn 1. - -; 50% chance to greatly encourage stat-up moves during the first turn of enemy's Pokemon. -; 50% chance to greatly encourage stat-down moves during the first turn of player's Pokemon. -; Almost 90% chance to greatly discourage stat-modifying moves otherwise. - - ld hl, Buffer1 - 1 - ld de, EnemyMonMoves - ld b, EnemyMonMovesEnd - EnemyMonMoves + 1 -.checkmove - dec b - ret z - - inc hl - ld a, [de] - and a - ret z - - inc de - call AIGetEnemyMove - - ld a, [wEnemyMoveStruct + MOVE_EFFECT] - - cp EFFECT_ATTACK_UP - jr c, .checkmove - cp EFFECT_EVASION_UP + 1 - jr c, .statup - -; cp EFFECT_ATTACK_DOWN - 1 - jr z, .checkmove - cp EFFECT_EVASION_DOWN + 1 - jr c, .statdown - - cp EFFECT_ATTACK_UP_2 - jr c, .checkmove - cp EFFECT_EVASION_UP_2 + 1 - jr c, .statup - -; cp EFFECT_ATTACK_DOWN_2 - 1 - jr z, .checkmove - cp EFFECT_EVASION_DOWN_2 + 1 - jr c, .statdown - - jr .checkmove - -.statup - ld a, [EnemyTurnsTaken] - and a - jr nz, .discourage - - jr .encourage - -.statdown - ld a, [PlayerTurnsTaken] - and a - jr nz, .discourage - -.encourage - call AI_50_50 - jr c, .checkmove - - dec [hl] - dec [hl] - jr .checkmove - -.discourage - call Random - cp 12 percent - jr c, .checkmove - inc [hl] - inc [hl] - jr .checkmove -; 38635 - - - -AI_Types: ; 38635 -; Dismiss any move that the player is immune to. -; Encourage super-effective moves. -; Discourage not very effective moves unless -; all damaging moves are of the same type. - - ld hl, Buffer1 - 1 - ld de, EnemyMonMoves - ld b, EnemyMonMovesEnd - EnemyMonMoves + 1 -.checkmove - dec b - ret z - - inc hl - ld a, [de] - and a - ret z - - inc de - call AIGetEnemyMove - - push hl - push bc - push de - ld a, 1 - ld [hBattleTurn], a - callfar BattleCheckTypeMatchup - pop de - pop bc - pop hl - - ld a, [wd265] - and a - jr z, .immune - cp 10 ; 1.0 - jr z, .checkmove - jr c, .noteffective - -; effective - ld a, [wEnemyMoveStruct + MOVE_POWER] - and a - jr z, .checkmove - dec [hl] - jr .checkmove - -.noteffective -; Discourage this move if there are any moves -; that do damage of a different type. - push hl - push de - push bc - ld a, [wEnemyMoveStruct + MOVE_TYPE] - ld d, a - ld hl, EnemyMonMoves - ld b, EnemyMonMovesEnd - EnemyMonMoves + 1 - ld c, 0 -.checkmove2 - dec b - jr z, .asm_38693 - - ld a, [hli] - and a - jr z, .asm_38693 - - call AIGetEnemyMove - ld a, [wEnemyMoveStruct + MOVE_TYPE] - cp d - jr z, .checkmove2 - ld a, [wEnemyMoveStruct + MOVE_POWER] - and a - jr nz, .asm_38692 - jr .checkmove2 - -.asm_38692 - ld c, a -.asm_38693 - ld a, c - pop bc - pop de - pop hl - and a - jr z, .checkmove - inc [hl] - jr .checkmove - -.immune - call AIDiscourageMove - jr .checkmove -; 386a2 - - - -AI_Offensive: ; 386a2 -; Greatly discourage non-damaging moves. - - ld hl, Buffer1 - 1 - ld de, EnemyMonMoves - ld b, EnemyMonMovesEnd - EnemyMonMoves + 1 -.checkmove - dec b - ret z - - inc hl - ld a, [de] - and a - ret z - - inc de - call AIGetEnemyMove - - ld a, [wEnemyMoveStruct + MOVE_POWER] - and a - jr nz, .checkmove - - inc [hl] - inc [hl] - jr .checkmove -; 386be - - - -AI_Smart: ; 386be -; Context-specific scoring. - - ld hl, Buffer1 - ld de, EnemyMonMoves - ld b, EnemyMonMovesEnd - EnemyMonMoves + 1 -.checkmove - dec b - ret z - - ld a, [de] - inc de - and a - ret z - - push de - push bc - push hl - call AIGetEnemyMove - - ld a, [wEnemyMoveStruct + MOVE_EFFECT] - ld hl, .table_386f2 - ld de, 3 - call IsInArray - - inc hl - jr nc, .nextmove - - ld a, [hli] - ld e, a - ld d, [hl] - - pop hl - push hl - - ld bc, .nextmove - push bc - - push de - ret - -.nextmove - pop hl - pop bc - pop de - inc hl - jr .checkmove - -.table_386f2 - dbw EFFECT_SLEEP, AI_Smart_Sleep - dbw EFFECT_LEECH_HIT, AI_Smart_LeechHit - dbw EFFECT_SELFDESTRUCT, AI_Smart_Selfdestruct - dbw EFFECT_DREAM_EATER, AI_Smart_DreamEater - dbw EFFECT_MIRROR_MOVE, AI_Smart_MirrorMove - dbw EFFECT_EVASION_UP, AI_Smart_EvasionUp - dbw EFFECT_ALWAYS_HIT, AI_Smart_AlwaysHit - dbw EFFECT_ACCURACY_DOWN, AI_Smart_AccuracyDown - dbw EFFECT_RESET_STATS, AI_Smart_ResetStats - dbw EFFECT_BIDE, AI_Smart_Bide - dbw EFFECT_FORCE_SWITCH, AI_Smart_ForceSwitch - dbw EFFECT_HEAL, AI_Smart_Heal - dbw EFFECT_TOXIC, AI_Smart_Toxic - dbw EFFECT_LIGHT_SCREEN, AI_Smart_LightScreen - dbw EFFECT_OHKO, AI_Smart_Ohko - dbw EFFECT_RAZOR_WIND, AI_Smart_RazorWind - dbw EFFECT_SUPER_FANG, AI_Smart_SuperFang - dbw EFFECT_TRAP_TARGET, AI_Smart_TrapTarget - dbw EFFECT_UNUSED_2B, AI_Smart_Unused2B - dbw EFFECT_CONFUSE, AI_Smart_Confuse - dbw EFFECT_SP_DEF_UP_2, AI_Smart_SpDefenseUp2 - dbw EFFECT_REFLECT, AI_Smart_Reflect - dbw EFFECT_PARALYZE, AI_Smart_Paralyze - dbw EFFECT_SPEED_DOWN_HIT, AI_Smart_SpeedDownHit - dbw EFFECT_SUBSTITUTE, AI_Smart_Substitute - dbw EFFECT_HYPER_BEAM, AI_Smart_HyperBeam - dbw EFFECT_RAGE, AI_Smart_Rage - dbw EFFECT_MIMIC, AI_Smart_Mimic - dbw EFFECT_LEECH_SEED, AI_Smart_LeechSeed - dbw EFFECT_DISABLE, AI_Smart_Disable - dbw EFFECT_COUNTER, AI_Smart_Counter - dbw EFFECT_ENCORE, AI_Smart_Encore - dbw EFFECT_PAIN_SPLIT, AI_Smart_PainSplit - dbw EFFECT_SNORE, AI_Smart_Snore - dbw EFFECT_CONVERSION2, AI_Smart_Conversion2 - dbw EFFECT_LOCK_ON, AI_Smart_LockOn - dbw EFFECT_DEFROST_OPPONENT, AI_Smart_DefrostOpponent - dbw EFFECT_SLEEP_TALK, AI_Smart_SleepTalk - dbw EFFECT_DESTINY_BOND, AI_Smart_DestinyBond - dbw EFFECT_REVERSAL, AI_Smart_Reversal - dbw EFFECT_SPITE, AI_Smart_Spite - dbw EFFECT_HEAL_BELL, AI_Smart_HealBell - dbw EFFECT_PRIORITY_HIT, AI_Smart_PriorityHit - dbw EFFECT_THIEF, AI_Smart_Thief - dbw EFFECT_MEAN_LOOK, AI_Smart_MeanLook - dbw EFFECT_NIGHTMARE, AI_Smart_Nightmare - dbw EFFECT_FLAME_WHEEL, AI_Smart_FlameWheel - dbw EFFECT_CURSE, AI_Smart_Curse - dbw EFFECT_PROTECT, AI_Smart_Protect - dbw EFFECT_FORESIGHT, AI_Smart_Foresight - dbw EFFECT_PERISH_SONG, AI_Smart_PerishSong - dbw EFFECT_SANDSTORM, AI_Smart_Sandstorm - dbw EFFECT_ENDURE, AI_Smart_Endure - dbw EFFECT_ROLLOUT, AI_Smart_Rollout - dbw EFFECT_SWAGGER, AI_Smart_Swagger - dbw EFFECT_FURY_CUTTER, AI_Smart_FuryCutter - dbw EFFECT_ATTRACT, AI_Smart_Attract - dbw EFFECT_SAFEGUARD, AI_Smart_Safeguard - dbw EFFECT_MAGNITUDE, AI_Smart_Magnitude - dbw EFFECT_BATON_PASS, AI_Smart_BatonPass - dbw EFFECT_PURSUIT, AI_Smart_Pursuit - dbw EFFECT_RAPID_SPIN, AI_Smart_RapidSpin - dbw EFFECT_MORNING_SUN, AI_Smart_MorningSun - dbw EFFECT_SYNTHESIS, AI_Smart_Synthesis - dbw EFFECT_MOONLIGHT, AI_Smart_Moonlight - dbw EFFECT_HIDDEN_POWER, AI_Smart_HiddenPower - dbw EFFECT_RAIN_DANCE, AI_Smart_RainDance - dbw EFFECT_SUNNY_DAY, AI_Smart_SunnyDay - dbw EFFECT_BELLY_DRUM, AI_Smart_BellyDrum - dbw EFFECT_PSYCH_UP, AI_Smart_PsychUp - dbw EFFECT_MIRROR_COAT, AI_Smart_MirrorCoat - dbw EFFECT_SKULL_BASH, AI_Smart_SkullBash - dbw EFFECT_TWISTER, AI_Smart_Twister - dbw EFFECT_EARTHQUAKE, AI_Smart_Earthquake - dbw EFFECT_FUTURE_SIGHT, AI_Smart_FutureSight - dbw EFFECT_GUST, AI_Smart_Gust - dbw EFFECT_STOMP, AI_Smart_Stomp - dbw EFFECT_SOLARBEAM, AI_Smart_Solarbeam - dbw EFFECT_THUNDER, AI_Smart_Thunder - dbw EFFECT_FLY, AI_Smart_Fly - db $ff -; 387e3 - - -AI_Smart_Sleep: ; 387e3 -; Greatly encourage sleep inducing moves if the enemy has either Dream Eater or Nightmare. -; 50% chance to greatly encourage sleep inducing moves otherwise. - - ld b, EFFECT_DREAM_EATER - call AIHasMoveEffect - jr c, .asm_387f0 - - ld b, EFFECT_NIGHTMARE - call AIHasMoveEffect - ret nc - -.asm_387f0 - call AI_50_50 - ret c - dec [hl] - dec [hl] - ret -; 387f7 - - -AI_Smart_LeechHit: ; 387f7 - push hl - ld a, 1 - ld [hBattleTurn], a - callfar BattleCheckTypeMatchup - pop hl - -; 60% chance to discourage this move if not very effective. - ld a, [wd265] - cp 10 ; 1.0 - jr c, .asm_38815 - -; Do nothing if effectiveness is neutral. - ret z - -; Do nothing if enemy's HP is full. - call AICheckEnemyMaxHP - ret c - -; 80% chance to encourage this move otherwise. - call AI_80_20 - ret c - - dec [hl] - ret - -.asm_38815 - call Random - cp 39 percent + 1 - ret c - - inc [hl] - ret -; 3881d - - -AI_Smart_LockOn: ; 3881d - ld a, [PlayerSubStatus5] - bit SUBSTATUS_LOCK_ON, a - jr nz, .asm_38882 - - push hl - call AICheckEnemyQuarterHP - jr nc, .asm_38877 - - call AICheckEnemyHalfHP - jr c, .asm_38834 - - call AICompareSpeed - jr nc, .asm_38877 - -.asm_38834 - ld a, [PlayerEvaLevel] - cp $a - jr nc, .asm_3887a - cp $8 - jr nc, .asm_38875 - - ld a, [EnemyAccLevel] - cp $5 - jr c, .asm_3887a - cp $7 - jr c, .asm_38875 - - ld hl, EnemyMonMoves - ld c, EnemyMonMovesEnd - EnemyMonMoves + 1 -.asm_3884f - dec c - jr z, .asm_38877 - - ld a, [hli] - and a - jr z, .asm_38877 - - call AIGetEnemyMove - - ld a, [wEnemyMoveStruct + MOVE_ACC] - cp 180 - jr nc, .asm_3884f - - ld a, $1 - ld [hBattleTurn], a - - push hl - push bc - farcall BattleCheckTypeMatchup - ld a, [wd265] - cp $a - pop bc - pop hl - jr c, .asm_3884f - -.asm_38875 - pop hl - ret - -.asm_38877 - pop hl - inc [hl] - ret - -.asm_3887a - pop hl - call AI_50_50 - ret c - - dec [hl] - dec [hl] - ret - -.asm_38882 - push hl - ld hl, Buffer1 - 1 - ld de, EnemyMonMoves - ld c, EnemyMonMovesEnd - EnemyMonMoves + 1 - -.asm_3888b - inc hl - dec c - jr z, .asm_388a2 - - ld a, [de] - and a - jr z, .asm_388a2 - - inc de - call AIGetEnemyMove - - ld a, [wEnemyMoveStruct + MOVE_ACC] - cp 180 - jr nc, .asm_3888b - - dec [hl] - dec [hl] - jr .asm_3888b - -.asm_388a2 - pop hl - jp AIDiscourageMove -; 388a6 - - -AI_Smart_Selfdestruct: ; 388a6 -; Selfdestruct, Explosion - -; Unless this is the enemy's last Pokemon... - push hl - farcall FindAliveEnemyMons - pop hl - jr nc, .asm_388b7 - -; ...greatly discourage this move unless this is the player's last Pokemon too. - push hl - call AICheckLastPlayerMon - pop hl - jr nz, .asm_388c6 - -.asm_388b7 -; Greatly discourage this move if enemy's HP is above 50%. - call AICheckEnemyHalfHP - jr c, .asm_388c6 - -; Do nothing if enemy's HP is below 25%. - call AICheckEnemyQuarterHP - ret nc - -; If enemy's HP is between 25% and 50%, -; over 90% chance to greatly discourage this move. - call Random - cp 9 percent - 2 - ret c - -.asm_388c6 - inc [hl] - inc [hl] - inc [hl] - ret -; 388ca - - -AI_Smart_DreamEater: ; 388ca -; 90% chance to greatly encourage this move. -; The AI_Basic layer will make sure that -; Dream Eater is only used against sleeping targets. - call Random - cp 10 percent - ret c - dec [hl] - dec [hl] - dec [hl] - ret -; 388d4 - - -AI_Smart_EvasionUp: ; 388d4 - -; Dismiss this move if enemy's evasion can't raise anymore. - ld a, [EnemyEvaLevel] - cp $d - jp nc, AIDiscourageMove - -; If enemy's HP is full... - call AICheckEnemyMaxHP - jr nc, .asm_388f2 - -; ...greatly encourage this move if player is badly poisoned. - ld a, [PlayerSubStatus5] - bit SUBSTATUS_TOXIC, a - jr nz, .asm_388ef - -; ...70% chance to greatly encourage this move if player is not badly poisoned. - call Random - cp 70 percent - jr nc, .asm_38911 - -.asm_388ef - dec [hl] - dec [hl] - ret - -.asm_388f2 - -; Greatly discourage this move if enemy's HP is below 25%. - call AICheckEnemyQuarterHP - jr nc, .asm_3890f - -; If enemy's HP is above 25% but not full, 4% chance to greatly encourage this move. - call Random - cp 4 percent - jr c, .asm_388ef - -; If enemy's HP is between 25% and 50%,... - call AICheckEnemyHalfHP - jr nc, .asm_3890a - -; If enemy's HP is above 50% but not full, 20% chance to greatly encourage this move. - call AI_80_20 - jr c, .asm_388ef - jr .asm_38911 - -.asm_3890a -; ...50% chance to greatly discourage this move. - call AI_50_50 - jr c, .asm_38911 - -.asm_3890f - inc [hl] - inc [hl] - -; 30% chance to end up here if enemy's HP is full and player is not badly poisoned. -; 77% chance to end up here if enemy's HP is above 50% but not full. -; 96% chance to end up here if enemy's HP is between 25% and 50%. -; 100% chance to end up here if enemy's HP is below 25%. -; In other words, we only end up here if the move has not been encouraged or dismissed. -.asm_38911 - ld a, [PlayerSubStatus5] - bit SUBSTATUS_TOXIC, a - jr nz, .asm_38938 - - ld a, [PlayerSubStatus4] - bit SUBSTATUS_LEECH_SEED, a - jr nz, .asm_38941 - -; Discourage this move if enemy's evasion level is higher than player's accuracy level. - ld a, [EnemyEvaLevel] - ld b, a - ld a, [PlayerAccLevel] - cp b - jr c, .asm_38936 - -; Greatly encourage this move if the player is in the middle of Fury Cutter or Rollout. - ld a, [PlayerFuryCutterCount] - and a - jr nz, .asm_388ef - - ld a, [PlayerSubStatus1] - bit SUBSTATUS_ROLLOUT, a - jr nz, .asm_388ef - - -.asm_38936 - inc [hl] - ret - -; Player is badly poisoned. -; 70% chance to greatly encourage this move. -; This would counter any previous discouragement. -.asm_38938 - call Random - cp 31 percent + 1 - ret c - dec [hl] - dec [hl] - ret - -; Player is seeded. -; 50% chance to encourage this move. -; This would partly counter any previous discouragement. -.asm_38941 - call AI_50_50 - ret c - - dec [hl] - ret -; 38947 - - -AI_Smart_AlwaysHit: ; 38947 -; 80% chance to greatly encourage this move if either... - -; ...enemy's accuracy level has been lowered three or more stages - ld a, [EnemyAccLevel] - cp $5 - jr c, .asm_38954 - -; ...or player's evasion level has been raised three or more stages. - ld a, [PlayerEvaLevel] - cp $a - ret c - -.asm_38954 - call AI_80_20 - ret c - - dec [hl] - dec [hl] - ret -; 3895b - - -AI_Smart_MirrorMove: ; 3895b - -; If the player did not use any move last turn... - ld a, [LastPlayerCounterMove] - and a - jr nz, .asm_38968 - -; ...do nothing if enemy is slower than player - call AICompareSpeed - ret nc - -; ...or dismiss this move if enemy is faster than player. - jp AIDiscourageMove - -; If the player did use a move last turn... -.asm_38968 - push hl - ld hl, UsefulMoves - ld de, 1 - call IsInArray - pop hl - -; ...do nothing if he didn't use a useful move. - ret nc - -; If he did, 50% chance to encourage this move... - call AI_50_50 - ret c - - dec [hl] - -; ...and 90% chance to encourage this move again if the enemy is faster. - call AICompareSpeed - ret nc - - call Random - cp 10 percent - ret c - - dec [hl] - ret -; 38985 - - -AI_Smart_AccuracyDown: ; 38985 - -; If player's HP is full... - call AICheckPlayerMaxHP - jr nc, .asm_389a0 - -; ...and enemy's HP is above 50%... - call AICheckEnemyHalfHP - jr nc, .asm_389a0 - -; ...greatly encourage this move if player is badly poisoned. - ld a, [PlayerSubStatus5] - bit SUBSTATUS_TOXIC, a - jr nz, .asm_3899d - -; ...70% chance to greatly encourage this move if player is not badly poisoned. - call Random - cp 70 percent - jr nc, .asm_389bf - -.asm_3899d - dec [hl] - dec [hl] - ret - -.asm_389a0 - -; Greatly discourage this move if player's HP is below 25%. - call AICheckPlayerQuarterHP - jr nc, .asm_389bd - -; If player's HP is above 25% but not full, 4% chance to greatly encourage this move. - call Random - cp 4 percent - jr c, .asm_3899d - -; If player's HP is between 25% and 50%,... - call AICheckPlayerHalfHP - jr nc, .asm_389b8 - -; If player's HP is above 50% but not full, 20% chance to greatly encourage this move. - call AI_80_20 - jr c, .asm_3899d - jr .asm_389bf - -; ...50% chance to greatly discourage this move. -.asm_389b8 - call AI_50_50 - jr c, .asm_389bf - -.asm_389bd - inc [hl] - inc [hl] - -; We only end up here if the move has not been already encouraged. -.asm_389bf - ld a, [PlayerSubStatus5] - bit SUBSTATUS_TOXIC, a - jr nz, .asm_389e6 - - ld a, [PlayerSubStatus4] - bit SUBSTATUS_LEECH_SEED, a - jr nz, .asm_389ef - -; Discourage this move if enemy's evasion level is higher than player's accuracy level. - ld a, [EnemyEvaLevel] - ld b, a - ld a, [PlayerAccLevel] - cp b - jr c, .asm_389e4 - -; Greatly encourage this move if the player is in the middle of Fury Cutter or Rollout. - ld a, [PlayerFuryCutterCount] - and a - jr nz, .asm_3899d - - ld a, [PlayerSubStatus1] - bit SUBSTATUS_ROLLOUT, a - jr nz, .asm_3899d - -.asm_389e4 - inc [hl] - ret - -; Player is badly poisoned. -; 70% chance to greatly encourage this move. -; This would counter any previous discouragement. -.asm_389e6 - call Random - cp 31 percent + 1 - ret c - dec [hl] - dec [hl] - ret - -; Player is seeded. -; 50% chance to encourage this move. -; This would partly counter any previous discouragement. -.asm_389ef - call AI_50_50 - ret c - - dec [hl] - ret -; 389f5 - - -AI_Smart_ResetStats: ; 389f5 - -; 85% chance to encourage this move if any of enemy's stat levels is lower than -2. - push hl - ld hl, EnemyAtkLevel - ld c, $8 -.asm_389fb - dec c - jr z, .asm_38a05 - ld a, [hli] - cp $5 - jr c, .asm_38a12 - jr .asm_389fb - -; 85% chance to encourage this move if any of player's stat levels is higher than +2. -.asm_38a05 - ld hl, PlayerAtkLevel - ld c, $8 -.asm_38a0a - dec c - jr z, .asm_38a1b - ld a, [hli] - cp $a - jr c, .asm_38a0a - -.asm_38a12 - pop hl - call Random - cp 16 percent - ret c - dec [hl] - ret - -; Discourage this move if neither: -; Any of enemy's stat levels is lower than -2. -; Any of player's stat levels is higher than +2. -.asm_38a1b - pop hl - inc [hl] - ret -; 38a1e - - -AI_Smart_Bide: ; 38a1e -; 90% chance to discourage this move unless enemy's HP is full. - - call AICheckEnemyMaxHP - ret c - call Random - cp 10 percent - ret c - inc [hl] - ret -; 38a2a - - -AI_Smart_ForceSwitch: ; 38a2a -; Whirlwind, Roar. - -; Discourage this move if the player has not shown -; a super-effective move against the enemy. -; Consider player's type(s) if its moves are unknown. - - push hl - callfar CheckPlayerMoveTypeMatchups - ld a, [wEnemyAISwitchScore] - cp 10 ; neutral - pop hl - ret c - inc [hl] - ret -; 38a3a - - -AI_Smart_Heal: -AI_Smart_MorningSun: -AI_Smart_Synthesis: -AI_Smart_Moonlight: ; 38a3a -; 90% chance to greatly encourage this move if enemy's HP is below 25%. -; Discourage this move if enemy's HP is higher than 50%. -; Do nothing otherwise. - - call AICheckEnemyQuarterHP - jr nc, .asm_38a45 - call AICheckEnemyHalfHP - ret nc - inc [hl] - ret - -.asm_38a45 - call Random - cp 10 percent - ret c - dec [hl] - dec [hl] - ret -; 38a4e - - -AI_Smart_Toxic: -AI_Smart_LeechSeed: ; 38a4e -; Discourage this move if player's HP is below 50%. - - call AICheckPlayerHalfHP - ret c - inc [hl] - ret -; 38a54 - - -AI_Smart_LightScreen: -AI_Smart_Reflect: ; 38a54 -; Over 90% chance to discourage this move unless enemy's HP is full. - - call AICheckEnemyMaxHP - ret c - call Random - cp 8 percent - ret c - inc [hl] - ret -; 38a60 - - -AI_Smart_Ohko: ; 38a60 -; Dismiss this move if player's level is higher than enemy's level. -; Else, discourage this move is player's HP is below 50%. - - ld a, [BattleMonLevel] - ld b, a - ld a, [EnemyMonLevel] - cp b - jp c, AIDiscourageMove - call AICheckPlayerHalfHP - ret c - inc [hl] - ret -; 38a71 - - -AI_Smart_TrapTarget: ; 38a71 -; Bind, Wrap, Fire Spin, Clamp - -; 50% chance to discourage this move if the player is already trapped. - ld a, [wPlayerWrapCount] - and a - jr nz, .asm_38a8b - -; 50% chance to greatly encourage this move if player is either -; badly poisoned, in love, identified, stuck in Rollout, or has a Nightmare. - ld a, [PlayerSubStatus5] - bit SUBSTATUS_TOXIC, a - jr nz, .asm_38a91 - - ld a, [PlayerSubStatus1] - and 1< player's current HP]. - - push hl - ld hl, EnemyMonHP - ld b, [hl] - inc hl - ld c, [hl] - sla c - rl b - ld hl, BattleMonHP + 1 - ld a, [hld] - cp c - ld a, [hl] - sbc b - pop hl - ret nc - inc [hl] - ret -; 38cba - - -AI_Smart_Snore: -AI_Smart_SleepTalk: ; 38cba -; Greatly encourage this move if enemy is fast asleep. -; Greatly discourage this move otherwise. - - ld a, [EnemyMonStatus] - and $7 - cp $1 - jr z, .asm_38cc7 - - dec [hl] - dec [hl] - dec [hl] - ret - -.asm_38cc7 - inc [hl] - inc [hl] - inc [hl] - ret -; 38ccb - - -AI_Smart_DefrostOpponent: ; 38ccb -; Greatly encourage this move if enemy is frozen. -; No move has EFFECT_DEFROST_OPPONENT, so this layer is unused. - - ld a, [EnemyMonStatus] - and $20 - ret z - dec [hl] - dec [hl] - dec [hl] - ret -; 38cd5 - - -AI_Smart_Spite: ; 38cd5 - ld a, [LastPlayerCounterMove] - and a - jr nz, .asm_38ce7 - - call AICompareSpeed - jp c, AIDiscourageMove - - call AI_50_50 - ret c - inc [hl] - ret - -.asm_38ce7 - push hl - ld b, a - ld c, 4 - ld hl, BattleMonMoves - ld de, BattleMonPP - -.asm_38cf1 - ld a, [hli] - cp b - jr z, .asm_38cfb - - inc de - dec c - jr nz, .asm_38cf1 - - pop hl - ret - -.asm_38cfb - pop hl - ld a, [de] - cp $6 - jr c, .asm_38d0d - cp $f - jr nc, .asm_38d0b - - call Random - cp 39 percent + 1 - ret nc - -.asm_38d0b - inc [hl] - ret - -.asm_38d0d - call Random - cp 39 percent + 1 - ret c - dec [hl] - dec [hl] - ret -; 38d16 - - -Function_0x38d16; 38d16 - jp AIDiscourageMove -; 38d19 - - -AI_Smart_DestinyBond: -AI_Smart_Reversal: -AI_Smart_SkullBash: ; 38d19 -; Discourage this move if enemy's HP is above 25%. - - call AICheckEnemyQuarterHP - ret nc - inc [hl] - ret -; 38d1f - - -AI_Smart_HealBell: ; 38d1f -; Dismiss this move if none of the opponent's Pokemon is statused. -; Encourage this move if the enemy is statused. -; 50% chance to greatly encourage this move if the enemy is fast asleep or frozen. - - push hl - ld a, [OTPartyCount] - ld b, a - ld c, 0 - ld hl, OTPartyMon1HP - ld de, PARTYMON_STRUCT_LENGTH - -.loop - push hl - ld a, [hli] - or [hl] - jr z, .next - - ; status - dec hl - dec hl - dec hl - ld a, [hl] - or c - ld c, a - -.next - pop hl - add hl, de - dec b - jr nz, .loop - - pop hl - ld a, c - and a - jr z, .no_status - - ld a, [EnemyMonStatus] - and a - jr z, .ok - dec [hl] -.ok - and 1 << FRZ | SLP - ret z - call AI_50_50 - ret c - dec [hl] - dec [hl] - ret - -.no_status - ld a, [EnemyMonStatus] - and a - ret nz - jp AIDiscourageMove - -; 38d5a - - -AI_Smart_PriorityHit: ; 38d5a - call AICompareSpeed - ret c - -; Dismiss this move if the player is flying or underground. - ld a, [PlayerSubStatus3] - and 1 << SUBSTATUS_FLYING | 1 << SUBSTATUS_UNDERGROUND - jp nz, AIDiscourageMove - -; Greatly encourage this move if it will KO the player. - ld a, $1 - ld [hBattleTurn], a - push hl - callfar EnemyAttackDamage - callfar BattleCommand_DamageCalc - callfar BattleCommand_Stab - pop hl - ld a, [CurDamage + 1] - ld c, a - ld a, [CurDamage] - ld b, a - ld a, [BattleMonHP + 1] - cp c - ld a, [BattleMonHP] - sbc b - ret nc - dec [hl] - dec [hl] - dec [hl] - ret -; 38d93 - - -AI_Smart_Thief: ; 38d93 -; Don't use Thief unless it's the only move available. - - ld a, [hl] - add $1e - ld [hl], a - ret -; 38d98 - - -AI_Smart_Conversion2: ; 38d98 - ld a, [LastPlayerMove] - and a - jr nz, .asm_38dc9 - - push hl - dec a - ld hl, Moves + MOVE_TYPE - ld bc, MOVE_LENGTH - call AddNTimes - - ld a, BANK(Moves) - call GetFarByte - ld [wPlayerMoveStruct + MOVE_TYPE], a - - xor a - ld [hBattleTurn], a - - callfar BattleCheckTypeMatchup - - ld a, [wd265] - cp $a - pop hl - jr c, .asm_38dc9 - ret z - - call AI_50_50 - ret c - - dec [hl] - ret - -.asm_38dc9 - call Random - cp 10 percent - ret c - inc [hl] - ret -; 38dd1 - - -AI_Smart_Disable: ; 38dd1 - call AICompareSpeed - jr nc, .asm_38df3 - - push hl - ld a, [LastPlayerCounterMove] - ld hl, UsefulMoves - ld de, 1 - call IsInArray - - pop hl - jr nc, .asm_38dee - - call Random - cp 39 percent + 1 - ret c - dec [hl] - ret - -.asm_38dee - ld a, [wEnemyMoveStruct + MOVE_POWER] - and a - ret nz - -.asm_38df3 - call Random - cp 8 percent - ret c - inc [hl] - ret -; 38dfb - - -AI_Smart_MeanLook: ; 38dfb - call AICheckEnemyHalfHP - jr nc, .asm_38e24 - - push hl - call AICheckLastPlayerMon - pop hl - jp z, AIDiscourageMove - -; 80% chance to greatly encourage this move if the enemy is badly poisoned (buggy). -; Should check PlayerSubStatus5 instead. - ld a, [EnemySubStatus5] - bit SUBSTATUS_TOXIC, a - jr nz, .asm_38e26 - -; 80% chance to greatly encourage this move if the player is either -; in love, identified, stuck in Rollout, or has a Nightmare. - ld a, [PlayerSubStatus1] - and 1<