{pokedexEntry.pokemon}

#{pokedexEntry.pokedexNumber.toString().padStart(3, '0')}
{#if showForms}

Form: {pokedexEntry.form ? pokedexEntry.form : '-'}

{/if}
{#if pokedexEntry.evolutionInformation}

How to evolve: {pokedexEntry.evolutionInformation}

{:else}

How to evolve: Currently missing - can you help contribute?

{/if}
{#if catchRecord}
{#if pokedexEntry.canGigantamax && showForms}
{/if}

{/if}
{#if showOrigins}

Origin Dex Requirements

Region to Catch In: {pokedexEntry.regionToCatchIn}

Games to catch in:

    {#each pokedexEntry.gamesToCatchIn as game}
  • {game}
  • {/each}
{#if pokedexEntry.regionToEvolveIn}

Region to Evolve In: {pokedexEntry.regionToEvolveIn}

{/if}
{/if} {#if pokedexEntry.catchInformation.length > 0}

Where to catch:

    {#each pokedexEntry.catchInformation as info}
    • Game: {info.game}
    • Location: {info.location}
    • Notes: {info.notes}
  • {/each}

Missing a game? - can you help contribute?

{:else}

Where to catch: Currently missing - can you help contribute?

{/if}