stardew-valley-data 0.9.0 → 0.11.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 +33 -0
- package/data/artisan-goods.json +130 -14
- package/data/forageables.json +23 -0
- package/dist/index.d.mts +11 -6
- package/dist/index.d.ts +11 -6
- package/dist/index.js +153 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +153 -14
- package/dist/index.mjs.map +1 -1
- package/images/forageables/Sturgeon Roe.png +0 -0
- package/images/misc/Speed.png +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@ 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.11.0] - 2026-03-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `energyHealthFormula: string | null` field added to all 30 artisan goods in
|
|
13
|
+
`data/artisan-goods.json` and `ArtisanGood` type — mirrors `sellPriceFormula`; set to a
|
|
14
|
+
descriptive string for the 7 variable-output goods (Wine, Juice, Pickles, Jelly, Dried Fruit,
|
|
15
|
+
Dried Mushrooms, Smoked Fish), `null` for all fixed-value and inedible goods
|
|
16
|
+
- `energyHealth` set to `null` (from absent) for the 7 formula-based artisan goods — signals that
|
|
17
|
+
the value must be calculated from the source ingredient using `energyHealthFormula`
|
|
18
|
+
- `ArtisanGoodBuff` interface added to `src/types/artisan-good.ts` —
|
|
19
|
+
`{ stat: string; value: number }`
|
|
20
|
+
- `buffs: ArtisanGoodBuff[]` and `buffDuration: number | null` fields added to all 30 artisan goods
|
|
21
|
+
and `ArtisanGood` type — Beer, Mead, Pale Ale, Wine each buff `Speed -1`; Coffee buffs `Speed +1`;
|
|
22
|
+
Green Tea buffs `Speed +0.5`; all others have empty `buffs` array
|
|
23
|
+
- `images/misc/Speed.png` — 24×24 Speed stat icon added to match existing Energy, Health, and Poison
|
|
24
|
+
misc icons
|
|
25
|
+
|
|
26
|
+
## [0.10.0] - 2026-03-19
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
- `Sturgeon Roe` entry added to `data/forageables.json` with id `"812S"` — a Sturgeon-specific
|
|
31
|
+
variant of Roe; sell price 130g (`30 + floor(200/2)`), image
|
|
32
|
+
`images/forageables/Sturgeon Roe.png`, locations "Fish Ponds (Sturgeon)", all seasons, same
|
|
33
|
+
energy/health as Roe (50/22)
|
|
34
|
+
|
|
35
|
+
### Fixed
|
|
36
|
+
|
|
37
|
+
- Caviar ingredient in `data/artisan-goods.json` corrected from `id: "723"` (Oyster — wrong) to
|
|
38
|
+
`id: "812S"` (Sturgeon Roe); Sturgeon Roe has no unique game object id — the game dynamically
|
|
39
|
+
renames Roe (id `812`) to "Sturgeon Roe" when produced by a Sturgeon pond
|
|
40
|
+
|
|
8
41
|
## [0.9.0] - 2026-03-19
|
|
9
42
|
|
|
10
43
|
### Added
|
package/data/artisan-goods.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"processingMinutes": 6400,
|
|
15
15
|
"processingDays": 4,
|
|
16
|
-
"sellPrice":
|
|
16
|
+
"sellPrice": null,
|
|
17
17
|
"sellPriceFormula": "100g for wild honey; 2× nearby flower base price + 100 for flower honey",
|
|
18
18
|
"priceFormula": {
|
|
19
19
|
"multiplier": 2,
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
},
|
|
22
22
|
"qualityLevels": false,
|
|
23
23
|
"cask": null,
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
"energyHealthFormula": null,
|
|
25
|
+
"energyHealth": null,
|
|
26
|
+
"buffs": [],
|
|
27
|
+
"buffDuration": null,
|
|
28
28
|
"image": "images/artisan-goods/Honey.png",
|
|
29
29
|
"maxQuality": "base"
|
|
30
30
|
},
|
|
@@ -54,10 +54,15 @@
|
|
|
54
54
|
"goldDays": 28,
|
|
55
55
|
"iridiumDays": 56
|
|
56
56
|
},
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
57
|
+
"energyHealthFormula": "1.75× base fruit energy & health",
|
|
58
|
+
"energyHealth": null,
|
|
59
|
+
"buffs": [
|
|
60
|
+
{
|
|
61
|
+
"stat": "Speed",
|
|
62
|
+
"value": -1
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"buffDuration": null,
|
|
61
66
|
"image": "images/artisan-goods/Wine.png",
|
|
62
67
|
"maxQuality": "iridium"
|
|
63
68
|
},
|
|
@@ -87,10 +92,10 @@
|
|
|
87
92
|
"goldDays": 28,
|
|
88
93
|
"iridiumDays": 56
|
|
89
94
|
},
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
95
|
+
"energyHealthFormula": "2× base vegetable energy & health",
|
|
96
|
+
"energyHealth": null,
|
|
97
|
+
"buffs": [],
|
|
98
|
+
"buffDuration": null,
|
|
94
99
|
"image": "images/artisan-goods/Juice.png",
|
|
95
100
|
"maxQuality": "iridium"
|
|
96
101
|
},
|
|
@@ -117,10 +122,18 @@
|
|
|
117
122
|
"goldDays": 18,
|
|
118
123
|
"iridiumDays": 36
|
|
119
124
|
},
|
|
125
|
+
"energyHealthFormula": null,
|
|
120
126
|
"energyHealth": {
|
|
121
127
|
"energy": 50,
|
|
122
128
|
"health": 22
|
|
123
129
|
},
|
|
130
|
+
"buffs": [
|
|
131
|
+
{
|
|
132
|
+
"stat": "Speed",
|
|
133
|
+
"value": -1
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
"buffDuration": null,
|
|
124
137
|
"image": "images/artisan-goods/Pale Ale.png",
|
|
125
138
|
"maxQuality": "iridium"
|
|
126
139
|
},
|
|
@@ -147,10 +160,18 @@
|
|
|
147
160
|
"goldDays": 14,
|
|
148
161
|
"iridiumDays": 28
|
|
149
162
|
},
|
|
163
|
+
"energyHealthFormula": null,
|
|
150
164
|
"energyHealth": {
|
|
151
165
|
"energy": 50,
|
|
152
166
|
"health": 22
|
|
153
167
|
},
|
|
168
|
+
"buffs": [
|
|
169
|
+
{
|
|
170
|
+
"stat": "Speed",
|
|
171
|
+
"value": -1
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"buffDuration": null,
|
|
154
175
|
"image": "images/artisan-goods/Beer.png",
|
|
155
176
|
"maxQuality": "iridium"
|
|
156
177
|
},
|
|
@@ -177,10 +198,18 @@
|
|
|
177
198
|
"goldDays": 14,
|
|
178
199
|
"iridiumDays": 28
|
|
179
200
|
},
|
|
201
|
+
"energyHealthFormula": null,
|
|
180
202
|
"energyHealth": {
|
|
181
203
|
"energy": 75,
|
|
182
204
|
"health": 33
|
|
183
205
|
},
|
|
206
|
+
"buffs": [
|
|
207
|
+
{
|
|
208
|
+
"stat": "Speed",
|
|
209
|
+
"value": -1
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"buffDuration": null,
|
|
184
213
|
"image": "images/artisan-goods/Mead.png",
|
|
185
214
|
"maxQuality": "iridium"
|
|
186
215
|
},
|
|
@@ -203,10 +232,18 @@
|
|
|
203
232
|
"priceFormula": null,
|
|
204
233
|
"qualityLevels": false,
|
|
205
234
|
"cask": null,
|
|
235
|
+
"energyHealthFormula": null,
|
|
206
236
|
"energyHealth": {
|
|
207
237
|
"energy": 3,
|
|
208
238
|
"health": 1
|
|
209
239
|
},
|
|
240
|
+
"buffs": [
|
|
241
|
+
{
|
|
242
|
+
"stat": "Speed",
|
|
243
|
+
"value": 1
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"buffDuration": null,
|
|
210
247
|
"image": "images/artisan-goods/Coffee.png",
|
|
211
248
|
"maxQuality": "base"
|
|
212
249
|
},
|
|
@@ -229,10 +266,13 @@
|
|
|
229
266
|
"priceFormula": null,
|
|
230
267
|
"qualityLevels": false,
|
|
231
268
|
"cask": null,
|
|
269
|
+
"energyHealthFormula": null,
|
|
232
270
|
"energyHealth": {
|
|
233
271
|
"energy": 13,
|
|
234
272
|
"health": 5
|
|
235
273
|
},
|
|
274
|
+
"buffs": [],
|
|
275
|
+
"buffDuration": null,
|
|
236
276
|
"image": "images/artisan-goods/Vinegar.png",
|
|
237
277
|
"maxQuality": "base"
|
|
238
278
|
},
|
|
@@ -255,10 +295,18 @@
|
|
|
255
295
|
"priceFormula": null,
|
|
256
296
|
"qualityLevels": false,
|
|
257
297
|
"cask": null,
|
|
298
|
+
"energyHealthFormula": null,
|
|
258
299
|
"energyHealth": {
|
|
259
300
|
"energy": 13,
|
|
260
301
|
"health": 5
|
|
261
302
|
},
|
|
303
|
+
"buffs": [
|
|
304
|
+
{
|
|
305
|
+
"stat": "Speed",
|
|
306
|
+
"value": 0.5
|
|
307
|
+
}
|
|
308
|
+
],
|
|
309
|
+
"buffDuration": null,
|
|
262
310
|
"image": "images/artisan-goods/Green Tea.png",
|
|
263
311
|
"maxQuality": "base"
|
|
264
312
|
},
|
|
@@ -284,6 +332,10 @@
|
|
|
284
332
|
},
|
|
285
333
|
"qualityLevels": false,
|
|
286
334
|
"cask": null,
|
|
335
|
+
"energyHealthFormula": "2× base fruit energy & health",
|
|
336
|
+
"energyHealth": null,
|
|
337
|
+
"buffs": [],
|
|
338
|
+
"buffDuration": null,
|
|
287
339
|
"image": "images/artisan-goods/Jelly.png",
|
|
288
340
|
"maxQuality": "base"
|
|
289
341
|
},
|
|
@@ -309,6 +361,10 @@
|
|
|
309
361
|
},
|
|
310
362
|
"qualityLevels": false,
|
|
311
363
|
"cask": null,
|
|
364
|
+
"energyHealthFormula": "1.75× base vegetable energy & health",
|
|
365
|
+
"energyHealth": null,
|
|
366
|
+
"buffs": [],
|
|
367
|
+
"buffDuration": null,
|
|
312
368
|
"image": "images/artisan-goods/Pickles.png",
|
|
313
369
|
"maxQuality": "base"
|
|
314
370
|
},
|
|
@@ -334,10 +390,13 @@
|
|
|
334
390
|
},
|
|
335
391
|
"qualityLevels": false,
|
|
336
392
|
"cask": null,
|
|
393
|
+
"energyHealthFormula": null,
|
|
337
394
|
"energyHealth": {
|
|
338
395
|
"energy": 100,
|
|
339
396
|
"health": 45
|
|
340
397
|
},
|
|
398
|
+
"buffs": [],
|
|
399
|
+
"buffDuration": null,
|
|
341
400
|
"image": "images/artisan-goods/Aged Roe.png",
|
|
342
401
|
"maxQuality": "base"
|
|
343
402
|
},
|
|
@@ -349,7 +408,7 @@
|
|
|
349
408
|
"ingredients": [
|
|
350
409
|
{
|
|
351
410
|
"name": "Sturgeon Roe",
|
|
352
|
-
"id": "
|
|
411
|
+
"id": "812S",
|
|
353
412
|
"quantity": 1
|
|
354
413
|
}
|
|
355
414
|
],
|
|
@@ -360,10 +419,13 @@
|
|
|
360
419
|
"priceFormula": null,
|
|
361
420
|
"qualityLevels": false,
|
|
362
421
|
"cask": null,
|
|
422
|
+
"energyHealthFormula": null,
|
|
363
423
|
"energyHealth": {
|
|
364
424
|
"energy": 175,
|
|
365
425
|
"health": 78
|
|
366
426
|
},
|
|
427
|
+
"buffs": [],
|
|
428
|
+
"buffDuration": null,
|
|
367
429
|
"image": "images/artisan-goods/Caviar.png",
|
|
368
430
|
"maxQuality": "base"
|
|
369
431
|
},
|
|
@@ -395,10 +457,13 @@
|
|
|
395
457
|
"goldDays": 14,
|
|
396
458
|
"iridiumDays": 28
|
|
397
459
|
},
|
|
460
|
+
"energyHealthFormula": null,
|
|
398
461
|
"energyHealth": {
|
|
399
462
|
"energy": 125,
|
|
400
463
|
"health": 56
|
|
401
464
|
},
|
|
465
|
+
"buffs": [],
|
|
466
|
+
"buffDuration": null,
|
|
402
467
|
"image": "images/artisan-goods/Cheese.png",
|
|
403
468
|
"maxQuality": "iridium"
|
|
404
469
|
},
|
|
@@ -430,10 +495,13 @@
|
|
|
430
495
|
"goldDays": 14,
|
|
431
496
|
"iridiumDays": 28
|
|
432
497
|
},
|
|
498
|
+
"energyHealthFormula": null,
|
|
433
499
|
"energyHealth": {
|
|
434
500
|
"energy": 125,
|
|
435
501
|
"health": 56
|
|
436
502
|
},
|
|
503
|
+
"buffs": [],
|
|
504
|
+
"buffDuration": null,
|
|
437
505
|
"image": "images/artisan-goods/Goat Cheese.png",
|
|
438
506
|
"maxQuality": "iridium"
|
|
439
507
|
},
|
|
@@ -456,6 +524,9 @@
|
|
|
456
524
|
"priceFormula": null,
|
|
457
525
|
"qualityLevels": false,
|
|
458
526
|
"cask": null,
|
|
527
|
+
"energyHealthFormula": null,
|
|
528
|
+
"buffs": [],
|
|
529
|
+
"buffDuration": null,
|
|
459
530
|
"image": "images/artisan-goods/Cloth.png",
|
|
460
531
|
"maxQuality": "base"
|
|
461
532
|
},
|
|
@@ -478,10 +549,13 @@
|
|
|
478
549
|
"priceFormula": null,
|
|
479
550
|
"qualityLevels": false,
|
|
480
551
|
"cask": null,
|
|
552
|
+
"energyHealthFormula": null,
|
|
481
553
|
"energyHealth": {
|
|
482
554
|
"energy": 38,
|
|
483
555
|
"health": 17
|
|
484
556
|
},
|
|
557
|
+
"buffs": [],
|
|
558
|
+
"buffDuration": null,
|
|
485
559
|
"image": "images/artisan-goods/Truffle Oil.png",
|
|
486
560
|
"maxQuality": "base"
|
|
487
561
|
},
|
|
@@ -514,10 +588,13 @@
|
|
|
514
588
|
"priceFormula": null,
|
|
515
589
|
"qualityLevels": false,
|
|
516
590
|
"cask": null,
|
|
591
|
+
"energyHealthFormula": null,
|
|
517
592
|
"energyHealth": {
|
|
518
593
|
"energy": 13,
|
|
519
594
|
"health": 5
|
|
520
595
|
},
|
|
596
|
+
"buffs": [],
|
|
597
|
+
"buffDuration": null,
|
|
521
598
|
"image": "images/artisan-goods/Oil.png",
|
|
522
599
|
"maxQuality": "base"
|
|
523
600
|
},
|
|
@@ -560,10 +637,13 @@
|
|
|
560
637
|
"priceFormula": null,
|
|
561
638
|
"qualityLevels": false,
|
|
562
639
|
"cask": null,
|
|
640
|
+
"energyHealthFormula": null,
|
|
563
641
|
"energyHealth": {
|
|
564
642
|
"energy": 50,
|
|
565
643
|
"health": 22
|
|
566
644
|
},
|
|
645
|
+
"buffs": [],
|
|
646
|
+
"buffDuration": null,
|
|
567
647
|
"image": "images/artisan-goods/Mayonnaise.png",
|
|
568
648
|
"maxQuality": "base"
|
|
569
649
|
},
|
|
@@ -586,10 +666,13 @@
|
|
|
586
666
|
"priceFormula": null,
|
|
587
667
|
"qualityLevels": false,
|
|
588
668
|
"cask": null,
|
|
669
|
+
"energyHealthFormula": null,
|
|
589
670
|
"energyHealth": {
|
|
590
671
|
"energy": 75,
|
|
591
672
|
"health": 33
|
|
592
673
|
},
|
|
674
|
+
"buffs": [],
|
|
675
|
+
"buffDuration": null,
|
|
593
676
|
"image": "images/artisan-goods/Duck Mayonnaise.png",
|
|
594
677
|
"maxQuality": "base"
|
|
595
678
|
},
|
|
@@ -612,11 +695,14 @@
|
|
|
612
695
|
"priceFormula": null,
|
|
613
696
|
"qualityLevels": false,
|
|
614
697
|
"cask": null,
|
|
698
|
+
"energyHealthFormula": null,
|
|
615
699
|
"energyHealth": {
|
|
616
700
|
"energy": -75,
|
|
617
701
|
"health": 0,
|
|
618
702
|
"poison": true
|
|
619
703
|
},
|
|
704
|
+
"buffs": [],
|
|
705
|
+
"buffDuration": null,
|
|
620
706
|
"image": "images/artisan-goods/Void Mayonnaise.png",
|
|
621
707
|
"maxQuality": "base"
|
|
622
708
|
},
|
|
@@ -639,10 +725,13 @@
|
|
|
639
725
|
"priceFormula": null,
|
|
640
726
|
"qualityLevels": false,
|
|
641
727
|
"cask": null,
|
|
728
|
+
"energyHealthFormula": null,
|
|
642
729
|
"energyHealth": {
|
|
643
730
|
"energy": 125,
|
|
644
731
|
"health": 56
|
|
645
732
|
},
|
|
733
|
+
"buffs": [],
|
|
734
|
+
"buffDuration": null,
|
|
646
735
|
"image": "images/artisan-goods/Dinosaur Mayonnaise.png",
|
|
647
736
|
"maxQuality": "base"
|
|
648
737
|
},
|
|
@@ -665,10 +754,13 @@
|
|
|
665
754
|
"priceFormula": null,
|
|
666
755
|
"qualityLevels": false,
|
|
667
756
|
"cask": null,
|
|
757
|
+
"energyHealthFormula": null,
|
|
668
758
|
"energyHealth": {
|
|
669
759
|
"energy": 125,
|
|
670
760
|
"health": 56
|
|
671
761
|
},
|
|
762
|
+
"buffs": [],
|
|
763
|
+
"buffDuration": null,
|
|
672
764
|
"image": "images/artisan-goods/Raisins.png",
|
|
673
765
|
"maxQuality": "base"
|
|
674
766
|
},
|
|
@@ -694,6 +786,10 @@
|
|
|
694
786
|
},
|
|
695
787
|
"qualityLevels": false,
|
|
696
788
|
"cask": null,
|
|
789
|
+
"energyHealthFormula": "3× base fruit energy & health",
|
|
790
|
+
"energyHealth": null,
|
|
791
|
+
"buffs": [],
|
|
792
|
+
"buffDuration": null,
|
|
697
793
|
"image": "images/artisan-goods/Dried Fruit.png",
|
|
698
794
|
"maxQuality": "base"
|
|
699
795
|
},
|
|
@@ -719,6 +815,10 @@
|
|
|
719
815
|
},
|
|
720
816
|
"qualityLevels": false,
|
|
721
817
|
"cask": null,
|
|
818
|
+
"energyHealthFormula": "3× base mushroom energy & health",
|
|
819
|
+
"energyHealth": null,
|
|
820
|
+
"buffs": [],
|
|
821
|
+
"buffDuration": null,
|
|
722
822
|
"image": "images/artisan-goods/Dried Mushrooms.png",
|
|
723
823
|
"maxQuality": "base"
|
|
724
824
|
},
|
|
@@ -744,6 +844,10 @@
|
|
|
744
844
|
},
|
|
745
845
|
"qualityLevels": false,
|
|
746
846
|
"cask": null,
|
|
847
|
+
"energyHealthFormula": "1.5× base fish energy & health",
|
|
848
|
+
"energyHealth": null,
|
|
849
|
+
"buffs": [],
|
|
850
|
+
"buffDuration": null,
|
|
747
851
|
"image": "images/artisan-goods/Smoked Fish.png",
|
|
748
852
|
"maxQuality": "base"
|
|
749
853
|
},
|
|
@@ -766,10 +870,13 @@
|
|
|
766
870
|
"priceFormula": null,
|
|
767
871
|
"qualityLevels": false,
|
|
768
872
|
"cask": null,
|
|
873
|
+
"energyHealthFormula": null,
|
|
769
874
|
"energyHealth": {
|
|
770
875
|
"energy": 500,
|
|
771
876
|
"health": 225
|
|
772
877
|
},
|
|
878
|
+
"buffs": [],
|
|
879
|
+
"buffDuration": null,
|
|
773
880
|
"image": "images/artisan-goods/Mystic Syrup.png",
|
|
774
881
|
"maxQuality": "base"
|
|
775
882
|
},
|
|
@@ -792,10 +899,13 @@
|
|
|
792
899
|
"priceFormula": null,
|
|
793
900
|
"qualityLevels": false,
|
|
794
901
|
"cask": null,
|
|
902
|
+
"energyHealthFormula": null,
|
|
795
903
|
"energyHealth": {
|
|
796
904
|
"energy": 50,
|
|
797
905
|
"health": 22
|
|
798
906
|
},
|
|
907
|
+
"buffs": [],
|
|
908
|
+
"buffDuration": null,
|
|
799
909
|
"image": "images/forageables/Maple Syrup.png",
|
|
800
910
|
"maxQuality": "base"
|
|
801
911
|
},
|
|
@@ -818,6 +928,9 @@
|
|
|
818
928
|
"priceFormula": null,
|
|
819
929
|
"qualityLevels": false,
|
|
820
930
|
"cask": null,
|
|
931
|
+
"energyHealthFormula": null,
|
|
932
|
+
"buffs": [],
|
|
933
|
+
"buffDuration": null,
|
|
821
934
|
"image": "images/forageables/Oak Resin.png",
|
|
822
935
|
"maxQuality": "base"
|
|
823
936
|
},
|
|
@@ -840,6 +953,9 @@
|
|
|
840
953
|
"priceFormula": null,
|
|
841
954
|
"qualityLevels": false,
|
|
842
955
|
"cask": null,
|
|
956
|
+
"energyHealthFormula": null,
|
|
957
|
+
"buffs": [],
|
|
958
|
+
"buffDuration": null,
|
|
843
959
|
"image": "images/forageables/Pine Tar.png",
|
|
844
960
|
"maxQuality": "base"
|
|
845
961
|
}
|
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.d.mts
CHANGED
|
@@ -37,6 +37,10 @@ interface GiftPreferences {
|
|
|
37
37
|
hates: string[];
|
|
38
38
|
}
|
|
39
39
|
type DayOfWeek = 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday' | 'Sunday';
|
|
40
|
+
interface Buff {
|
|
41
|
+
stat: string;
|
|
42
|
+
value: number;
|
|
43
|
+
}
|
|
40
44
|
interface ArtisanUses {
|
|
41
45
|
honey: boolean;
|
|
42
46
|
wine: boolean;
|
|
@@ -137,6 +141,7 @@ interface JojaBundle {
|
|
|
137
141
|
}
|
|
138
142
|
type Bundle = ItemBundle | GoldBundle | JojaBundle;
|
|
139
143
|
|
|
144
|
+
type ArtisanGoodBuff = Buff;
|
|
140
145
|
interface ArtisanIngredient {
|
|
141
146
|
name: string;
|
|
142
147
|
id: string | null;
|
|
@@ -164,7 +169,10 @@ interface ArtisanGood {
|
|
|
164
169
|
priceFormula: PriceFormula | null;
|
|
165
170
|
qualityLevels: boolean;
|
|
166
171
|
cask: CaskAging | null;
|
|
167
|
-
|
|
172
|
+
energyHealthFormula: string | null;
|
|
173
|
+
energyHealth?: EnergyHealth | null;
|
|
174
|
+
buffs: ArtisanGoodBuff[];
|
|
175
|
+
buffDuration: number | null;
|
|
168
176
|
maxQuality: ItemQuality;
|
|
169
177
|
image: string;
|
|
170
178
|
}
|
|
@@ -629,10 +637,7 @@ interface Tackle {
|
|
|
629
637
|
image: string;
|
|
630
638
|
}
|
|
631
639
|
|
|
632
|
-
|
|
633
|
-
stat: string;
|
|
634
|
-
value: number;
|
|
635
|
-
}
|
|
640
|
+
type CookingBuff = Buff;
|
|
636
641
|
type RecipeSource = {
|
|
637
642
|
type: 'default';
|
|
638
643
|
} | {
|
|
@@ -2895,4 +2900,4 @@ declare function resolveApiVersion(gameVersion: string): number;
|
|
|
2895
2900
|
*/
|
|
2896
2901
|
declare function parseSaveFile(xml: string): SaveData;
|
|
2897
2902
|
|
|
2898
|
-
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, ArtisanCalculator, type ArtisanEnergyResult, type ArtisanGood, ArtisanGoodQuery, type ArtisanIngredient, type ArtisanResult, type ArtisanUses, type Backpack, type Bait, BaitQuery, type BarItem, type BlacksmithItem, BlacksmithQuery, type BooksellerAvailability, type BooksellerItem, BooksellerItemQuery, type BooksellerTrade, BooksellerTradeQuery, type Building, type BuildingBuilder, type BuildingMaterial, BuildingQuery, type Bundle, type BundleItem, BundleQuery, type BundleReward, type BundleRoom, type CarpenterCategory, type CarpenterDay, type CarpenterItem, CarpenterQuery, type CasinoCategory, type CasinoItem, CasinoQuery, type CaskAging, type CollectionItem, CollectionItemQuery, CollectionsQuery, type Concession, ConcessionQuery, type ConcessionTag, type CookedDish, type CookingBuff, CookingQuery, type CraftingIngredient, type CraftingOutput, CraftingQuery, type CraftingRecipe, type Crop, CropQuery, type DayOfWeek, type DesertTraderDay, type DesertTraderItem, DesertTraderQuery, type DwarfShopCategory, type DwarfShopItem, DwarfShopQuery, type EnergyHealth, EventQuery, type FarmAnimal, type FarmMap, FarmMapQuery, type Festival, type FieldOfficeCollection, type FieldOfficeCollectionData, type FieldOfficeDonation, FieldOfficeDonationQuery, FieldOfficeQuery, type FieldOfficeReward, type Fish, type FishCatchType, type FishPond, type FishPondProduce, FishQuery, type FishRoe, type FishWeather, type FishingRod, type FishingRodLevel, type Footwear, FootwearQuery, type Forageable, ForageableQuery, type FruitTree, type FruitTreeProduce, type GameEvent, type GameLocation, type GeodeContainer, type GiftPreferences, type GoldBundle, type GoldenWalnut, GoldenWalnutQuery, type GoldenWalnutTrackingType, type GrandpaCategory, GrandpaEvaluator, type GrandpaInput, type GrandpaResult, type GrandpaScoreEntry, type GuildCategory, type GuildItem, GuildQuery, type GuildWeaponType, type HarvestQuantity, type Hat, HatQuery, type HeartEvent, type HouseRenovation, HouseRenovationQuery, type HouseUpgrade, type HouseUpgradeMaterial, HouseUpgradeQuery, type Ingredient, type IslandTraderDay, type IslandTraderItem, IslandTraderQuery, type ItemBundle, type ItemQuality, type JojaBundle, type JojaItem, JojaQuery, type KrobusDay, type KrobusItem, KrobusQuery, type KrobusStockType, LATEST_API_VERSION, type LocationCategory, type LocationDay, type LocationHours, LocationQuery, type LocationType, type LostBook, LostBookQuery, MASTERY_LEVELS, type MarnieCategory, type MarnieItem, MarnieQuery, type MasteryLevel, type MasterySkill, type MasteryUnlock, type MedicalSupply, MedicalSupplyQuery, type MeleeWeapon, type Mineral, type MineralItem, MineralQuery, type MixedSeed, type MixedSeedProduces, MixedSeedQuery, type Monster, type MonsterLoot, MonsterLootQuery, MonsterQuery, type MonsterSlayerGoal, MonsterSlayerGoalQuery, type MonsterVariant, type NodeDrop, type NodeItem, type OasisCategory, type OasisDay, type OasisItem, OasisQuery, type OreItem, type PerfectionCategory, PerfectionQuery, type Pet, type PierreCategory, type PierreItem, PierreQuery, type PriceFormula, type ProfessionData, ProfessionQuery, type ProfessionSkill, type QiCurrency, type QiStockItem, QiStockQuery, type Quality, QualityCalculator, type QualityEnergyHealth, type QualityPrice, type Quest, QuestQuery, type RecipeSource, type ResourceItem, type Ring, RingQuery, SKILL_TITLES, type SaloonCategory, type SaloonItem, SaloonQuery, type SaveAnimal, type SaveBuilding, type SaveBundleData, type SaveBundleItem, type SaveBundleReward, type SaveBundleRoom, type SaveBundleStatus, type SaveChild, type SaveCollectionEntry, type SaveData, type SaveDate, type SaveFarm, type SaveFishEntry, type SaveFriendship, type SaveIslandUpgrades, type SaveItem, type SaveMastery, type SaveMasteryPerk, type SaveMineProgress, type SaveMonsterKillEntry, type SaveMuseum, type SavePerfection, type SavePet, type SavePlayer, type SavePowerEntry, type SavePowers, type SaveProfession, type SaveQuest, type SaveRaccoons, type SaveRecipeEntry, type SaveSecretNotes, type SaveShippedEntry, type SaveSkillLevel, type SaveSkills, type SaveSpecialOrders, type SaveStardropEntry, type SaveStats, type SaveWalnuts, type SearchResult, type SearchResultKind, type Season, type SeasonData, SeasonQuery, type SecretNote, SecretNoteQuery, type SecretNoteType, type SeedBuyPrice, type SimpleTool, type Skill, type SkillLevel, type SkillLevelRecipes, type SkillMastery, SkillQuery, type SlayerReward, type Slingshot, type SmeltRecipe, type SpecialItem, SpecialItemQuery, type SpecialItemType, type SpecialOrderCategory, type SpecialOrderData, SpecialOrderQuery, type Stage, type StarDrop, StarDropQuery, type StarDropSource, type Tackle, TackleQuery, type TitleThreshold, type Tool, type ToolLevel, ToolQuery, type ToolType, type TraderShopItem, type Tree, TreeQuery, type Trinket, TrinketQuery, type TrinketSource, type UniversalGifts, type UpgradeLevel, type UpgradeableTool, type VersionRange, type Villager, VillagerQuery, type VolcanoShopCategory, type VolcanoShopCurrency, type VolcanoShopItem, VolcanoShopQuery, type Weapon, WeaponQuery, type WeaponStat, WeaponStatQuery, type WeaponType, type Weather, WeatherQuery, type WildTree, type WildTreeTapper, type WillyCategory, type WillyItem, WillyQuery, type WizardBuilding, type WizardBuildingMaterial, WizardQuery, achievements, animals, applyPriceFormula, artifacts, artisanCalculator, artisanGoods, bait, blacksmith, booksellerShop, booksellerTrades, buildings, bundles, calculateArtisanPrice, carpenter, casino, collections, concessions, cooking, crafting, crops, desertTrader, dwarfShop, events, fieldOffice, fieldOfficeDonations, findFestival, fish, footwear, forageables, getMasteryLevel, getProfessionOptions, getTitle, getTitleScore, goldenWalnuts, grandpaEvaluator, guild, hats, houseRenovations, houseUpgrades, isFarmAnimal, isPet, islandTrader, joja, krobus, locations, lostBooks, maps, marnie, medicalSupplies, minerals, mixedSeeds, monsterLoot, monsterSlayerGoals, monsters, oasis, parseSaveFile, perfection, pierre, professions, qiStock, qualityCalculator, quests, resolveApiVersion, rings, saloon, search, seasons, secretNotes, skills, specialItems, specialOrders, starDrops, tackle, tools, trees, trinkets, universalGifts, villagers, volcanoShop, weaponStats, weapons, weather, willy, wizard };
|
|
2903
|
+
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, ArtisanCalculator, type ArtisanEnergyResult, type ArtisanGood, type ArtisanGoodBuff, ArtisanGoodQuery, type ArtisanIngredient, type ArtisanResult, type ArtisanUses, type Backpack, type Bait, BaitQuery, type BarItem, type BlacksmithItem, BlacksmithQuery, type BooksellerAvailability, type BooksellerItem, BooksellerItemQuery, type BooksellerTrade, BooksellerTradeQuery, type Buff, type Building, type BuildingBuilder, type BuildingMaterial, BuildingQuery, type Bundle, type BundleItem, BundleQuery, type BundleReward, type BundleRoom, type CarpenterCategory, type CarpenterDay, type CarpenterItem, CarpenterQuery, type CasinoCategory, type CasinoItem, CasinoQuery, type CaskAging, type CollectionItem, CollectionItemQuery, CollectionsQuery, type Concession, ConcessionQuery, type ConcessionTag, type CookedDish, type CookingBuff, CookingQuery, type CraftingIngredient, type CraftingOutput, CraftingQuery, type CraftingRecipe, type Crop, CropQuery, type DayOfWeek, type DesertTraderDay, type DesertTraderItem, DesertTraderQuery, type DwarfShopCategory, type DwarfShopItem, DwarfShopQuery, type EnergyHealth, EventQuery, type FarmAnimal, type FarmMap, FarmMapQuery, type Festival, type FieldOfficeCollection, type FieldOfficeCollectionData, type FieldOfficeDonation, FieldOfficeDonationQuery, FieldOfficeQuery, type FieldOfficeReward, type Fish, type FishCatchType, type FishPond, type FishPondProduce, FishQuery, type FishRoe, type FishWeather, type FishingRod, type FishingRodLevel, type Footwear, FootwearQuery, type Forageable, ForageableQuery, type FruitTree, type FruitTreeProduce, type GameEvent, type GameLocation, type GeodeContainer, type GiftPreferences, type GoldBundle, type GoldenWalnut, GoldenWalnutQuery, type GoldenWalnutTrackingType, type GrandpaCategory, GrandpaEvaluator, type GrandpaInput, type GrandpaResult, type GrandpaScoreEntry, type GuildCategory, type GuildItem, GuildQuery, type GuildWeaponType, type HarvestQuantity, type Hat, HatQuery, type HeartEvent, type HouseRenovation, HouseRenovationQuery, type HouseUpgrade, type HouseUpgradeMaterial, HouseUpgradeQuery, type Ingredient, type IslandTraderDay, type IslandTraderItem, IslandTraderQuery, type ItemBundle, type ItemQuality, type JojaBundle, type JojaItem, JojaQuery, type KrobusDay, type KrobusItem, KrobusQuery, type KrobusStockType, LATEST_API_VERSION, type LocationCategory, type LocationDay, type LocationHours, LocationQuery, type LocationType, type LostBook, LostBookQuery, MASTERY_LEVELS, type MarnieCategory, type MarnieItem, MarnieQuery, type MasteryLevel, type MasterySkill, type MasteryUnlock, type MedicalSupply, MedicalSupplyQuery, type MeleeWeapon, type Mineral, type MineralItem, MineralQuery, type MixedSeed, type MixedSeedProduces, MixedSeedQuery, type Monster, type MonsterLoot, MonsterLootQuery, MonsterQuery, type MonsterSlayerGoal, MonsterSlayerGoalQuery, type MonsterVariant, type NodeDrop, type NodeItem, type OasisCategory, type OasisDay, type OasisItem, OasisQuery, type OreItem, type PerfectionCategory, PerfectionQuery, type Pet, type PierreCategory, type PierreItem, PierreQuery, type PriceFormula, type ProfessionData, ProfessionQuery, type ProfessionSkill, type QiCurrency, type QiStockItem, QiStockQuery, type Quality, QualityCalculator, type QualityEnergyHealth, type QualityPrice, type Quest, QuestQuery, type RecipeSource, type ResourceItem, type Ring, RingQuery, SKILL_TITLES, type SaloonCategory, type SaloonItem, SaloonQuery, type SaveAnimal, type SaveBuilding, type SaveBundleData, type SaveBundleItem, type SaveBundleReward, type SaveBundleRoom, type SaveBundleStatus, type SaveChild, type SaveCollectionEntry, type SaveData, type SaveDate, type SaveFarm, type SaveFishEntry, type SaveFriendship, type SaveIslandUpgrades, type SaveItem, type SaveMastery, type SaveMasteryPerk, type SaveMineProgress, type SaveMonsterKillEntry, type SaveMuseum, type SavePerfection, type SavePet, type SavePlayer, type SavePowerEntry, type SavePowers, type SaveProfession, type SaveQuest, type SaveRaccoons, type SaveRecipeEntry, type SaveSecretNotes, type SaveShippedEntry, type SaveSkillLevel, type SaveSkills, type SaveSpecialOrders, type SaveStardropEntry, type SaveStats, type SaveWalnuts, type SearchResult, type SearchResultKind, type Season, type SeasonData, SeasonQuery, type SecretNote, SecretNoteQuery, type SecretNoteType, type SeedBuyPrice, type SimpleTool, type Skill, type SkillLevel, type SkillLevelRecipes, type SkillMastery, SkillQuery, type SlayerReward, type Slingshot, type SmeltRecipe, type SpecialItem, SpecialItemQuery, type SpecialItemType, type SpecialOrderCategory, type SpecialOrderData, SpecialOrderQuery, type Stage, type StarDrop, StarDropQuery, type StarDropSource, type Tackle, TackleQuery, type TitleThreshold, type Tool, type ToolLevel, ToolQuery, type ToolType, type TraderShopItem, type Tree, TreeQuery, type Trinket, TrinketQuery, type TrinketSource, type UniversalGifts, type UpgradeLevel, type UpgradeableTool, type VersionRange, type Villager, VillagerQuery, type VolcanoShopCategory, type VolcanoShopCurrency, type VolcanoShopItem, VolcanoShopQuery, type Weapon, WeaponQuery, type WeaponStat, WeaponStatQuery, type WeaponType, type Weather, WeatherQuery, type WildTree, type WildTreeTapper, type WillyCategory, type WillyItem, WillyQuery, type WizardBuilding, type WizardBuildingMaterial, WizardQuery, achievements, animals, applyPriceFormula, artifacts, artisanCalculator, artisanGoods, bait, blacksmith, booksellerShop, booksellerTrades, buildings, bundles, calculateArtisanPrice, carpenter, casino, collections, concessions, cooking, crafting, crops, desertTrader, dwarfShop, events, fieldOffice, fieldOfficeDonations, findFestival, fish, footwear, forageables, getMasteryLevel, getProfessionOptions, getTitle, getTitleScore, goldenWalnuts, grandpaEvaluator, guild, hats, houseRenovations, houseUpgrades, isFarmAnimal, isPet, islandTrader, joja, krobus, locations, lostBooks, maps, marnie, medicalSupplies, minerals, mixedSeeds, monsterLoot, monsterSlayerGoals, monsters, oasis, parseSaveFile, perfection, pierre, professions, qiStock, qualityCalculator, quests, resolveApiVersion, rings, saloon, search, seasons, secretNotes, skills, specialItems, specialOrders, starDrops, tackle, tools, trees, trinkets, universalGifts, villagers, volcanoShop, weaponStats, weapons, weather, willy, wizard };
|
package/dist/index.d.ts
CHANGED
|
@@ -37,6 +37,10 @@ interface GiftPreferences {
|
|
|
37
37
|
hates: string[];
|
|
38
38
|
}
|
|
39
39
|
type DayOfWeek = 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday' | 'Sunday';
|
|
40
|
+
interface Buff {
|
|
41
|
+
stat: string;
|
|
42
|
+
value: number;
|
|
43
|
+
}
|
|
40
44
|
interface ArtisanUses {
|
|
41
45
|
honey: boolean;
|
|
42
46
|
wine: boolean;
|
|
@@ -137,6 +141,7 @@ interface JojaBundle {
|
|
|
137
141
|
}
|
|
138
142
|
type Bundle = ItemBundle | GoldBundle | JojaBundle;
|
|
139
143
|
|
|
144
|
+
type ArtisanGoodBuff = Buff;
|
|
140
145
|
interface ArtisanIngredient {
|
|
141
146
|
name: string;
|
|
142
147
|
id: string | null;
|
|
@@ -164,7 +169,10 @@ interface ArtisanGood {
|
|
|
164
169
|
priceFormula: PriceFormula | null;
|
|
165
170
|
qualityLevels: boolean;
|
|
166
171
|
cask: CaskAging | null;
|
|
167
|
-
|
|
172
|
+
energyHealthFormula: string | null;
|
|
173
|
+
energyHealth?: EnergyHealth | null;
|
|
174
|
+
buffs: ArtisanGoodBuff[];
|
|
175
|
+
buffDuration: number | null;
|
|
168
176
|
maxQuality: ItemQuality;
|
|
169
177
|
image: string;
|
|
170
178
|
}
|
|
@@ -629,10 +637,7 @@ interface Tackle {
|
|
|
629
637
|
image: string;
|
|
630
638
|
}
|
|
631
639
|
|
|
632
|
-
|
|
633
|
-
stat: string;
|
|
634
|
-
value: number;
|
|
635
|
-
}
|
|
640
|
+
type CookingBuff = Buff;
|
|
636
641
|
type RecipeSource = {
|
|
637
642
|
type: 'default';
|
|
638
643
|
} | {
|
|
@@ -2895,4 +2900,4 @@ declare function resolveApiVersion(gameVersion: string): number;
|
|
|
2895
2900
|
*/
|
|
2896
2901
|
declare function parseSaveFile(xml: string): SaveData;
|
|
2897
2902
|
|
|
2898
|
-
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, ArtisanCalculator, type ArtisanEnergyResult, type ArtisanGood, ArtisanGoodQuery, type ArtisanIngredient, type ArtisanResult, type ArtisanUses, type Backpack, type Bait, BaitQuery, type BarItem, type BlacksmithItem, BlacksmithQuery, type BooksellerAvailability, type BooksellerItem, BooksellerItemQuery, type BooksellerTrade, BooksellerTradeQuery, type Building, type BuildingBuilder, type BuildingMaterial, BuildingQuery, type Bundle, type BundleItem, BundleQuery, type BundleReward, type BundleRoom, type CarpenterCategory, type CarpenterDay, type CarpenterItem, CarpenterQuery, type CasinoCategory, type CasinoItem, CasinoQuery, type CaskAging, type CollectionItem, CollectionItemQuery, CollectionsQuery, type Concession, ConcessionQuery, type ConcessionTag, type CookedDish, type CookingBuff, CookingQuery, type CraftingIngredient, type CraftingOutput, CraftingQuery, type CraftingRecipe, type Crop, CropQuery, type DayOfWeek, type DesertTraderDay, type DesertTraderItem, DesertTraderQuery, type DwarfShopCategory, type DwarfShopItem, DwarfShopQuery, type EnergyHealth, EventQuery, type FarmAnimal, type FarmMap, FarmMapQuery, type Festival, type FieldOfficeCollection, type FieldOfficeCollectionData, type FieldOfficeDonation, FieldOfficeDonationQuery, FieldOfficeQuery, type FieldOfficeReward, type Fish, type FishCatchType, type FishPond, type FishPondProduce, FishQuery, type FishRoe, type FishWeather, type FishingRod, type FishingRodLevel, type Footwear, FootwearQuery, type Forageable, ForageableQuery, type FruitTree, type FruitTreeProduce, type GameEvent, type GameLocation, type GeodeContainer, type GiftPreferences, type GoldBundle, type GoldenWalnut, GoldenWalnutQuery, type GoldenWalnutTrackingType, type GrandpaCategory, GrandpaEvaluator, type GrandpaInput, type GrandpaResult, type GrandpaScoreEntry, type GuildCategory, type GuildItem, GuildQuery, type GuildWeaponType, type HarvestQuantity, type Hat, HatQuery, type HeartEvent, type HouseRenovation, HouseRenovationQuery, type HouseUpgrade, type HouseUpgradeMaterial, HouseUpgradeQuery, type Ingredient, type IslandTraderDay, type IslandTraderItem, IslandTraderQuery, type ItemBundle, type ItemQuality, type JojaBundle, type JojaItem, JojaQuery, type KrobusDay, type KrobusItem, KrobusQuery, type KrobusStockType, LATEST_API_VERSION, type LocationCategory, type LocationDay, type LocationHours, LocationQuery, type LocationType, type LostBook, LostBookQuery, MASTERY_LEVELS, type MarnieCategory, type MarnieItem, MarnieQuery, type MasteryLevel, type MasterySkill, type MasteryUnlock, type MedicalSupply, MedicalSupplyQuery, type MeleeWeapon, type Mineral, type MineralItem, MineralQuery, type MixedSeed, type MixedSeedProduces, MixedSeedQuery, type Monster, type MonsterLoot, MonsterLootQuery, MonsterQuery, type MonsterSlayerGoal, MonsterSlayerGoalQuery, type MonsterVariant, type NodeDrop, type NodeItem, type OasisCategory, type OasisDay, type OasisItem, OasisQuery, type OreItem, type PerfectionCategory, PerfectionQuery, type Pet, type PierreCategory, type PierreItem, PierreQuery, type PriceFormula, type ProfessionData, ProfessionQuery, type ProfessionSkill, type QiCurrency, type QiStockItem, QiStockQuery, type Quality, QualityCalculator, type QualityEnergyHealth, type QualityPrice, type Quest, QuestQuery, type RecipeSource, type ResourceItem, type Ring, RingQuery, SKILL_TITLES, type SaloonCategory, type SaloonItem, SaloonQuery, type SaveAnimal, type SaveBuilding, type SaveBundleData, type SaveBundleItem, type SaveBundleReward, type SaveBundleRoom, type SaveBundleStatus, type SaveChild, type SaveCollectionEntry, type SaveData, type SaveDate, type SaveFarm, type SaveFishEntry, type SaveFriendship, type SaveIslandUpgrades, type SaveItem, type SaveMastery, type SaveMasteryPerk, type SaveMineProgress, type SaveMonsterKillEntry, type SaveMuseum, type SavePerfection, type SavePet, type SavePlayer, type SavePowerEntry, type SavePowers, type SaveProfession, type SaveQuest, type SaveRaccoons, type SaveRecipeEntry, type SaveSecretNotes, type SaveShippedEntry, type SaveSkillLevel, type SaveSkills, type SaveSpecialOrders, type SaveStardropEntry, type SaveStats, type SaveWalnuts, type SearchResult, type SearchResultKind, type Season, type SeasonData, SeasonQuery, type SecretNote, SecretNoteQuery, type SecretNoteType, type SeedBuyPrice, type SimpleTool, type Skill, type SkillLevel, type SkillLevelRecipes, type SkillMastery, SkillQuery, type SlayerReward, type Slingshot, type SmeltRecipe, type SpecialItem, SpecialItemQuery, type SpecialItemType, type SpecialOrderCategory, type SpecialOrderData, SpecialOrderQuery, type Stage, type StarDrop, StarDropQuery, type StarDropSource, type Tackle, TackleQuery, type TitleThreshold, type Tool, type ToolLevel, ToolQuery, type ToolType, type TraderShopItem, type Tree, TreeQuery, type Trinket, TrinketQuery, type TrinketSource, type UniversalGifts, type UpgradeLevel, type UpgradeableTool, type VersionRange, type Villager, VillagerQuery, type VolcanoShopCategory, type VolcanoShopCurrency, type VolcanoShopItem, VolcanoShopQuery, type Weapon, WeaponQuery, type WeaponStat, WeaponStatQuery, type WeaponType, type Weather, WeatherQuery, type WildTree, type WildTreeTapper, type WillyCategory, type WillyItem, WillyQuery, type WizardBuilding, type WizardBuildingMaterial, WizardQuery, achievements, animals, applyPriceFormula, artifacts, artisanCalculator, artisanGoods, bait, blacksmith, booksellerShop, booksellerTrades, buildings, bundles, calculateArtisanPrice, carpenter, casino, collections, concessions, cooking, crafting, crops, desertTrader, dwarfShop, events, fieldOffice, fieldOfficeDonations, findFestival, fish, footwear, forageables, getMasteryLevel, getProfessionOptions, getTitle, getTitleScore, goldenWalnuts, grandpaEvaluator, guild, hats, houseRenovations, houseUpgrades, isFarmAnimal, isPet, islandTrader, joja, krobus, locations, lostBooks, maps, marnie, medicalSupplies, minerals, mixedSeeds, monsterLoot, monsterSlayerGoals, monsters, oasis, parseSaveFile, perfection, pierre, professions, qiStock, qualityCalculator, quests, resolveApiVersion, rings, saloon, search, seasons, secretNotes, skills, specialItems, specialOrders, starDrops, tackle, tools, trees, trinkets, universalGifts, villagers, volcanoShop, weaponStats, weapons, weather, willy, wizard };
|
|
2903
|
+
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, ArtisanCalculator, type ArtisanEnergyResult, type ArtisanGood, type ArtisanGoodBuff, ArtisanGoodQuery, type ArtisanIngredient, type ArtisanResult, type ArtisanUses, type Backpack, type Bait, BaitQuery, type BarItem, type BlacksmithItem, BlacksmithQuery, type BooksellerAvailability, type BooksellerItem, BooksellerItemQuery, type BooksellerTrade, BooksellerTradeQuery, type Buff, type Building, type BuildingBuilder, type BuildingMaterial, BuildingQuery, type Bundle, type BundleItem, BundleQuery, type BundleReward, type BundleRoom, type CarpenterCategory, type CarpenterDay, type CarpenterItem, CarpenterQuery, type CasinoCategory, type CasinoItem, CasinoQuery, type CaskAging, type CollectionItem, CollectionItemQuery, CollectionsQuery, type Concession, ConcessionQuery, type ConcessionTag, type CookedDish, type CookingBuff, CookingQuery, type CraftingIngredient, type CraftingOutput, CraftingQuery, type CraftingRecipe, type Crop, CropQuery, type DayOfWeek, type DesertTraderDay, type DesertTraderItem, DesertTraderQuery, type DwarfShopCategory, type DwarfShopItem, DwarfShopQuery, type EnergyHealth, EventQuery, type FarmAnimal, type FarmMap, FarmMapQuery, type Festival, type FieldOfficeCollection, type FieldOfficeCollectionData, type FieldOfficeDonation, FieldOfficeDonationQuery, FieldOfficeQuery, type FieldOfficeReward, type Fish, type FishCatchType, type FishPond, type FishPondProduce, FishQuery, type FishRoe, type FishWeather, type FishingRod, type FishingRodLevel, type Footwear, FootwearQuery, type Forageable, ForageableQuery, type FruitTree, type FruitTreeProduce, type GameEvent, type GameLocation, type GeodeContainer, type GiftPreferences, type GoldBundle, type GoldenWalnut, GoldenWalnutQuery, type GoldenWalnutTrackingType, type GrandpaCategory, GrandpaEvaluator, type GrandpaInput, type GrandpaResult, type GrandpaScoreEntry, type GuildCategory, type GuildItem, GuildQuery, type GuildWeaponType, type HarvestQuantity, type Hat, HatQuery, type HeartEvent, type HouseRenovation, HouseRenovationQuery, type HouseUpgrade, type HouseUpgradeMaterial, HouseUpgradeQuery, type Ingredient, type IslandTraderDay, type IslandTraderItem, IslandTraderQuery, type ItemBundle, type ItemQuality, type JojaBundle, type JojaItem, JojaQuery, type KrobusDay, type KrobusItem, KrobusQuery, type KrobusStockType, LATEST_API_VERSION, type LocationCategory, type LocationDay, type LocationHours, LocationQuery, type LocationType, type LostBook, LostBookQuery, MASTERY_LEVELS, type MarnieCategory, type MarnieItem, MarnieQuery, type MasteryLevel, type MasterySkill, type MasteryUnlock, type MedicalSupply, MedicalSupplyQuery, type MeleeWeapon, type Mineral, type MineralItem, MineralQuery, type MixedSeed, type MixedSeedProduces, MixedSeedQuery, type Monster, type MonsterLoot, MonsterLootQuery, MonsterQuery, type MonsterSlayerGoal, MonsterSlayerGoalQuery, type MonsterVariant, type NodeDrop, type NodeItem, type OasisCategory, type OasisDay, type OasisItem, OasisQuery, type OreItem, type PerfectionCategory, PerfectionQuery, type Pet, type PierreCategory, type PierreItem, PierreQuery, type PriceFormula, type ProfessionData, ProfessionQuery, type ProfessionSkill, type QiCurrency, type QiStockItem, QiStockQuery, type Quality, QualityCalculator, type QualityEnergyHealth, type QualityPrice, type Quest, QuestQuery, type RecipeSource, type ResourceItem, type Ring, RingQuery, SKILL_TITLES, type SaloonCategory, type SaloonItem, SaloonQuery, type SaveAnimal, type SaveBuilding, type SaveBundleData, type SaveBundleItem, type SaveBundleReward, type SaveBundleRoom, type SaveBundleStatus, type SaveChild, type SaveCollectionEntry, type SaveData, type SaveDate, type SaveFarm, type SaveFishEntry, type SaveFriendship, type SaveIslandUpgrades, type SaveItem, type SaveMastery, type SaveMasteryPerk, type SaveMineProgress, type SaveMonsterKillEntry, type SaveMuseum, type SavePerfection, type SavePet, type SavePlayer, type SavePowerEntry, type SavePowers, type SaveProfession, type SaveQuest, type SaveRaccoons, type SaveRecipeEntry, type SaveSecretNotes, type SaveShippedEntry, type SaveSkillLevel, type SaveSkills, type SaveSpecialOrders, type SaveStardropEntry, type SaveStats, type SaveWalnuts, type SearchResult, type SearchResultKind, type Season, type SeasonData, SeasonQuery, type SecretNote, SecretNoteQuery, type SecretNoteType, type SeedBuyPrice, type SimpleTool, type Skill, type SkillLevel, type SkillLevelRecipes, type SkillMastery, SkillQuery, type SlayerReward, type Slingshot, type SmeltRecipe, type SpecialItem, SpecialItemQuery, type SpecialItemType, type SpecialOrderCategory, type SpecialOrderData, SpecialOrderQuery, type Stage, type StarDrop, StarDropQuery, type StarDropSource, type Tackle, TackleQuery, type TitleThreshold, type Tool, type ToolLevel, ToolQuery, type ToolType, type TraderShopItem, type Tree, TreeQuery, type Trinket, TrinketQuery, type TrinketSource, type UniversalGifts, type UpgradeLevel, type UpgradeableTool, type VersionRange, type Villager, VillagerQuery, type VolcanoShopCategory, type VolcanoShopCurrency, type VolcanoShopItem, VolcanoShopQuery, type Weapon, WeaponQuery, type WeaponStat, WeaponStatQuery, type WeaponType, type Weather, WeatherQuery, type WildTree, type WildTreeTapper, type WillyCategory, type WillyItem, WillyQuery, type WizardBuilding, type WizardBuildingMaterial, WizardQuery, achievements, animals, applyPriceFormula, artifacts, artisanCalculator, artisanGoods, bait, blacksmith, booksellerShop, booksellerTrades, buildings, bundles, calculateArtisanPrice, carpenter, casino, collections, concessions, cooking, crafting, crops, desertTrader, dwarfShop, events, fieldOffice, fieldOfficeDonations, findFestival, fish, footwear, forageables, getMasteryLevel, getProfessionOptions, getTitle, getTitleScore, goldenWalnuts, grandpaEvaluator, guild, hats, houseRenovations, houseUpgrades, isFarmAnimal, isPet, islandTrader, joja, krobus, locations, lostBooks, maps, marnie, medicalSupplies, minerals, mixedSeeds, monsterLoot, monsterSlayerGoals, monsters, oasis, parseSaveFile, perfection, pierre, professions, qiStock, qualityCalculator, quests, resolveApiVersion, rings, saloon, search, seasons, secretNotes, skills, specialItems, specialOrders, starDrops, tackle, tools, trees, trinkets, universalGifts, villagers, volcanoShop, weaponStats, weapons, weather, willy, wizard };
|