From c89df9d9d1e66e7ef280a3a8219305217b404426 Mon Sep 17 00:00:00 2001 From: TheXaman Date: Fri, 12 Feb 2021 11:16:23 +0100 Subject: [PATCH] Changed graphics file structure, added DECAPPED version by NobodySociety, added constant to make custom dark palette switch easy --- ...ect_bar_submenu.bin => HGSS_SelectBar.bin} | Bin ...enu_clear.bin => HGSS_SelectBar_clear.bin} | Bin graphics/pokedex/HGSS_palette_default.pal | 51 ++++++ .../pokedex/HGSS_palette_default_dark.pal | 51 ++++++ graphics/pokedex/HGSS_palette_national.pal | 51 ++++++ .../pokedex/HGSS_palette_national_dark.pal | 51 ++++++ ..._menu.pal => HGSS_palette_search_menu.pal} | 0 .../pokedex/HGSS_palette_search_menu_dark.pal | 67 +++++++ ...et.pal => HGSS_palette_search_results.pal} | 0 .../HGSS_palette_search_results_dark.pal | 19 ++ ...screen.bin => HGSS_tilemap_cry_screen.bin} | Bin ...ilemap.bin => HGSS_tilemap_evo_screen.bin} | Bin ...map.bin => HGSS_tilemap_evo_screen_PE.bin} | Bin ...emap.bin => HGSS_tilemap_forms_screen.bin} | Bin ...creen.bin => HGSS_tilemap_info_screen.bin} | Bin ...{list.bin => HGSS_tilemap_list_screen.bin} | Bin ... => HGSS_tilemap_list_screen_underlay.bin} | Bin ...n => HGSS_tilemap_search_screen_hoenn.bin} | Bin ...> HGSS_tilemap_search_screen_national.bin} | Bin ...creen.bin => HGSS_tilemap_size_screen.bin} | Bin ...u_main.bin => HGSS_tilemap_start_menu.bin} | Bin ...GSS_tilemap_start_menu_search_results.bin} | Bin ...reen.bin => HGSS_tilemap_stats_screen.bin} | Bin ...terface.png => HGSS_tileset_interface.png} | Bin .../pokedex/HGSS_tileset_interface_DECA.png | Bin 0 -> 1097 bytes .../{menu.png => HGSS_tileset_menu1.png} | Bin ...evo_tileset.png => HGSS_tileset_menu2.png} | Bin .../{menu_rest.png => HGSS_tileset_menu3.png} | Bin ...nu_list.png => HGSS_tileset_menu_list.png} | Bin .../pokedex/HGSS_tileset_menu_list_DECA.png | Bin 0 -> 1542 bytes ..._menu.png => HGSS_tileset_menu_search.png} | Bin .../pokedex/HGSS_tileset_menu_search_DECA.png | Bin 0 -> 1742 bytes graphics/pokedex/RES_HGSS_palette.pal | 19 ++ graphics/pokedex/bg_national.pal | 99 ---------- graphics/pokedex/menuOLD.png | Bin 2045 -> 0 bytes graphics/pokedex/screen_select_bar_main.bin | Bin 192 -> 0 bytes graphics/pokedex/search_results_bg.pal | 99 ---------- include/graphics.h | 61 ++++--- src/graphics.c | 68 +++---- src/pokedex.c | 172 +++++++++++++----- 40 files changed, 510 insertions(+), 298 deletions(-) rename graphics/pokedex/{screen_select_bar_submenu.bin => HGSS_SelectBar.bin} (100%) rename graphics/pokedex/{screen_select_bar_submenu_clear.bin => HGSS_SelectBar_clear.bin} (100%) create mode 100644 graphics/pokedex/HGSS_palette_default.pal create mode 100644 graphics/pokedex/HGSS_palette_default_dark.pal create mode 100644 graphics/pokedex/HGSS_palette_national.pal create mode 100644 graphics/pokedex/HGSS_palette_national_dark.pal rename graphics/pokedex/{search_menu.pal => HGSS_palette_search_menu.pal} (100%) create mode 100644 graphics/pokedex/HGSS_palette_search_menu_dark.pal rename graphics/pokedex/{hgss_pokedex_tileset.pal => HGSS_palette_search_results.pal} (100%) create mode 100644 graphics/pokedex/HGSS_palette_search_results_dark.pal rename graphics/pokedex/{cry_screen.bin => HGSS_tilemap_cry_screen.bin} (100%) rename graphics/pokedex/{evo_tilemap.bin => HGSS_tilemap_evo_screen.bin} (100%) rename graphics/pokedex/{evoPE_tilemap.bin => HGSS_tilemap_evo_screen_PE.bin} (100%) rename graphics/pokedex/{forms_tilemap.bin => HGSS_tilemap_forms_screen.bin} (100%) rename graphics/pokedex/{info_screen.bin => HGSS_tilemap_info_screen.bin} (100%) rename graphics/pokedex/{list.bin => HGSS_tilemap_list_screen.bin} (100%) rename graphics/pokedex/{list_underlay.bin => HGSS_tilemap_list_screen_underlay.bin} (100%) rename graphics/pokedex/{search_menu_hoenn.bin => HGSS_tilemap_search_screen_hoenn.bin} (100%) rename graphics/pokedex/{search_menu_national.bin => HGSS_tilemap_search_screen_national.bin} (100%) rename graphics/pokedex/{size_screen.bin => HGSS_tilemap_size_screen.bin} (100%) rename graphics/pokedex/{start_menu_main.bin => HGSS_tilemap_start_menu.bin} (100%) rename graphics/pokedex/{start_menu_search_results.bin => HGSS_tilemap_start_menu_search_results.bin} (100%) rename graphics/pokedex/{stats_screen.bin => HGSS_tilemap_stats_screen.bin} (100%) rename graphics/pokedex/{interface.png => HGSS_tileset_interface.png} (100%) create mode 100644 graphics/pokedex/HGSS_tileset_interface_DECA.png rename graphics/pokedex/{menu.png => HGSS_tileset_menu1.png} (100%) rename graphics/pokedex/{evo_tileset.png => HGSS_tileset_menu2.png} (100%) rename graphics/pokedex/{menu_rest.png => HGSS_tileset_menu3.png} (100%) rename graphics/pokedex/{menu_list.png => HGSS_tileset_menu_list.png} (100%) create mode 100644 graphics/pokedex/HGSS_tileset_menu_list_DECA.png rename graphics/pokedex/{search_menu.png => HGSS_tileset_menu_search.png} (100%) create mode 100644 graphics/pokedex/HGSS_tileset_menu_search_DECA.png create mode 100644 graphics/pokedex/RES_HGSS_palette.pal delete mode 100644 graphics/pokedex/bg_national.pal delete mode 100644 graphics/pokedex/menuOLD.png delete mode 100644 graphics/pokedex/screen_select_bar_main.bin delete mode 100644 graphics/pokedex/search_results_bg.pal diff --git a/graphics/pokedex/screen_select_bar_submenu.bin b/graphics/pokedex/HGSS_SelectBar.bin similarity index 100% rename from graphics/pokedex/screen_select_bar_submenu.bin rename to graphics/pokedex/HGSS_SelectBar.bin diff --git a/graphics/pokedex/screen_select_bar_submenu_clear.bin b/graphics/pokedex/HGSS_SelectBar_clear.bin similarity index 100% rename from graphics/pokedex/screen_select_bar_submenu_clear.bin rename to graphics/pokedex/HGSS_SelectBar_clear.bin diff --git a/graphics/pokedex/HGSS_palette_default.pal b/graphics/pokedex/HGSS_palette_default.pal new file mode 100644 index 0000000000..5889ede7ac --- /dev/null +++ b/graphics/pokedex/HGSS_palette_default.pal @@ -0,0 +1,51 @@ +JASC-PAL +0100 +48 +193 33 177 +249 249 249 +225 225 225 +201 201 201 +169 169 169 +129 129 129 +249 153 161 +233 49 49 +193 33 41 +145 17 33 +249 153 161 +193 33 41 +141 251 184 +52 66 162 +194 181 66 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +49 213 74 +24 131 32 +189 156 90 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +180 205 246 +49 139 255 +189 156 90 +0 0 0 diff --git a/graphics/pokedex/HGSS_palette_default_dark.pal b/graphics/pokedex/HGSS_palette_default_dark.pal new file mode 100644 index 0000000000..5889ede7ac --- /dev/null +++ b/graphics/pokedex/HGSS_palette_default_dark.pal @@ -0,0 +1,51 @@ +JASC-PAL +0100 +48 +193 33 177 +249 249 249 +225 225 225 +201 201 201 +169 169 169 +129 129 129 +249 153 161 +233 49 49 +193 33 41 +145 17 33 +249 153 161 +193 33 41 +141 251 184 +52 66 162 +194 181 66 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +49 213 74 +24 131 32 +189 156 90 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +180 205 246 +49 139 255 +189 156 90 +0 0 0 diff --git a/graphics/pokedex/HGSS_palette_national.pal b/graphics/pokedex/HGSS_palette_national.pal new file mode 100644 index 0000000000..5889ede7ac --- /dev/null +++ b/graphics/pokedex/HGSS_palette_national.pal @@ -0,0 +1,51 @@ +JASC-PAL +0100 +48 +193 33 177 +249 249 249 +225 225 225 +201 201 201 +169 169 169 +129 129 129 +249 153 161 +233 49 49 +193 33 41 +145 17 33 +249 153 161 +193 33 41 +141 251 184 +52 66 162 +194 181 66 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +49 213 74 +24 131 32 +189 156 90 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +180 205 246 +49 139 255 +189 156 90 +0 0 0 diff --git a/graphics/pokedex/HGSS_palette_national_dark.pal b/graphics/pokedex/HGSS_palette_national_dark.pal new file mode 100644 index 0000000000..5889ede7ac --- /dev/null +++ b/graphics/pokedex/HGSS_palette_national_dark.pal @@ -0,0 +1,51 @@ +JASC-PAL +0100 +48 +193 33 177 +249 249 249 +225 225 225 +201 201 201 +169 169 169 +129 129 129 +249 153 161 +233 49 49 +193 33 41 +145 17 33 +249 153 161 +193 33 41 +141 251 184 +52 66 162 +194 181 66 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +49 213 74 +24 131 32 +189 156 90 +0 0 0 +123 131 0 +255 255 255 +197 32 32 +189 189 189 +164 164 164 +98 98 115 +41 57 65 +41 57 106 +0 0 41 +255 255 255 +238 246 57 +255 0 189 +180 205 246 +49 139 255 +189 156 90 +0 0 0 diff --git a/graphics/pokedex/search_menu.pal b/graphics/pokedex/HGSS_palette_search_menu.pal similarity index 100% rename from graphics/pokedex/search_menu.pal rename to graphics/pokedex/HGSS_palette_search_menu.pal diff --git a/graphics/pokedex/HGSS_palette_search_menu_dark.pal b/graphics/pokedex/HGSS_palette_search_menu_dark.pal new file mode 100644 index 0000000000..b6142eb3f7 --- /dev/null +++ b/graphics/pokedex/HGSS_palette_search_menu_dark.pal @@ -0,0 +1,67 @@ +JASC-PAL +0100 +64 +123 131 0 +0 0 0 +172 172 172 +255 255 255 +255 255 255 +98 98 115 +57 57 57 +123 115 74 +156 230 0 +57 115 0 +255 172 0 +131 32 32 +82 189 90 +24 131 32 +255 32 32 +0 0 0 +123 131 0 +0 0 0 +172 172 172 +255 255 255 +255 255 255 +98 98 115 +57 57 57 +123 115 74 +41 115 0 +32 49 32 +180 106 0 +16 0 0 +82 189 90 +24 131 32 +0 0 0 +0 0 0 +123 131 0 +0 0 0 +172 172 172 +172 172 172 +172 172 172 +98 98 115 +57 57 57 +123 115 74 +32 49 32 +32 32 32 +74 32 32 +32 32 32 +82 189 90 +24 131 32 +255 32 32 +0 0 0 +123 131 0 +0 0 0 +172 172 172 +172 172 172 +172 172 172 +98 98 115 +57 57 57 +123 115 74 +32 49 32 +32 32 32 +74 32 32 +32 32 32 +82 189 90 +24 131 32 +0 0 0 +0 0 0 diff --git a/graphics/pokedex/hgss_pokedex_tileset.pal b/graphics/pokedex/HGSS_palette_search_results.pal similarity index 100% rename from graphics/pokedex/hgss_pokedex_tileset.pal rename to graphics/pokedex/HGSS_palette_search_results.pal diff --git a/graphics/pokedex/HGSS_palette_search_results_dark.pal b/graphics/pokedex/HGSS_palette_search_results_dark.pal new file mode 100644 index 0000000000..892bb6c104 --- /dev/null +++ b/graphics/pokedex/HGSS_palette_search_results_dark.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +193 33 177 +249 249 249 +225 225 225 +201 201 201 +169 169 169 +129 129 129 +249 153 161 +233 49 49 +193 33 41 +145 17 33 +156 226 199 +141 251 184 +52 66 162 +194 181 66 +159 216 234 +0 0 0 diff --git a/graphics/pokedex/cry_screen.bin b/graphics/pokedex/HGSS_tilemap_cry_screen.bin similarity index 100% rename from graphics/pokedex/cry_screen.bin rename to graphics/pokedex/HGSS_tilemap_cry_screen.bin diff --git a/graphics/pokedex/evo_tilemap.bin b/graphics/pokedex/HGSS_tilemap_evo_screen.bin similarity index 100% rename from graphics/pokedex/evo_tilemap.bin rename to graphics/pokedex/HGSS_tilemap_evo_screen.bin diff --git a/graphics/pokedex/evoPE_tilemap.bin b/graphics/pokedex/HGSS_tilemap_evo_screen_PE.bin similarity index 100% rename from graphics/pokedex/evoPE_tilemap.bin rename to graphics/pokedex/HGSS_tilemap_evo_screen_PE.bin diff --git a/graphics/pokedex/forms_tilemap.bin b/graphics/pokedex/HGSS_tilemap_forms_screen.bin similarity index 100% rename from graphics/pokedex/forms_tilemap.bin rename to graphics/pokedex/HGSS_tilemap_forms_screen.bin diff --git a/graphics/pokedex/info_screen.bin b/graphics/pokedex/HGSS_tilemap_info_screen.bin similarity index 100% rename from graphics/pokedex/info_screen.bin rename to graphics/pokedex/HGSS_tilemap_info_screen.bin diff --git a/graphics/pokedex/list.bin b/graphics/pokedex/HGSS_tilemap_list_screen.bin similarity index 100% rename from graphics/pokedex/list.bin rename to graphics/pokedex/HGSS_tilemap_list_screen.bin diff --git a/graphics/pokedex/list_underlay.bin b/graphics/pokedex/HGSS_tilemap_list_screen_underlay.bin similarity index 100% rename from graphics/pokedex/list_underlay.bin rename to graphics/pokedex/HGSS_tilemap_list_screen_underlay.bin diff --git a/graphics/pokedex/search_menu_hoenn.bin b/graphics/pokedex/HGSS_tilemap_search_screen_hoenn.bin similarity index 100% rename from graphics/pokedex/search_menu_hoenn.bin rename to graphics/pokedex/HGSS_tilemap_search_screen_hoenn.bin diff --git a/graphics/pokedex/search_menu_national.bin b/graphics/pokedex/HGSS_tilemap_search_screen_national.bin similarity index 100% rename from graphics/pokedex/search_menu_national.bin rename to graphics/pokedex/HGSS_tilemap_search_screen_national.bin diff --git a/graphics/pokedex/size_screen.bin b/graphics/pokedex/HGSS_tilemap_size_screen.bin similarity index 100% rename from graphics/pokedex/size_screen.bin rename to graphics/pokedex/HGSS_tilemap_size_screen.bin diff --git a/graphics/pokedex/start_menu_main.bin b/graphics/pokedex/HGSS_tilemap_start_menu.bin similarity index 100% rename from graphics/pokedex/start_menu_main.bin rename to graphics/pokedex/HGSS_tilemap_start_menu.bin diff --git a/graphics/pokedex/start_menu_search_results.bin b/graphics/pokedex/HGSS_tilemap_start_menu_search_results.bin similarity index 100% rename from graphics/pokedex/start_menu_search_results.bin rename to graphics/pokedex/HGSS_tilemap_start_menu_search_results.bin diff --git a/graphics/pokedex/stats_screen.bin b/graphics/pokedex/HGSS_tilemap_stats_screen.bin similarity index 100% rename from graphics/pokedex/stats_screen.bin rename to graphics/pokedex/HGSS_tilemap_stats_screen.bin diff --git a/graphics/pokedex/interface.png b/graphics/pokedex/HGSS_tileset_interface.png similarity index 100% rename from graphics/pokedex/interface.png rename to graphics/pokedex/HGSS_tileset_interface.png diff --git a/graphics/pokedex/HGSS_tileset_interface_DECA.png b/graphics/pokedex/HGSS_tileset_interface_DECA.png new file mode 100644 index 0000000000000000000000000000000000000000..2332c79fa0eac417e94a0b7e03396d78ddd967f4 GIT binary patch literal 1097 zcmV-P1h)H$P)QRr&CAI z2qG%lQf43y$qHBAv+!{PZTX#rYXVXpt_W1F3`dZ1VOT;hXND(?@Xf?gd;~m{H$qr0 za&Yy&6a;oZRQ-~2hdL681%4Wmkc1>8;d8(xr2Me}uc-Lo>mdmWM6gEz<{~OFRs_~T z38RRJ@W4Y2o-pa4t&odIJ*GO@;cUtO0@sE2m+mcvoY$^9jdj8BMRS& z{`_5ky^T-J5A)Z}4>T;Xk5W577=oW4_^p-)lsDMHLXbcbi+=yHrms0@};%9*O|ELkV?w8PJB}rY6#O z!@yR!AwW40&NXne*IFhLiA3TxWc=_U&80_HH zAz0}qTbtVrHTOSqbGv_Zg4#v3IhN0ZC=<%u|Ldq0Q;tEX5cV^F9vp4jtjBFa$JZV+_8T)waHPGgkcG;X7#r7PegZ7XBa?&2uKwIQ~(hhyw+?Cvc zUt8m8i+?w^-A!HF;|m||DS`hn;TTH(fswvr2M}M74@`uXq;N$~P~@U#Pe98lfP)~d zg#DqPo5+(CeU(4x3U9KWC-5IoYeMl#KidW$2Dy-Kj%F<1X}><7bggi464*$j7}1k- zXBXFd&v&K^>RgaF+rildjJ7~iS|ACmy}X5&`v-kvtQx(4%ntC9Q=`+x`o|nk+Nv>V z%_^>T{XY|m@kTdc*>+n&PPrGXu(yM4w{J{jxu@*l{DD}*3&r?@vBP3q6q6C?5@`4K zxQLWn?#_16%8?Mvla}%8$$jO;T{-Ijj!^d6ClZN7B9TZW5{X12@p=3MqV#DpTGNVh P00000NkvXXu0mjfZxsY} literal 0 HcmV?d00001 diff --git a/graphics/pokedex/menu.png b/graphics/pokedex/HGSS_tileset_menu1.png similarity index 100% rename from graphics/pokedex/menu.png rename to graphics/pokedex/HGSS_tileset_menu1.png diff --git a/graphics/pokedex/evo_tileset.png b/graphics/pokedex/HGSS_tileset_menu2.png similarity index 100% rename from graphics/pokedex/evo_tileset.png rename to graphics/pokedex/HGSS_tileset_menu2.png diff --git a/graphics/pokedex/menu_rest.png b/graphics/pokedex/HGSS_tileset_menu3.png similarity index 100% rename from graphics/pokedex/menu_rest.png rename to graphics/pokedex/HGSS_tileset_menu3.png diff --git a/graphics/pokedex/menu_list.png b/graphics/pokedex/HGSS_tileset_menu_list.png similarity index 100% rename from graphics/pokedex/menu_list.png rename to graphics/pokedex/HGSS_tileset_menu_list.png diff --git a/graphics/pokedex/HGSS_tileset_menu_list_DECA.png b/graphics/pokedex/HGSS_tileset_menu_list_DECA.png new file mode 100644 index 0000000000000000000000000000000000000000..dc84b9ea38c68347040e85a4002a4856cf0cbcf8 GIT binary patch literal 1542 zcmV+h2Ko7kP)$2P+2!J)3ZvXlIZ(9XXz-zKe&vd4oJxRPQ ze4?NmW3pH&-u7j?-tS2Ge9T(_i*_vk0{~~ZCFfHBXY6rDT7sJZSMA5IWP%3)Sfwc8 z^QYXHc>?H8;CTn&L-$UBR~63Sz`p4S5>$YN0V`_CJvg@&=sp=z9H9fCy~=1>-)8{s zsaAMB0G#IxfUlySiy2y;C}_#oDvoPzY-l4%)0y$fTV zDh4pk)#nJnRX_#MiNB91D1el!e+`@vEuS+0WFG=Z4`>1cNSTTO#P!t}qI3i_0X1P7 z!G_foH5;t z+aL8n$ubWBqyRn75|vo?)bTvE0&HI;poEe7p8?A;_cr=-B3hER011Ddf}=*MhmDul zL%(|f9=<)19f0!-4|qE#uu4xCApC|y>1}|X)Lm|&Cj;330PjRW51?+#65xI!a->Kd zIJDFgP+D|0fAB8?%!6qm3}7q^fWg>`415iJ^7h*Q30CZ%9KbdJ?Oyv^{IpHf<32T^ zOs9%@K#PGxkN9r@pdN7Xf%OS=dMXZ6la$K{&;v~#5H9I>z<$Js_bC8&2cQ?Wj{(>j zK+X@rpoCCeIYn(xD3!6VYDCr;sEiI zuFBaS3NU=UVE>eV$1bPOEqv@5<2q1UJZh&^E)o;gy;#TGW`pT`RN}BrukfuOe$Y0X{f!?W% z0g{Woug`K328b<82FMyN0;HF5-oqPu{wx+D*5d_xLD8G?;(l_@hu;VBcdry` z9MyN;7=p-DY0y)v9~y87dI&()n(XuCj{2Gha6t@zXq3(6F93822w-ApRIgR_r_@L)Jy53n)r5I+vE9O};l^koH* z+N6e347`nRM)y6y&-nxpdrE>(6^5$)ktqnF#y|yNCMAG)-0(m@p5=(^q$>b)He4AJ z+_32x53oh2)&NXI$X8olF}pHHqazvf7W4yss1X!aSC)a*(K$ZQg=_$%|1t(kuA2cw z0$%eB0Kb;yJpiBx*aVpS3w$5-!3{6c$5?4gctbN*xe$i4!SXC-)r)vRNSkwGb%>^3MoSfD|tEGl@eJYD<8{nGl z4LTN0uv`M$s0u!9tjF*j(PIF(`dJW#vZ!I|UI9Ss<@Df!&MPGs9EYJ}<8apaq6!Dq zIZXiZH>S*vd=s7;+=k##g1aKvrm0b_d1S<7uxteg8 zHl7HAaVjz$oma@v^8mt}VFAl_@2Yzgqu&5jy%E3#7OHix7UyZ#IgC_*i-|%e0%t7k z&!eM1QnaU`yr17m6t?Je?txVNU81-EFxu_EOBDM6O@fdBcN2wiJBi>$F=3Sm-Ugtp saF__*2C%C{@H)UM5xfuZv+^I{5A?RX#aAHMga7~l07*qoM6N<$g7=)rp#T5? literal 0 HcmV?d00001 diff --git a/graphics/pokedex/search_menu.png b/graphics/pokedex/HGSS_tileset_menu_search.png similarity index 100% rename from graphics/pokedex/search_menu.png rename to graphics/pokedex/HGSS_tileset_menu_search.png diff --git a/graphics/pokedex/HGSS_tileset_menu_search_DECA.png b/graphics/pokedex/HGSS_tileset_menu_search_DECA.png new file mode 100644 index 0000000000000000000000000000000000000000..3104d35452eb5c48cc4c5dea060e99f69ce8dc45 GIT binary patch literal 1742 zcmV;<1~K`GP)i?Zt~2td;^?Id-k|NptCK2T6V>`8Yx_a<#b zS>gkCwA)q$I(Zf8pQAjV&o_R4vy{h^--W!7_Idjmz~fASrzj@C$36pi6!{9^`FspA z19)=#wGQ6_JRW_rqYvov1%Ob<2cQ^!Uj^_X$dW1W^B)1|vIwwJG?&}$_I>8+!4BZo zgni4Oq28$ZX`Yse1EjVS0P0=%LLbRym@(lI1%Oq68@JV|33|Z3cmd?9wbHqo1i{5G>){N#W&M{SB#ND@SLXp+ zzvTFV9#jBZKj-*?9tVJs|3{&pTfv_zdCrtNfWEvr00fuH$7!YXBksD^-Ma ztJNg{$!KOJN(G*Kpp^%;)L;RGl%>Cl06B@M##;}Npo$VmjT>+6t4}_W_DWwNP z9|&0a@{g5=D<}&fgrGG6$q<$Lreev|1H1`f^gzT6=?dk_3eL&d9#v8S0`b659tVhU zA+=fh5b9@EFec|5RcX*;<;B}eD6aurH4|PP3mU)`(U1dND5rbCD-7Vww#~8|G6J01 zyQlUG0RynhU5oQ``XEY8~iISft!;5ZZl6(G%< zxo$0V;~IrGLDj*@9cY{{0Q+$yH$d_Qx#$46Bq;GVVBEI=gmnV~d?dO7_+ezO6vJO(iKfo!~lSx5nyML7hh_1^2{(3_ww19G&dabE;@Rp*CS z7(H-6G*>;)zG?tu8GwA#~slK{S$3F$hdABD>^;pMU5 z`e=BiWPrCRN#(@KGug6ztIaY&R-d=+nqCI5?H7V+xwK@j9s=0-bv@t!*i+nK_9;LPvRoekc)?^n zkQW6i}@|On7-LxIP+QDRtxWS2fgR0PwciS$$vuV0Qwnje-?`<^FBk z@BS`8@y74}TMu-98GY_;_uLu3|8G6O0piJw<^gB?UR)1=^?o3p%pgtRi{GyGfb;!8 zJV($^M0eid{Bhm2P7vN3C;&OrN?c!BCy@6BGC;|+64w{k34renL;%dR64%$(3GKas z7z1K6p(hOK@;LN_#7#IMmB#V3*pp(!5RS34NS^tH$N)$G6z;0z0JC!d7J$ctTW5a+n4AMJ09<`&mI&I{qE|5188nuyQUa132~{mH=$~>`X|}pYJ~`0)S^< zaoJps08H%5=Z-L+0U+-WN&tra zR~!HQ+!5vz0j&K&834?4hN5Q-0Mn<@?t7g3&2xqm0DcZ&)~n}a5G9Fx0w&d?|)0}Nzzg+K*R_aW|^weIhSA1M%&{Y3`g@z~a%C-woT`->F7)n~T;Jh3ru zJ^PCcz%y#L;Uuv>Zaw>pcO}36cfp;A@PnqB5!0#u-L7F$L9m-58#N^SsEv{LfSxv9 z13&_~5A*=8UcLl?KN6IFUnqFUH7~3IR9DNtZhP_s*Svt9SOgI5R}YN<`n-UB;T!-i ku6Y5+``-W<^MVHO4{26;xHbRasQ>@~07*qoM6N<$g83C5Gynhq literal 0 HcmV?d00001 diff --git a/graphics/pokedex/RES_HGSS_palette.pal b/graphics/pokedex/RES_HGSS_palette.pal new file mode 100644 index 0000000000..96fe4b782a --- /dev/null +++ b/graphics/pokedex/RES_HGSS_palette.pal @@ -0,0 +1,19 @@ +JASC-PAL +0100 +16 +193 33 177 +249 249 249 +225 225 225 +201 201 201 +169 169 169 +129 129 129 +249 153 161 +233 49 49 +193 33 41 +145 17 33 +249 153 161 +193 33 41 +141 251 184 +52 66 162 +194 181 66 +0 0 0 \ No newline at end of file diff --git a/graphics/pokedex/bg_national.pal b/graphics/pokedex/bg_national.pal deleted file mode 100644 index 10dc02e885..0000000000 --- a/graphics/pokedex/bg_national.pal +++ /dev/null @@ -1,99 +0,0 @@ -JASC-PAL -0100 -96 -193 33 177 -249 249 249 -225 225 225 -201 201 201 -169 169 169 -129 129 129 -249 153 161 -233 49 49 -193 33 41 -145 17 33 -249 153 161 -193 33 41 -141 251 184 -52 66 162 -194 181 66 -0 0 0 -123 131 0 -255 255 255 -197 32 32 -189 189 189 -164 164 164 -98 98 115 -41 57 65 -164 164 164 -41 57 65 -255 255 255 -238 246 57 -255 0 189 -123 164 115 -74 115 65 -189 156 90 -0 0 0 -123 131 0 -255 255 255 -197 32 32 -189 189 189 -164 164 164 -98 98 115 -41 57 65 -164 164 164 -41 57 65 -255 255 255 -238 246 57 -255 0 189 -180 205 246 -49 139 255 -189 156 90 -0 0 0 -123 131 0 -255 255 255 -255 238 0 -255 189 0 -255 115 0 -98 98 115 -41 57 65 -164 164 164 -41 57 65 -255 255 255 -238 246 57 -255 0 189 -123 164 115 -74 115 65 -189 156 90 -0 0 0 -123 131 0 -255 255 255 -197 32 32 -189 189 189 -164 164 164 -98 98 115 -41 57 65 -164 164 164 -41 57 65 -255 255 255 -238 246 57 -189 0 0 -74 148 180 -8 90 131 -189 156 90 -0 0 0 -123 131 0 -255 255 255 -197 32 32 -189 189 189 -164 164 164 -98 98 115 -41 57 65 -164 164 164 -41 57 65 -255 255 255 -238 246 57 -255 0 189 -180 205 246 -49 139 255 -189 156 90 -0 0 0 diff --git a/graphics/pokedex/menuOLD.png b/graphics/pokedex/menuOLD.png deleted file mode 100644 index fea195312c06171e1717ec26aca2933805ea317f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2045 zcmVKgCM<}S^xk5SrGW^000Mw zNkll*O6vwr+b7|O~Y6Q^gAwc^Hf-2dHqQfcBz#)UV*hZ&B$do0627Bbd zv1`W+UNm?sGSDzQ2#5e3^bHC`2%5nV*!O?$?s!L?RMPI!rxSfV@_xGa?!Cu5y4NEq zNfMGjNM4mE)G{n5B)Eol`tujssFZSD+7mkG6HQ_PiKZLA8R`f?Q?q`heSp?cfKr(Q zC=v^xW(J@w0Qf2--=Fld?98chrph5shPWapcP`3aG0QUa44Uz*sw*b_w z3J|DZ?~mJnY}OeNs*rrwMui_qScSV}hg6?;T|Huey%q9V{?IXbg1+3pd4<0s2T;KQ z@I^QJx;wo-(v2=YsfPu>*aE1eVrX?6L!A!ri%}K+q#MGTT2N5YrW>8=~&;bmrE)>V2vAS`fzIqDA!z2sR4@{>Ky_~jT>(5 z&-@#J3f;T*0sOsP!~tZ6O~7JZx0FjV5q<_13jl1E#ab_naU6h7m%0YrX#B!0>7hda zEXY3|7?A)=jH2{}0gE!G!g8@;gWIKE2Y|JF;(!}Wt`E4W2pUWR*+9qrK$jXt<5=IW z_00kw-v$e9#Q+}d%8w4F?lK_3Gw8wjKmflxz`N?})_bGF7C>SF@9wA9+X!!_F=+tq zsp)z=ep|exl8ZB7h3Um`?j7 zSbSIjRA2yXH{ubf007%PXY^3Ou0-$p95dd4?2cR=nT0Qz2kbShXIAc|vvnaV?e zeHu+XVHFer_=W(h1_LOUOx?VGY5=5+HjS9qM#Knogg`dHKoQHc9DrFtvmxP3jUm8$ zrgGo|=%sCm*M@eGH3kD<};NWZ%Q0D^^iuAkU(*`g|1b_|)=aLOYg=Riz z0!AYNfIt95<8uSJ3;`w|%th}_z~IONUWf`NwKekrY~TZw1EdBpz-vifsaQV<@bk@F0iT7xxa)0lGcjpSjnd3^0DsS_SjV zWqFd6=K07g)vf@oPku!m`ackmsQ?h&FBGl?c_QVtaBfxjGYeFR?-y*#+|(shke&VK z;;#JyH}W%9*79@0>c&EwRM^|PUqBXZYxFw0K7Nbd%>QmxnGbLXCX6<5kPdm zKs9OMR{^T_g8(3VrucpVslm3RD83p6baQ1Nu=jri*u}P=Sh@jz`hioLpV~SB-WveV ziUn}EXh{j)5+S7zHV#-TP`w6V=r*hwVEou*1-nEbA0#f<)h58Lk9yx`J!AqC^vXoT z2+w6@>n2Jpz$F7#A>)Uu1!xa|{cj!x(AOC8j;8gd28=lUIe>Z8k6@P61H3l?%qIMz z2FzfC6h<@vHXoM$!3d1{hxB}q|Asn%%?L{I+9WlVrV6HdsI>#+)&?e}uofyey2w&t z2S8r_(NQV@@XBDM&`KrZ2Z0J4@rZk=AS0NS0a{U%TO~vRx`RYj=n61CaCr1kfQf^{ b#HjEOB!6_L#;B%&00000NkvXXu0mjfTJeaY diff --git a/graphics/pokedex/screen_select_bar_main.bin b/graphics/pokedex/screen_select_bar_main.bin deleted file mode 100644 index 16bff536188aa2efc40405909c383d0c8252fcd2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 192 zcmbu$hYi9|6hqN76*ZxgK