stardew-valley-data 0.2.0 → 0.4.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 +13 -1
- package/README.md +9 -6
- package/data/villagers.json +1362 -68
- package/dist/index.d.mts +28 -9
- package/dist/index.d.ts +28 -9
- package/dist/index.js +1435 -77
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1435 -77
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -382,6 +382,12 @@ interface Quest {
|
|
|
382
382
|
rewards: string;
|
|
383
383
|
}
|
|
384
384
|
|
|
385
|
+
interface HeartEvent {
|
|
386
|
+
heart: number;
|
|
387
|
+
id: number | number[] | null;
|
|
388
|
+
description: string;
|
|
389
|
+
details: string;
|
|
390
|
+
}
|
|
385
391
|
interface Villager extends GiftPreferences {
|
|
386
392
|
id: string;
|
|
387
393
|
name: string;
|
|
@@ -391,14 +397,16 @@ interface Villager extends GiftPreferences {
|
|
|
391
397
|
};
|
|
392
398
|
address: string;
|
|
393
399
|
occupation: string;
|
|
400
|
+
description: string;
|
|
394
401
|
marriageable: boolean;
|
|
395
|
-
image: string;
|
|
396
|
-
spouseImage?: string;
|
|
397
402
|
hearts: {
|
|
398
403
|
max: number;
|
|
399
404
|
bouquetIncrease: number;
|
|
400
405
|
spouseIncrease: number;
|
|
401
406
|
};
|
|
407
|
+
events: HeartEvent[];
|
|
408
|
+
image: string;
|
|
409
|
+
spouseImage?: string;
|
|
402
410
|
}
|
|
403
411
|
|
|
404
412
|
interface Weather {
|
|
@@ -2498,12 +2506,24 @@ interface SavePlayer {
|
|
|
2498
2506
|
totalMoneyEarned: number;
|
|
2499
2507
|
spouse: string | null;
|
|
2500
2508
|
houseUpgradeLevel: number;
|
|
2509
|
+
luckLevel: number;
|
|
2510
|
+
maxItems: number;
|
|
2501
2511
|
maxHealth: number;
|
|
2502
2512
|
maxStamina: number;
|
|
2503
2513
|
skills: SaveSkills;
|
|
2504
2514
|
mastery: SaveMastery;
|
|
2515
|
+
toolLevels: SaveToolLevels;
|
|
2505
2516
|
gameVersion: string;
|
|
2506
2517
|
}
|
|
2518
|
+
/** Upgrade levels for the player's tools (0 = base, 1 = copper, 2 = steel, 3 = gold, 4 = iridium). */
|
|
2519
|
+
interface SaveToolLevels {
|
|
2520
|
+
wateringCan: number;
|
|
2521
|
+
pan: number;
|
|
2522
|
+
pickaxe: number;
|
|
2523
|
+
axe: number;
|
|
2524
|
+
hoe: number;
|
|
2525
|
+
trashCan: number;
|
|
2526
|
+
}
|
|
2507
2527
|
/** Mastery system progress including XP, levels spent, and unlocked perks. */
|
|
2508
2528
|
interface SaveMastery {
|
|
2509
2529
|
xp: number;
|
|
@@ -2584,6 +2604,7 @@ interface SaveAnimal {
|
|
|
2584
2604
|
id: string;
|
|
2585
2605
|
name: string;
|
|
2586
2606
|
type: string;
|
|
2607
|
+
buildingId: string;
|
|
2587
2608
|
buildingType: string;
|
|
2588
2609
|
friendship: number;
|
|
2589
2610
|
happiness: number;
|
|
@@ -2592,9 +2613,8 @@ interface SaveAnimal {
|
|
|
2592
2613
|
}
|
|
2593
2614
|
/** A farm building with its type, position, and current animal count. */
|
|
2594
2615
|
interface SaveBuilding {
|
|
2616
|
+
id: string;
|
|
2595
2617
|
type: string;
|
|
2596
|
-
tileX: number;
|
|
2597
|
-
tileY: number;
|
|
2598
2618
|
animalCount: number;
|
|
2599
2619
|
}
|
|
2600
2620
|
/** An active or completed quest with its title, description, and completion status. */
|
|
@@ -2616,9 +2636,8 @@ interface SaveRecipeEntry {
|
|
|
2616
2636
|
name: string;
|
|
2617
2637
|
timesMade: number;
|
|
2618
2638
|
}
|
|
2619
|
-
/** Community Center bundle data including
|
|
2639
|
+
/** Community Center bundle data including rooms with nested bundles and Joja route status. */
|
|
2620
2640
|
interface SaveBundleData {
|
|
2621
|
-
bundles: SaveBundleStatus[];
|
|
2622
2641
|
rooms: SaveBundleRoom[];
|
|
2623
2642
|
isJojaRoute: boolean;
|
|
2624
2643
|
isCCComplete: boolean;
|
|
@@ -2632,9 +2651,9 @@ interface SaveBundleRoom {
|
|
|
2632
2651
|
}
|
|
2633
2652
|
/** A single bundle with its required items, completion progress, and reward. */
|
|
2634
2653
|
interface SaveBundleStatus {
|
|
2654
|
+
id: string;
|
|
2635
2655
|
bundleIndex: number;
|
|
2636
2656
|
name: string;
|
|
2637
|
-
room: string;
|
|
2638
2657
|
items: SaveBundleItem[];
|
|
2639
2658
|
itemsRequired: number;
|
|
2640
2659
|
itemsCompleted: number;
|
|
@@ -2670,7 +2689,6 @@ interface SaveProfession {
|
|
|
2670
2689
|
/** Completed special orders split by town board and Qi's Walnut Room. */
|
|
2671
2690
|
interface SaveSpecialOrders {
|
|
2672
2691
|
completed: string[];
|
|
2673
|
-
townCompleted: string[];
|
|
2674
2692
|
qiCompleted: string[];
|
|
2675
2693
|
}
|
|
2676
2694
|
/** Secret notes and journal scraps found, plus magnifying glass ownership. */
|
|
@@ -2678,6 +2696,7 @@ interface SaveSecretNotes {
|
|
|
2678
2696
|
notesFound: number[];
|
|
2679
2697
|
journalScrapsFound: number[];
|
|
2680
2698
|
hasMagnifyingGlass: boolean;
|
|
2699
|
+
hasSeenKrobus: boolean;
|
|
2681
2700
|
}
|
|
2682
2701
|
/** Golden walnut collection progress with total found and tracker entries. */
|
|
2683
2702
|
interface SaveWalnuts {
|
|
@@ -2785,4 +2804,4 @@ declare function resolveApiVersion(gameVersion: string): number;
|
|
|
2785
2804
|
*/
|
|
2786
2805
|
declare function parseSaveFile(xml: string): SaveData;
|
|
2787
2806
|
|
|
2788
|
-
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, type ArtisanGood, ArtisanGoodQuery, type ArtisanIngredient, 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 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, FishQuery, type FishWeather, type FishingRod, 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 HouseRenovation, HouseRenovationQuery, type HouseUpgrade, type HouseUpgradeMaterial, HouseUpgradeQuery, type Ingredient, type IslandTraderDay, type IslandTraderItem, IslandTraderQuery, type ItemBundle, 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 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, 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 };
|
|
2807
|
+
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, type ArtisanGood, ArtisanGoodQuery, type ArtisanIngredient, 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 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, FishQuery, type FishWeather, type FishingRod, 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 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 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, 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
|
@@ -382,6 +382,12 @@ interface Quest {
|
|
|
382
382
|
rewards: string;
|
|
383
383
|
}
|
|
384
384
|
|
|
385
|
+
interface HeartEvent {
|
|
386
|
+
heart: number;
|
|
387
|
+
id: number | number[] | null;
|
|
388
|
+
description: string;
|
|
389
|
+
details: string;
|
|
390
|
+
}
|
|
385
391
|
interface Villager extends GiftPreferences {
|
|
386
392
|
id: string;
|
|
387
393
|
name: string;
|
|
@@ -391,14 +397,16 @@ interface Villager extends GiftPreferences {
|
|
|
391
397
|
};
|
|
392
398
|
address: string;
|
|
393
399
|
occupation: string;
|
|
400
|
+
description: string;
|
|
394
401
|
marriageable: boolean;
|
|
395
|
-
image: string;
|
|
396
|
-
spouseImage?: string;
|
|
397
402
|
hearts: {
|
|
398
403
|
max: number;
|
|
399
404
|
bouquetIncrease: number;
|
|
400
405
|
spouseIncrease: number;
|
|
401
406
|
};
|
|
407
|
+
events: HeartEvent[];
|
|
408
|
+
image: string;
|
|
409
|
+
spouseImage?: string;
|
|
402
410
|
}
|
|
403
411
|
|
|
404
412
|
interface Weather {
|
|
@@ -2498,12 +2506,24 @@ interface SavePlayer {
|
|
|
2498
2506
|
totalMoneyEarned: number;
|
|
2499
2507
|
spouse: string | null;
|
|
2500
2508
|
houseUpgradeLevel: number;
|
|
2509
|
+
luckLevel: number;
|
|
2510
|
+
maxItems: number;
|
|
2501
2511
|
maxHealth: number;
|
|
2502
2512
|
maxStamina: number;
|
|
2503
2513
|
skills: SaveSkills;
|
|
2504
2514
|
mastery: SaveMastery;
|
|
2515
|
+
toolLevels: SaveToolLevels;
|
|
2505
2516
|
gameVersion: string;
|
|
2506
2517
|
}
|
|
2518
|
+
/** Upgrade levels for the player's tools (0 = base, 1 = copper, 2 = steel, 3 = gold, 4 = iridium). */
|
|
2519
|
+
interface SaveToolLevels {
|
|
2520
|
+
wateringCan: number;
|
|
2521
|
+
pan: number;
|
|
2522
|
+
pickaxe: number;
|
|
2523
|
+
axe: number;
|
|
2524
|
+
hoe: number;
|
|
2525
|
+
trashCan: number;
|
|
2526
|
+
}
|
|
2507
2527
|
/** Mastery system progress including XP, levels spent, and unlocked perks. */
|
|
2508
2528
|
interface SaveMastery {
|
|
2509
2529
|
xp: number;
|
|
@@ -2584,6 +2604,7 @@ interface SaveAnimal {
|
|
|
2584
2604
|
id: string;
|
|
2585
2605
|
name: string;
|
|
2586
2606
|
type: string;
|
|
2607
|
+
buildingId: string;
|
|
2587
2608
|
buildingType: string;
|
|
2588
2609
|
friendship: number;
|
|
2589
2610
|
happiness: number;
|
|
@@ -2592,9 +2613,8 @@ interface SaveAnimal {
|
|
|
2592
2613
|
}
|
|
2593
2614
|
/** A farm building with its type, position, and current animal count. */
|
|
2594
2615
|
interface SaveBuilding {
|
|
2616
|
+
id: string;
|
|
2595
2617
|
type: string;
|
|
2596
|
-
tileX: number;
|
|
2597
|
-
tileY: number;
|
|
2598
2618
|
animalCount: number;
|
|
2599
2619
|
}
|
|
2600
2620
|
/** An active or completed quest with its title, description, and completion status. */
|
|
@@ -2616,9 +2636,8 @@ interface SaveRecipeEntry {
|
|
|
2616
2636
|
name: string;
|
|
2617
2637
|
timesMade: number;
|
|
2618
2638
|
}
|
|
2619
|
-
/** Community Center bundle data including
|
|
2639
|
+
/** Community Center bundle data including rooms with nested bundles and Joja route status. */
|
|
2620
2640
|
interface SaveBundleData {
|
|
2621
|
-
bundles: SaveBundleStatus[];
|
|
2622
2641
|
rooms: SaveBundleRoom[];
|
|
2623
2642
|
isJojaRoute: boolean;
|
|
2624
2643
|
isCCComplete: boolean;
|
|
@@ -2632,9 +2651,9 @@ interface SaveBundleRoom {
|
|
|
2632
2651
|
}
|
|
2633
2652
|
/** A single bundle with its required items, completion progress, and reward. */
|
|
2634
2653
|
interface SaveBundleStatus {
|
|
2654
|
+
id: string;
|
|
2635
2655
|
bundleIndex: number;
|
|
2636
2656
|
name: string;
|
|
2637
|
-
room: string;
|
|
2638
2657
|
items: SaveBundleItem[];
|
|
2639
2658
|
itemsRequired: number;
|
|
2640
2659
|
itemsCompleted: number;
|
|
@@ -2670,7 +2689,6 @@ interface SaveProfession {
|
|
|
2670
2689
|
/** Completed special orders split by town board and Qi's Walnut Room. */
|
|
2671
2690
|
interface SaveSpecialOrders {
|
|
2672
2691
|
completed: string[];
|
|
2673
|
-
townCompleted: string[];
|
|
2674
2692
|
qiCompleted: string[];
|
|
2675
2693
|
}
|
|
2676
2694
|
/** Secret notes and journal scraps found, plus magnifying glass ownership. */
|
|
@@ -2678,6 +2696,7 @@ interface SaveSecretNotes {
|
|
|
2678
2696
|
notesFound: number[];
|
|
2679
2697
|
journalScrapsFound: number[];
|
|
2680
2698
|
hasMagnifyingGlass: boolean;
|
|
2699
|
+
hasSeenKrobus: boolean;
|
|
2681
2700
|
}
|
|
2682
2701
|
/** Golden walnut collection progress with total found and tracker entries. */
|
|
2683
2702
|
interface SaveWalnuts {
|
|
@@ -2785,4 +2804,4 @@ declare function resolveApiVersion(gameVersion: string): number;
|
|
|
2785
2804
|
*/
|
|
2786
2805
|
declare function parseSaveFile(xml: string): SaveData;
|
|
2787
2806
|
|
|
2788
|
-
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, type ArtisanGood, ArtisanGoodQuery, type ArtisanIngredient, 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 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, FishQuery, type FishWeather, type FishingRod, 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 HouseRenovation, HouseRenovationQuery, type HouseUpgrade, type HouseUpgradeMaterial, HouseUpgradeQuery, type Ingredient, type IslandTraderDay, type IslandTraderItem, IslandTraderQuery, type ItemBundle, 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 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, 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 };
|
|
2807
|
+
export { type Achievement, AchievementQuery, type Animal, type AnimalProduce, AnimalQuery, type Artifact, ArtifactQuery, type ArtisanGood, ArtisanGoodQuery, type ArtisanIngredient, 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 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, FishQuery, type FishWeather, type FishingRod, 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 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 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, 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 };
|