Upgrade Pokemon sprite quality (#140)

Co-authored-by: tembo[bot] <208362400+tembo[bot]@users.noreply.github.com>
Co-authored-by: Rohith <gillarohith1@gmail.com>
This commit is contained in:
tembo[bot] 2026-04-06 18:56:03 +05:30 committed by GitHub
parent 711631c872
commit 4d2f946534
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 7 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 543 B

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 582 B

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 916 B

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 929 B

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 597 B

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 492 B

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 583 B

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 575 B

After

Width:  |  Height:  |  Size: 112 KiB

View file

@ -149,7 +149,7 @@ export function FunAnalytics() {
<img
src={getPokemonSpriteUrl(activePokemonId)}
alt={pokemon.name}
className="size-10 pixelated"
className="size-10"
draggable={false}
/>
<div className="min-w-0 flex-1">

View file

@ -101,7 +101,7 @@ function PokemonSelector({
<img
src={getPokemonSpriteUrl(pokemon.id)}
alt={pokemon.name}
className="size-10 pixelated"
className="size-10"
draggable={false}
/>
<span className="text-[9px] text-muted-foreground leading-none">{pokemon.name}</span>
@ -276,7 +276,7 @@ export function PokemonBuddy() {
className="fixed bottom-3 right-3 z-50 rounded-full bg-card border border-border/50 p-1.5 shadow-md hover:bg-accent transition-colors"
title="Show Pokemon Buddy"
>
<img src={fallbackUrl} alt={pokemon.name} className="size-6 pixelated" draggable={false} />
<img src={fallbackUrl} alt={pokemon.name} className="size-6" draggable={false} />
</button>
)
}
@ -410,7 +410,10 @@ export function PokemonBuddy() {
<img
src={currentSprite}
alt={pokemon.name}
className="size-16 pixelated drop-shadow-lg select-none"
className={cn(
'size-16 drop-shadow-lg select-none',
!spriteError && 'pixelated'
)}
draggable={false}
onError={handleSpriteError}
/>