@randomplay/data 0.0.4 → 0.1.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/README.md +28 -2
- package/cleaned/audit/nanoka-coverage-matrix.json +1390 -0
- package/cleaned/audit/nanoka-disorder-daze-level-audit.json +134 -0
- package/cleaned/audit/nanoka-disorder-formula-audit.json +106 -0
- package/cleaned/audit/nanoka-drift-report/phase3-sync-000-foundation.json +43 -0
- package/cleaned/audit/nanoka-drift-report/phase3-sync-001-g01-g26.json +2633 -0
- package/cleaned/audit/nanoka-drift-report/phase3-sync-002-g27-g28.json +2829 -0
- package/cleaned/audit/nanoka-drive-disc-slot-stat-audit.json +86 -0
- package/cleaned/audit/nanoka-snapshot-diff-history.json +29 -0
- package/cleaned/audit/nicole.acceptance.json +1 -1
- package/cleaned/audit/source-migration-field-diff.json +407 -0
- package/cleaned/audit/v1-agent-source-candidates.json +1 -1
- package/cleaned/audit/yanagi.acceptance.json +1 -1
- package/cleaned/golden/v1-replay-report.json +83 -5
- package/cleaned/runtime/game-data.json +236 -0
- package/dist/index.d.mts +1621 -1
- package/dist/index.mjs +905 -1
- package/package.json +14 -5
- package/source-registry.json +199 -0
package/README.md
CHANGED
|
@@ -6,8 +6,14 @@ Current state:
|
|
|
6
6
|
|
|
7
7
|
- source descriptors and metadata helpers are implemented;
|
|
8
8
|
- raw source archives are retained under the repo-level `data/source/`;
|
|
9
|
-
- buhflipexplode
|
|
10
|
-
verification scripts;
|
|
9
|
+
- buhflipexplode, Mihoyo Deadly Assault, and nanoka live source snapshots have
|
|
10
|
+
offline verification scripts;
|
|
11
|
+
- D-20 source registry gates live under `source-registry.json` and are verified
|
|
12
|
+
by `verify:source-registry`;
|
|
13
|
+
- Phase 3 nanoka drift reports live under `cleaned/audit/nanoka-drift-report/`
|
|
14
|
+
and are verified by `verify:source-migration`;
|
|
15
|
+
- Phase 4 nanoka runtime data lives under `cleaned/runtime/game-data.json` and
|
|
16
|
+
is verified by `verify:nanoka-runtime`;
|
|
11
17
|
- V1 golden source candidates, manual acceptance records, and the replay report
|
|
12
18
|
are generated under repo-level `data/cleaned/`;
|
|
13
19
|
- `pnpm --filter @randomplay/data sync-cleaned` mirrors repo-level cleaned JSON into
|
|
@@ -18,9 +24,29 @@ Current state:
|
|
|
18
24
|
Do not add hand-written formal game data to this package. Formal rows must be
|
|
19
25
|
derived from source documents and preserve source metadata.
|
|
20
26
|
|
|
27
|
+
## 数据来源声明 / Data Sources
|
|
28
|
+
|
|
29
|
+
This package bundles cleaned ZZZ game-data artifacts for local damage
|
|
30
|
+
calculation. V0.1.0 runtime data is derived from approved-live nanoka source
|
|
31
|
+
snapshots (`manifest.zzz.live`) and preserves source metadata for audit.
|
|
32
|
+
|
|
33
|
+
Source details are recorded in `source-registry.json` and the bundled cleaned
|
|
34
|
+
JSON artifacts. Excel, Mihoyo D-17, and buhflipexplode D-12 snapshots remain
|
|
35
|
+
archived audit references in the repository; they are not runtime sources and
|
|
36
|
+
are not included as raw payloads in the npm package.
|
|
37
|
+
|
|
38
|
+
This is not an official HoYoverse / miHoYo package. Game data, text, and images
|
|
39
|
+
belong to their respective rights holders. If this package infringes your
|
|
40
|
+
rights, contact the maintainers through a GitHub issue and we will respond
|
|
41
|
+
within 24-72 hours.
|
|
42
|
+
|
|
21
43
|
Useful source checks:
|
|
22
44
|
|
|
23
45
|
- `pnpm --filter @randomplay/data verify:buhflipexplode-da`
|
|
24
46
|
- `pnpm --filter @randomplay/data verify:excel`
|
|
25
47
|
- `pnpm --filter @randomplay/data verify:golden-v1`
|
|
26
48
|
- `pnpm --filter @randomplay/data verify:mihoyo-da`
|
|
49
|
+
- `pnpm --filter @randomplay/data verify:nanoka`
|
|
50
|
+
- `pnpm --filter @randomplay/data verify:nanoka-runtime`
|
|
51
|
+
- `pnpm --filter @randomplay/data verify:source-registry`
|
|
52
|
+
- `pnpm --filter @randomplay/data verify:source-migration`
|