stardew-valley-data 0.17.0 → 0.19.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 CHANGED
@@ -5,6 +5,20 @@ 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.19.0] - 2026-03-21
9
+
10
+ ### Fix
11
+
12
+ - Add missing Monsters
13
+ - Update Monster Slayer Goals to use proper ids of monsters
14
+
15
+ ## [0.18.0] - 2026-03-21
16
+
17
+ ### Added
18
+
19
+ - Add Bookseller possible dates to seasons data
20
+ - Add Bookseller Calendar icon
21
+
8
22
  ## [0.17.0] - 2026-03-21
9
23
 
10
24
  ### Fix
@@ -3,7 +3,7 @@
3
3
  "id": "Slimes",
4
4
  "name": "Slime",
5
5
  "killTarget": 1000,
6
- "monsters": ["Green Slime", "Frost Jelly", "Sludge", "Tiger Slime"],
6
+ "monsters": ["Green Slime", "Frost Jelly", "Big Slime", "Tiger Slime", "Prismatic Slime"],
7
7
  "reward": {
8
8
  "name": "Slime Charmer Ring",
9
9
  "itemId": "(O)520",
@@ -14,7 +14,7 @@
14
14
  "id": "Shadows",
15
15
  "name": "Void Spirits",
16
16
  "killTarget": 150,
17
- "monsters": ["Shadow Guy", "Shadow Shaman", "Shadow Brute", "Shadow Sniper"],
17
+ "monsters": ["Shadow Shaman", "Shadow Brute", "Shadow Sniper"],
18
18
  "reward": {
19
19
  "name": "Savage Ring",
20
20
  "itemId": "(O)523",
@@ -47,7 +47,7 @@
47
47
  "id": "Insects",
48
48
  "name": "Cave Insects",
49
49
  "killTarget": 80,
50
- "monsters": ["Grub", "Fly", "Bug"],
50
+ "monsters": ["Grub", "Cave Fly", "Bug"],
51
51
  "reward": {
52
52
  "name": "Insect Head",
53
53
  "itemId": "(W)13",
@@ -11,17 +11,6 @@
11
11
  "lootIds": ["766"],
12
12
  "dangerous": false,
13
13
  "variants": [
14
- {
15
- "name": "Blue Slime",
16
- "hp": 106,
17
- "damage": 7,
18
- "speed": 0,
19
- "xp": 6,
20
- "image": "images/monsters/Blue Slime.png",
21
- "locations": ["The Mines (Floors 41-79)", "The Farm"],
22
- "lootIds": ["766"],
23
- "dangerous": false
24
- },
25
14
  {
26
15
  "name": "Red Slime",
27
16
  "hp": 205,
@@ -68,6 +57,19 @@
68
57
  }
69
58
  ]
70
59
  },
60
+ {
61
+ "id": "Frost Jelly",
62
+ "name": "Frost Jelly",
63
+ "hp": 106,
64
+ "damage": 7,
65
+ "speed": 0,
66
+ "xp": 6,
67
+ "image": "images/monsters/Blue Slime.png",
68
+ "locations": ["The Mines (Floors 41-79)", "The Farm"],
69
+ "lootIds": ["766"],
70
+ "dangerous": false,
71
+ "variants": []
72
+ },
71
73
  {
72
74
  "id": "Big Slime",
73
75
  "name": "Big Slime",
@@ -622,5 +624,18 @@
622
624
  "locations": ["Volcano Dungeon"],
623
625
  "lootIds": [],
624
626
  "dangerous": false
627
+ },
628
+ {
629
+ "id": "Prismatic Slime",
630
+ "name": "Prismatic Slime",
631
+ "hp": 1000,
632
+ "damage": 35,
633
+ "speed": 2,
634
+ "xp": 10,
635
+ "image": "images/monsters/Prismatic Slime.gif",
636
+ "locations": ["The Mines", "Quarry Mine", "Skull Cavern"],
637
+ "lootIds": ["766", "74"],
638
+ "dangerous": false,
639
+ "variants": []
625
640
  }
626
641
  ]
package/data/seasons.json CHANGED
@@ -26,7 +26,8 @@
26
26
  "image": "images/seasons/festivals/Flower Dance.jpg",
27
27
  "calendarIcon": "images/seasons/calendar-icons/Festival Flag.gif"
28
28
  }
29
- ]
29
+ ],
30
+ "bookseller": [11, 12, 21, 22, 25]
30
31
  },
31
32
  {
32
33
  "id": "summer",
@@ -55,7 +56,8 @@
55
56
  "image": "images/seasons/festivals/Dance of the Moonlight Jellies.jpg",
56
57
  "calendarIcon": "images/seasons/calendar-icons/Festival Flag.gif"
57
58
  }
58
- ]
59
+ ],
60
+ "bookseller": [9, 12, 18, 25, 27]
59
61
  },
60
62
  {
61
63
  "id": "fall",
@@ -77,7 +79,8 @@
77
79
  "image": "images/seasons/festivals/Spirit's Eve.png",
78
80
  "calendarIcon": "images/seasons/calendar-icons/Festival Flag.gif"
79
81
  }
80
- ]
82
+ ],
83
+ "bookseller": [4, 7, 8, 9, 12, 19, 22, 25]
81
84
  },
82
85
  {
83
86
  "id": "winter",
@@ -113,6 +116,7 @@
113
116
  "image": "images/seasons/festivals/Feast of the Winter Star.png",
114
117
  "calendarIcon": "images/seasons/calendar-icons/Festival Flag.gif"
115
118
  }
116
- ]
119
+ ],
120
+ "bookseller": [5, 11, 12, 19, 22, 24]
117
121
  }
118
122
  ]
package/dist/index.d.mts CHANGED
@@ -363,6 +363,7 @@ interface SeasonData {
363
363
  totalDays: number;
364
364
  image: string;
365
365
  festivals: Festival[];
366
+ bookseller: number[];
366
367
  }
367
368
 
368
369
  interface ChoppedTreeProduce {
package/dist/index.d.ts CHANGED
@@ -363,6 +363,7 @@ interface SeasonData {
363
363
  totalDays: number;
364
364
  image: string;
365
365
  festivals: Festival[];
366
+ bookseller: number[];
366
367
  }
367
368
 
368
369
  interface ChoppedTreeProduce {
package/dist/index.js CHANGED
@@ -8009,17 +8009,6 @@ var monsters_default = [
8009
8009
  lootIds: ["766"],
8010
8010
  dangerous: false,
8011
8011
  variants: [
8012
- {
8013
- name: "Blue Slime",
8014
- hp: 106,
8015
- damage: 7,
8016
- speed: 0,
8017
- xp: 6,
8018
- image: "images/monsters/Blue Slime.png",
8019
- locations: ["The Mines (Floors 41-79)", "The Farm"],
8020
- lootIds: ["766"],
8021
- dangerous: false
8022
- },
8023
8012
  {
8024
8013
  name: "Red Slime",
8025
8014
  hp: 205,
@@ -8066,6 +8055,19 @@ var monsters_default = [
8066
8055
  }
8067
8056
  ]
8068
8057
  },
8058
+ {
8059
+ id: "Frost Jelly",
8060
+ name: "Frost Jelly",
8061
+ hp: 106,
8062
+ damage: 7,
8063
+ speed: 0,
8064
+ xp: 6,
8065
+ image: "images/monsters/Blue Slime.png",
8066
+ locations: ["The Mines (Floors 41-79)", "The Farm"],
8067
+ lootIds: ["766"],
8068
+ dangerous: false,
8069
+ variants: []
8070
+ },
8069
8071
  {
8070
8072
  id: "Big Slime",
8071
8073
  name: "Big Slime",
@@ -8620,6 +8622,19 @@ var monsters_default = [
8620
8622
  locations: ["Volcano Dungeon"],
8621
8623
  lootIds: [],
8622
8624
  dangerous: false
8625
+ },
8626
+ {
8627
+ id: "Prismatic Slime",
8628
+ name: "Prismatic Slime",
8629
+ hp: 1e3,
8630
+ damage: 35,
8631
+ speed: 2,
8632
+ xp: 10,
8633
+ image: "images/monsters/Prismatic Slime.gif",
8634
+ locations: ["The Mines", "Quarry Mine", "Skull Cavern"],
8635
+ lootIds: ["766", "74"],
8636
+ dangerous: false,
8637
+ variants: []
8623
8638
  }
8624
8639
  ];
8625
8640
 
@@ -8684,7 +8699,7 @@ var monster_slayer_goals_default = [
8684
8699
  id: "Slimes",
8685
8700
  name: "Slime",
8686
8701
  killTarget: 1e3,
8687
- monsters: ["Green Slime", "Frost Jelly", "Sludge", "Tiger Slime"],
8702
+ monsters: ["Green Slime", "Frost Jelly", "Big Slime", "Tiger Slime", "Prismatic Slime"],
8688
8703
  reward: {
8689
8704
  name: "Slime Charmer Ring",
8690
8705
  itemId: "(O)520",
@@ -8695,7 +8710,7 @@ var monster_slayer_goals_default = [
8695
8710
  id: "Shadows",
8696
8711
  name: "Void Spirits",
8697
8712
  killTarget: 150,
8698
- monsters: ["Shadow Guy", "Shadow Shaman", "Shadow Brute", "Shadow Sniper"],
8713
+ monsters: ["Shadow Shaman", "Shadow Brute", "Shadow Sniper"],
8699
8714
  reward: {
8700
8715
  name: "Savage Ring",
8701
8716
  itemId: "(O)523",
@@ -8728,7 +8743,7 @@ var monster_slayer_goals_default = [
8728
8743
  id: "Insects",
8729
8744
  name: "Cave Insects",
8730
8745
  killTarget: 80,
8731
- monsters: ["Grub", "Fly", "Bug"],
8746
+ monsters: ["Grub", "Cave Fly", "Bug"],
8732
8747
  reward: {
8733
8748
  name: "Insect Head",
8734
8749
  itemId: "(W)13",
@@ -27560,7 +27575,8 @@ var seasons_default = [
27560
27575
  image: "images/seasons/festivals/Flower Dance.jpg",
27561
27576
  calendarIcon: "images/seasons/calendar-icons/Festival Flag.gif"
27562
27577
  }
27563
- ]
27578
+ ],
27579
+ bookseller: [11, 12, 21, 22, 25]
27564
27580
  },
27565
27581
  {
27566
27582
  id: "summer",
@@ -27589,7 +27605,8 @@ var seasons_default = [
27589
27605
  image: "images/seasons/festivals/Dance of the Moonlight Jellies.jpg",
27590
27606
  calendarIcon: "images/seasons/calendar-icons/Festival Flag.gif"
27591
27607
  }
27592
- ]
27608
+ ],
27609
+ bookseller: [9, 12, 18, 25, 27]
27593
27610
  },
27594
27611
  {
27595
27612
  id: "fall",
@@ -27611,7 +27628,8 @@ var seasons_default = [
27611
27628
  image: "images/seasons/festivals/Spirit's Eve.png",
27612
27629
  calendarIcon: "images/seasons/calendar-icons/Festival Flag.gif"
27613
27630
  }
27614
- ]
27631
+ ],
27632
+ bookseller: [4, 7, 8, 9, 12, 19, 22, 25]
27615
27633
  },
27616
27634
  {
27617
27635
  id: "winter",
@@ -27647,7 +27665,8 @@ var seasons_default = [
27647
27665
  image: "images/seasons/festivals/Feast of the Winter Star.png",
27648
27666
  calendarIcon: "images/seasons/calendar-icons/Festival Flag.gif"
27649
27667
  }
27650
- ]
27668
+ ],
27669
+ bookseller: [5, 11, 12, 19, 22, 24]
27651
27670
  }
27652
27671
  ];
27653
27672