stardew-valley-data 0.9.0 → 0.10.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 +15 -0
- package/data/artisan-goods.json +1 -1
- package/data/forageables.json +23 -0
- package/dist/index.js +24 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -1
- package/dist/index.mjs.map +1 -1
- package/images/forageables/Sturgeon Roe.png +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ 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.10.0] - 2026-03-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `Sturgeon Roe` entry added to `data/forageables.json` with id `"812S"` — a Sturgeon-specific
|
|
13
|
+
variant of Roe; sell price 130g (`30 + floor(200/2)`), image
|
|
14
|
+
`images/forageables/Sturgeon Roe.png`, locations "Fish Ponds (Sturgeon)", all seasons, same
|
|
15
|
+
energy/health as Roe (50/22)
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Caviar ingredient in `data/artisan-goods.json` corrected from `id: "723"` (Oyster — wrong) to
|
|
20
|
+
`id: "812S"` (Sturgeon Roe); Sturgeon Roe has no unique game object id — the game dynamically
|
|
21
|
+
renames Roe (id `812`) to "Sturgeon Roe" when produced by a Sturgeon pond
|
|
22
|
+
|
|
8
23
|
## [0.9.0] - 2026-03-19
|
|
9
24
|
|
|
10
25
|
### Added
|
package/data/artisan-goods.json
CHANGED
package/data/forageables.json
CHANGED
|
@@ -962,6 +962,29 @@
|
|
|
962
962
|
"driedFruit": false
|
|
963
963
|
}
|
|
964
964
|
},
|
|
965
|
+
{
|
|
966
|
+
"id": "812S",
|
|
967
|
+
"name": "Sturgeon Roe",
|
|
968
|
+
"description": "Fresh sturgeon eggs. These can be made into caviar in a preserves jar.",
|
|
969
|
+
"seasons": ["spring", "summer", "fall", "winter"],
|
|
970
|
+
"locations": "Fish Ponds (Sturgeon)",
|
|
971
|
+
"sellPrice": 130,
|
|
972
|
+
"energyHealth": {
|
|
973
|
+
"energy": 50,
|
|
974
|
+
"health": 22
|
|
975
|
+
},
|
|
976
|
+
"image": "images/forageables/Sturgeon Roe.png",
|
|
977
|
+
"maxQuality": "base",
|
|
978
|
+
"artisanUses": {
|
|
979
|
+
"honey": false,
|
|
980
|
+
"wine": false,
|
|
981
|
+
"juice": false,
|
|
982
|
+
"pickles": false,
|
|
983
|
+
"jelly": false,
|
|
984
|
+
"driedMushrooms": false,
|
|
985
|
+
"driedFruit": false
|
|
986
|
+
}
|
|
987
|
+
},
|
|
965
988
|
{
|
|
966
989
|
"id": "814",
|
|
967
990
|
"name": "Squid Ink",
|
package/dist/index.js
CHANGED
|
@@ -3656,7 +3656,7 @@ var artisan_goods_default = [
|
|
|
3656
3656
|
ingredients: [
|
|
3657
3657
|
{
|
|
3658
3658
|
name: "Sturgeon Roe",
|
|
3659
|
-
id: "
|
|
3659
|
+
id: "812S",
|
|
3660
3660
|
quantity: 1
|
|
3661
3661
|
}
|
|
3662
3662
|
],
|
|
@@ -19262,6 +19262,29 @@ var forageables_default = [
|
|
|
19262
19262
|
driedFruit: false
|
|
19263
19263
|
}
|
|
19264
19264
|
},
|
|
19265
|
+
{
|
|
19266
|
+
id: "812S",
|
|
19267
|
+
name: "Sturgeon Roe",
|
|
19268
|
+
description: "Fresh sturgeon eggs. These can be made into caviar in a preserves jar.",
|
|
19269
|
+
seasons: ["spring", "summer", "fall", "winter"],
|
|
19270
|
+
locations: "Fish Ponds (Sturgeon)",
|
|
19271
|
+
sellPrice: 130,
|
|
19272
|
+
energyHealth: {
|
|
19273
|
+
energy: 50,
|
|
19274
|
+
health: 22
|
|
19275
|
+
},
|
|
19276
|
+
image: "images/forageables/Sturgeon Roe.png",
|
|
19277
|
+
maxQuality: "base",
|
|
19278
|
+
artisanUses: {
|
|
19279
|
+
honey: false,
|
|
19280
|
+
wine: false,
|
|
19281
|
+
juice: false,
|
|
19282
|
+
pickles: false,
|
|
19283
|
+
jelly: false,
|
|
19284
|
+
driedMushrooms: false,
|
|
19285
|
+
driedFruit: false
|
|
19286
|
+
}
|
|
19287
|
+
},
|
|
19265
19288
|
{
|
|
19266
19289
|
id: "814",
|
|
19267
19290
|
name: "Squid Ink",
|