@mcptoolshop/sovereign 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +126 -0
- package/LICENSE +21 -0
- package/README.es.md +158 -0
- package/README.fr.md +158 -0
- package/README.hi.md +158 -0
- package/README.it.md +158 -0
- package/README.ja.md +158 -0
- package/README.md +158 -0
- package/README.pt-BR.md +158 -0
- package/README.zh.md +158 -0
- package/SECURITY.md +61 -0
- package/bin/sovereign.js +167 -0
- package/package.json +56 -0
- package/release/00-START-HERE.html +333 -0
- package/release/CHANGELOG.md +126 -0
- package/release/README.txt +144 -0
- package/release/balance-evidence/README.txt +81 -0
- package/release/balance-evidence/raw-data/sovereign-batch-v0.10-canonical-400.json +72134 -0
- package/release/balance-evidence/raw-data/sovereign-batch-v0.10-canonical-slot-swap.json +18137 -0
- package/release/balance-evidence/raw-data/sovereign-batch-v0.10-canonical.json +18137 -0
- package/release/balance-evidence/raw-data/sovereign-batch-v0.10-mc-mirror.json +18089 -0
- package/release/balance-evidence/raw-data/sovereign-batch-v0.10-mfg-mirror.json +18089 -0
- package/release/balance-evidence/raw-data/sovereign-batch-v0.10-tf-mirror.json +18089 -0
- package/release/balance-evidence/sovereign-batch-v0.10-canonical-400.html +1 -0
- package/release/balance-evidence/sovereign-batch-v0.10-canonical-slot-swap.html +1 -0
- package/release/balance-evidence/sovereign-batch-v0.10-canonical.html +1 -0
- package/release/balance-evidence/sovereign-batch-v0.10-mc-mirror.html +1 -0
- package/release/balance-evidence/sovereign-batch-v0.10-mfg-mirror.html +1 -0
- package/release/balance-evidence/sovereign-batch-v0.10-summary.html +2 -0
- package/release/balance-evidence/sovereign-batch-v0.10-tf-mirror.html +1 -0
- package/release/board-game/README.txt +48 -0
- package/release/board-game/sovereign-economy-audit.html +501 -0
- package/release/board-game/sovereign-print-audit.html +479 -0
- package/release/board-game/sovereign-prototype.html +1939 -0
- package/release/design-history/01-phase1-concept.html +632 -0
- package/release/design-history/02-phase2-prototype.html +1026 -0
- package/release/design-history/03-phase3-audit.html +268 -0
- package/release/design-history/04-phase4-audit.html +274 -0
- package/release/design-history/05-phase5-audit.html +305 -0
- package/release/design-history/README.txt +66 -0
- package/release/digital-mode/README.txt +89 -0
- package/release/digital-mode/sovereign-solo.html +3884 -0
- package/release/digital-mode/sovereign-v0.10-freeze-audit.html +67 -0
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<title>Sovereign · Prototype Print / Digital Audit</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
<style>
|
|
8
|
+
:root {
|
|
9
|
+
--revolutionary-debt: #6E1F1E;
|
|
10
|
+
--state-debt: #4A6B8A;
|
|
11
|
+
--national-finance: #1F2D52;
|
|
12
|
+
--commercial-infrastructure: #2E7A6B;
|
|
13
|
+
--manufactures: #8C8A2E;
|
|
14
|
+
--parchment: #F0E6CD;
|
|
15
|
+
--parchment-2: #E6DABC;
|
|
16
|
+
--ink: #1A1612;
|
|
17
|
+
--highlight: #C8392E;
|
|
18
|
+
--rule: rgba(26,22,18,0.55);
|
|
19
|
+
--rule-soft: rgba(26,22,18,0.22);
|
|
20
|
+
--display: "Baskerville","Big Caslon","Hoefler Text","Garamond","Times New Roman",serif;
|
|
21
|
+
--body: "Iowan Old Style","Georgia","Cambria","Times New Roman",serif;
|
|
22
|
+
--ui: -apple-system,"Segoe UI","Helvetica Neue","Arial",system-ui,sans-serif;
|
|
23
|
+
--mono: "SF Mono","Menlo","Consolas","Courier New",monospace;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@page { size: 8.5in 11in; margin: 0.6in 0.7in; }
|
|
27
|
+
* { box-sizing: border-box; }
|
|
28
|
+
html, body {
|
|
29
|
+
margin: 0; padding: 0; font-family: var(--body); color: var(--ink);
|
|
30
|
+
background: #2A2622;
|
|
31
|
+
-webkit-print-color-adjust: exact; print-color-adjust: exact;
|
|
32
|
+
}
|
|
33
|
+
.viewport { display: flex; flex-direction: column; align-items: center; gap: 28px; padding: 32px 16px 96px; }
|
|
34
|
+
.page {
|
|
35
|
+
width: 8.5in; min-height: 11in; background: var(--parchment); position: relative;
|
|
36
|
+
box-shadow: 0 10px 40px rgba(0,0,0,.55), 0 2px 4px rgba(0,0,0,.4);
|
|
37
|
+
padding: 0.6in 0.7in 0.55in;
|
|
38
|
+
}
|
|
39
|
+
@media print {
|
|
40
|
+
body { background: #fff; }
|
|
41
|
+
.viewport { padding: 0; gap: 0; }
|
|
42
|
+
.page { box-shadow: none; padding: 0; min-height: auto; width: 100%; page-break-after: always; }
|
|
43
|
+
.page:last-child { page-break-after: auto; }
|
|
44
|
+
.toolbar { display: none !important; }
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.toolbar { position: fixed; top: 16px; right: 16px; z-index: 30; display: flex; gap: 8px; }
|
|
48
|
+
.toolbar button {
|
|
49
|
+
background: var(--parchment); color: var(--ink);
|
|
50
|
+
border: 1px solid var(--ink); padding: 8px 14px;
|
|
51
|
+
font-family: var(--ui); font-size: 12px;
|
|
52
|
+
letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
|
|
53
|
+
}
|
|
54
|
+
.toolbar button:hover { background: var(--parchment-2); }
|
|
55
|
+
|
|
56
|
+
.doc-head {
|
|
57
|
+
display: flex; justify-content: space-between; align-items: baseline;
|
|
58
|
+
padding-bottom: 8px; border-bottom: 1px solid var(--ink);
|
|
59
|
+
font-family: var(--ui); font-size: 9.5px;
|
|
60
|
+
letter-spacing: .22em; text-transform: uppercase;
|
|
61
|
+
margin-bottom: 0.25in;
|
|
62
|
+
}
|
|
63
|
+
.doc-head .sigil {
|
|
64
|
+
font-family: var(--display); font-style: italic;
|
|
65
|
+
letter-spacing: 0; text-transform: none; font-size: 12px;
|
|
66
|
+
}
|
|
67
|
+
.doc-foot {
|
|
68
|
+
position: absolute; left: 0.7in; right: 0.7in; bottom: 0.35in;
|
|
69
|
+
display: flex; justify-content: space-between; align-items: center;
|
|
70
|
+
padding-top: 6px; border-top: 1px solid var(--ink);
|
|
71
|
+
font-family: var(--ui); font-size: 9px;
|
|
72
|
+
letter-spacing: .18em; text-transform: uppercase;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
h1.title {
|
|
76
|
+
font-family: var(--display); font-weight: 400; font-size: 48px;
|
|
77
|
+
line-height: 1; margin: 0 0 6px; letter-spacing: -.01em;
|
|
78
|
+
}
|
|
79
|
+
h1.title .amp { font-style: italic; }
|
|
80
|
+
.lede {
|
|
81
|
+
font-family: var(--display); font-style: italic;
|
|
82
|
+
font-size: 15px; line-height: 1.45;
|
|
83
|
+
max-width: 64ch; margin: 0 0 18px;
|
|
84
|
+
}
|
|
85
|
+
h2 {
|
|
86
|
+
font-family: var(--display); font-weight: 400;
|
|
87
|
+
font-size: 26px; line-height: 1.1; margin: 18px 0 10px;
|
|
88
|
+
letter-spacing: -.005em;
|
|
89
|
+
border-bottom: 1px solid var(--ink); padding-bottom: 4px;
|
|
90
|
+
}
|
|
91
|
+
h2 .ord {
|
|
92
|
+
font-family: var(--mono); font-size: 12px;
|
|
93
|
+
letter-spacing: .12em; opacity: .7;
|
|
94
|
+
vertical-align: middle; margin-right: 10px;
|
|
95
|
+
}
|
|
96
|
+
h3 {
|
|
97
|
+
font-family: var(--ui); font-size: 11px;
|
|
98
|
+
font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
|
|
99
|
+
margin: 14px 0 4px;
|
|
100
|
+
}
|
|
101
|
+
p, li { font-family: var(--body); font-size: 11.5px; line-height: 1.55; margin: 0 0 6px; }
|
|
102
|
+
ul, ol { padding-left: 18px; margin: 0 0 8px; }
|
|
103
|
+
strong { font-family: var(--display); font-weight: 700; }
|
|
104
|
+
em { font-style: italic; }
|
|
105
|
+
.mono { font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; }
|
|
106
|
+
code, pre { font-family: var(--mono); }
|
|
107
|
+
|
|
108
|
+
.summary {
|
|
109
|
+
margin: 14px 0 22px;
|
|
110
|
+
display: grid;
|
|
111
|
+
grid-template-columns: repeat(3, 1fr);
|
|
112
|
+
gap: 10px;
|
|
113
|
+
}
|
|
114
|
+
.summary .stat {
|
|
115
|
+
border: 1px solid var(--ink);
|
|
116
|
+
background: var(--parchment-2);
|
|
117
|
+
padding: 10px 12px;
|
|
118
|
+
position: relative;
|
|
119
|
+
}
|
|
120
|
+
.summary .stat::before {
|
|
121
|
+
content: ""; position: absolute; inset: 3px;
|
|
122
|
+
border: 0.5px solid var(--rule-soft);
|
|
123
|
+
pointer-events: none;
|
|
124
|
+
}
|
|
125
|
+
.summary .stat .n {
|
|
126
|
+
font-family: var(--display); font-size: 36px; line-height: 1;
|
|
127
|
+
font-variant-numeric: tabular-nums;
|
|
128
|
+
}
|
|
129
|
+
.summary .stat .lbl {
|
|
130
|
+
font-family: var(--ui); font-size: 9px;
|
|
131
|
+
letter-spacing: .22em; text-transform: uppercase;
|
|
132
|
+
margin-top: 4px;
|
|
133
|
+
}
|
|
134
|
+
.summary .stat.pass .n { color: var(--commercial-infrastructure); }
|
|
135
|
+
.summary .stat.minor .n { color: var(--revenue-system, #C28A28); }
|
|
136
|
+
.summary .stat.fail .n { color: var(--highlight); }
|
|
137
|
+
|
|
138
|
+
table.audit {
|
|
139
|
+
width: 100%;
|
|
140
|
+
border-collapse: collapse;
|
|
141
|
+
margin: 8px 0 12px;
|
|
142
|
+
}
|
|
143
|
+
table.audit th, table.audit td {
|
|
144
|
+
text-align: left;
|
|
145
|
+
vertical-align: top;
|
|
146
|
+
padding: 4px 6px;
|
|
147
|
+
font-size: 10.5px;
|
|
148
|
+
line-height: 1.4;
|
|
149
|
+
border-bottom: 0.5px solid var(--rule-soft);
|
|
150
|
+
}
|
|
151
|
+
table.audit th {
|
|
152
|
+
font-family: var(--ui); font-weight: 700;
|
|
153
|
+
letter-spacing: .14em; text-transform: uppercase;
|
|
154
|
+
font-size: 9px;
|
|
155
|
+
background: var(--ink); color: var(--parchment);
|
|
156
|
+
border-bottom: 1px solid var(--ink);
|
|
157
|
+
}
|
|
158
|
+
table.audit td.n {
|
|
159
|
+
font-family: var(--mono); font-size: 9.5px;
|
|
160
|
+
width: 28px; text-align: right; padding-right: 8px;
|
|
161
|
+
color: var(--rule);
|
|
162
|
+
}
|
|
163
|
+
table.audit td.v {
|
|
164
|
+
font-family: var(--ui); font-size: 9px;
|
|
165
|
+
font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
|
|
166
|
+
width: 90px;
|
|
167
|
+
}
|
|
168
|
+
table.audit td.v.pass { color: var(--commercial-infrastructure); }
|
|
169
|
+
table.audit td.v.minor { color: #B07A1F; }
|
|
170
|
+
table.audit td.v.fail { color: var(--highlight); }
|
|
171
|
+
table.audit td.check { font-family: var(--body); }
|
|
172
|
+
table.audit td.notes { color: rgba(26,22,18,0.78); font-size: 10px; }
|
|
173
|
+
table.audit tr.row-pass td.v::before { content: "✓ "; }
|
|
174
|
+
table.audit tr.row-minor td.v::before { content: "! "; }
|
|
175
|
+
table.audit tr.row-fail td.v::before { content: "✕ "; }
|
|
176
|
+
|
|
177
|
+
.fix {
|
|
178
|
+
margin: 8px 0;
|
|
179
|
+
display: grid;
|
|
180
|
+
grid-template-columns: 56px 1fr;
|
|
181
|
+
gap: 14px;
|
|
182
|
+
align-items: start;
|
|
183
|
+
padding: 8px 12px;
|
|
184
|
+
border-left: 2px solid var(--ink);
|
|
185
|
+
background: rgba(26,22,18,0.025);
|
|
186
|
+
}
|
|
187
|
+
.fix .priority {
|
|
188
|
+
font-family: var(--mono); font-size: 10px;
|
|
189
|
+
letter-spacing: .12em;
|
|
190
|
+
background: var(--ink); color: var(--parchment);
|
|
191
|
+
padding: 4px 8px; text-align: center;
|
|
192
|
+
font-weight: 700;
|
|
193
|
+
}
|
|
194
|
+
.fix.p0 .priority { background: var(--highlight); }
|
|
195
|
+
.fix.p1 .priority { background: var(--national-finance); }
|
|
196
|
+
.fix.p2 .priority { background: var(--state-debt); }
|
|
197
|
+
.fix.p3 .priority { background: var(--rule); }
|
|
198
|
+
.fix .title-row {
|
|
199
|
+
font-family: var(--display); font-weight: 700; font-size: 13px;
|
|
200
|
+
margin-bottom: 2px;
|
|
201
|
+
}
|
|
202
|
+
.fix p { margin: 2px 0; font-size: 10.5px; line-height: 1.45; }
|
|
203
|
+
.fix .quote {
|
|
204
|
+
font-family: var(--display); font-style: italic;
|
|
205
|
+
background: var(--parchment-2);
|
|
206
|
+
border-left: 2px solid var(--rule);
|
|
207
|
+
padding: 4px 8px;
|
|
208
|
+
margin-top: 4px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.comp-list {
|
|
212
|
+
font-family: var(--mono); font-size: 10px;
|
|
213
|
+
line-height: 1.55;
|
|
214
|
+
background: var(--parchment-2);
|
|
215
|
+
border: 1px solid var(--ink);
|
|
216
|
+
padding: 14px 18px;
|
|
217
|
+
margin: 10px 0;
|
|
218
|
+
white-space: pre-wrap;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.verdict {
|
|
222
|
+
margin: 14px 0;
|
|
223
|
+
padding: 16px 18px;
|
|
224
|
+
border: 1.5px solid var(--ink);
|
|
225
|
+
background: var(--parchment-2);
|
|
226
|
+
position: relative;
|
|
227
|
+
}
|
|
228
|
+
.verdict::before {
|
|
229
|
+
content: ""; position: absolute; inset: 5px;
|
|
230
|
+
border: 0.5px solid var(--rule-soft); pointer-events: none;
|
|
231
|
+
}
|
|
232
|
+
.verdict .stamp {
|
|
233
|
+
display: inline-block;
|
|
234
|
+
font-family: var(--display); font-size: 14px;
|
|
235
|
+
letter-spacing: .12em; text-transform: uppercase;
|
|
236
|
+
border: 1.5px solid var(--commercial-infrastructure);
|
|
237
|
+
color: var(--commercial-infrastructure);
|
|
238
|
+
padding: 4px 10px; margin-bottom: 6px;
|
|
239
|
+
background: var(--parchment);
|
|
240
|
+
}
|
|
241
|
+
.verdict h3 {
|
|
242
|
+
font-family: var(--display); font-weight: 400;
|
|
243
|
+
font-size: 20px; text-transform: none; letter-spacing: 0;
|
|
244
|
+
margin: 0 0 6px;
|
|
245
|
+
}
|
|
246
|
+
.verdict p { font-size: 11px; line-height: 1.5; margin: 0 0 4px; }
|
|
247
|
+
|
|
248
|
+
.small-caps {
|
|
249
|
+
font-family: var(--ui); font-size: 10px;
|
|
250
|
+
letter-spacing: .22em; text-transform: uppercase;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.signature {
|
|
254
|
+
margin-top: 18px;
|
|
255
|
+
padding-top: 10px;
|
|
256
|
+
border-top: 1px solid var(--ink);
|
|
257
|
+
display: flex; justify-content: space-between; align-items: baseline;
|
|
258
|
+
font-family: var(--ui); font-size: 9px;
|
|
259
|
+
letter-spacing: .18em; text-transform: uppercase;
|
|
260
|
+
}
|
|
261
|
+
.signature .who { font-family: var(--display); font-style: italic; font-size: 12px; letter-spacing: 0; text-transform: none; }
|
|
262
|
+
</style>
|
|
263
|
+
</head>
|
|
264
|
+
<body>
|
|
265
|
+
|
|
266
|
+
<div class="toolbar"><button onclick="window.print()">Print / Save PDF</button></div>
|
|
267
|
+
|
|
268
|
+
<div class="viewport">
|
|
269
|
+
|
|
270
|
+
<!-- =============================================================
|
|
271
|
+
PAGE 1 — TITLE + SUMMARY + CHECKLIST (rows 1–14)
|
|
272
|
+
============================================================= -->
|
|
273
|
+
<section class="page">
|
|
274
|
+
<header class="doc-head">
|
|
275
|
+
<span>Sovereign · Prototype Print / Digital Audit</span>
|
|
276
|
+
<span class="sigil">v0.2 balance candidate · Master Pack</span>
|
|
277
|
+
<span>1 / 3</span>
|
|
278
|
+
</header>
|
|
279
|
+
|
|
280
|
+
<h1 class="title">Prototype Print / Digital Audit<span class="amp">.</span></h1>
|
|
281
|
+
<p class="lede">A systematic review of the thirty-sheet master pack against twenty-five usability criteria. The pack ships with the right components, the right rules, and the right print labels — a small set of clarifications would tighten the second playtest.</p>
|
|
282
|
+
|
|
283
|
+
<div class="summary">
|
|
284
|
+
<div class="stat pass"><div class="n">21</div><div class="lbl">Pass</div></div>
|
|
285
|
+
<div class="stat minor"><div class="n">3</div><div class="lbl">Minor concern</div></div>
|
|
286
|
+
<div class="stat fail"><div class="n">1</div><div class="lbl">Minor fail</div></div>
|
|
287
|
+
</div>
|
|
288
|
+
|
|
289
|
+
<h2><span class="ord">§ 01</span>Checklist</h2>
|
|
290
|
+
<table class="audit">
|
|
291
|
+
<thead>
|
|
292
|
+
<tr><th>#</th><th>Check</th><th>Verdict</th><th>Notes</th></tr>
|
|
293
|
+
</thead>
|
|
294
|
+
<tbody>
|
|
295
|
+
<tr class="row-pass"><td class="n">01</td><td class="check">All 40 board spaces present</td><td class="v pass">Pass</td><td class="notes">4 corners + 36 edge spaces, numbered 0–39 contiguously</td></tr>
|
|
296
|
+
<tr class="row-pass"><td class="n">02</td><td class="check">Misnumbered spaces</td><td class="v pass">Pass</td><td class="notes">Sequential clockwise from Treasury Opens</td></tr>
|
|
297
|
+
<tr class="row-pass"><td class="n">03</td><td class="check">Board ↔ card name match</td><td class="v pass">Pass</td><td class="notes">22 properties, 4 routes, 2 institutions match by name & price</td></tr>
|
|
298
|
+
<tr class="row-minor"><td class="n">04</td><td class="check">Card text too small</td><td class="v minor">Minor</td><td class="notes">Board space names at 11.5 pt are tight at table distance — readable but not generous</td></tr>
|
|
299
|
+
<tr class="row-pass"><td class="n">05</td><td class="check">Card text too long</td><td class="v pass">Pass</td><td class="notes">Flavor lines ≤ 18 words; longest title fits</td></tr>
|
|
300
|
+
<tr class="row-fail"><td class="n">06</td><td class="check">Optional card backs</td><td class="v fail">Minor fail</td><td class="notes">Only 9 universal backs on sheet 10; ~64 cards. Cover does not say "reprint sheet 10"</td></tr>
|
|
301
|
+
<tr class="row-pass"><td class="n">07</td><td class="check">All 7 Acts present</td><td class="v pass">Pass</td><td class="notes">7 Acts + Voting Reference card</td></tr>
|
|
302
|
+
<tr class="row-pass"><td class="n">08</td><td class="check">All 4 Roles present</td><td class="v pass">Pass</td><td class="notes">Treasury Architect · State Broker · Merchant Financier · Manufacturer</td></tr>
|
|
303
|
+
<tr class="row-pass"><td class="n">09</td><td class="check">Player count</td><td class="v pass">Pass</td><td class="notes">3 – 4 stated on cover, roles, and rules</td></tr>
|
|
304
|
+
<tr class="row-pass"><td class="n">10</td><td class="check">Shared-track starting values</td><td class="v pass">Pass</td><td class="notes">Credit 5 · Resistance 2 · Capacity 1 — present on track board, rules, board center</td></tr>
|
|
305
|
+
<tr class="row-pass"><td class="n">11</td><td class="check">Color-only components</td><td class="v pass">Pass</td><td class="notes">Every categorical mark carries color + pattern + icon + label</td></tr>
|
|
306
|
+
<tr class="row-minor"><td class="n">12</td><td class="check">Rules contradictions</td><td class="v minor">Minor</td><td class="notes">§ 15 Default removes 1 upgrade; § 17 Bankruptcy removes all — no precedence rule when both fire</td></tr>
|
|
307
|
+
<tr class="row-pass"><td class="n">13</td><td class="check">Table-stalling mechanics</td><td class="v pass">Pass</td><td class="notes">Cabinet Bargain has 30-second trade timer; auctions resolve at first bid pass</td></tr>
|
|
308
|
+
<tr class="row-pass"><td class="n">14</td><td class="check">Monopoly trade-dress</td><td class="v pass">Pass</td><td class="notes">Square-loop grammar is allowed; visual identity is original — chrome, type, corners, cards</td></tr>
|
|
309
|
+
<tr class="row-pass"><td class="n">15</td><td class="check">Historically confusing labels</td><td class="v pass">Pass</td><td class="notes">Names and Act effects map to real 1789 – 1792 legislation</td></tr>
|
|
310
|
+
<tr class="row-pass"><td class="n">16</td><td class="check">Economic consistency</td><td class="v pass">Pass</td><td class="notes">Prices, mortgage, Act ↔ institution multipliers all cross-validate (4× → 10× → 20×)</td></tr>
|
|
311
|
+
<tr class="row-pass"><td class="n">17</td><td class="check">Computed payment tables</td><td class="v pass">Pass</td><td class="notes">Base / Full Set / Tier I–III in TN on every property; route + institution ladders</td></tr>
|
|
312
|
+
<tr class="row-pass"><td class="n">18</td><td class="check">Influence scoring table</td><td class="v pass">Pass</td><td class="notes">Sheet 29 § 12 + § 13 cover all eight scoring sources plus track bonuses</td></tr>
|
|
313
|
+
<tr class="row-pass"><td class="n">19</td><td class="check">Auction procedure</td><td class="v pass">Pass</td><td class="notes">Sheet 28 § 04</td></tr>
|
|
314
|
+
<tr class="row-pass"><td class="n">20</td><td class="check">Constitutional Crisis procedure</td><td class="v pass">Pass</td><td class="notes">Sheet 28 § 07; matches corner space</td></tr>
|
|
315
|
+
<tr class="row-pass"><td class="n">21</td><td class="check">Voting procedure</td><td class="v pass">Pass</td><td class="notes">Sheet 28 § 09 + Voting Reference card</td></tr>
|
|
316
|
+
<tr class="row-pass"><td class="n">22</td><td class="check">Print labels · crop · page order</td><td class="v pass">Pass</td><td class="notes">Every sheet has "X / 30"; crop marks on tile + card sheets</td></tr>
|
|
317
|
+
<tr class="row-pass"><td class="n">23</td><td class="check">Contrast</td><td class="v pass">Pass</td><td class="notes">Ink #1A1612 on parchment #F0E6CD ≈ 14 : 1; white on saturated bands also high</td></tr>
|
|
318
|
+
<tr class="row-pass"><td class="n">24</td><td class="check">Excessive ink</td><td class="v pass">Pass</td><td class="notes">System bands are small; bills are left-half-only; parchment field elsewhere</td></tr>
|
|
319
|
+
<tr class="row-minor"><td class="n">25</td><td class="check">Single-sided playability</td><td class="v pass">Pass</td><td class="notes">Card backs are explicitly optional; nothing on the board or any card requires duplex</td></tr>
|
|
320
|
+
</tbody>
|
|
321
|
+
</table>
|
|
322
|
+
|
|
323
|
+
<footer class="doc-foot">
|
|
324
|
+
<span>Sovereign · Audit Report</span>
|
|
325
|
+
<span class="mono">FC-AU-001</span>
|
|
326
|
+
<span>Sheet 1 / 3</span>
|
|
327
|
+
</footer>
|
|
328
|
+
</section>
|
|
329
|
+
|
|
330
|
+
<!-- =============================================================
|
|
331
|
+
PAGE 2 — SPECIFIC FIXES
|
|
332
|
+
============================================================= -->
|
|
333
|
+
<section class="page">
|
|
334
|
+
<header class="doc-head">
|
|
335
|
+
<span>Specific Fixes · in priority order</span>
|
|
336
|
+
<span class="sigil">P0 ships before first print · P3 nice-to-have</span>
|
|
337
|
+
<span>2 / 3</span>
|
|
338
|
+
</header>
|
|
339
|
+
|
|
340
|
+
<h2><span class="ord">§ 02</span>Specific Fixes</h2>
|
|
341
|
+
|
|
342
|
+
<h3>P0 · must fix before first print</h3>
|
|
343
|
+
<div class="fix p0">
|
|
344
|
+
<div class="priority">P0 · 01</div>
|
|
345
|
+
<div>
|
|
346
|
+
<div class="title-row">Card-back coverage note</div>
|
|
347
|
+
<p>Cover currently says "print sheet 10 on reverse of card sheets" but nine backs covers only one card sheet. Edit the cover line to:</p>
|
|
348
|
+
<div class="quote">"Print sheet 10 once per card sheet you want backed — about seven copies for full coverage."</div>
|
|
349
|
+
</div>
|
|
350
|
+
</div>
|
|
351
|
+
|
|
352
|
+
<h3>P1 · fix before second playtest</h3>
|
|
353
|
+
<div class="fix p1">
|
|
354
|
+
<div class="priority">P1 · 02</div>
|
|
355
|
+
<div>
|
|
356
|
+
<div class="title-row">Acts permanence cue</div>
|
|
357
|
+
<p>Rules don't tell you what to do with passed Acts (their +50 % effects are permanent). Add to § 09:</p>
|
|
358
|
+
<div class="quote">"Passed Acts are placed face-up beside the Track Board. Their effects remain in force until game end."</div>
|
|
359
|
+
</div>
|
|
360
|
+
</div>
|
|
361
|
+
|
|
362
|
+
<div class="fix p1">
|
|
363
|
+
<div class="priority">P1 · 03</div>
|
|
364
|
+
<div>
|
|
365
|
+
<div class="title-row">Route landing rule explicit</div>
|
|
366
|
+
<p>§ 05 mentions route payments but doesn't say <em>when</em> you pay. Add one sentence:</p>
|
|
367
|
+
<div class="quote">"Routes pay when an opponent lands on the route; the payment scales with the number of routes the owner currently holds."</div>
|
|
368
|
+
</div>
|
|
369
|
+
</div>
|
|
370
|
+
|
|
371
|
+
<div class="fix p1">
|
|
372
|
+
<div class="priority">P1 · 04</div>
|
|
373
|
+
<div>
|
|
374
|
+
<div class="title-row">Default vs Bankruptcy precedence</div>
|
|
375
|
+
<p>Add to § 15:</p>
|
|
376
|
+
<div class="quote">"If Default fires on a player with no upgrades, the cash penalty applies alone. If a player would be bankrupted by Default, resolve Default first, then bankruptcy."</div>
|
|
377
|
+
</div>
|
|
378
|
+
</div>
|
|
379
|
+
|
|
380
|
+
<h3>P2 · clarifications</h3>
|
|
381
|
+
<div class="fix p2">
|
|
382
|
+
<div class="priority">P2 · 05</div>
|
|
383
|
+
<div>
|
|
384
|
+
<div class="title-row">Influence track-bonus split</div>
|
|
385
|
+
<p>§ 13 says "split 5 Influence among National Finance owners" — ambiguous with 2 – 4 owners. Rephrase to:</p>
|
|
386
|
+
<div class="quote">"Each player who owns at least one National Finance property gains ⌊ 5 / N ⌋ Influence, where N is the number of such players."</div>
|
|
387
|
+
</div>
|
|
388
|
+
</div>
|
|
389
|
+
|
|
390
|
+
<div class="fix p2">
|
|
391
|
+
<div class="priority">P2 · 06</div>
|
|
392
|
+
<div>
|
|
393
|
+
<div class="title-row">Tax-space rules</div>
|
|
394
|
+
<p>§ 07 covers corners but not Federal Excise (space 4) or Speculation Scandal (space 38). Add § 07 a:</p>
|
|
395
|
+
<div class="quote">"Tax spaces: pay the amount shown to the bank. Speculation Scandal additionally moves Public Resistance +1."</div>
|
|
396
|
+
</div>
|
|
397
|
+
</div>
|
|
398
|
+
|
|
399
|
+
<h3>P3 · nice-to-have</h3>
|
|
400
|
+
<div class="fix p3">
|
|
401
|
+
<div class="priority">P3 · 07</div>
|
|
402
|
+
<div>
|
|
403
|
+
<div class="title-row">Per-deck card backs in the master pack</div>
|
|
404
|
+
<p>The standalone Event-Cards file has distinct "Volatility" (red) and "Broadside" (navy) backs per deck. The master pack carries only the universal Treasury back. Two extra sheets would restore deck-identity-from-back.</p>
|
|
405
|
+
</div>
|
|
406
|
+
</div>
|
|
407
|
+
|
|
408
|
+
<div class="fix p3">
|
|
409
|
+
<div class="priority">P3 · 08</div>
|
|
410
|
+
<div>
|
|
411
|
+
<div class="title-row">Property card icon repetition</div>
|
|
412
|
+
<p>All cards within a system share one icon — acceptable per the locked visual system, but the card name is the only discriminator. If players grab the wrong card during play, add tiny corner numerals (1 of 3 / 2 of 3 / 3 of 3) inside each system.</p>
|
|
413
|
+
</div>
|
|
414
|
+
</div>
|
|
415
|
+
|
|
416
|
+
<footer class="doc-foot">
|
|
417
|
+
<span>Sovereign · Audit Report</span>
|
|
418
|
+
<span class="mono">FC-AU-001 · Fixes</span>
|
|
419
|
+
<span>Sheet 2 / 3</span>
|
|
420
|
+
</footer>
|
|
421
|
+
</section>
|
|
422
|
+
|
|
423
|
+
<!-- =============================================================
|
|
424
|
+
PAGE 3 — REVISED COMPONENT LIST + VERDICT
|
|
425
|
+
============================================================= -->
|
|
426
|
+
<section class="page">
|
|
427
|
+
<header class="doc-head">
|
|
428
|
+
<span>Revised Component List · Verdict</span>
|
|
429
|
+
<span class="sigil">No component count changes</span>
|
|
430
|
+
<span>3 / 3</span>
|
|
431
|
+
</header>
|
|
432
|
+
|
|
433
|
+
<h2><span class="ord">§ 03</span>Revised Component List</h2>
|
|
434
|
+
<p>No changes to the component count — all thirty sheets stay. The edits are textual fixes to the rules sheets and the cover note, plus optional addition of two deck-specific back sheets.</p>
|
|
435
|
+
|
|
436
|
+
<div class="comp-list">Master pack — Sovereign v0.2 balance candidate
|
|
437
|
+
1 Cover + apply P0 · cover note
|
|
438
|
+
2–5 Board (4 tiled quadrants)
|
|
439
|
+
6–9 Property / Route / Institution cards (28 + 8 reference)
|
|
440
|
+
10 Universal card back ← print this 7× for full coverage
|
|
441
|
+
11–13 Event cards · Market Shock + Republic Debate
|
|
442
|
+
14–15 Acts of Congress + Voting Reference
|
|
443
|
+
16 Roles
|
|
444
|
+
17 Track Board ← add "Passed Acts tray" line (P1)
|
|
445
|
+
18–23 Treasury Notes (126 bills)
|
|
446
|
+
24–26 Upgrade tokens (75)
|
|
447
|
+
27 Influence tokens (40)
|
|
448
|
+
28–29 Rules of Play ← apply rule fixes 02–06
|
|
449
|
+
30 Historical Primer
|
|
450
|
+
|
|
451
|
+
Optional add-ons (not in current file)
|
|
452
|
+
+ Market Shock back · 9-up sheet (P3)
|
|
453
|
+
+ Republic Debate back · 9-up sheet (P3)</div>
|
|
454
|
+
|
|
455
|
+
<h2><span class="ord">§ 04</span>Ready-for-First-Print Verdict</h2>
|
|
456
|
+
<div class="verdict">
|
|
457
|
+
<div class="stamp">Ready for first print</div>
|
|
458
|
+
<h3>A group can print this pack today, cut it out, and play a rough first session.</h3>
|
|
459
|
+
<p>The P0 fix is a one-sentence cover edit. The P1 fixes are clarifying rules sentences that do not change any number. None of the findings change a price, a track value, a corner rule, or an Act effect. Do the P0 and P1 edits before a second playtest and the document is camera-ready.</p>
|
|
460
|
+
<p style="margin-top:8px"><strong>Recommended path:</strong> apply fixes 01 – 06, reprint sheets 1 and 28 – 29, run playtest 1 with the current pack, and gather feedback against the audit's open questions (Influence split, Default precedence).</p>
|
|
461
|
+
</div>
|
|
462
|
+
|
|
463
|
+
<div class="signature">
|
|
464
|
+
<span>Sovereign · The Hamilton System Board Game</span>
|
|
465
|
+
<span class="who">Audit · v0.2 · 2026</span>
|
|
466
|
+
<span>FC-AU-001</span>
|
|
467
|
+
</div>
|
|
468
|
+
|
|
469
|
+
<footer class="doc-foot">
|
|
470
|
+
<span>Sovereign · Audit Report</span>
|
|
471
|
+
<span class="mono">FC-AU-001 · Verdict</span>
|
|
472
|
+
<span>Sheet 3 / 3 · End of Document</span>
|
|
473
|
+
</footer>
|
|
474
|
+
</section>
|
|
475
|
+
|
|
476
|
+
</div>
|
|
477
|
+
|
|
478
|
+
</body>
|
|
479
|
+
</html>
|