stardew-valley-data 0.14.0 → 0.16.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 +28 -0
- package/data/island-trader-shop.json +1 -1
- package/data/minerals.json +998 -0
- package/data/monster-loot.json +7 -0
- package/data/wizard-shop.json +1 -1
- package/dist/index.d.mts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +1007 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1007 -2
- package/dist/index.mjs.map +1 -1
- package/images/misc/Golden Pumpkin.png +0 -0
- package/images/misc/Treasure Chest.png +0 -0
- package/package.json +1 -1
- /package/images/{minerals → monsters/monster-loot}/Dragon Tooth.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
|
|
6
6
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.16.0] - 2026-03-21
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add Dragon Tooth Item to Monster Loot data
|
|
13
|
+
|
|
14
|
+
## [0.15.0] - 2026-03-20
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `GeodeContent` interface added to `src/types/mineral.ts` —
|
|
19
|
+
`{ name: string; image?: string; quantity?: string; chance?: string }`
|
|
20
|
+
- `contents?: GeodeContent[]` field added to `GeodeContainer` type — optional drop table listing all
|
|
21
|
+
possible outputs for a given container
|
|
22
|
+
- **Artifact Trove** (`id: "275"`) added to `data/minerals.json` — opened at the Blacksmith for 25g;
|
|
23
|
+
28 equally weighted (~3.6%) possible outputs covering all 24 artifacts plus Golden Pumpkin, Pearl,
|
|
24
|
+
Treasure Appraisal Guide, and Treasure Chest
|
|
25
|
+
- **Golden Coconut** (`id: "791"`) added to `data/minerals.json` — Ginger Island container; first
|
|
26
|
+
crack always yields a Golden Walnut; subsequent drops from a pool of 8 items including Banana
|
|
27
|
+
Sapling, Mango Sapling, Fossilized Skull, and Iridium Ore
|
|
28
|
+
- **Mystery Box** (`id: "MysteryBox"`) added to `data/minerals.json` — 63 possible outputs with
|
|
29
|
+
published chance rates; rare drops (Prismatic Shard, Pearl, Book of Stars, etc.) only unlock after
|
|
30
|
+
opening 10 or more boxes
|
|
31
|
+
- **Golden Mystery Box** (`id: "GoldenMysteryBox"`) added to `data/minerals.json` — 65 possible
|
|
32
|
+
outputs with improved rates over Mystery Box and no 10+ box unlock requirement; exclusive items:
|
|
33
|
+
Golden Animal Cracker and Auto-Petter
|
|
34
|
+
- `images/misc/Golden Pumpkin.png` and `images/misc/Treasure Chest.png` downloaded (48×48)
|
|
35
|
+
|
|
8
36
|
## [0.14.0] - 2026-03-20
|
|
9
37
|
|
|
10
38
|
### Added
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"image": "images/trees/banana/seed.png",
|
|
68
68
|
"tradeItemId": "852",
|
|
69
69
|
"tradeItemName": "Dragon Tooth",
|
|
70
|
-
"tradeItemImage": "images/
|
|
70
|
+
"tradeItemImage": "images/monsters/monster-loot/Dragon Tooth.png",
|
|
71
71
|
"tradeAmount": 5
|
|
72
72
|
},
|
|
73
73
|
{
|