Tune round-end pause and reduce deck shake frequency

Cut lastPlayPause to 2s and increase shake interval by 80% (3s→5.4s)
so the draw/discard nudge feels less nagging.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken 2026-02-23 21:06:17 -05:00
parent 17f7d8ce7a
commit 1cdf1cf281

View File

@ -77,7 +77,7 @@ const TIMING = {
// V3_03: Round end reveal timing
reveal: {
lastPlayPause: 2500, // Pause after last play animation before reveals
lastPlayPause: 2000, // Pause after last play animation before reveals
voluntaryWindow: 2000, // Time for players to flip their own cards
initialPause: 250, // Pause before auto-reveals start
cardStagger: 50, // Between cards in same hand
@ -132,7 +132,7 @@ const TIMING = {
// Turn pulse (deck shake)
turnPulse: {
initialDelay: 5000, // Delay before first shake
interval: 3000, // Time between shakes
interval: 5400, // Time between shakes
duration: 300, // Shake animation duration
},