feat: show refractor progress in post-game summary embed #147
Labels
No Label
ai-changes-requested
ai-failed
ai-pr-opened
ai-reviewed
ai-reviewing
ai-working
ai-working
bug
enhancement
feature
in-queue
performance
security
tech-debt
todo
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/paper-dynasty-discord#147
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
After a game completes, the summary embed shows POTG, box score, and rewards. There is no mention of refractor progress — even when tier-ups just happened. Players have no visibility into how their cards are progressing from game outcomes.
Proposal
Add a "Refractor Progress" field to the game summary embed showing:
This connects game outcomes to the progression system and gives players a reason to pay attention to the summary after every game.
Impact
Medium UX value. Could defer to post-launch and ship based on player feedback. The tier-up notification (separate issue) covers the most important case — this is about ambient awareness of progression.
Implemented in PR #160.
Approach: The post-game refractor hook already runs
evaluate-gameand captures tier-ups. I made_run_post_game_refractor_hookreturnevo_resultinstead of discarding it, then added a_build_refractor_progress_texthelper that:refractor/cards?progress=closefor both teams to find cards at ≥80% (◈ Name (pct%))The field is omitted when there's nothing to show. Near-threshold failures are non-fatal. 11 new tests cover all branches.