{$t.game.components.guessHistory.title}

{#if selectedCharacters.length === 0}

{$t.game.components.guessHistory.empty}

{:else}

{$t.game.components.guessHistory.character}

{#if columnVisibility.status !== false}

{$t.game.components.guessHistory.status}

{/if} {#if columnVisibility.gender !== false}

{$t.game.components.guessHistory.gender}

{/if} {#if columnVisibility.affiliation !== false}

{$t.game.components.guessHistory.affiliations}

{/if} {#if columnVisibility.devilFruitType !== false}

{$t.game.components.guessHistory.fruit}

{/if} {#if columnVisibility.haki !== false}

{$t.game.components.guessHistory.haki}

{/if} {#if columnVisibility.bounty !== false}

{$t.game.components.guessHistory.bounty}

{/if} {#if columnVisibility.height !== false}

{$t.game.components.guessHistory.height}

{/if} {#if columnVisibility.age !== false}

{$t.game.components.guessHistory.age}

{/if} {#if columnVisibility.origin !== false}

{$t.game.components.guessHistory.origin}

{/if} {#if columnVisibility.arc !== false}

{$t.game.components.guessHistory.arc}

{/if}
{#each selectedCharacters as character (character.id)}
{#if character.pictureUrl} {getDisplayName(character)} {:else}
{getDisplayName(character)}
{/if}
{#if columnVisibility.status !== false}

{character.status === 'Alive' ? $t.game.components.guessHistory.alive : character.status === 'Dead' ? $t.game.components.guessHistory.dead : character.status === 'Unknown' ? $t.game.components.guessHistory.unknown : character.status === null ? '-' : character.status || $t.game.components.guessHistory.unknown}

{/if} {#if columnVisibility.gender !== false}

{character.gender === 'Male' ? $t.game.components.guessHistory.male : character.gender === 'Female' ? $t.game.components.guessHistory.female : character.gender || $t.game.components.guessHistory.unknown}

{/if} {#if columnVisibility.affiliation !== false}

{getDislayAffiliation(character) || $t.game.components.guessHistory.unknown}

{/if} {#if columnVisibility.devilFruitType !== false}
{#if character.devilFruitType}

{character.devilFruitType}

{:else}

{/if}
{/if} {#if columnVisibility.haki !== false}

{#if character.hakiObservation}👁️{/if} {#if character.hakiArmament}🦾{/if} {#if character.hakiConqueror}👑{/if} {#if !character.hakiObservation && !character.hakiArmament && !character.hakiConqueror} {/if}

{/if} {#if columnVisibility.bounty !== false}
{#if character.bounty != null && dailyCharacter.bounty != null && character.bounty !== dailyCharacter.bounty}
{/if} {#if character.bounty != null}

{formatBounty(character.bounty)} ฿

{:else}

{$t.game.components.guessHistory.unknown}

{/if}
{/if} {#if columnVisibility.height !== false}
{#if character.height && dailyCharacter.height && character.height !== dailyCharacter.height}
{/if} {#if character.height}

{character.height} m

{:else}

{$t.game.components.guessHistory.unknown}

{/if}
{/if} {#if columnVisibility.age !== false}
{#if character.age != null && dailyCharacter.age != null && character.age !== dailyCharacter.age}
{/if} {#if character.age != null}

{character.age}

{:else}

{$t.game.components.guessHistory.unknown}

{/if}
{/if} {#if columnVisibility.origin !== false}

{getDisplayOrigin(character) || $t.game.components.guessHistory.unknown}

{/if} {#if columnVisibility.arc !== false}
{#if !hasMatchingArc(character, dailyCharacter) && character.firstAppearance && dailyCharacter.firstAppearance && character.firstAppearance !== dailyCharacter.firstAppearance}
{/if}

{getDisplayArcName(character) || $t.game.components.guessHistory.unknown}

{/if}
{/each}
{/if}