forked from Pathoschild/StardewMods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
704 lines (669 loc) · 20.2 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
/*
This file provides metadata to the mod that isn't available from the game (e.g. because it's buried in the logic).
You shouldn't change this file unless you know what you're doing.
*/
{
/*********
** Constants
*********/
"Constants": {
/* animals */
"AnimalFriendshipPointsPerLevel": 200,
"AnimalFriendshipMaxPoints": 1000,
"AnimalMaxHappiness": 255,
/* fruit trees */
"FruitTreeQualityGrowthTime": 112,
/* NPCs */
"AsocialVillagers": [ "Bouncer", "Gunther", "Henchman", "Marlon", "Mister Qi" ],
"DatingHearts": 2,
"SpouseMaxFriendship": 3000,
"SpouseFriendshipForStardrop": 3375,
/* players */
"PlayerMaxSkillPoints": 15000,
"PlayerSkillPointsPerLevel": [ 100, 380, 770, 1300, 2150, 3300, 4800, 6900, 10000, 15000 ],
/* time */
"DaysInSeason": 28,
"FenceDecayRate": 1440,
/* crafting */
"CaskAgeSchedule": {
"Silver": 14,
"Gold": 28,
"Iridium": 56
},
/* items */
"ItemsWithIridiumQuality": [
/* animal products */
-5, // eggs
-6, // milks
430, // truffle
440, // wool
444, // duck feather
446, // rabbit's foot
/* forage (foods) */
16, // wild horseradish
18, // daffodil
20, // leek
22, // dandelion
78, // cave carrot
88, // coconut
90, // cactus fruit
257, // morel
259, // fiddlehead fern
281, // chanterelle
283, // holly
296, // salmonberry
396, // spice berry
398, // grape
399, // spring onion
402, // sweet pea
404, // common mushroom
406, // wild plum
408, // hazelnut
410, // blackberry
412, // winter root
414, // crystal fruit
416, // snow yam
420, // red mushroom
422, // purple mushroom
/* forage (beach) */
372, // clam
392, // nautilus shell
393, // coral
394, // rainbow shell
397, // sea urchin
719, // mussel
723, // oyster
/* fruit tree produce */
613, // apple
634, // apricot
635, // orange
636, // peach
637, // pomegranate
638, // cherry
/* cask-aged artisanal products */
303, // pale ale
346, // beer
348, // wine
424, // cheese
426, // goat cheese
459 // mead
],
/* achievements */
"PolycultureCrops": [ 24, 188, 190, 192, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 300, 304, 398, 400, 433 ],
"PolycultureCount": 15
},
/*********
** Shops
*********/
"Shops": [
{
"LocationName": "AdventureGuild",
"DisplayKey": "shop.adventure-guild",
"BuysCategories": [ -28, -98, -97, -96 ]
},
{
"LocationName": "Blacksmith",
"DisplayKey": "shop.clint",
"BuysCategories": [ -12, -2, -15 ]
},
{
"LocationName": "AnimalShop",
"DisplayKey": "shop.marnie",
"BuysCategories": [ -18, -6, -5, -14 ]
},
{
"LocationName": "SeedShop",
"DisplayKey": "shop.pierre",
"BuysCategories": [ -81, -75, -79, -80, -74, -17, -18, -6, -26, -5, -14, -19, -7, -25 ]
},
{
"LocationName": "ScienceHouse",
"DisplayKey": "shop.robin",
"BuysCategories": [ -16 ]
},
{
"LocationName": "FishShop",
"DisplayKey": "shop.willy",
"BuysCategories": [ -4, -23, -21, -22 ]
}
],
/*********
** Building recipes (not available from game data)
*********/
"BuildingRecipes": [
/* mill */
{
"BuildingKey": "Mill",
"Ingredients": {
"262": 1 // wheat
},
"Output": 246 // wheat flour
},
{
"BuildingKey": "Mill",
"Ingredients": {
"284": 1 // beet
},
"Output": 245 // sugar
}
],
/*********
** Machine recipes (not available from game data)
*********/
"MachineRecipes": [
/* charcoal kiln */
{
"MachineID": 114,
"Ingredients": {
"388": 10 // wood
},
"Output": 382 // coal
},
/* cheese press */
{
"MachineID": 16,
"Ingredients": {
"184": 1, // milk
"186": 1 // or large milk
},
"Output": 424 // cheese
},
{
"MachineID": 16,
"Ingredients": {
"436": 1, // goat milk
"438": 1 // or goat milk
},
"Output": 426 // goat cheese
},
/* furnace */
{
"MachineID": 13,
"Ingredients": {
"382": 1, // coal
"378": 5 // copper ore
},
"Output": 334 // copper bar
},
{
"MachineID": 13,
"Ingredients": {
"382": 1, // coal
"380": 5 // iron ore
},
"Output": 335 // iron bar
},
{
"MachineID": 13,
"Ingredients": {
"382": 1, // coal
"384": 5 // gold ore
},
"Output": 336 // gold bar
},
{
"MachineID": 13,
"Ingredients": {
"382": 1, // coal
"386": 5 // gold ore
},
"Output": 337 // iridium bar
},
{
"MachineID": 13,
"Ingredients": {
"382": 1, // coal
"80": 1 // quartz
},
"Output": 338 // refined quartz
},
/* keg */
{
"MachineID": 12,
"Ingredients": {
"262": 1 // wheat
},
"Output": 346 // beer
},
{
"MachineID": 12,
"Ingredients": {
"433": 5 // coffee bean
},
"Output": 395 // coffee
},
{
"MachineID": 12,
"Ingredients": {
"340": 1 // honey
},
"Output": 459 // mead
},
{
"MachineID": 12,
"Ingredients": {
"304": 1 // hops
},
"Output": 303 // pale ale
},
{
"MachineID": 12,
"Ingredients": {
"-79": 1 // any fruit
},
"ExceptIngredients": [ 262, 304 ],
"Output": 348 // wine
},
{
"MachineID": 12,
"Ingredients": {
"-75": 1 // any vegetable
},
"ExceptIngredients": [ 262, 304 ],
"Output": 350 // juice
},
/* loom */
{
"MachineID": 17,
"Ingredients": {
"440": 1 // wool
},
"Output": 428 // cloth
},
/* mayonnaise machine */
{
"MachineID": 24,
"Ingredients": {
"107": 1, // dinosaur egg
"174": 1, // or large white egg
"176": 1, // or white egg
"180": 1, // or brown egg
"182": 1 // or large brown egg
},
"Output": 306 // mayonnaise
},
{
"MachineID": 24,
"Ingredients": {
"442": 1 // duck egg
},
"Output": 307 // duck mayonnaise
},
{
"MachineID": 24,
"Ingredients": {
"305": 1 // void egg
},
"Output": 308 // void mayonnaise
},
/* oil maker */
{
"MachineID": 19,
"Ingredients": {
"430": 1 // truffle
},
"Output": 432 // truffle oil
},
{
"MachineID": 19,
"Ingredients": {
"270": 1, // corn
"421": 1, // or sunflower
"431": 1 // or sunflower seeds
},
"Output": 247 // oil
},
/* preserves jar */
{
"MachineID": 15,
"Ingredients": {
"-79": 1 // any fruit
},
"Output": 344 // jelly
},
{
"MachineID": 15,
"Ingredients": {
"-75": 1 // any vegetable
},
"Output": 342 // pickled
},
/* recycling machine */
{
"MachineID": 20,
"Ingredients": {
"168": 1, // trash
"169": 1 // or driftwood
},
"Output": 382 // coal
},
{
"MachineID": 20,
"Ingredients": {
"168": 1 // trash
},
"Output": 380 // iron ore
},
{
"MachineID": 20,
"Ingredients": {
"170": 1, // broken glasses
"171": 1, // or broken CD
"172": 1 // or soggy newspaper
},
"Output": 338 // refined quartz
},
{
"MachineID": 20,
"Ingredients": {
"168": 1 // trash
},
"Output": 390 // stone
},
{
"MachineID": 20,
"Ingredients": {
"169": 1 // driftwood
},
"Output": 388 // wood
},
/* slime egg-press */
{
"MachineID": 158,
"Ingredients": {
"766": 100 // slime
},
"Output": 680 // green slime egg
},
{
"MachineID": 158,
"Ingredients": {
"766": 100 // slime
},
"Output": 439 // purple slime egg
},
{
"MachineID": 158,
"Ingredients": {
"766": 100 // slime
},
"Output": 437 // red slime egg
},
{
"MachineID": 158,
"Ingredients": {
"766": 100 // slime
},
"Output": 413 // blue slime egg
}
],
/*********
** Added metadata for NPCs (including villagers, pets, farm animals, monsters, etc).
*********/
"Characters": [
{
"ID": "Pet",
"DescriptionKey": "data.npc.pet.description"
},
{
"ID": "Horse",
"DescriptionKey": "data.npc.horse.description"
},
{
"ID": "Junimo",
"DescriptionKey": "data.npc.junimo.description"
}
],
/*********
** Corrects metadata for game objects (including inventory items, terrain features, crops, trees, and other map objects).
*********/
"Objects": [
/****
** Farm
****/
{
"SpriteSheet": "BigCraftable",
"SpriteID": [ 102 /*duck or white egg*/, 103 /*brown or void egg*/ ],
"Context": "World",
"DescriptionKey": "data.item.egg-incubator.description" // no description when it contains an egg
},
{
"SpriteID": [ 294, 295 ],
"Context": "World",
"NameKey": "data.item.broken-branch.name",
"TypeKey": "data.type.debris",
"DescriptionKey": "data.item.broken-branch.description" // no meaningful default
},
{
"SpriteID": [ 343, 450 ],
"Context": "World",
"NameKey": "data.item.stone.name",
"TypeKey": "data.type.debris", // default is 'asdf'
"DescriptionKey": "data.item.stone.description", // no meaningful default
"ShowInventoryFields": false
},
{
"SpriteID": [ 75 ],
"Context": "World",
"NameKey": "data.item.geode.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.geode.description", // no meaningful default
"ShowInventoryFields": false
},
{
"SpriteID": [ 76 ],
"Context": "World",
"NameKey": "data.item.frozen-geode.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.frozen-geode.name", // no meaningful default
"ShowInventoryFields": false
},
{
"SpriteID": [ 77 ],
"Context": "World",
"NameKey": "data.item.magma-geode.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.magma-geode.description", // no meaningful default
"ShowInventoryFields": false
},
/****
** Weeds & crystals (all identified as "Weeds" with no meaningful description, with a sale price despite being unsellable)
****/
{
"SpriteID": [ 313, 314, 315, 316, 317, 318, 452, 674, 675, 676, 677, 678, 679, 750, 784, 785, 786 ],
"Context": "World",
"NameKey": "data.item.weed.name",
"TypeKey": "data.type.debris",
"DescriptionKey": "data.item.weed.description",
"ShowInventoryFields": false
},
{
"SpriteID": [ 792, 793, 794 ],
"Context": "World",
"NameKey": "data.item.fertile-weed.name",
"TypeKey": "data.type.debris",
"DescriptionKey": "data.item.fertile-weed.description",
"ShowInventoryFields": false
},
{
"SpriteID": [ 319, 320, 321 ],
"Context": "World",
"NameKey": "data.item.ice-crystal.name",
"TypeKey": "data.type.debris",
"DescriptionKey": "data.item.ice-crystal.description",
"ShowInventoryFields": false
},
/****
** Mine stones (all identified as "Stone" with no meaningful description)
****/
/* gems */
{
"SpriteID": [ 8, 66 ],
"Context": "World",
"NameKey": "data.item.amethyst-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.amethyst-node.description"
},
{
"SpriteID": [ 14, 62 ],
"Context": "World",
"NameKey": "data.item.aquamarine-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.aquamarine-node.description"
},
{
"SpriteID": [ 2 /*skull cavern*/, 72 ],
"Context": "World",
"NameKey": "data.item.diamond-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.diamond-node.description"
},
{
"SpriteID": [ 12 /*skull cavern*/, 60 ],
"Context": "World",
"NameKey": "data.item.emerald-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.emerald-node.description"
},
{
"SpriteID": [ 44 ],
"Context": "World",
"NameKey": "data.item.gem-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.gem-node.description"
},
{
"SpriteID": [ 6, 70 ],
"Context": "World",
"NameKey": "data.item.jade-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.jade-node.description"
},
{
"SpriteID": [ 46 ],
"Context": "World",
"NameKey": "data.item.mystic-stone.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.mystic-stone.description"
},
{
"SpriteID": [ 74 ],
"Context": "World",
"NameKey": "data.item.prismatic-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.prismatic-node.description"
},
{
"SpriteID": [ 4 /*skull cavern*/, 64 ],
"Context": "World",
"NameKey": "data.item.ruby-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.ruby-node.description"
},
{
"SpriteID": [ 10, 68 ],
"Context": "World",
"NameKey": "data.item.topaz-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.topaz-node.description"
},
/* ores */
{
"SpriteID": [ 751 ],
"Context": "World",
"NameKey": "data.item.copper-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.copper-node.description"
},
{
"SpriteID": [ 764 ],
"Context": "World",
"NameKey": "data.item.gold-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.gold-node.description"
},
{
"SpriteID": [ 765 ],
"Context": "World",
"NameKey": "data.item.iridum-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.iridum-node.description"
},
{
"SpriteID": [ 290 ],
"Context": "World",
"NameKey": "data.item.iron-node.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.iron-node.description",
"ShowInventoryFields": false
},
/* stones */
{
"SpriteID": [ 32 /*grey*/, 34 /*blue*/, 36 /*blue*/, 38 /*blue*/, 40 /*brown*/, 42 /*brown*/, 48 /*snowy*/, 50 /*snowy*/, 52 /*snowy*/, 54 /*snowy*/, 56 /*snowy*/, 58 /*snowy*/ ],
"Context": "World",
"NameKey": "data.item.colored-stone.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.colored-stone.description"
},
{
"SpriteID": [ 670 ],
"Context": "World",
"NameKey": "data.item.mine-stone.name",
"TypeKey": "data.type.stone",
"DescriptionKey": "data.item.mine-stone.name"
},
/****
** Mine containers (all identified as "Barrel" with no meaningful description)
****/
{
"SpriteSheet": "BigCraftable",
"SpriteID": [ 118 /*barrel*/, 120 /*frost barrel*/, 122 /*dark barrel*/, 124 /*desert barrel*/ ],
"Context": "World",
"NameKey": "data.item.barrel.name",
"TypeKey": "data.type.container",
"DescriptionKey": "data.item.barrel.description"
},
{
"SpriteSheet": "BigCraftable",
"SpriteID": [ 119 /*box*/, 121 /*frost box*/, 123 /*dark box*/, 125 /*desert box*/ ],
"Context": "World",
"NameKey": "data.item.box.name",
"TypeKey": "data.type.container",
"DescriptionKey": "data.item.box.description"
}
],
/*********
** Information about Adventure Guild monster-slaying quests.
** Extracted from AdventureGuild::showMonsterKillList().
*********/
"AdventureGuildQuests": [
{
"Targets": [ "Green Slime", "Frost Jelly", "Sludge" ],
"RequiredKills": 1000
},
{
"Targets": [ "Shadow Guy", "Shadow Shaman", "Shadow Brute" ],
"RequiredKills": 150
},
{
"Targets": [ "Bat", "Frost Bat", "Lava Bat" ],
"RequiredKills": 200
},
{
"Targets": [ "Skeleton", "Skeleton Mage" ],
"RequiredKills": 50
},
{
"Targets": [ "Grub", "Fly", "Bug" ],
"RequiredKills": 125
},
{
"Targets": [ "Duggy" ],
"RequiredKills": 30
},
{
"Targets": [ "Dust Spirit" ],
"RequiredKills": 500
}
]
}