feat(*): Add evolution data and notes

This commit is contained in:
Josh Creek
2026-01-25 17:19:51 +00:00
parent 4f2fe5e333
commit 71cfbce7e3
7 changed files with 4247 additions and 14 deletions
@@ -56,6 +56,7 @@
}
updateCatchRecord('toggle');
}
</script>
<div
@@ -88,19 +89,11 @@
</div>
{/if}
<div class="bg-base-100 text-base-content rounded-lg p-4">
{#if pokedexEntry.evolutionInformation}
{#if pokedexEntry.evolutionInformation.trim().length > 0}
<div class="bg-base-100 text-base-content rounded-lg p-4">
<p><strong>How to evolve: </strong>{pokedexEntry.evolutionInformation}</p>
{:else}
<p>
<strong>How to evolve: </strong>Currently missing - can you
<a
href="https://github.com/jcreek/LivingDexTracker"
class="underline text-primary hover:text-secondary">help contribute</a
>?
</p>
{/if}
</div>
</div>
{/if}
</div>
{#if catchRecord}
@@ -231,6 +224,11 @@
</p>
</div>
{/if}
{#if pokedexEntry.notes}
<div class="bg-base-100 text-base-content rounded-lg p-4 mb-2">
<p><strong>Dex Notes:</strong> {pokedexEntry.notes}</p>
</div>
{/if}
</div>
</div>