{pokedexEntry.pokemon}

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

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

{/if}
{#if showForms}

Box: {pokedexEntry.boxPlacementForms.box}

Row: {pokedexEntry.boxPlacementForms.row}

Column: {pokedexEntry.boxPlacementForms.column}

Can Gigantamax: {pokedexEntry.canGigantamax ? 'Yes' : 'No'}

{:else}

Box: {pokedexEntry.boxPlacement.box}

Row: {pokedexEntry.boxPlacement.row}

Column: {pokedexEntry.boxPlacement.column}

{/if} {#if pokedexEntry.evolutionInformation}

Evolution Info: {pokedexEntry.evolutionInformation}

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

Catch Info:

    {#each pokedexEntry.catchInformation as info}
    • Location: {info.game}
    • Method: {info.location}
    • Level: {info.notes}
  • {/each}
{/if}
{#if pokedexEntry.canGigantamax && showForms}
{/if}

{#if showOrigins}

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}