stardew-valley-data 0.4.0 → 0.5.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 +17 -0
- package/data/skills.json +148 -55
- package/data/tools.json +62 -63
- package/dist/index.d.mts +13 -5
- package/dist/index.d.ts +13 -5
- package/dist/index.js +218 -119
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +218 -119
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -17125,7 +17125,7 @@ var tools_default = [
|
|
|
17125
17125
|
type: "upgradeable",
|
|
17126
17126
|
name: "Trash Can",
|
|
17127
17127
|
description: "Discard items from your inventory. Higher upgrades refund a percentage of the item's sell value.",
|
|
17128
|
-
canEnchant:
|
|
17128
|
+
canEnchant: false,
|
|
17129
17129
|
levels: [
|
|
17130
17130
|
{
|
|
17131
17131
|
level: "basic",
|
|
@@ -17172,7 +17172,7 @@ var tools_default = [
|
|
|
17172
17172
|
{
|
|
17173
17173
|
id: "pan",
|
|
17174
17174
|
type: "upgradeable",
|
|
17175
|
-
name: "
|
|
17175
|
+
name: "Pan",
|
|
17176
17176
|
description: "Gather ore, gems, and other items from shimmering spots in water. Higher upgrades increase yield and chance for special items.",
|
|
17177
17177
|
canEnchant: true,
|
|
17178
17178
|
levels: [
|
|
@@ -17211,69 +17211,68 @@ var tools_default = [
|
|
|
17211
17211
|
]
|
|
17212
17212
|
},
|
|
17213
17213
|
{
|
|
17214
|
-
id: "
|
|
17215
|
-
type: "fishing-rod",
|
|
17216
|
-
name: "Bamboo Pole",
|
|
17217
|
-
description: "A basic fishing rod. Cannot use bait or tackle.",
|
|
17218
|
-
image: "images/tools/fishing-rod/Bamboo Pole.png",
|
|
17219
|
-
cost: 500,
|
|
17220
|
-
fishingLevelRequired: null,
|
|
17221
|
-
bait: false,
|
|
17222
|
-
tackleSlots: 0,
|
|
17223
|
-
canEnchant: false,
|
|
17224
|
-
obtain: "Purchased from Willy's Fish Shop."
|
|
17225
|
-
},
|
|
17226
|
-
{
|
|
17227
|
-
id: "training-rod",
|
|
17228
|
-
type: "fishing-rod",
|
|
17229
|
-
name: "Training Rod",
|
|
17230
|
-
description: "Simplifies the fishing minigame and only catches common fish. Good for beginners.",
|
|
17231
|
-
image: "images/tools/fishing-rod/Training Rod.png",
|
|
17232
|
-
cost: 25,
|
|
17233
|
-
fishingLevelRequired: null,
|
|
17234
|
-
bait: false,
|
|
17235
|
-
tackleSlots: 0,
|
|
17236
|
-
canEnchant: false,
|
|
17237
|
-
obtain: "Purchased from Willy's Fish Shop."
|
|
17238
|
-
},
|
|
17239
|
-
{
|
|
17240
|
-
id: "fiberglass-rod",
|
|
17214
|
+
id: "fishing-rod",
|
|
17241
17215
|
type: "fishing-rod",
|
|
17242
|
-
name: "
|
|
17243
|
-
description: "
|
|
17244
|
-
image: "images/tools/fishing-rod/Fiberglass Rod.png",
|
|
17245
|
-
cost: 1800,
|
|
17246
|
-
fishingLevelRequired: 2,
|
|
17247
|
-
bait: true,
|
|
17248
|
-
tackleSlots: 0,
|
|
17249
|
-
canEnchant: false,
|
|
17250
|
-
obtain: "Purchased from Willy's Fish Shop."
|
|
17251
|
-
},
|
|
17252
|
-
{
|
|
17253
|
-
id: "iridium-rod",
|
|
17254
|
-
type: "fishing-rod",
|
|
17255
|
-
name: "Iridium Rod",
|
|
17256
|
-
description: "A high-end fishing rod that supports both bait and one tackle attachment.",
|
|
17257
|
-
image: "images/tools/fishing-rod/Iridium Rod.png",
|
|
17258
|
-
cost: 7500,
|
|
17259
|
-
fishingLevelRequired: 6,
|
|
17260
|
-
bait: true,
|
|
17261
|
-
tackleSlots: 1,
|
|
17262
|
-
canEnchant: true,
|
|
17263
|
-
obtain: "Purchased from Willy's Fish Shop."
|
|
17264
|
-
},
|
|
17265
|
-
{
|
|
17266
|
-
id: "advanced-iridium-rod",
|
|
17267
|
-
type: "fishing-rod",
|
|
17268
|
-
name: "Advanced Iridium Rod",
|
|
17269
|
-
description: "The ultimate fishing rod with two tackle slots and bait support.",
|
|
17270
|
-
image: "images/tools/fishing-rod/Advanced Iridium Rod.png",
|
|
17271
|
-
cost: null,
|
|
17272
|
-
fishingLevelRequired: null,
|
|
17273
|
-
bait: true,
|
|
17274
|
-
tackleSlots: 2,
|
|
17216
|
+
name: "Fishing Rod",
|
|
17217
|
+
description: "Fishing rods for catching fish. Higher tiers unlock bait and tackle support.",
|
|
17275
17218
|
canEnchant: true,
|
|
17276
|
-
|
|
17219
|
+
levels: [
|
|
17220
|
+
{
|
|
17221
|
+
name: "Training Rod",
|
|
17222
|
+
image: "images/tools/fishing-rod/Training Rod.png",
|
|
17223
|
+
cost: 25,
|
|
17224
|
+
fishingLevelRequired: null,
|
|
17225
|
+
bait: false,
|
|
17226
|
+
tackleSlots: 0,
|
|
17227
|
+
canEnchant: false,
|
|
17228
|
+
obtain: "Purchased from Willy's Fish Shop.",
|
|
17229
|
+
description: "Simplifies the fishing minigame and only catches common fish. Good for beginners."
|
|
17230
|
+
},
|
|
17231
|
+
{
|
|
17232
|
+
name: "Bamboo Pole",
|
|
17233
|
+
image: "images/tools/fishing-rod/Bamboo Pole.png",
|
|
17234
|
+
cost: 500,
|
|
17235
|
+
fishingLevelRequired: null,
|
|
17236
|
+
bait: false,
|
|
17237
|
+
tackleSlots: 0,
|
|
17238
|
+
canEnchant: false,
|
|
17239
|
+
obtain: "Purchased from Willy's Fish Shop.",
|
|
17240
|
+
description: "A basic fishing rod. Cannot use bait or tackle."
|
|
17241
|
+
},
|
|
17242
|
+
{
|
|
17243
|
+
name: "Fiberglass Rod",
|
|
17244
|
+
image: "images/tools/fishing-rod/Fiberglass Rod.png",
|
|
17245
|
+
cost: 1800,
|
|
17246
|
+
fishingLevelRequired: 2,
|
|
17247
|
+
bait: true,
|
|
17248
|
+
tackleSlots: 0,
|
|
17249
|
+
canEnchant: false,
|
|
17250
|
+
obtain: "Purchased from Willy's Fish Shop.",
|
|
17251
|
+
description: "Supports bait to reduce time between bites. Requires Fishing level 2."
|
|
17252
|
+
},
|
|
17253
|
+
{
|
|
17254
|
+
name: "Iridium Rod",
|
|
17255
|
+
image: "images/tools/fishing-rod/Iridium Rod.png",
|
|
17256
|
+
cost: 7500,
|
|
17257
|
+
fishingLevelRequired: 6,
|
|
17258
|
+
bait: true,
|
|
17259
|
+
tackleSlots: 1,
|
|
17260
|
+
canEnchant: true,
|
|
17261
|
+
obtain: "Purchased from Willy's Fish Shop.",
|
|
17262
|
+
description: "Supports bait and one tackle attachment. Can be enchanted at the Forge. Requires Fishing level 6."
|
|
17263
|
+
},
|
|
17264
|
+
{
|
|
17265
|
+
name: "Advanced Iridium Rod",
|
|
17266
|
+
image: "images/tools/fishing-rod/Advanced Iridium Rod.png",
|
|
17267
|
+
cost: null,
|
|
17268
|
+
fishingLevelRequired: null,
|
|
17269
|
+
bait: true,
|
|
17270
|
+
tackleSlots: 2,
|
|
17271
|
+
canEnchant: true,
|
|
17272
|
+
obtain: "Reward for achieving Fishing Mastery.",
|
|
17273
|
+
description: "The ultimate fishing rod. Supports bait and two tackle attachments simultaneously. Can be enchanted at the Forge."
|
|
17274
|
+
}
|
|
17275
|
+
]
|
|
17277
17276
|
},
|
|
17278
17277
|
{
|
|
17279
17278
|
id: "scythe",
|
|
@@ -19157,6 +19156,12 @@ function search(query, kinds) {
|
|
|
19157
19156
|
add({ kind: "tool", id: tool.id, name: tool.name, image, sellPrice: null });
|
|
19158
19157
|
}
|
|
19159
19158
|
}
|
|
19159
|
+
} else if (tool.type === "fishing-rod") {
|
|
19160
|
+
for (const level of tool.levels) {
|
|
19161
|
+
if (matches(query, level.name, level.name)) {
|
|
19162
|
+
add({ kind: "tool", id: tool.id, name: level.name, image: level.image, sellPrice: null });
|
|
19163
|
+
}
|
|
19164
|
+
}
|
|
19160
19165
|
} else {
|
|
19161
19166
|
if (matches(query, tool.id, tool.name)) {
|
|
19162
19167
|
add({ kind: "tool", id: tool.id, name: tool.name, image: tool.image, sellPrice: null });
|
|
@@ -19325,15 +19330,20 @@ var skills_default = [
|
|
|
19325
19330
|
level: 1,
|
|
19326
19331
|
xpRequired: 100,
|
|
19327
19332
|
totalXp: 100,
|
|
19328
|
-
recipes: {
|
|
19333
|
+
recipes: {
|
|
19334
|
+
crafting: ["Scarecrow", "Basic Fertilizer"],
|
|
19335
|
+
cooking: [],
|
|
19336
|
+
additional: []
|
|
19337
|
+
}
|
|
19329
19338
|
},
|
|
19330
19339
|
{
|
|
19331
19340
|
level: 2,
|
|
19332
19341
|
xpRequired: 280,
|
|
19333
19342
|
totalXp: 380,
|
|
19334
19343
|
recipes: {
|
|
19335
|
-
crafting: ["
|
|
19336
|
-
cooking: []
|
|
19344
|
+
crafting: ["Mayonnaise Machine", "Stone Fence", "Sprinkler"],
|
|
19345
|
+
cooking: [],
|
|
19346
|
+
additional: []
|
|
19337
19347
|
}
|
|
19338
19348
|
},
|
|
19339
19349
|
{
|
|
@@ -19341,8 +19351,9 @@ var skills_default = [
|
|
|
19341
19351
|
xpRequired: 390,
|
|
19342
19352
|
totalXp: 770,
|
|
19343
19353
|
recipes: {
|
|
19344
|
-
crafting: ["Bee House", "
|
|
19345
|
-
cooking: ["Farmer's Lunch"]
|
|
19354
|
+
crafting: ["Bee House", "Speed-Gro"],
|
|
19355
|
+
cooking: ["Farmer's Lunch"],
|
|
19356
|
+
additional: []
|
|
19346
19357
|
}
|
|
19347
19358
|
},
|
|
19348
19359
|
{
|
|
@@ -19351,14 +19362,19 @@ var skills_default = [
|
|
|
19351
19362
|
totalXp: 1300,
|
|
19352
19363
|
recipes: {
|
|
19353
19364
|
crafting: ["Preserves Jar", "Basic Retaining Soil", "Iron Fence"],
|
|
19354
|
-
cooking: []
|
|
19365
|
+
cooking: [],
|
|
19366
|
+
additional: []
|
|
19355
19367
|
}
|
|
19356
19368
|
},
|
|
19357
19369
|
{
|
|
19358
19370
|
level: 5,
|
|
19359
19371
|
xpRequired: 850,
|
|
19360
19372
|
totalXp: 2150,
|
|
19361
|
-
recipes: {
|
|
19373
|
+
recipes: {
|
|
19374
|
+
crafting: [],
|
|
19375
|
+
cooking: [],
|
|
19376
|
+
additional: []
|
|
19377
|
+
}
|
|
19362
19378
|
},
|
|
19363
19379
|
{
|
|
19364
19380
|
level: 6,
|
|
@@ -19366,32 +19382,45 @@ var skills_default = [
|
|
|
19366
19382
|
totalXp: 3300,
|
|
19367
19383
|
recipes: {
|
|
19368
19384
|
crafting: ["Cheese Press", "Hardwood Fence", "Quality Sprinkler"],
|
|
19369
|
-
cooking: []
|
|
19385
|
+
cooking: [],
|
|
19386
|
+
additional: []
|
|
19370
19387
|
}
|
|
19371
19388
|
},
|
|
19372
19389
|
{
|
|
19373
19390
|
level: 7,
|
|
19374
19391
|
xpRequired: 1500,
|
|
19375
19392
|
totalXp: 4800,
|
|
19376
|
-
recipes: {
|
|
19393
|
+
recipes: {
|
|
19394
|
+
crafting: ["Loom", "Quality Retaining Soil"],
|
|
19395
|
+
cooking: [],
|
|
19396
|
+
additional: []
|
|
19397
|
+
}
|
|
19377
19398
|
},
|
|
19378
19399
|
{
|
|
19379
19400
|
level: 8,
|
|
19380
19401
|
xpRequired: 2100,
|
|
19381
19402
|
totalXp: 6900,
|
|
19382
|
-
recipes: {
|
|
19403
|
+
recipes: {
|
|
19404
|
+
crafting: ["Oil Maker", "Keg", "Deluxe Speed-Gro"],
|
|
19405
|
+
cooking: [],
|
|
19406
|
+
additional: []
|
|
19407
|
+
}
|
|
19383
19408
|
},
|
|
19384
19409
|
{
|
|
19385
19410
|
level: 9,
|
|
19386
19411
|
xpRequired: 3100,
|
|
19387
19412
|
totalXp: 1e4,
|
|
19388
|
-
recipes: {
|
|
19413
|
+
recipes: {
|
|
19414
|
+
crafting: ["Seed Maker", "Iridium Sprinkler", "Quality Fertilizer"],
|
|
19415
|
+
cooking: [],
|
|
19416
|
+
additional: []
|
|
19417
|
+
}
|
|
19389
19418
|
},
|
|
19390
19419
|
{
|
|
19391
19420
|
level: 10,
|
|
19392
19421
|
xpRequired: 5e3,
|
|
19393
19422
|
totalXp: 15e3,
|
|
19394
|
-
recipes: { crafting: [], cooking: [] }
|
|
19423
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19395
19424
|
}
|
|
19396
19425
|
],
|
|
19397
19426
|
mastery: {
|
|
@@ -19422,64 +19451,69 @@ var skills_default = [
|
|
|
19422
19451
|
level: 1,
|
|
19423
19452
|
xpRequired: 100,
|
|
19424
19453
|
totalXp: 100,
|
|
19425
|
-
recipes: { crafting: ["Cherry Bomb"], cooking: [] }
|
|
19454
|
+
recipes: { crafting: ["Cherry Bomb"], cooking: [], additional: [] }
|
|
19426
19455
|
},
|
|
19427
19456
|
{
|
|
19428
19457
|
level: 2,
|
|
19429
19458
|
xpRequired: 280,
|
|
19430
19459
|
totalXp: 380,
|
|
19431
|
-
recipes: { crafting: ["Staircase"], cooking: [] }
|
|
19460
|
+
recipes: { crafting: ["Staircase"], cooking: [], additional: [] }
|
|
19432
19461
|
},
|
|
19433
19462
|
{
|
|
19434
19463
|
level: 3,
|
|
19435
19464
|
xpRequired: 390,
|
|
19436
19465
|
totalXp: 770,
|
|
19437
19466
|
recipes: {
|
|
19438
|
-
crafting: [
|
|
19439
|
-
cooking: ["Miner's Treat"]
|
|
19467
|
+
crafting: [],
|
|
19468
|
+
cooking: ["Miner's Treat"],
|
|
19469
|
+
additional: []
|
|
19440
19470
|
}
|
|
19441
19471
|
},
|
|
19442
19472
|
{
|
|
19443
19473
|
level: 4,
|
|
19444
19474
|
xpRequired: 530,
|
|
19445
19475
|
totalXp: 1300,
|
|
19446
|
-
recipes: {
|
|
19476
|
+
recipes: {
|
|
19477
|
+
crafting: ["Glowstone Ring", "Transmute (Fe)"],
|
|
19478
|
+
cooking: [],
|
|
19479
|
+
additional: []
|
|
19480
|
+
}
|
|
19447
19481
|
},
|
|
19448
19482
|
{
|
|
19449
19483
|
level: 5,
|
|
19450
19484
|
xpRequired: 850,
|
|
19451
19485
|
totalXp: 2150,
|
|
19452
|
-
recipes: { crafting: [], cooking: [] }
|
|
19486
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19453
19487
|
},
|
|
19454
19488
|
{
|
|
19455
19489
|
level: 6,
|
|
19456
19490
|
xpRequired: 1150,
|
|
19457
19491
|
totalXp: 3300,
|
|
19458
|
-
recipes: { crafting: ["Bomb"], cooking: [] }
|
|
19492
|
+
recipes: { crafting: ["Bomb"], cooking: [], additional: [] }
|
|
19459
19493
|
},
|
|
19460
19494
|
{
|
|
19461
19495
|
level: 7,
|
|
19462
19496
|
xpRequired: 1500,
|
|
19463
19497
|
totalXp: 4800,
|
|
19464
|
-
recipes: { crafting: ["Transmute (Au)",
|
|
19498
|
+
recipes: { crafting: ["Transmute (Au)"], cooking: [], additional: [] }
|
|
19465
19499
|
},
|
|
19466
19500
|
{
|
|
19467
19501
|
level: 8,
|
|
19468
19502
|
xpRequired: 2100,
|
|
19469
19503
|
totalXp: 6900,
|
|
19470
|
-
recipes: { crafting: ["
|
|
19504
|
+
recipes: { crafting: ["Mega Bomb"], cooking: [], additional: [] }
|
|
19471
19505
|
},
|
|
19472
19506
|
{
|
|
19473
19507
|
level: 9,
|
|
19474
19508
|
xpRequired: 3100,
|
|
19475
19509
|
totalXp: 1e4,
|
|
19476
|
-
recipes: { crafting: [], cooking: [] }
|
|
19510
|
+
recipes: { crafting: ["Crystalarium"], cooking: [], additional: [] }
|
|
19477
19511
|
},
|
|
19478
19512
|
{
|
|
19479
19513
|
level: 10,
|
|
19480
19514
|
xpRequired: 5e3,
|
|
19481
19515
|
totalXp: 15e3,
|
|
19482
|
-
recipes: { crafting: [], cooking: [] }
|
|
19516
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19483
19517
|
}
|
|
19484
19518
|
],
|
|
19485
19519
|
mastery: {
|
|
@@ -19507,64 +19541,85 @@ var skills_default = [
|
|
|
19507
19541
|
level: 1,
|
|
19508
19542
|
xpRequired: 100,
|
|
19509
19543
|
totalXp: 100,
|
|
19510
|
-
recipes: {
|
|
19544
|
+
recipes: {
|
|
19545
|
+
crafting: ["Wild Seeds (Spring)", "Field Snack"],
|
|
19546
|
+
cooking: [],
|
|
19547
|
+
additional: ["Trees sometimes drop seeds."]
|
|
19548
|
+
}
|
|
19511
19549
|
},
|
|
19512
19550
|
{
|
|
19513
19551
|
level: 2,
|
|
19514
19552
|
xpRequired: 280,
|
|
19515
19553
|
totalXp: 380,
|
|
19516
|
-
recipes: { crafting: ["Charcoal Kiln"], cooking: [] }
|
|
19554
|
+
recipes: { crafting: ["Charcoal Kiln"], cooking: [], additional: [] }
|
|
19517
19555
|
},
|
|
19518
19556
|
{
|
|
19519
19557
|
level: 3,
|
|
19520
19558
|
xpRequired: 390,
|
|
19521
19559
|
totalXp: 770,
|
|
19522
|
-
recipes: { crafting: ["Cookout Kit"], cooking: ["Moss Soup"] }
|
|
19560
|
+
recipes: { crafting: ["Cookout Kit"], cooking: ["Moss Soup"], additional: [] }
|
|
19523
19561
|
},
|
|
19524
19562
|
{
|
|
19525
19563
|
level: 4,
|
|
19526
19564
|
xpRequired: 530,
|
|
19527
19565
|
totalXp: 1300,
|
|
19528
|
-
recipes: {
|
|
19566
|
+
recipes: {
|
|
19567
|
+
crafting: ["Wild Seeds (Summer)", "Tapper", "Mushroom Log"],
|
|
19568
|
+
cooking: [],
|
|
19569
|
+
additional: ["+1 Wild Berry harvesting"]
|
|
19570
|
+
}
|
|
19529
19571
|
},
|
|
19530
19572
|
{
|
|
19531
19573
|
level: 5,
|
|
19532
19574
|
xpRequired: 850,
|
|
19533
19575
|
totalXp: 2150,
|
|
19534
|
-
recipes: { crafting: [], cooking: [] }
|
|
19576
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19535
19577
|
},
|
|
19536
19578
|
{
|
|
19537
19579
|
level: 6,
|
|
19538
19580
|
xpRequired: 1150,
|
|
19539
19581
|
totalXp: 3300,
|
|
19540
|
-
recipes: {
|
|
19582
|
+
recipes: {
|
|
19583
|
+
crafting: ["Lightning Rod", "Wild Seeds (Fall)", "Warp Totem: Beach"],
|
|
19584
|
+
cooking: [],
|
|
19585
|
+
additional: []
|
|
19586
|
+
}
|
|
19541
19587
|
},
|
|
19542
19588
|
{
|
|
19543
19589
|
level: 7,
|
|
19544
19590
|
xpRequired: 1500,
|
|
19545
19591
|
totalXp: 4800,
|
|
19546
|
-
recipes: {
|
|
19592
|
+
recipes: {
|
|
19593
|
+
crafting: ["Wild Seeds (Winter)", "Warp Totem: Mountains", "Tree Fertilizer"],
|
|
19594
|
+
cooking: [],
|
|
19595
|
+
additional: []
|
|
19596
|
+
}
|
|
19547
19597
|
},
|
|
19548
19598
|
{
|
|
19549
19599
|
level: 8,
|
|
19550
19600
|
xpRequired: 2100,
|
|
19551
19601
|
totalXp: 6900,
|
|
19552
19602
|
recipes: {
|
|
19553
|
-
crafting: ["
|
|
19554
|
-
cooking: []
|
|
19603
|
+
crafting: ["Warp Totem: Farm", "Tent Kit"],
|
|
19604
|
+
cooking: ["Survival Burger"],
|
|
19605
|
+
additional: ["+1 Wild Berry harvesting"]
|
|
19555
19606
|
}
|
|
19556
19607
|
},
|
|
19557
19608
|
{
|
|
19558
19609
|
level: 9,
|
|
19559
19610
|
xpRequired: 3100,
|
|
19560
19611
|
totalXp: 1e4,
|
|
19561
|
-
recipes: {
|
|
19612
|
+
recipes: {
|
|
19613
|
+
crafting: ["Rain Totem"],
|
|
19614
|
+
cooking: [],
|
|
19615
|
+
additional: []
|
|
19616
|
+
}
|
|
19562
19617
|
},
|
|
19563
19618
|
{
|
|
19564
19619
|
level: 10,
|
|
19565
19620
|
xpRequired: 5e3,
|
|
19566
19621
|
totalXp: 15e3,
|
|
19567
|
-
recipes: { crafting: [], cooking: [] }
|
|
19622
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19568
19623
|
}
|
|
19569
19624
|
],
|
|
19570
19625
|
mastery: {
|
|
@@ -19592,31 +19647,50 @@ var skills_default = [
|
|
|
19592
19647
|
level: 1,
|
|
19593
19648
|
xpRequired: 100,
|
|
19594
19649
|
totalXp: 100,
|
|
19595
|
-
recipes: {
|
|
19650
|
+
recipes: {
|
|
19651
|
+
crafting: [],
|
|
19652
|
+
cooking: [],
|
|
19653
|
+
additional: ["Casting distance increased by one tile"]
|
|
19654
|
+
}
|
|
19596
19655
|
},
|
|
19597
19656
|
{
|
|
19598
19657
|
level: 2,
|
|
19599
19658
|
xpRequired: 280,
|
|
19600
19659
|
totalXp: 380,
|
|
19601
|
-
recipes: {
|
|
19660
|
+
recipes: {
|
|
19661
|
+
crafting: ["Bait"],
|
|
19662
|
+
cooking: [],
|
|
19663
|
+
additional: ["Fiberglass Rod & Bait unlocked in Willy's Fish Shop"]
|
|
19664
|
+
}
|
|
19602
19665
|
},
|
|
19603
19666
|
{
|
|
19604
19667
|
level: 3,
|
|
19605
19668
|
xpRequired: 390,
|
|
19606
19669
|
totalXp: 770,
|
|
19607
|
-
recipes: {
|
|
19670
|
+
recipes: {
|
|
19671
|
+
crafting: ["Crab Pot"],
|
|
19672
|
+
cooking: ["Dish O' The Sea"],
|
|
19673
|
+
additional: ["Crab Pot unlocked in Willy's Fish Shop"]
|
|
19674
|
+
}
|
|
19608
19675
|
},
|
|
19609
19676
|
{
|
|
19610
19677
|
level: 4,
|
|
19611
19678
|
xpRequired: 530,
|
|
19612
19679
|
totalXp: 1300,
|
|
19613
|
-
recipes: {
|
|
19680
|
+
recipes: {
|
|
19681
|
+
crafting: ["Deluxe Bait", "Worm Bin", "Recycling Machine"],
|
|
19682
|
+
cooking: [],
|
|
19683
|
+
additional: [
|
|
19684
|
+
"Deluxe Bait unlocked in Willy's Fish Shop",
|
|
19685
|
+
"Casting distance increased by one tile"
|
|
19686
|
+
]
|
|
19687
|
+
}
|
|
19614
19688
|
},
|
|
19615
19689
|
{
|
|
19616
19690
|
level: 5,
|
|
19617
19691
|
xpRequired: 850,
|
|
19618
19692
|
totalXp: 2150,
|
|
19619
|
-
recipes: { crafting: [], cooking: [] }
|
|
19693
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19620
19694
|
},
|
|
19621
19695
|
{
|
|
19622
19696
|
level: 6,
|
|
@@ -19624,14 +19698,21 @@ var skills_default = [
|
|
|
19624
19698
|
totalXp: 3300,
|
|
19625
19699
|
recipes: {
|
|
19626
19700
|
crafting: ["Bait Maker", "Spinner", "Trap Bobber", "Sonar Bobber"],
|
|
19627
|
-
cooking: []
|
|
19701
|
+
cooking: [],
|
|
19702
|
+
additional: [
|
|
19703
|
+
"Iridium Rod, Sonar Bobber, Lead Bobber, Spinner, Trap Bobber unlocked in Willy's Fish Shop"
|
|
19704
|
+
]
|
|
19628
19705
|
}
|
|
19629
19706
|
},
|
|
19630
19707
|
{
|
|
19631
19708
|
level: 7,
|
|
19632
19709
|
xpRequired: 1500,
|
|
19633
19710
|
totalXp: 4800,
|
|
19634
|
-
recipes: {
|
|
19711
|
+
recipes: {
|
|
19712
|
+
crafting: ["Cork Bobber", "Treasure Hunter"],
|
|
19713
|
+
cooking: [],
|
|
19714
|
+
additional: ["Cork Bobber & Treasure Hunter unlocked in Willy's Fish Shop"]
|
|
19715
|
+
}
|
|
19635
19716
|
},
|
|
19636
19717
|
{
|
|
19637
19718
|
level: 8,
|
|
@@ -19639,20 +19720,28 @@ var skills_default = [
|
|
|
19639
19720
|
totalXp: 6900,
|
|
19640
19721
|
recipes: {
|
|
19641
19722
|
crafting: ["Deluxe Worm Bin", "Barbed Hook", "Dressed Spinner"],
|
|
19642
|
-
cooking: []
|
|
19723
|
+
cooking: [],
|
|
19724
|
+
additional: [
|
|
19725
|
+
"Barbed Hook & Dressed Spinner unlocked in Willy's Fish Shop",
|
|
19726
|
+
"Casting distance increased by one tile"
|
|
19727
|
+
]
|
|
19643
19728
|
}
|
|
19644
19729
|
},
|
|
19645
19730
|
{
|
|
19646
19731
|
level: 9,
|
|
19647
19732
|
xpRequired: 3100,
|
|
19648
19733
|
totalXp: 1e4,
|
|
19649
|
-
recipes: {
|
|
19734
|
+
recipes: {
|
|
19735
|
+
crafting: ["Magnet"],
|
|
19736
|
+
cooking: ["Seafoam Pudding"],
|
|
19737
|
+
additional: ["Magnet unlocked in Willy's Fish Shop"]
|
|
19738
|
+
}
|
|
19650
19739
|
},
|
|
19651
19740
|
{
|
|
19652
19741
|
level: 10,
|
|
19653
19742
|
xpRequired: 5e3,
|
|
19654
19743
|
totalXp: 15e3,
|
|
19655
|
-
recipes: { crafting: [], cooking: [] }
|
|
19744
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19656
19745
|
}
|
|
19657
19746
|
],
|
|
19658
19747
|
mastery: {
|
|
@@ -19683,64 +19772,73 @@ var skills_default = [
|
|
|
19683
19772
|
level: 1,
|
|
19684
19773
|
xpRequired: 100,
|
|
19685
19774
|
totalXp: 100,
|
|
19686
|
-
recipes: { crafting: ["Sturdy Ring"], cooking: [
|
|
19775
|
+
recipes: { crafting: ["Sturdy Ring", "Bug Steak"], cooking: [], additional: [] }
|
|
19687
19776
|
},
|
|
19688
19777
|
{
|
|
19689
19778
|
level: 2,
|
|
19690
19779
|
xpRequired: 280,
|
|
19691
19780
|
totalXp: 380,
|
|
19692
|
-
recipes: { crafting: [], cooking: [] }
|
|
19781
|
+
recipes: { crafting: ["Life Elixir"], cooking: [], additional: [] }
|
|
19693
19782
|
},
|
|
19694
19783
|
{
|
|
19695
19784
|
level: 3,
|
|
19696
19785
|
xpRequired: 390,
|
|
19697
19786
|
totalXp: 770,
|
|
19698
|
-
recipes: { crafting: ["
|
|
19787
|
+
recipes: { crafting: [], cooking: ["Roots Platter"], additional: [] }
|
|
19699
19788
|
},
|
|
19700
19789
|
{
|
|
19701
19790
|
level: 4,
|
|
19702
19791
|
xpRequired: 530,
|
|
19703
19792
|
totalXp: 1300,
|
|
19704
|
-
recipes: { crafting: [], cooking: [
|
|
19793
|
+
recipes: { crafting: ["Warrior Ring"], cooking: [], additional: [] }
|
|
19705
19794
|
},
|
|
19706
19795
|
{
|
|
19707
19796
|
level: 5,
|
|
19708
19797
|
xpRequired: 850,
|
|
19709
19798
|
totalXp: 2150,
|
|
19710
|
-
recipes: { crafting: [], cooking: [] }
|
|
19799
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19711
19800
|
},
|
|
19712
19801
|
{
|
|
19713
19802
|
level: 6,
|
|
19714
19803
|
xpRequired: 1150,
|
|
19715
19804
|
totalXp: 3300,
|
|
19716
|
-
recipes: {
|
|
19805
|
+
recipes: {
|
|
19806
|
+
crafting: ["Slime Egg-Press", "Oil of Garlic"],
|
|
19807
|
+
cooking: [],
|
|
19808
|
+
additional: []
|
|
19809
|
+
}
|
|
19717
19810
|
},
|
|
19718
19811
|
{
|
|
19719
19812
|
level: 7,
|
|
19720
19813
|
xpRequired: 1500,
|
|
19721
19814
|
totalXp: 4800,
|
|
19722
|
-
recipes: { crafting: [], cooking: [] }
|
|
19815
|
+
recipes: { crafting: ["Ring of Yoba", "Thorns Ring"], cooking: [], additional: [] }
|
|
19723
19816
|
},
|
|
19724
19817
|
{
|
|
19725
19818
|
level: 8,
|
|
19726
19819
|
xpRequired: 2100,
|
|
19727
19820
|
totalXp: 6900,
|
|
19728
|
-
recipes: {
|
|
19821
|
+
recipes: {
|
|
19822
|
+
crafting: ["Slime Incubator", "Explosive Ammo"],
|
|
19823
|
+
cooking: [],
|
|
19824
|
+
additional: []
|
|
19825
|
+
}
|
|
19729
19826
|
},
|
|
19730
19827
|
{
|
|
19731
19828
|
level: 9,
|
|
19732
19829
|
xpRequired: 3100,
|
|
19733
19830
|
totalXp: 1e4,
|
|
19734
19831
|
recipes: {
|
|
19735
|
-
crafting: ["
|
|
19736
|
-
cooking: []
|
|
19832
|
+
crafting: ["Iridium Band"],
|
|
19833
|
+
cooking: ["Squid Ink Ravioli"],
|
|
19834
|
+
additional: []
|
|
19737
19835
|
}
|
|
19738
19836
|
},
|
|
19739
19837
|
{
|
|
19740
19838
|
level: 10,
|
|
19741
19839
|
xpRequired: 5e3,
|
|
19742
19840
|
totalXp: 15e3,
|
|
19743
|
-
recipes: { crafting: [], cooking: [] }
|
|
19841
|
+
recipes: { crafting: [], cooking: [], additional: [] }
|
|
19744
19842
|
}
|
|
19745
19843
|
],
|
|
19746
19844
|
mastery: {
|
|
@@ -33852,7 +33950,8 @@ function parsePlayer(player, root) {
|
|
|
33852
33950
|
skills: parseSkills(player.experiencePoints?.int),
|
|
33853
33951
|
mastery: parseMastery(player.stats),
|
|
33854
33952
|
toolLevels: parseToolLevels(player, root),
|
|
33855
|
-
gameVersion: str(root.gameVersion)
|
|
33953
|
+
gameVersion: str(root.gameVersion),
|
|
33954
|
+
millisecondsPlayed: num(player.millisecondsPlayed)
|
|
33856
33955
|
};
|
|
33857
33956
|
}
|
|
33858
33957
|
|