@sakura2333/kancolle-data 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/CHANGELOG.md +41 -0
- package/LICENSES.md +8 -0
- package/README.md +23 -0
- package/assets/useitems/100.png +0 -0
- package/assets/useitems/104.png +0 -0
- package/assets/useitems/145.png +0 -0
- package/assets/useitems/150.png +0 -0
- package/assets/useitems/2.png +0 -0
- package/assets/useitems/241.png +0 -0
- package/assets/useitems/57.png +0 -0
- package/assets/useitems/70.png +0 -0
- package/assets/useitems/75.png +0 -0
- package/assets/useitems/77.png +0 -0
- package/assets/useitems/78.png +0 -0
- package/assets/useitems/91.png +0 -0
- package/assets/useitems/92.png +0 -0
- package/assets/useitems/94.png +0 -0
- package/assets/useitems/95.png +0 -0
- package/audit/build-report.json +7 -0
- package/equipment/drop-from.nedb +1 -0
- package/equipment/special-bonuses.nedb +1 -0
- package/improvement/detail.nedb +372 -0
- package/improvement/list.json +15425 -0
- package/index.d.ts +21 -0
- package/index.js +26 -0
- package/manifest.json +149 -0
- package/package.json +35 -0
- package/schemas/equipment-drop-from.schema.json +26 -0
- package/schemas/equipment-special-bonus.schema.json +21 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable consumer-visible changes to `@sakura2333/kancolle-data` are documented here.
|
|
4
|
+
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Added normalized `range` values for KC3 special equipment bonuses sourced from the upstream `leng` field.
|
|
10
|
+
- Data-only patch releases can now be published automatically after a successful scheduled Spider run.
|
|
11
|
+
- Automatic releases are blocked when source freshness, record shape, minimum counts, relative counts, or file-size checks fail.
|
|
12
|
+
- Timestamp-only and audit-only changes no longer create package releases.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Fixed range-only bonus rules being rejected as empty bonus records during automatic publication.
|
|
17
|
+
|
|
18
|
+
### Planned
|
|
19
|
+
|
|
20
|
+
- Add quest, development, exchange, ranking, and event acquisition methods.
|
|
21
|
+
- Add additional ship, map, and quest projections when stable schemas are available.
|
|
22
|
+
|
|
23
|
+
## [0.1.0] - 2026-06-28
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- Added compact all-days and weekday improvement list data.
|
|
28
|
+
- Added route-complete improvement detail data.
|
|
29
|
+
- Added equipment acquisition sources derived from ship initial and remodel loadouts.
|
|
30
|
+
- Added equipment special bonus rules scoped by ship, class, type, country, improvement level, equipment count, and equipment requirements.
|
|
31
|
+
- Added use-item PNG assets.
|
|
32
|
+
- Added top-level and dataset manifests with source metadata, schema versions, data versions, and file hashes.
|
|
33
|
+
- Added JSON Schemas, TypeScript declarations, and stable file-path exports.
|
|
34
|
+
- Added audit build reports without publishing raw HTML snapshots.
|
|
35
|
+
|
|
36
|
+
### Compatibility
|
|
37
|
+
|
|
38
|
+
- Improvement list schema: 2.
|
|
39
|
+
- Improvement detail schema: 3.
|
|
40
|
+
- Equipment drop-from schema: 1.
|
|
41
|
+
- Equipment special-bonus schema: 1.
|
package/LICENSES.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Data source attribution
|
|
2
|
+
|
|
3
|
+
- Akashi List improvement data: https://akashi-list.me/
|
|
4
|
+
- KcWiki structured ship/equipment data: https://github.com/kcwiki/kancolle-data
|
|
5
|
+
- KC3Kai slot-item bonus data: https://github.com/KC3Kai/kancolle-replay (MIT)
|
|
6
|
+
|
|
7
|
+
This package records source URLs and build metadata in `manifest.json`. Game names,
|
|
8
|
+
images and factual data remain subject to their respective owners and source terms.
|
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @sakura2333/kancolle-data
|
|
2
|
+
|
|
3
|
+
Versioned data projections generated by `kancolle-item-improvement-spider`.
|
|
4
|
+
The package exposes file paths and does not eagerly load large JSON/NeDB files.
|
|
5
|
+
|
|
6
|
+
```js
|
|
7
|
+
const data = require('@sakura2333/kancolle-data')
|
|
8
|
+
|
|
9
|
+
console.log(data.improvement.listPath)
|
|
10
|
+
console.log(data.equipment.dropFromPath)
|
|
11
|
+
console.log(data.equipment.specialBonusesPath)
|
|
12
|
+
console.log(data.assets.useitemPath(57))
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Datasets:
|
|
16
|
+
|
|
17
|
+
- `improvement/list.json`: compact all + weekday list projection.
|
|
18
|
+
- `improvement/detail.nedb`: full improvement routes.
|
|
19
|
+
- `equipment/drop-from.nedb`: equipment obtainable from ship initial/remodel loadouts.
|
|
20
|
+
- `equipment/special-bonuses.nedb`: visible equipment bonus rules for ships/classes/types.
|
|
21
|
+
- `assets/useitems/*.png`: use-item images collected by the improvement spider.
|
|
22
|
+
|
|
23
|
+
Use `manifest.json` to verify schema versions, source health and file hashes.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|