Verify and explain defender-only PvP redraws

This commit is contained in:
2026-09-04 19:27:25 -07:00
parent 2f8f67a24c
commit cf63ffed47
5 changed files with 25 additions and 4 deletions
@@ -173,7 +173,7 @@
<!-- PvP: defender picks a card -->
{#if myPvpDefense && myPvpDefense.id === ch.id}
<div style="margin-top: 0.75rem;">
<p style="margin: 0 0 0.5rem 0;"><strong>Defend yourself!</strong> Pick a card:</p>
<p style="margin: 0 0 0.5rem 0;"><strong>Defend yourself!</strong> Match the Obstacles color to draw a replacement, even if you lose:</p>
<div class="challenge-actions">
{#each hand.filter(c => !isJoker(c)) as card}
<button class="btn btn-secondary" use:tooltip={{ html: cardTooltipHtml(card, $obstacleTable, true) }} on:click={() => pvpDefend(ch.id, card)}>{getCardDisplay(card)}</button>