{pokedexEntry.pokemon}

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

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

{/if}

Box: {pokedexEntry.boxPlacement.box}

Row: {pokedexEntry.boxPlacement.row}

Column: {pokedexEntry.boxPlacement.column}

{#if showForms}

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

{/if} {#if pokedexEntry.notes}

Notes: {pokedexEntry.notes}

{/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}