← All Games
◐ LIGHT MODE
DECLASSIFIED — Act IV: The Return (2024–2026)
PATTERN LIBRARY — PHILLIPS EDITION (ACT IV)
✕
Act IV introduces seven new patterns specific to executive governance and second-term political rhetoric. Three patterns carry over from Act II (labeled). All definitions describe rhetorical mechanisms, not intent.
// ── SHARE BUTTON ───────────────────────────────────────────────── function shareVerdict(claimText, verdict, annotation) { const short = claimText.length > 100 ? claimText.slice(0,97)+'...' : claimText; const ann = annotation.length > 120 ? annotation.slice(0,117)+'...' : annotation; const text = `DECLASSIFIED by Sean\n\nClaim: ${short}\nVerdict: ${verdict}\n\n${ann}\n\ndeclassifiedbysean.com`; if (navigator.share) { navigator.share({title:'DECLASSIFIED: '+verdict, text}).catch(()=>{}); } else { navigator.clipboard.writeText(text).then(()=>{ const btn = document.querySelector('.share-verdict-btn'); if(btn){const orig=btn.textContent;btn.textContent='COPIED ✓';setTimeout(()=>btn.textContent=orig,2000);} }).catch(()=>{}); } } // ── PERSISTENT PROGRESS REPORTER ───────────────────────────────── function reportActProgress(actId, score, total, correct) { try { const key = 'declassified_progress'; const data = JSON.parse(localStorage.getItem(key)||'{}'); data[actId] = {score, total, correct, ts: Date.now()}; localStorage.setItem(key, JSON.stringify(data)); } catch(e) {} }