├── .editorconfig ├── .gitattributes ├── .gitignore ├── AFKPause ├── AFKMenu.cs ├── AFKPause.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AdditionalMineMaps ├── AdditionalMineMaps.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── MapData.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AdvancedCooking ├── AdvancedCooking.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AdvancedDialogueCommands ├── AdvancedDialogueCommands.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── AdvancedDrumBlocks ├── AdvancedDrumBlocks.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AdvancedFluteBlocks ├── AdvancedFluteBlocks.csproj ├── AdvancedFluteBlocksApi.cs ├── CodePatches.cs ├── IAdvancedFluteBlocksApi.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AdvancedLootFramework ├── AdvancedLootFramework.csproj ├── AdvancedLootFrameworkApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── Treasure.cs └── manifest.json ├── AdvancedMeleeFramework ├── AMFPatches.cs ├── AdvancedMeleeFramework.csproj ├── AdvancedMeleeFrameworkApi.cs ├── AdvancedMeleeWeapon.cs ├── AdvancedMeleeWeaponData.cs ├── Integrations │ ├── GenericModConfigMenu.cs │ └── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Utils.cs ├── WeaponPackConfigData.cs ├── docs │ └── mod-author-documentation.md ├── examples │ ├── example pack 1 │ │ ├── content.json │ │ └── manifest.json │ └── example pack 2 │ │ ├── content.json │ │ └── manifest.json └── manifest.json ├── AdvancedMenuPositioning ├── AdvancedMenuPositioning.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AdvancedSigns ├── AdvancedMenuPositioning.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── AdvancedSmoking ├── AdvancedSmoking.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── AdvancedTreasureFramework ├── AdvancedTreasureFramework.csproj ├── Class1.cs └── Properties │ └── AssemblyInfo.cs ├── Alarms ├── AlarmPopupMenu.cs ├── Alarms.csproj ├── ClockSound.cs ├── ClockSoundMenu.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SoundComponentSet.cs ├── assets │ └── textBox.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── AllChestsMenu ├── AllChestsMenu.cs ├── AllChestsMenu.csproj ├── ChestData.cs ├── ChestMenu.cs ├── Compatibility.cs ├── IGenericModConfigMenuApi.cs ├── IMobilePhoneApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ShippingBinChest.cs ├── assets │ └── icon.png ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AnimalDialogueFramework ├── AnimalDialogueFramework.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── AprilFools ├── AprilFools.csproj ├── BeeData.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SpeakingAnimalData.cs ├── assets │ ├── Fira_Code.json │ ├── Fira_Code.xnb │ ├── Town_MixedUp.tmx │ ├── bee.png │ ├── bee.xcf │ ├── bee_license.txt │ ├── jojabuilding.tmx │ ├── pierrebuilding.tmx │ └── raven.txt ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── AutoCollect ├── AutoCollect.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── AutoPetterTweaks ├── AutoPetterTweaks.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── BatForm ├── BatForm.csproj ├── CodePatches.cs ├── Compatibility.cs ├── IGenericModConfigMenuApi.cs ├── ManaBarApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── zh.json └── manifest.json ├── BatchMapProperties ├── BatchMapProperties.csproj ├── CodePatches.cs ├── DynamicMapTilesApi.cs ├── DynamicTileInfo.cs ├── IAdvancedLootFrameworkApi.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PushedTile.cs ├── TweakData.cs └── manifest.json ├── BedTweaks ├── BedManager.cs ├── BedTweaks.csproj ├── BedTweaksAPI.cs ├── FurniturePatches.cs ├── IBedTweaksAPI.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ObjectPatches.cs └── manifest.json ├── BeePaths ├── BeeData.cs ├── BeePaths.csproj ├── CodePatches.cs ├── Compatibility.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── BetterElevator ├── BetterElevator.csproj ├── BetterElevatorMenu.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ ├── pt-br.json │ ├── pt.json │ └── ru.json └── manifest.json ├── BetterLightningRods ├── BetterLightningRods.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── BiggerMineFloors ├── BiggerMineFloors.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── BirthdayBuff ├── BirthdayBuff.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── icon.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── BirthdayFriendship ├── BirthdayFriendship.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── BossCreatures ├── BossCreatures.csproj ├── BossProjectile.cs ├── BugBoss.cs ├── GhostBoss.cs ├── IGenericModConfigMenuApi.cs ├── LootList.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SerpentBoss.cs ├── SkeletonBoss.cs ├── SkullBoss.cs ├── SlimeBoss.cs ├── SquidKidBoss.cs ├── ToughFly.cs ├── ToughGhost.cs ├── assets │ └── boss_loot.json ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── BuffFramework ├── BuffFramework.csproj ├── BuffFrameworkAPI.cs ├── CodePatches.cs ├── IContentPatcherAPI.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── hu.json └── manifest.json ├── BuildingShift ├── BuildingShift.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── BuildingUpgrades ├── BuildingUpgrades.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── BulkAnimalPurchase ├── BulkAnimalPurchase.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── CJBInventory ├── Aedenthorn │ ├── Entry.cs │ └── Utils.cs ├── CJBInventory.csproj ├── LICENSE └── manifest.json ├── CatalogueFilter ├── CatalogueFilter.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── ChatSounds ├── ChatSounds.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── ChessBoards ├── ChessBoards.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── pieces.png │ └── pieces_licence.txt ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── ChestContentsDisplay ├── ChestContentsDisplay.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── ChestFullnessTextures ├── ChestFullnessTextures.csproj ├── ChestTextureData.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── TempJson.cs ├── i18n │ └── default.json └── manifest.json ├── ChestPreview ├── ChestPreview.csproj ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CloseDoors ├── CloseDoors.csproj ├── CodePatches.cs ├── IBuffFrameworkAPI.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── CoinCollector ├── CodePatches.cs ├── CoinCollector.csproj ├── CoinData.cs ├── IDynamicGameAssetsApi.cs ├── IndicatorProjectile.cs ├── ModConfig.cs ├── ModEntry.cs ├── MyManifest.cs ├── MyManifestContentPackFor.cs ├── app.config ├── assets │ ├── 528730__alexhanj__ping.aiff │ ├── Yoba.xcf │ ├── blip.wav │ ├── blip_left.wav │ ├── blip_right.wav │ └── metaldetector.png ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── ColorTweak ├── CodePatches.cs ├── ColorTweak.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── ConnectedGardenPots ├── CodePatches.cs ├── ConnectedGardenPots.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── sprite_sheet.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── ContentPackCreator ├── ActionEditDataControl.Designer.cs ├── ActionEditDataControl.cs ├── ActionEditDataControl.resx ├── ActionEditImageControl.Designer.cs ├── ActionEditImageControl.cs ├── ActionEditImageControl.resx ├── ActionEditMapControl.Designer.cs ├── ActionEditMapControl.cs ├── ActionEditMapControl.resx ├── ActionIncludeControl.Designer.cs ├── ActionIncludeControl.cs ├── ActionIncludeControl.resx ├── ActionLoadControl.Designer.cs ├── ActionLoadControl.cs ├── ActionLoadControl.resx ├── ChangeData.cs ├── ConfigData.cs ├── ContentPack.Designer.cs ├── ContentPack.cs ├── ContentPack.resx ├── ContentPackCreator.csproj ├── ContentPatcherControl.Designer.cs ├── ContentPatcherControl.cs ├── ContentPatcherControl.resx ├── ContentPatcherData.cs ├── DepControl.Designer.cs ├── DepControl.cs ├── DepControl.resx ├── JsonControl.Designer.cs ├── JsonControl.cs ├── JsonControl.resx ├── ManifestData.cs ├── Program.cs ├── WelcomeScreen.Designer.cs ├── WelcomeScreen.cs ├── WelcomeScreen.resx ├── WhenControl.Designer.cs ├── WhenControl.cs ├── WhenControl.resx └── smapi-internal │ └── Newtonsoft.Json.dll ├── ContentPatcherEditor ├── ChangeSet.cs ├── CodePatches.cs ├── ConfigSetup.cs ├── ContentPackMenu.cs ├── ContentPatcherContent.cs ├── ContentPatcherEditor.csproj ├── ContentPatcherMenu.cs ├── ContentPatcherPack.cs ├── IGenericModConfigMenuApi.cs ├── ManifestContentPackFor.cs ├── ManifestDependency.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MyManifest.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── ConversationBubbles ├── CodePatches.cs ├── ConversationBubbles.csproj ├── ConversationData.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CooperativeEggHunt ├── CodePatches.cs ├── CooperativeEggHunt.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── CraftFromContainers ├── CodePatches.cs ├── CraftFromContainers.csproj ├── IGenericModConfigMenuApi.cs ├── LastShippedInventory.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CraftableGrangeDisplay ├── CraftableGrangeDisplay.csproj └── Properties │ └── AssemblyInfo.cs ├── CropGrowthInformation ├── CodePatches.cs ├── CropGrowthInformation.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── TextData.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CropHarvestBubbles ├── CodePatches.cs ├── CropHarvestBubbles.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ko.json └── manifest.json ├── CropHat ├── CodePatches.cs ├── CropHat.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── CropMarkers ├── CodePatches.cs ├── CropMarkers.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CropStacking ├── CodePatches.cs ├── CropStacking.csproj ├── IBuffFrameworkAPI.cs ├── IGenericModConfigMenuApi.cs ├── ItemData.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── CropVariation ├── CodePatches.cs ├── CropVariation.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CropWateringBubbles ├── CodePatches.cs ├── CropWateringBubbles.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ ├── fr.json │ └── ko.json └── manifest.json ├── CropsSurviveSeasonChange ├── CodePatches.cs ├── CropsSurviveSeasonChange.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CustomAchievements ├── CustomAcheivementData.cs ├── CustomAchievements.csproj ├── CustomAchievementsAPI.cs ├── ModConfig.cs ├── ModEntry.cs ├── MyPatches.cs └── manifest.json ├── CustomBackpack ├── BackPackData.cs ├── CodePatches.cs ├── CustomBackpack.csproj ├── CustomBackpackApi.cs ├── Extensions.cs ├── FullInventoryMenu.cs ├── FullInventoryPage.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── tr.json │ └── zh.json └── manifest.json ├── CustomChestTypes ├── CustomChestTypeConfig.cs ├── CustomChestTypeData.cs ├── CustomChestTypes.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomDecorationAreas ├── CodePatches.cs ├── CustomDecorationAreas.csproj ├── FloorWallDataDict.cs ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── manifest.json └── packages.config ├── CustomFarmAnimals ├── CodePatches.cs ├── CustomFarmAnimals.csproj ├── FarmAnimalData.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomFarmBuildings ├── CodePatches.cs ├── CustomBuildingData.cs ├── CustomFarmBuildings.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomFixedDialogue ├── CustomFixedDialogue.csproj ├── DialoguePatches.cs ├── FixedDialogueData.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomGiftLimits ├── CodePatches.cs ├── CustomGiftLimits.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CustomHay ├── CodePatches.cs ├── CustomHay.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CustomLightSource ├── CustomLightSource.csproj ├── LightData.cs ├── MethodPatches.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomLocks ├── CustomLocks.csproj ├── CustomLocksPatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CustomMarriageDialogue ├── CodePatches.cs ├── CustomMarriageDialogue.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomMineCartSteam ├── CodePatches.cs ├── CustomMineCartSteam.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SteamData.cs └── manifest.json ├── CustomMonsterFloors ├── CustomMonsterFloors.csproj ├── CustomOreData.cs ├── CustomOreNode.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomMounts ├── CodePatches.cs ├── CustomMounts.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MountData.cs ├── i18n │ └── default.json └── manifest.json ├── CustomObjectProduction ├── CustomObjectProduction.csproj ├── IDynamicGameAssetsApi.cs ├── IGenericModConfigMenuApi.cs ├── IJsonAssetsApi.cs ├── MethodPatches.cs ├── ModConfig.cs ├── ModEntry.cs ├── ProductData.cs └── manifest.json ├── CustomOreNodes ├── CodePatches.cs ├── CustomOreConfig.cs ├── CustomOreData.cs ├── CustomOreDataOld.cs ├── CustomOreNode.cs ├── CustomOreNodes.csproj ├── CustomOreNodesAPI.cs ├── DropItem.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── CoalStone.png └── manifest.json ├── CustomPaintings ├── CustomPaintings.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── CustomPictureFrames ├── CodePatches.cs ├── CustomPictureFrames.csproj ├── CustomPictureFramesApi.cs ├── FrameData.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── CustomResourceClumps ├── CustomResourceClump.cs ├── CustomResourceClumpData.cs ├── CustomResourceClumps.csproj ├── CustomResourceClumpsAPI.cs ├── DropItem.cs ├── EXAMPLEcustom_resource_clumps.json ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── copper.png │ ├── diamond.png │ ├── gold.png │ └── iron.png ├── i18n │ ├── default.json │ ├── ko.json │ └── ru.json ├── manifest.json └── packages.config ├── CustomSigns ├── CodePatches.cs ├── CustomSignData.cs ├── CustomSigns.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── CustomSpousePatio ├── CustomSpousePatio.csproj ├── CustomSpousePatioApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── OutdoorAreaData.cs ├── Properties │ └── AssemblyInfo.cs └── manifest.json ├── CustomSpousePatioRedux ├── CodePatches.cs ├── CustomSpousePatioRedux.csproj ├── HelperMethods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OutdoorAreaData.cs ├── i18n │ ├── default.json │ ├── ru.json │ └── zh.json └── manifest.json ├── CustomSpousePatioWizard ├── CustomSpousePatioWizard.csproj ├── ICustomSpousePatioApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── OutdoorAreaData.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json └── packages.config ├── CustomSpouseRooms ├── CustomSpouseRooms.csproj ├── CustomSpouseRoomsAPI.cs ├── IContentPatcherAPI.cs ├── ICustomSpouseRoomsAPI.cs ├── LocationPatches.cs ├── Maps │ ├── custom_spouse_room_blank.tmx │ ├── custom_spouse_room_closed_left.tmx │ ├── custom_spouse_room_closed_right.tmx │ ├── custom_spouse_room_closed_right_2.tmx │ ├── custom_spouse_room_open_left.tmx │ ├── custom_spouse_room_open_right.tmx │ └── custom_spouse_room_open_right_2.tmx ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── NetWorldStatePatches.cs ├── SpouseRoomData.cs ├── SpouseRoomDataObject.cs └── manifest.json ├── CustomStarterFurniture ├── CodePatches.cs ├── CustomStarterFurniture.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── StarterItemData.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CustomStarterPackage ├── CodePatches.cs ├── CustomStarterPackage.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── StarterItemData.cs ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── tr.json │ └── zh.json └── manifest.json ├── CustomTextColours ├── CustomTextColours.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── CustomToolbar ├── CodePatches.cs ├── CustomToolbar.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── CustomWallpaperFramework ├── CodePatches.cs ├── CustomWallpaperFramework.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── WallPaperTileData.cs ├── WallpaperData.cs └── manifest.json ├── CustomWarpPoints ├── CustomWarpPoints.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── DGA └── DynamicGameAssets.dll ├── DeathTweaks ├── CodePatches.cs ├── DeathData.cs ├── DeathTweaks.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── DialogueDisplayFramework ├── CodePatches.cs ├── DialogueDisplayData.cs ├── DialogueDisplayFramework.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── api.md └── manifest.json ├── DialogueNewLine ├── CodePatches.cs ├── DialogueNewLine.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── DialogueTrees ├── CharacterDataModel.cs ├── DialogueTreeData.cs ├── DialogueTreeResponse.cs ├── DialogueTrees.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json └── packages.config ├── DinoForm ├── CodePatches.cs ├── DinoForm.csproj ├── IBuffFrameworkAPI.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── icon.png ├── i18n │ └── default.json └── manifest.json ├── Directory.Build.props ├── Dreamscape ├── CodePatches.cs ├── Dreamscape.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Tokens.cs ├── assets │ ├── DreamTree.png │ └── Dreamscape.tmx ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── DungeonMerchants ├── CodePatches.cs ├── DungeonMerchants.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── DynamicFlooring ├── CodePatches.cs ├── DynamicFlooring.csproj ├── FlooringData.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── DynamicMapTilesExtended ├── .gitattributes ├── .gitignore ├── APIs │ ├── API.cs │ └── IGMCMApi.cs ├── Actions.cs ├── Data │ ├── Animation.cs │ ├── Config.cs │ ├── DynamicTile.cs │ ├── DynamicTileProperty.cs │ ├── Keys.cs │ ├── PushedTile.cs │ ├── SecondUpdateData.cs │ └── Triggers.cs ├── DynamicMapTilesExtended.csproj ├── IApi.cs ├── LICENSE ├── ModEntry.cs ├── Patches.cs ├── Utils.cs ├── docs │ ├── actions.md │ ├── animations.md │ └── mod-author-documentation.md └── manifest.json ├── DynamicMapTilesOld ├── CodePatches.cs ├── DynamicMapTiles.csproj ├── DynamicMapTilesApi.cs ├── DynamicTileInfo.cs ├── IAdvancedLootFrameworkApi.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PushedTile.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── Email ├── Catalogues.cs ├── Email.csproj ├── EmailApp.cs ├── HelperEvents.cs ├── IMobilePhoneApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Visuals.cs ├── assets │ └── app_icon.png ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── ExpertSitting ├── ExpertSitting.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── ExtraMapLayers ├── ExtraMapLayers.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── manifest.json └── packages.config ├── Familiars ├── BatFamiliar.cs ├── ButterflyFamiliar.cs ├── DinoFamiliar.cs ├── DustSpriteFamiliar.cs ├── Familiar.cs ├── FamiliarSaveData.cs ├── Familiars.csproj ├── FamiliarsHelperEvents.cs ├── FamiliarsPatches.cs ├── FamiliarsUtils.cs ├── IJsonAssetsApi.cs ├── JunimoFamiliar.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── BatFamiliar.png │ ├── DinoFamiliar.png │ ├── DustSpriteFamiliar.png │ └── json-assets │ │ ├── Objects │ │ ├── BatFamiliarEgg │ │ │ ├── object.json │ │ │ └── object.png │ │ ├── ButterflyDust │ │ │ ├── object.json │ │ │ └── object.png │ │ ├── ButterflyFamiliarEgg │ │ │ ├── object.json │ │ │ └── object.png │ │ ├── DinoFamiliarEgg │ │ │ ├── object.json │ │ │ └── object.png │ │ ├── DustFamiliarEgg │ │ │ ├── object.json │ │ │ └── object.png │ │ ├── JunimoFamiliarEgg │ │ │ ├── object.json │ │ │ └── object.png │ │ └── object.xcf │ │ └── content-pack.json ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── FarmAnimalHarvestHelper ├── CodePatches.cs ├── FarmAnimalHarvestHelper.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FarmAnimalSex ├── CodePatches.cs ├── FarmAnimalSex.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── MaleBabyWhite Cow.png │ ├── MaleWhite Cow.png │ ├── sexes.png │ └── sexes.xcf ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── FarmAnywhere ├── FarmAnywhere.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── FarmCaveDoors ├── CodePatches.cs ├── FarmCaveDoors.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FarmCaveFramework ├── CaveChoice.cs ├── CodePatches.cs ├── FarmCaveFramework.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── FarmPlots ├── AutoPlot.cs ├── CodePatches.cs ├── FarmPlots.csproj ├── FarmPlotsMenu.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── FarmerCommissions ├── CodePatches.cs ├── FarmerCommissions.csproj ├── IGenericModConfigMenuApi.cs ├── IHelpWantedAPI.cs ├── IQuestData.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── QuestData.cs ├── SubmitCommissionMenu.cs ├── assets │ ├── pad.png │ └── pin.png ├── i18n │ └── default.json └── manifest.json ├── FarmerHelper ├── FarmerHelper.csproj ├── IGenericModConfigMenuApi.cs ├── MethodPatches.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── FarmerPortraits ├── CodePatches.cs ├── FarmerPortraits.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FastForward ├── CodePatches.cs ├── FastForward.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── Fetch ├── CodePatches.cs ├── Fetch.csproj ├── FetchData.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FieldHarvest ├── CodePatches.cs ├── FieldHarvest.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FireBreath ├── Compatibility.cs ├── FireBreath.csproj ├── Fireball.cs ├── IGenericModConfigMenuApi.cs ├── ManaBarApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── FishSpotBait ├── CodePatches.cs ├── FishSpotBait.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── FishingChestsExpanded ├── CodePatches.cs ├── FishingChestsExpanded.csproj ├── IAdvancedLootFrameworkApi.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── FloatingGardenPots ├── CodePatches.cs ├── FloatingGardenPots.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── FlowingMineRocks ├── FlowingMineRocks.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── assets │ ├── tilesheet.png │ └── tilesheet.xcf ├── manifest.json └── packages.config ├── FoodOnTheTable ├── CodePatches.cs ├── FoodOnTheTable.csproj ├── IFurnitureDisplayFrameworkAPI.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PlacedFoodData.cs └── manifest.json ├── FreeLove ├── Divorce.cs ├── EventPatches.cs ├── FarmerPatches.cs ├── FreeLove.csproj ├── FreeLoveAPI.cs ├── Game1Patches.cs ├── HelperEvents.cs ├── IBedTweaksAPI.cs ├── IChildrenTweaksAPI.cs ├── IContentPatcherAPI.cs ├── ICustomSpouseRoomsAPI.cs ├── IGenericModConfigMenuApi.cs ├── IKissingAPI.cs ├── IPlannedParenthoodAPI.cs ├── Integrations.cs ├── LocationPatches.cs ├── Misc.cs ├── ModConfig.cs ├── ModEntry.cs ├── NPCPatches.cs ├── PathFindControllerPatches.cs ├── Pregnancy.cs ├── UIPatches.cs ├── i18n │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── ru.json │ ├── uk.json │ └── zh.json └── manifest.json ├── FriendlyDivorce ├── FriendlyDivorce.csproj ├── ModConfig.cs ├── ModEntry.cs ├── ObjectPatches.cs ├── i18n │ ├── default.json │ ├── hu.json │ ├── pt.json │ └── ru.json └── manifest.json ├── FriendshipTweaks ├── CodePatches.cs ├── FriendshipTweaks.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FruitTreeShaker ├── FruitTreeShaker.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── FruitTreeTweaks ├── CodePatches.cs ├── FruitTreeTweaks.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── pt-br.json │ └── zh.json └── manifest.json ├── FurnitureAdjustment ├── FurnitureAdjustment.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FurnitureDisplayFramework ├── CodePatches.cs ├── FurnitureDisplayData.cs ├── FurnitureDisplayFramework.csproj ├── FurnitureDisplayFrameworkAPI.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FurniturePlacementTweaks ├── CodePatches.cs ├── FurniturePlacementTweaks.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── FurnitureRecolor ├── ColorDictData.cs ├── FurnitureRecolor.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── GalaxyWeaponChoice ├── CodePatches.cs ├── GalaxyWeaponChoice.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── GardenPotTweaks ├── CodePatches.cs ├── GardenPotTweaks.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── GemIsles ├── GemIsles.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── Utils.cs ├── assets │ ├── fall_beach.png │ ├── isles.tbin │ ├── spring_beach.png │ ├── summer_beach.png │ └── winter_beach.png ├── manifest.json └── packages.config ├── GenieLamp ├── CodePatches.cs ├── GenieLamp.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ObjectPickMenu.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── GhostSpeed ├── CodePatches.cs ├── GhostSpeed.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── GiantTrees ├── CodePatches.cs ├── GiantTrees.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── GiftRejection ├── CodePatches.cs ├── GiftRejection.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── GroundhogDay ├── Game1Patches.cs ├── GroundhogDay.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── GuitardewValleyHero ├── CodePatches.cs ├── GuitardewValleyHero.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SongData.cs └── manifest.json ├── Guns ├── CodePatches.cs ├── GunData.cs ├── GunProjectile.cs ├── Guns.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── uzi.png └── manifest.json ├── HarvestSeeds ├── CodePatches.cs ├── HarvestSeeds.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── HedgeMaze ├── CodePatches.cs ├── HedgeMaze.csproj ├── IAdvancedLootFrameworkApi.cs ├── IGenericModConfigMenuApi.cs ├── MazeData.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── HelpWanted ├── CodePatches.cs ├── HelpWanted.csproj ├── HelpWantedAPI.cs ├── IGenericModConfigMenuApi.cs ├── IQuestData.cs ├── JsonQuestData.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OrdersBillboard.cs ├── QuestData.cs ├── assets │ ├── pad.png │ └── pin.png └── manifest.json ├── HereFishy ├── HereFishy.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── fishy_female.wav │ ├── fishy_male.wav │ └── wee.wav ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── HiResSprites ├── CodePatches.cs ├── HiResSprites.csproj ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── TextureData.cs └── manifest.json ├── HugsAndKisses ├── EventPatches.cs ├── HelperEvents.cs ├── HugsAndKisses.csproj ├── IGenericModConfigMenuApi.cs ├── IKissingAPI.cs ├── Kissing.cs ├── KissingAPI.cs ├── Misc.cs ├── ModConfig.cs ├── ModEntry.cs ├── NPCPatches.cs ├── assets │ └── kiss.wav └── manifest.json ├── ImmersiveScarecrows ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ImmersiveScarecrows.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── ImmersiveSigns ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ImmersiveScarecrows.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── ImmersiveSprinklers ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ImmersiveSprinklers.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── ImportMap ├── IAdvancedFluteBlocksApi.cs ├── IGenericModConfigMenuApi.cs ├── ITrainTracksApi.cs ├── ImportMap.csproj ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── EXAMPLE_import.tmx │ ├── drumblocks.png │ ├── drumblocks.xcf │ ├── flooring.png │ ├── fluteblock.xcf │ ├── fluteblocks.png │ ├── paths.png │ ├── spring_outdoorsTileSheet.png │ ├── springobjects.png │ └── traintracks.png └── manifest.json ├── IndoorOutdoor ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── IndoorData.cs ├── IndoorOutdoor.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── InfallibleFishing ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── InfallibleFishing.csproj ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── InstanceEditor ├── IGenericModConfigMenuApi.cs ├── InstanceEditData.cs ├── InstanceEditor.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── InstantBuildingConstruction ├── CodePatches.cs ├── Compatibility.cs ├── ConsoleCommands.cs ├── IGenericModConfigMenuApi.cs ├── InstantBuildingConstruction.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── InstantGrowthPowder ├── IJsonAssetsApi.cs ├── InstantGrowthPowder.csproj ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── json-assets │ │ ├── Objects │ │ └── Instant Growth Powder │ │ │ ├── object.json │ │ │ ├── object.png │ │ │ └── object.xcf │ │ └── content-pack.json └── manifest.json ├── InventoryIndicators ├── CodePatches.cs ├── IGMCMOptionsAPI.cs ├── IGenericModConfigMenuApi.cs ├── InventoryIndicators.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── ItemAboveHead ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ItemAboveHead.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── KrobusRoommateStore ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── KrobusRoommateStore.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── LICENSE ├── LightMod ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── LightData.cs ├── LightMod.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── TextureData.cs └── manifest.json ├── LikeADuckToWater ├── CodePatches.cs ├── HopInfo.cs ├── IGenericModConfigMenuApi.cs ├── LikeADuckToWater.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── LivestockChoices ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── LivestockChoices.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── LoadMenuCache ├── CodePatches.cs ├── FarmerData.cs ├── IGenericModConfigMenuApi.cs ├── LoadMenuCache.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ └── default.json └── manifest.json ├── LoadMenuTweaks ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── LoadMenuTweaks.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── LoadingScreens ├── IGenericModConfigMenuApi.cs ├── LoadingScreen.cs ├── LoadingScreens.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── LogSpamFilter ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── LogSpamFilter.csproj ├── ModConfig.cs ├── ModEntry.cs ├── ModMessageData.cs └── manifest.json ├── LogUploader ├── ClickableMenu.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── LogUploader.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── button.png │ └── log.html ├── manifest.json └── temp │ └── log.html ├── LongerSeasons ├── BillboardPatches.cs ├── BushPatches.cs ├── Game1Patches.cs ├── IGenericModConfigMenuApi.cs ├── LongerSeasons.csproj ├── ModConfig.cs ├── ModEntry.cs ├── SDatePatches.cs ├── UtilityPatches.cs ├── WorldDatePatches.cs ├── assets │ ├── Billboard.png │ ├── Billboard.xcf │ ├── Billboard56.xcf │ ├── Billboard84.xcf │ ├── numbers.png │ └── numbers.xcf └── manifest.json ├── LooseAudioFiles ├── LooseAudioFiles.csproj ├── LooseFileCodeData.cs ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json ├── packages.config ├── wavebankFULL.json └── wavebankreverse.txt ├── MagnetMod ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── MagnetMod.csproj ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── MailboxMenu ├── CodePatches.cs ├── DefaultMailSenders.cs ├── EnvelopeData.cs ├── IGenericModConfigMenuApi.cs ├── IMobilePhoneApi.cs ├── MailMenu.cs ├── MailboxMenu.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MyLetterViewerMenu.cs ├── assets │ ├── envelope.png │ ├── envelope.xcf │ └── icon.png └── manifest.json ├── MapEdit ├── CodePatches.cs ├── HelperEvents.cs ├── IGenericModConfigMenuApi.cs ├── MapActions.cs ├── MapCollectionData.cs ├── MapCollectionDataOld.cs ├── MapEdit.csproj ├── ModActions.cs ├── ModConfig.cs ├── ModEntry.cs ├── TileActions.cs ├── TileSelectMenu.cs ├── Utils.cs ├── i18n │ └── default.json └── manifest.json ├── MapTeleport ├── CodePatches.cs ├── Compatibility.cs ├── IGenericModConfigMenuApi.cs ├── MapTeleport.csproj ├── ModConfig.cs ├── ModEntry.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── MayoMart ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── MayoMart.csproj ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── assets │ ├── Craftables.png │ ├── furniture.png │ ├── town.png │ └── townInterior.png └── manifest.json ├── MeteorDefence ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── MeteorDefence.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Tokens.cs ├── assets │ ├── flyingMeteorite.wav │ ├── meteoriteImpact.wav │ └── spaceLaser.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── MeteoriteDefenceModule ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PetBed.csproj └── manifest.json ├── MinuteDisplay ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── MinuteDisplay.csproj ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── MobileArcade ├── IMobilePhoneApi.cs ├── MobileArcade.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── assets │ ├── app_icon_junimo.png │ ├── app_icon_junimo.xcf │ └── app_icon_prairie.png ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json └── packages.config ├── MobileAudioPlayer ├── AudioPlayerMenu.cs ├── IMobilePhoneApi.cs ├── MobileAudioPlayer.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── assets │ ├── app_icon.png │ ├── buttons.png │ └── buttons.xcf ├── audio │ └── PlaceAudioFilesHere.txt ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json └── packages.config ├── MobileCalendar ├── IMobilePhoneApi.cs ├── MobileCalendar.csproj ├── ModConfig.cs ├── ModEntry.cs ├── assets │ └── app_icon.png ├── i18n │ ├── default.json │ ├── fr.json │ ├── hu.json │ └── ru.json └── manifest.json ├── MobileCatalogues ├── Catalogues.cs ├── CataloguesApp.cs ├── HelperEvents.cs ├── IJsonAssetsApi.cs ├── IMobilePhoneApi.cs ├── MobileCatalogues.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Visuals.cs ├── assets │ ├── app_icon.png │ ├── app_icon_catalogue.png │ ├── app_icon_desert_catalogue.png │ ├── app_icon_furniture.xcf │ ├── app_icon_furniture_catalogue.png │ ├── app_icon_hat_catalogue.png │ ├── app_icon_seed_catalogue.png │ ├── app_icon_travel_catalogue.png │ └── coin.png ├── i18n │ ├── default.json │ ├── es.json │ ├── hu.json │ ├── pt.json │ └── ru.json └── manifest.json ├── MobilePhone ├── CallableNPC.cs ├── CarpenterPhoneMenu.cs ├── CustomNPCData.cs ├── MobileApp.cs ├── MobilePhone.csproj ├── MobilePhoneApi.cs ├── MobilePhoneApp.cs ├── MobilePhoneCall.cs ├── MobilePhonePackJSON.cs ├── ModConfig.cs ├── ModEntry.cs ├── PhoneGameLoop.cs ├── PhoneInput.cs ├── PhonePatches.cs ├── PhoneUtils.cs ├── PhoneVisuals.cs ├── Reminiscence.cs ├── ThemeApp.cs ├── api │ ├── IGenericModConfigMenuApi.cs │ ├── IHDPortraitsAPI.cs │ └── INpcAdventureModApi.cs ├── assets │ ├── app_icon.png │ ├── app_icon.xcf │ ├── app_icon_64.png │ ├── backgrounds │ │ ├── clouds.png │ │ ├── clouds_landscape.png │ │ ├── hearts.png │ │ └── hearts_landscape.png │ ├── down_arrow.png │ ├── events │ │ ├── Abigail.json │ │ ├── Alex.json │ │ ├── Andy.json │ │ ├── Apples.json │ │ ├── Caroline.json │ │ ├── Clint.json │ │ ├── Demetrius.json │ │ ├── Elliott.json │ │ ├── Emily.json │ │ ├── Evelyn.json │ │ ├── George.json │ │ ├── Gus.json │ │ ├── Haley.json │ │ ├── Harvey.json │ │ ├── Jas.json │ │ ├── Jodi.json │ │ ├── Kent.json │ │ ├── Krobus.json │ │ ├── Leah.json │ │ ├── Lewis.json │ │ ├── Linus.json │ │ ├── Marlon.json │ │ ├── Marnie.json │ │ ├── Maru.json │ │ ├── Morgan.json │ │ ├── Morris.json │ │ ├── Olivia.json │ │ ├── Pam.json │ │ ├── Penny.json │ │ ├── Pierre.json │ │ ├── Robin.json │ │ ├── Sam.json │ │ ├── Sandy.json │ │ ├── Sebastian.json │ │ ├── Shane.json │ │ ├── Sophia.json │ │ ├── Susan.json │ │ ├── Victor.json │ │ ├── Vincent.json │ │ ├── Willy.json │ │ └── Wizard.json │ ├── phone.xcf │ ├── phone_cut.xcf │ ├── phone_icon.png │ ├── phone_landscape.xcf │ ├── rotate_icon.png │ ├── skins │ │ ├── black.png │ │ ├── black_landscape.png │ │ ├── pink.png │ │ ├── pink_decals.png │ │ ├── pink_decals_landscape.png │ │ ├── pink_landscape.png │ │ ├── white.png │ │ └── white_landscape.png │ ├── speaker_icon.png │ ├── theme_app_icon.png │ └── up_arrow.png ├── i18n │ ├── default.json │ ├── es.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── MobileTelevision ├── IMobilePhoneApi.cs ├── MobileTV.cs ├── MobileTelevision.csproj ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── assets │ └── app_icon.png ├── i18n │ ├── default.json │ ├── fr.json │ ├── hu.json │ └── ru.json ├── manifest.json └── packages.config ├── Mod Translation.rar ├── Mod Translation ├── Mobile Calendar v0.3.0 │ └── Hu.json ├── Mobile Catalogues v0.9.0 │ └── Hu.json └── Mobile Television v0.2.1 │ └── Hu.json ├── ModifyThis ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ModifyThis.csproj ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── ModularBuildings ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── ModularBuilding.cs ├── ModularBuildingPart.cs ├── ModularBuildings.csproj ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── MoolahMoneyMod ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MoneyDialData.cs ├── MoolahAPI.cs ├── MoolahMoneyMod.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── MoveGreenhousePlot ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MoveGreenhousePlot.csproj └── manifest.json ├── MoveIt ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MoveIt.csproj └── manifest.json ├── MoveableMailbox ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MoveableMailbox.csproj ├── Tokens.cs ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── MoveablePetBowl ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MoveablePetBowl.csproj ├── Properties │ └── AssemblyInfo.cs ├── assets │ ├── tiles.png │ └── water.png ├── json-assets │ ├── BigCraftables │ │ ├── Copper Pet Bowl │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ ├── Diamond Pet Bowl │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ ├── Golden Pet Bowl │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ ├── Iridium Pet Bowl │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ ├── Prismatic Pet Bowl │ │ │ ├── big-craftable.json │ │ │ ├── big-craftable.png │ │ │ └── big-craftable.xcf │ │ └── Wooden Pet Bowl │ │ │ ├── big-craftable.json │ │ │ ├── big-craftable.png │ │ │ └── big-craftable.xcf │ └── content-pack.json ├── manifest.json └── packages.config ├── MovieTheatreTweaks ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MovieTheatreTweaks.csproj └── manifest.json ├── MultiLevelLocations ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MultiLevelLocations.csproj └── manifest.json ├── MultiSave ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MultiSave.csproj ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── MultiStoryFarmhouse ├── CodePatches.cs ├── FloorsData.cs ├── ModConfig.cs ├── ModEntry.cs ├── MultiStoryFarmhouse.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── MultipleCribs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MultipleCribs.csproj ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── MultipleSpouses ├── Divorce.cs ├── EventPatches.cs ├── FarmerPatches.cs ├── FileIO.cs ├── FurniturePatches.cs ├── Game1Patches.cs ├── HelperEvents.cs ├── Kissing.cs ├── LocationPatches.cs ├── Maps.cs ├── Misc.cs ├── ModConfig.cs ├── ModEntry.cs ├── MultipleSpouses.csproj ├── NPCPatches.cs ├── NetWorldStatePatches.cs ├── ObjectPatches.cs ├── Pregnancy.cs ├── Properties │ └── AssemblyInfo.cs ├── UIPatches.cs ├── assets │ ├── Baby.png │ ├── Baby_dark.png │ ├── CustomBed.tmx │ ├── Toddler.png │ ├── Toddler_dark.png │ ├── Toddler_girl.png │ ├── Toddler_girl_dark.png │ ├── beds.png │ ├── hair │ │ ├── Baby.png │ │ ├── Toddler.png │ │ └── Toddler_girl.png │ ├── kiss.ogg │ └── kiss.wav ├── i18n │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── ru.json │ └── zh.json ├── manifest.json └── packages.config ├── Murdercrows ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MonsterWave.cs ├── MurderCrow.cs ├── Murdercrows.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── assets │ └── json-assets │ │ ├── BigCraftables │ │ ├── Gold Scarecrow │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ └── Iridium Scarecrow │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ └── content-pack.json ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json └── packages.config ├── MusicalPaths ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MusicalPaths.csproj └── manifest.json ├── NPCClothing ├── CPJSON.cs ├── ClothingData.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── NPCClothing.csproj └── manifest.json ├── NPCStatusIcons ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── NPCStatusIcons.csproj └── manifest.json ├── NapalmMummies ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── NapalmMummies.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── NewProject ├── CodePatches.cs ├── CustomSigns.csproj ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs └── manifest.json ├── NightEventChanceTweak ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── NightEventChanceTweak.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── NonRandomPrairieKing ├── ModConfig.cs ├── ModEntry.cs ├── NonRandomPrairieKing.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── manifest.json └── packages.config ├── OKNightCheck ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── IQuotesApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OKMenu.cs ├── OKNightCheck.csproj └── manifest.json ├── ObjectProductDisplay ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ObjectProductDisplay.csproj ├── i18n │ └── default.json └── manifest.json ├── ObjectTriggers ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── IParticleEffectAPI.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ObjectTriggerData.cs ├── ObjectTriggerInstance.cs ├── ObjectTriggers.csproj └── manifest.json ├── OmniTools ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OmniTools.csproj ├── OmniToolsAPI.cs ├── ToolInfo.cs └── manifest.json ├── OpenFolder ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Mapping.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OpenFolder.csproj ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── OpenWorldValley ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── OpenWorldValley.csproj └── manifest.json ├── OutdoorButterflyHutch ├── ModConfig.cs ├── ModEntry.cs ├── OutdoorButterflyHutch.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── assets │ └── ButteryflyHutch.png ├── manifest.json └── packages.config ├── OutfitSets ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OutfitSets.csproj └── manifest.json ├── OverworldChests ├── CodePatches.cs ├── ConsoleCommands.cs ├── IAdvancedLootFrameworkApi.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OverworldChests.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── PacifistValley ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PacifistValley.csproj ├── Properties │ └── AssemblyInfo.cs ├── assets │ ├── heart.png │ ├── heart_2.png │ ├── heart_4.png │ ├── heart_small.png │ ├── heart_small_4.png │ ├── totally_not_weapons.json │ ├── totally_not_weapons.png │ └── totally_not_weapons.xcf ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── PaintingDisplay ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PaintingDisplay.csproj └── manifest.json ├── ParrotPerch ├── IAdvancedLootFrameworkApi.cs ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── ParrotPerch.csproj ├── PerchParrot.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── json-assets │ ├── BigCraftables │ │ ├── Jungle Parrot Perch │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ ├── Stone Parrot Perch │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ │ └── Wooden Parrot Perch │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ └── content-pack.json ├── manifest.json └── packages.config ├── PartialHearts ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PartialHearts.csproj ├── assets │ └── heart.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── ParticleEffects ├── CodePatches.cs ├── EntityParticleData.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ParticleEffectData.cs ├── ParticleEffects.csproj ├── ParticleEffectsAPI.cs └── manifest.json ├── PelicanXVASynth ├── GameVoiceText.cs ├── GameVoices.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PelicanXVASynth.csproj └── manifest.json ├── PersisitentGrangeDisplay ├── GrangePatches.cs ├── ModConfig.cs ├── ModEntry.cs ├── PersisitentGrangeDisplay.csproj ├── PersistentGrangeDisplayData.cs ├── PersistentItem.cs ├── Properties │ └── AssemblyInfo.cs ├── manifest.json └── packages.config ├── PersonalTravelingCart ├── CodePatches.cs ├── ConsoleCommands.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ParkedTravelingCart.cs ├── PersonalTravelingCart.csproj ├── TravelingCart.cs ├── assets │ ├── Cart.tmx │ └── cart.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── PetBed ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PetBed.csproj └── manifest.json ├── PetClothes ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PetClothes.csproj ├── i18n │ └── default.json └── manifest.json ├── PetHats ├── CodePatches.cs ├── FrameOffsetData.cs ├── HatOffsetData.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PetHats.csproj ├── assets │ ├── cats.json │ ├── dogs.json │ └── hats.json └── manifest.json ├── PipeIrrigation ├── IGenericModConfigMenuApi.cs ├── IUtilityGridApi.cs ├── MethodPatches.cs ├── ModConfig.cs ├── ModEntry.cs ├── PipeIrrigation.csproj ├── RefreshGridArgs.cs ├── assets │ └── drop.png └── manifest.json ├── PlaceShaft ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PlaceShaft.csproj ├── assets │ └── sprite.png ├── i18n │ └── default.json └── manifest.json ├── PlannedParenthood ├── CodePatches.cs ├── IFreeLoveAPI.cs ├── IGenericModConfigMenuApi.cs ├── IPlannedParenthoodAPI.cs ├── ModConfig.cs ├── ModEntry.cs ├── PlannedParenthood.csproj ├── PlannedParenthoodAPI.cs ├── i18n │ ├── default.json │ ├── ru.json │ └── zh.json └── manifest.json ├── PlantAll ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PlantAll.csproj └── manifest.json ├── PlanterTrees ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PlanterTrees.csproj └── manifest.json ├── PlayerAnimationFramework ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PlayerAnimation.cs ├── PlayerAnimationFramework.csproj └── manifest.json ├── PlaygroundMod ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MySeat.cs ├── PlaygroundMod.csproj ├── assets │ ├── slide.png │ ├── spring.png │ └── swing.png └── manifest.json ├── PlayingCards ├── CardDeck.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PlayingCards.csproj ├── assets │ ├── backs.png │ ├── backs.xcf │ ├── cards.png │ └── cards.xcf └── manifest.json ├── PoopFramework ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PoopData.cs ├── PoopFramework.csproj ├── ToiletData.cs └── manifest.json ├── PortableBasements ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PortableBasementMenu.cs ├── PortableBasements.csproj ├── assets │ └── ladder.png ├── i18n │ └── default.json └── manifest.json ├── PortableFurnace ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PortableFurnace.csproj ├── assets │ ├── furnace.png │ └── furnace.xcf ├── i18n │ └── default.json └── manifest.json ├── PrismaticFire ├── CodePatches.cs ├── ColorData.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PrismaticFire.csproj └── manifest.json ├── PrismaticFurniture ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PrismaticFurniture.csproj ├── PrismaticFurnitureData.cs └── manifest.json ├── ProceduralDungeons ├── MapGeneration.cs ├── ModConfig.cs ├── ModEntry.cs ├── ProceduralDungeons.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── assets │ └── base.tmx └── packages.config ├── PuristMod ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── PuristMod.csproj └── manifest.json ├── PushPull ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MovementData.cs ├── PushPull.csproj ├── i18n │ └── default.json └── manifest.json ├── QuestTimeLimits ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── QuestTimeLimits.csproj └── manifest.json ├── QuickChestColor ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── QuickChestColor.csproj ├── i18n │ └── default.json └── manifest.json ├── QuickLoad ├── ModConfig.cs ├── ModEntry.cs ├── QuickLoad.csproj └── manifest.json ├── QuickResponses ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── QuickResponses.csproj ├── app.config ├── manifest.json └── packages.config ├── Quotes ├── IGenericModConfigMenuApi.cs ├── IMobilePhoneApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Quote.cs ├── Quotes.csproj ├── QuotesAPI.cs ├── assets │ ├── app_icon.png │ ├── app_icon.xcf │ ├── app_icon_64.png │ ├── quotes_default.txt │ ├── quotes_portuguese.txt │ └── quotes_russian.txt └── manifest.json ├── README.md ├── RainbowTrail ├── CodePatches.cs ├── Compatibility.cs ├── IGenericModConfigMenuApi.cs ├── ManaBarApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── RainbowTrail.csproj ├── RainbowTrailElement.cs ├── assets │ └── rainbow.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── RandomNPC ├── DialogueData.cs ├── ModConfig.cs ├── ModData.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── RNPC.cs ├── RNPCDialogue.cs ├── RNPCSchedule.cs ├── RandomNPC.csproj ├── SaveData.cs ├── app.config ├── assets │ ├── body │ │ ├── female_buxom_character.png │ │ ├── female_buxom_portrait.png │ │ ├── female_character.png │ │ ├── female_eyes_back.png │ │ ├── female_eyes_character.png │ │ ├── female_eyes_portrait.png │ │ ├── female_mouth.png │ │ ├── female_nose.png │ │ ├── female_portrait.png │ │ ├── female_portrait_full.png │ │ ├── male_character.png │ │ ├── male_eyes_back.png │ │ ├── male_eyes_character.png │ │ ├── male_eyes_portrait.png │ │ ├── male_mouth.png │ │ ├── male_nose.png │ │ └── male_portrait.png │ ├── body_types.json │ ├── clothes.json │ ├── clothes │ │ ├── blue_jeans.png │ │ ├── blue_shorts.png │ │ ├── dress_buxom_character.png │ │ ├── dress_buxom_portrait.png │ │ ├── dress_character.png │ │ ├── dress_portrait.png │ │ ├── heels.png │ │ ├── jeans.png │ │ ├── male_blue_shirt_character.png │ │ ├── male_blue_shirt_portrait.png │ │ ├── male_shirt_character.png │ │ ├── male_shirt_portrait.png │ │ ├── pink_scarf_top_character.png │ │ ├── pink_scarf_top_portrait.png │ │ ├── pink_shirt_buxom_character.png │ │ ├── pink_shirt_buxom_portrait.png │ │ ├── red_dress_buxom_character.png │ │ ├── red_dress_buxom_portrait.png │ │ ├── red_dress_character.png │ │ ├── red_dress_portrait.png │ │ ├── red_heels.png │ │ ├── scarf_top_character.png │ │ ├── scarf_top_portrait.png │ │ ├── shirt_buxom_character.png │ │ ├── shirt_buxom_portrait.png │ │ ├── shorts.png │ │ ├── skirt_blouse_buxom_character.png │ │ └── skirt_blouse_buxom_portrait.png │ ├── dark_hair_sets.json │ ├── dark_skin_colours.json │ ├── dialogue.json │ ├── engagement_dialogues.json │ ├── exotic_hair_sets.json │ ├── female_names.json │ ├── gift_dialogues.json │ ├── hair │ │ ├── beard_character.png │ │ ├── beard_portrait.png │ │ ├── female_hair_bun_character.png │ │ ├── female_hair_bun_portrait.png │ │ ├── female_hair_long_character.png │ │ ├── female_hair_long_portrait.png │ │ ├── female_hair_pigtail_character.png │ │ ├── female_hair_pigtail_portrait.png │ │ ├── female_hair_waivy_character.png │ │ ├── female_hair_waivy_portrait.png │ │ ├── goatee_character.png │ │ ├── goatee_portrait.png │ │ ├── short_hair_male_character.png │ │ └── short_hair_male_portrait.png │ ├── hair_styles.json │ ├── light_skin_colours.json │ ├── male_names.json │ ├── natural_hair_sets.json │ ├── schedules.json │ ├── skin_colours.json │ ├── transparent_character.png │ ├── transparent_portrait.png │ └── work │ │ ├── 36466006.zip │ │ ├── BackOnTheBus.png │ │ ├── RobinNekked.xcf │ │ ├── all_dialogues.json │ │ ├── beard_character_original.png │ │ ├── character_layers.xcf │ │ ├── dialog.json │ │ ├── dialogues.json │ │ ├── dialogues_new.json │ │ ├── disney_hair │ │ ├── exotic_hair.json │ │ ├── eyes_portrait.png │ │ ├── female_character_orig.png │ │ ├── female_hair_waivy_portrait_original_grey.png │ │ ├── female_wild_long_hair_character.png │ │ ├── goatee_character_original.png │ │ ├── green_hair.png │ │ ├── hair.png │ │ ├── hairs │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 16.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── hair.png │ │ ├── jeans_character_original.png │ │ ├── last_names.json │ │ ├── lipstick │ │ ├── mouth1.png │ │ ├── mouth2.png │ │ ├── natural_hair │ │ ├── natural_hair.json │ │ ├── pink_shirt_portrait.png │ │ ├── portrait_layers.xcf │ │ ├── red_dress.xcf │ │ ├── red_dress_portrait.xcf │ │ ├── robin_hair_original.png │ │ ├── schedules_original.json │ │ ├── screenshots.xcf │ │ ├── screenshots │ │ ├── 1.png │ │ ├── 11.png │ │ ├── 111.png │ │ ├── 2.png │ │ ├── 22.png │ │ ├── 222.png │ │ ├── 2222.png │ │ ├── Pasted Layer #1.png │ │ ├── Pasted Layer #10.png │ │ ├── Pasted Layer #11.png │ │ ├── Pasted Layer #12.png │ │ ├── Pasted Layer #13.png │ │ ├── Pasted Layer #15.png │ │ ├── Pasted Layer #4.png │ │ ├── Pasted Layer #6.png │ │ ├── Pasted Layer #8.png │ │ ├── Pasted Layer.png │ │ ├── Quest.png │ │ ├── Walking.png │ │ └── crowd.png │ │ ├── test_dialogue.json │ │ ├── test_schedule.json │ │ ├── white_skirt_blouse_character.png │ │ └── white_skirt_blouse_portrait.png ├── manifest.json └── packages.config ├── RangedWeapons ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── RangedWeaponData.cs ├── RangedWeapons.csproj └── manifest.json ├── RealNames ├── ModConfig.cs ├── ModEntry.cs ├── RealNames.csproj ├── assets │ ├── names_female_Norse.txt │ ├── names_female_en-US.txt │ ├── names_male_Norse.txt │ └── names_male_en-US.txt └── manifest.json ├── Renovations ├── CodePatches.cs ├── CustomRenovationData.cs ├── ModConfig.cs ├── ModEntry.cs ├── Renovations.csproj └── manifest.json ├── ResourceStorage ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ResourceMenu.cs ├── ResourceStorage.csproj ├── i18n │ ├── default.json │ ├── es.json │ ├── ru.json │ └── tr.json └── manifest.json ├── Restauranteer ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OrderData.cs ├── Restauranteer.csproj ├── assets │ ├── SaloonKitchen.tmx │ └── emote.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── pt.json │ ├── ru.json │ ├── tr.json │ └── zh.json └── manifest.json ├── RightToLeft ├── CodePatches.cs ├── LanguageInfo.cs ├── Mapping.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── RightToLeft.csproj ├── ar-AR │ ├── button.png │ ├── content.json │ ├── dialogueFont.fnt │ ├── dialogueFont_0.png │ ├── smallFont.fnt │ ├── smallFont_0.png │ ├── tinyFont.fnt │ └── tinyFont_0.png ├── he-HE │ ├── button.png │ ├── content.json │ ├── dialogueFont.fnt │ ├── dialogueFont_0.png │ ├── smallFont.fnt │ ├── smallFont_0.png │ ├── tinyFont.fnt │ └── tinyFont_0.png └── manifest.json ├── RoastingMarshmallows ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── RoastingMarshmallows.csproj ├── assets │ ├── burnt_marshmallow.png │ ├── cooked_marshmallow.png │ ├── raw_marshmallow.png │ ├── stick.png │ └── stick_old.png ├── i18n │ ├── default.json │ ├── ko.json │ └── zh.json └── manifest.json ├── RobinWorkHours ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── RobinWorkHours.csproj └── manifest.json ├── SDIEmily ├── CodePatches.cs ├── ICharacterData.cs ├── IGenericModConfigMenuApi.cs ├── IStardewImpactApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── RunningBurst.cs ├── RunningSkill.cs ├── SDIEmily.csproj ├── assets │ ├── back.png │ ├── burst.png │ ├── frame.png │ └── skill.png └── manifest.json ├── SDVExplorer ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── SDVExplorer.csproj ├── UI │ ├── ExplorerMenu.cs │ ├── FieldCheckbox.cs │ ├── FieldDropDown.cs │ ├── FieldElement.cs │ └── FieldTextEntry.cs └── manifest.json ├── SMAPILibs ├── SMAPI.Toolkit.CoreInterfaces.dll └── SMAPI.Toolkit.dll ├── SMAPILogGetter ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── SMAPILogGetter.csproj ├── manifest.json └── packages.config ├── Screenshot ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Screenshot.csproj └── manifest.json ├── SeedInfo ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SeedEntryInfo.cs ├── SeedInfo.csproj ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── SeedMakerTweaks ├── CodePatches.cs ├── IDynamicGameAssetsApi.cs ├── IGenericModConfigMenuApi.cs ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── SeedMakerTweaks.csproj └── manifest.json ├── SelfServe ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── SelfServe.csproj └── manifest.json ├── SewerSlimes ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SewerSlimes.csproj ├── i18n │ └── default.json └── manifest.json ├── ShowPlayerBehind ├── FarmerPointSet.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── ShowPlayerBehind.csproj └── manifest.json ├── SixtyNine ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── SixtyNine.csproj ├── app.config ├── assets │ └── json-assets │ │ ├── Shirts │ │ └── Sixty-Nine Shirt │ │ │ ├── male.png │ │ │ ├── male.xcf │ │ │ └── shirt.json │ │ ├── Tailoring │ │ └── Sixty-Nine Shirt │ │ │ └── recipe.json │ │ └── content-pack.json ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json ├── new 2.txt └── packages.config ├── Skateboard ├── CodePatches.cs ├── FarmerState.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Skateboard.csproj ├── assets │ └── board.png ├── i18n │ ├── de.json │ ├── default.json │ └── ru.json └── manifest.json ├── SlimeHutchWaterSpots ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── SlimeHutchWaterSpots.csproj └── manifest.json ├── SmallerCrops ├── CropPatches.cs ├── GameLocationPatches.cs ├── HoeDirtPatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ObjectPatches.cs ├── SmallerCrops.csproj └── manifest.json ├── SocialNetwork ├── HelperEvents.cs ├── IMobilePhoneApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── SocialNetwork.csproj ├── SocialNetworkMenu.cs ├── SocialPost.cs ├── SocialPostReaction.cs ├── Utils.cs ├── app.config ├── assets │ ├── app_icon.png │ └── app_icon_64.png ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json └── packages.config ├── SocialPageOrderButton ├── ModConfig.cs ├── ModEntry.cs ├── MyOptionsDropDown.cs ├── SocialPageOrderButton.csproj ├── assets │ └── button.png ├── i18n │ └── default.json └── manifest.json ├── SocialPageOrderMenu ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MyOptionsDropDown.cs ├── SocialPageOrderMenu.csproj ├── i18n │ └── default.json └── manifest.json ├── SoundEffectReplacement ├── IGenericModConfigMenuApi.cs ├── MethodPatches.cs ├── ModConfig.cs ├── ModEntry.cs ├── SoundEffectReplacement.csproj ├── assets │ └── silent.wav └── manifest.json ├── SoundTweaker ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SoundTweaker.csproj ├── TweakData.cs ├── manifest.json ├── reverbsettings.csv └── rpccurves.csv ├── Spoilage ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SpoilData.cs ├── Spoilage.csproj ├── SpoilageAPI.cs ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── SprinklerMod ├── ActiveSprinklerData.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── SprinklerMod.csproj └── manifest.json ├── StackedItemIcons ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── StackedItemIcons.csproj └── manifest.json ├── StardewImpact ├── CharacterData.cs ├── CodePatches.cs ├── Display.cs ├── ICharacterData.cs ├── IGenericModConfigMenuApi.cs ├── Input.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── StardewImpact.csproj ├── StardewImpactApi.cs ├── assets │ ├── back.png │ ├── burst.png │ ├── frame.png │ ├── skill.png │ ├── skill.xcf │ └── white.png └── manifest.json ├── StardewOpenWorld ├── AnimatedTileData.cs ├── BorderTiles.cs ├── BuildMethods.cs ├── CodePatches.cs ├── DrawPatches.cs ├── IAdvancedLootFrameworkApi.cs ├── IGenericModConfigMenuApi.cs ├── Landmark.cs ├── LoadMethods.cs ├── MapMethods.cs ├── ModConfig.cs ├── ModEntry.cs ├── MonsterSpawnInfo.cs ├── MyTileArray.cs ├── SOWRandomSeed.cs ├── SkiaSharp.dll ├── StardewOpenWorld.csproj ├── StardewOpenWorldAPI.cs ├── StaticTileInfo.cs ├── TranspilerMethods.cs ├── Utils.cs ├── WorldChunk.cs ├── WorldTile.cs ├── assets │ ├── StardewOpenWorld.tmx │ └── animated_tiles.json └── manifest.json ├── StardewRPG ├── IContentPatcherAPI.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── Patches │ ├── BuffPatches.cs │ ├── CraftingPatches.cs │ ├── CropPatches.cs │ ├── FarmerPatches.cs │ ├── FishingPatches.cs │ ├── Game1Patches.cs │ ├── GameLocationPatches.cs │ ├── NPCPatches.cs │ ├── ObjectPatches.cs │ ├── ToolPatches.cs │ └── UIPatches.cs ├── README.md ├── StardewRPG.csproj ├── StardewRPGApi.cs ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── StardewValleyMods.sln ├── StardewValleyOrigins ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── OriginsData.cs ├── StardewValleyOrigins.csproj ├── WorldStateData.cs ├── assets │ └── rainbow.png └── manifest.json ├── StatueShorts ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── StatueShorts.csproj ├── assets │ ├── shorts.png │ └── trimmed.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── SubmergedCrabPots ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── SubmergedCrabPots.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── Swim 0.9.2.zip ├── Swim ├── AbigailMetalHead.cs ├── AbigailProjectile.cs ├── BigFishie.cs ├── DiveMapData.cs ├── Fishie.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── SeaCrab.cs ├── Swim.csproj ├── SwimDialog.cs ├── SwimHelperEvents.cs ├── SwimMaps.cs ├── SwimModApi.cs ├── SwimPatches.cs ├── SwimUtils.cs ├── SwimmerData.cs ├── [CP] Swim Items │ ├── assets │ │ ├── boots.png │ │ ├── hats.png │ │ ├── shirts.png │ │ └── shoeColors.png │ ├── content.json │ ├── i18n │ │ ├── default.json │ │ ├── es.json │ │ ├── ko.json │ │ ├── pt.json │ │ ├── ru.json │ │ └── zh.json │ └── manifest.json ├── [CP] Swim Maps │ ├── assets │ │ ├── 27.tbin │ │ ├── Abigail.tbin │ │ ├── Cave.tbin │ │ ├── CrystalCave.tbin │ │ ├── CrystalCaveDark.tbin │ │ ├── DesertTiles.png │ │ ├── ElliottHouseTiles.png │ │ ├── Forest.tbin │ │ ├── UnderwaterBeach.tbin │ │ ├── UnderwaterMountain.tbin │ │ ├── UnderwaterTown.tbin │ │ ├── mine.png │ │ ├── mine_dark.png │ │ ├── mine_frost.png │ │ ├── spring_beach.png │ │ └── spring_outdoorsTileSheet.png │ ├── content.json │ └── manifest.json ├── assets │ ├── Fishies │ │ ├── BigFishBlack.png │ │ ├── BigFishBlue.png │ │ ├── BigFishGold.png │ │ ├── BigFishGreen.png │ │ ├── BigFishGreenWhite.png │ │ ├── BigFishGrey.png │ │ ├── BigFishRed.png │ │ ├── BigFishWhite.png │ │ ├── BlueFish.png │ │ ├── ChestCrab.png │ │ ├── GreenFish.png │ │ ├── HermitCrab.png │ │ ├── HermitCrab.xcf │ │ └── PinkFish.png │ ├── breathe.wav │ ├── json-assets │ │ ├── Boots │ │ │ └── Scuba Fins │ │ │ │ ├── boots.json │ │ │ │ ├── boots.png │ │ │ │ └── color.png │ │ ├── Hats │ │ │ └── Scuba Mask │ │ │ │ ├── hat.json │ │ │ │ ├── hat.png │ │ │ │ └── hat.xcf │ │ └── Shirts │ │ │ └── Scuba Tank │ │ │ ├── SpriteSheet.png │ │ │ ├── female-color.png │ │ │ ├── female.png │ │ │ ├── male-color.png │ │ │ ├── male.png │ │ │ ├── shirt.json │ │ │ └── shirt.xcf │ ├── notes.txt │ ├── scuba.png │ ├── seamonster.png │ ├── swim-map-content.json │ └── wavebank.json ├── i18n │ ├── default.json │ ├── es.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ └── zh.json └── manifest.json ├── TakeAll ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── TakeAll.csproj └── manifest.json ├── TappablePalmTrees ├── CodePatches.cs ├── IDynamicGameAssetsApi.cs ├── IGenericModConfigMenuApi.cs ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── TappablePalmTrees.csproj └── manifest.json ├── Tent ├── CodePatches.cs ├── IDynamicGameAssetsApi.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MyManifest.cs ├── MyManifestContentPackFor.cs ├── Tent.csproj ├── dga │ ├── assets │ │ ├── tent.png │ │ └── tent.xcf │ ├── content.json │ ├── i18n │ │ ├── default.json │ │ └── ru.json │ └── manifest.json └── manifest.json ├── Terrarium ├── ATerrarium.csproj ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── TerrariumFrogs.cs ├── TerrariumSprite.cs ├── app.config ├── json-assets │ ├── BigCraftables │ │ └── Terrarium │ │ │ ├── big-craftable.json │ │ │ └── big-craftable.png │ └── content-pack.json ├── manifest.json └── packages.config ├── TextureTweaks ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── TextureData.cs ├── TextureTweaks.csproj └── manifest.json ├── ThrowableBombs ├── AFKMenu.cs ├── BombData.cs ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ThrowableBombs.csproj └── manifest.json ├── TileTransparency ├── CodePatches.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── TileTransparency.csproj └── manifest.json ├── ToggleFullscreen ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ToggleFullscreen.csproj └── manifest.json ├── ToolEnchantmentTweaks ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ToolEnchantmentTweaks.csproj └── manifest.json ├── ToolMod ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ToolMod.csproj └── manifest.json ├── ToolSmartSwitch ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── ToolSmartSwitch.csproj ├── ToolSmartSwitchAPI.cs └── manifest.json ├── TrainTracks ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── MoveOnTrack.cs ├── SwitchData.cs ├── TrainTracks.csproj ├── TrainTracksApi.cs ├── Utils.cs ├── assets │ ├── horse.png │ ├── horse_front.png │ ├── tracks.png │ └── tracks.xcf └── manifest.json ├── TramplableCrops ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── TramplableCrops.csproj └── manifest.json ├── Trampoline ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── Trampoline.csproj ├── assets │ ├── trampoline.png │ └── trampoline.xcf └── manifest.json ├── TransparentObjects ├── ModConfig.cs ├── ModEntry.cs ├── ObjectPatches.cs ├── TransparentObjects.csproj └── manifest.json ├── TrashCanReactions ├── ModConfig.cs ├── ModEntry.cs ├── Reactor.cs ├── TrashCanReactions.csproj └── manifest.json ├── TrashCansOnHorse ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── TrashCansOnHorse.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── TreasureChestsExpanded ├── CodePatches.cs ├── IAdvancedLootFrameworkApi.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── TreasureChestsExpanded.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── TreeTweaks ├── CodePatches.cs ├── DropData.cs ├── DropMethods.cs ├── IDynamicGameAssetsApi.cs ├── IGenericModConfigMenuApi.cs ├── IJsonAssetsApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── TreeTweaks.csproj ├── assets │ └── default.json └── manifest.json ├── TwoPlayerPrairieKing ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── TwoPlayerPrairieKing.csproj ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── Ui Info Suite-1150-2-0-0-1610820724.zip ├── UndergroundSecrets ├── Altars.cs ├── CollapsingFloors.cs ├── HelperEvents.cs ├── ITreasureChestsExpandedApi.cs ├── LightPuzzles.cs ├── ModConfig.cs ├── ModEntry.cs ├── MushroomTrees.cs ├── OfferingPuzzles.cs ├── Properties │ └── AssemblyInfo.cs ├── RiddlePuzzles.cs ├── TilePuzzles.cs ├── Traps.cs ├── UndergroundPatches.cs ├── UndergroundSecrets.csproj ├── Utils.cs ├── app.config ├── assets │ ├── underground_secrets.png │ └── underground_secrets.xcf ├── i18n │ ├── default.json │ ├── ko.json │ ├── ru.json │ └── zh.json ├── manifest.json └── packages.config ├── UniqueValley ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── SubData.cs ├── UniqueValley.csproj └── manifest.json ├── UtilityGrid ├── GridPipe.cs ├── HelperEvents.cs ├── IGenericModConfigMenuApi.cs ├── MethodPatches.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── PipeGroup.cs ├── RefreshGridArgs.cs ├── UtilityGrid.csproj ├── UtilityGridApi.cs ├── UtilityObject.cs ├── UtilityObjectInstance.cs ├── UtilitySystem.cs ├── UtilitySystemData.cs ├── assets │ ├── pipes.png │ ├── pipes.xcf │ ├── water_pump.png │ └── water_pump.xcf ├── i18n │ ├── default.json │ └── ru.json └── manifest.json ├── VideoPlayer ├── IMobilePhoneApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── VideoPlayer - Backup.csproj ├── VideoPlayer.csproj ├── app.config ├── assets │ ├── app_icon.png │ ├── app_icon.xcf │ ├── app_icon_64.png │ ├── buttons.png │ ├── play.png │ └── x.png ├── i18n │ ├── default.json │ └── ru.json ├── manifest.json └── packages.config ├── VoicedDialogue ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── VoiceData.cs ├── VoicedDialogue.csproj └── manifest.json ├── WallPlanter ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── WallPlanter.csproj ├── assets │ ├── wall_pot.png │ └── wall_pot_wet.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── WallTelevision ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── WallTelevision.csproj ├── assets │ ├── plasma.png │ └── tropical.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── WaterPump ├── IGenericModConfigMenuApi.cs ├── MethodPatches.cs ├── ModConfig.cs ├── ModEntry.cs ├── WaterPump.csproj └── manifest.json ├── WateringCanTweaks ├── CodePatches.cs ├── Compatibility.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── WateringCanTweaks.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── WeaponKnockback ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── WeaponKnockback.csproj └── manifest.json ├── WeaponsIgnoreGrass ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── WeaponsIgnoreGrass.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── WeatherTotems ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── Tokens.cs ├── WeatherTotems.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── WeddingTweaks ├── EventPatches.cs ├── FarmerPatches.cs ├── Game1Patches.cs ├── IFreeLoveAPI.cs ├── IGenericModConfigMenuApi.cs ├── Misc.cs ├── ModConfig.cs ├── ModEntry.cs ├── NPCPatches.cs ├── WeddingData.cs ├── WeddingTweaks.csproj ├── i18n │ ├── default.json │ ├── ru.json │ └── zh.json └── manifest.json ├── Weeds ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── Weeds.csproj ├── assets │ └── weeds.png ├── i18n │ └── default.json └── manifest.json ├── WeekStartsSunday ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── WeekStartsSunday.csproj └── manifest.json ├── WikiLinks ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── WikiLinks.csproj ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── Wildflowers ├── CodePatches.cs ├── CropData.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── Wildflowers.csproj └── manifest.json ├── WitcherMod ├── ModConfig.cs ├── ModEntry.cs ├── Properties │ └── AssemblyInfo.cs ├── WitcherMod.csproj ├── app.config ├── assets │ ├── Characters │ │ ├── Abigail.png │ │ ├── Dialogue │ │ │ └── Elliott.json │ │ ├── Elliott.png │ │ └── Penny.png │ ├── Portraits │ │ ├── Abigail.png │ │ ├── Elliott.png │ │ └── Penny.png │ └── Work │ │ ├── Abigail.yaml │ │ ├── AbigailBig.png │ │ ├── Combined.png │ │ ├── Elliott.xcf │ │ ├── Elliott.yaml │ │ ├── ElliottBig.png │ │ ├── Header.jpg │ │ ├── MarriageDialogueAbigail.yaml │ │ ├── MarriageDialogueElliott.yaml │ │ ├── MarriageDialoguePenny.yaml │ │ ├── Penny.yaml │ │ ├── PennyBig.png │ │ ├── ad.jpg │ │ ├── ad1.jpg │ │ ├── ed.jpg │ │ ├── pd.jpg │ │ └── rainy.yaml ├── manifest.json └── packages.config ├── YAJM ├── CodePatches.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── YAJM.csproj ├── assets │ ├── horse.png │ └── horse_shadow.png ├── i18n │ ├── default.json │ └── fr.json └── manifest.json ├── ZombieOutbreak ├── CodePatches.cs ├── ConsoleCommands.cs ├── IGenericModConfigMenuApi.cs ├── Methods.cs ├── ModConfig.cs ├── ModEntry.cs ├── Tokens.cs ├── ZombieOutbreak.csproj ├── assets │ └── zombie-cure.png ├── i18n │ ├── default.json │ ├── fr.json │ └── ru.json └── manifest.json ├── _releases ├── AFKTimePause 0.3.1.zip ├── AFKTimePause 0.4.0.zip ├── ATerrarium 0.1.2.zip ├── AdditionalMineMaps 0.2.1.zip ├── AdvancedCooking 0.1.1.zip ├── AdvancedCooking 0.1.4.zip ├── AdvancedLootFramework 0.4.0.zip ├── AdvancedMeleeFramework 0.7.0.zip ├── AdvancedMeleeFramework 0.7.2.zip ├── AdvancedMeleeFramework 0.8.0.zip ├── AllChestsMenu 0.2.2.zip ├── BetterElevator 0.2.0.zip ├── BetterElevator 0.2.4.zip ├── BetterLightningRods 0.1.0.zip ├── BossCreatures 1.3.0.zip ├── CoinCollector 0.3.0.zip ├── CropVariation 0.2.4.zip ├── CustomAchievements 0.2.1.zip ├── CustomBackpack 0.2.0.zip ├── CustomBackpack 0.2.2.zip ├── CustomBackpack 0.3.3.zip ├── CustomBackpack 0.8.0.zip ├── CustomBackpack 0.8.2.zip ├── CustomBackpack 0.9.0.zip ├── CustomChestTypes 0.7.0.zip ├── CustomFixedDialogue 0.8.1.zip ├── CustomFixedDialogue 2.0.1.zip ├── CustomFixedDialogue 2.0.2.zip ├── CustomFixedDialogue 2.1.10.zip ├── CustomFixedDialogue 2.1.12.zip ├── CustomFixedDialogue 2.1.5.zip ├── CustomFixedDialogue 2.1.6.zip ├── CustomFixedDialogue 2.1.7.zip ├── CustomFixedDialogue 2.1.8.zip ├── CustomFixedDialogue 2.1.9.zip ├── CustomFixedDialogue 2.2.1.zip ├── CustomFixedDialogue 2.2.2.zip ├── CustomFixedDialogue 2.3.0.zip ├── CustomLocks 0.2.0.zip ├── CustomLocks 0.3.0.zip ├── CustomMonsterFloors 0.7.0.zip ├── CustomObjectProduction 0.2.0.zip ├── CustomObjectProduction 0.2.2.zip ├── CustomOreNodes 2.0.2.zip ├── CustomOreNodes 2.2.1.zip ├── CustomPictureFrames 0.4.0.zip ├── CustomResourceClumps 0.4.1.zip ├── CustomSpousePatio 0.9.0.zip ├── CustomSpousePatioRedux 0.2.0.zip ├── CustomSpousePatioRedux 0.2.1.zip ├── CustomSpousePatioRedux 0.2.2.zip ├── CustomSpousePatioRedux 0.3.0.zip ├── CustomSpousePatioRedux 0.3.3.zip ├── CustomSpousePatioRedux 0.3.4.zip ├── CustomSpousePatioWizard 0.3.0.zip ├── CustomSpouseRooms 0.5.1.zip ├── CustomSpouseRooms 0.6.1.zip ├── CustomSpouseRooms 0.6.2.zip ├── CustomWallsAndFloors 0.3.1.zip ├── CustomWarpPoints 0.1.0.zip ├── DialogueDisplayFramework 0.2.2.zip ├── DialogueDisplayFramework 0.2.4.zip ├── DialogueDisplayFramework 0.3.0.zip ├── DynamicFlooring 0.1.2.zip ├── DynamicMapTiles 0.2.0.zip ├── DynamicMapTiles 0.2.1.zip ├── DynamicMapTiles 0.3.0.zip ├── DynamicMapTiles 0.6.1.zip ├── DynamicMapTiles 0.8.0.zip ├── DynamicMapTiles 0.9.4.zip ├── DynamicMapTiles 0.9.6.zip ├── ExpertSitting 0.3.1.zip ├── ExtraMapLayers 0.3.1.zip ├── ExtraMapLayers 0.3.2.zip ├── ExtraMapLayers 0.3.4.zip ├── ExtraMapLayers 0.3.5.zip ├── ExtraMapLayers 0.3.7.zip ├── Familiars 1.2.0.zip ├── Familiars 1.3.1.zip ├── FarmAnywhere 0.1.0.zip ├── FarmCaveFramework 0.3.1.zip ├── FarmerHelper 0.2.2.zip ├── FarmerHelper 0.3.2.zip ├── FarmerHelper 0.3.3.zip ├── FarmerHelper 0.4.1.zip ├── FarmerHelper 0.4.2.zip ├── FarmerPortraits 0.2.1.zip ├── FarmerPortraits 0.4.0.zip ├── FireBreath 0.1.0.zip ├── FishingChestsExpanded 0.4.2.zip ├── FlowingMineRocks 0.1.1.zip ├── FoodOnTheTable 0.3.0.zip ├── FoodOnTheTable 0.4.0.zip ├── FreeLove 0.7.2.zip ├── FreeLove 0.8.0.zip ├── FreeLove 0.8.1.zip ├── FreeLove 0.8.10.zip ├── FreeLove 0.8.5.zip ├── FreeLove 0.8.6.zip ├── FreeLove 0.8.7.zip ├── FreeLove 0.8.8.zip ├── FreeLove 0.8.9.zip ├── FreeLove 0.9.0.zip ├── FreeLove 1.0.0.zip ├── FreeLove 1.0.1.zip ├── FreeLove 1.0.2.zip ├── FreeLove 1.0.3.zip ├── FreeLove 1.0.4.zip ├── FreeLove 1.1.2.zip ├── FreeLove 1.2.2.zip ├── FreeLove 1.2.4.zip ├── FreeLove 1.2.6.zip ├── FruitTreeShaker 1.1.0.zip ├── FruitTreeTweaks 0.3.0.zip ├── FruitTreeTweaks 0.5.1.zip ├── FurnitureAdjustment 0.3.0.zip ├── FurnitureDisplayFramework 0.2.0.zip ├── FurnitureDisplayFramework 0.3.0.zip ├── FurnitureDisplayFramework 0.3.1.zip ├── FurnitureDisplayFramework 0.3.3.zip ├── FurnitureDisplayFramework 0.3.4.zip ├── FurnitureDisplayFramework 0.3.5.zip ├── FurnitureDisplayFramework 0.4.0.zip ├── FurniturePlacementTweaks 0.1.1.zip ├── GardenPotTweaks 0.2.1.zip ├── GemIsles 0.2.3.zip ├── GroundhogDay 0.1.1.zip ├── HedgeMaze 0.1.1.zip ├── HelpWanted 0.2.5.zip ├── HelpWanted 0.2.7.zip ├── HelpWanted 0.3.0.zip ├── HelpWanted 0.4.5.zip ├── HelpWanted 0.7.0.zip ├── HelpWanted 0.8.0.zip ├── HelpWanted 0.8.1.zip ├── HereFishy 0.3.2.zip ├── HugsAndKisses 0.3.1.zip ├── HugsAndKisses 0.4.0.zip ├── ImmersiveScarecrows 0.1.1.zip ├── ImmersiveScarecrows 0.2.0.zip ├── ImmersiveScarecrows 0.4.0.zip ├── ImmersiveScarecrows 0.4.2.zip ├── ImmersiveScarecrows 0.4.3.zip ├── ImmersiveScarecrows 0.4.4.zip ├── ImmersiveSprinklers 0.1.1.zip ├── ImmersiveSprinklers 0.1.3.zip ├── ImmersiveSprinklers 0.1.5.zip ├── ImmersiveSprinklers 0.2.1.zip ├── ImmersiveSprinklers 0.3.0.zip ├── ImmersiveSprinklers 0.4.0.zip ├── ImmersiveSprinklers 0.6.0.zip ├── ImmersiveSprinklers 0.7.0.zip ├── ImmersiveSprinklers 0.7.2.zip ├── ImmersiveSprinklers 0.7.3.zip ├── ImmersiveSprinklers 0.7.4.zip ├── ImmersiveSprinklers 0.7.6.zip ├── InstantBuildingConstruction 0.1.2.zip ├── InstantGrowthPowder 0.5.1.zip ├── InstantGrowthPowder 0.7.0.zip ├── LightMod 0.3.0.zip ├── LikeADuckToWater 0.2.0.zip ├── LikeADuckToWater 0.2.1.zip ├── LikeADuckToWater 0.3.1.zip ├── LikeADuckToWater 0.4.2.zip ├── LikeADuckToWater 0.4.4.zip ├── LogSpamFilter 0.1.1.zip ├── LongerSeasons 0.3.4.zip ├── MailboxMenu 0.3.0.zip ├── MailboxMenu 0.3.1.zip ├── MailboxMenu 0.3.3.zip ├── MapEdit 0.6.0.zip ├── MapEdit 0.7.0.zip ├── MapEdit 0.8.1.zip ├── MapTeleport 0.2.3.zip ├── MobileArcade 0.1.2.zip ├── MobileAudioPlayer 0.4.1.zip ├── MobileCalendar 0.2.0.zip ├── MobileCalendar 0.3.1.zip ├── MobileCatalogues 0.8.1.zip ├── MobileCatalogues 0.9.1.zip ├── MobilePhone 2.10.0.zip ├── MobilePhone 2.2.2.zip ├── MobilePhone 2.6.0.zip ├── MobilePhone 2.7.1.zip ├── MobilePhone 2.7.3.zip ├── MobilePhone 2.9.2.zip ├── MobilePhone 2.9.3.zip ├── MobilePhone 3.0.0.zip ├── MobilePhone 3.0.1.zip ├── MobilePhone 3.0.2.zip ├── MobileTelevision 0.1.0.zip ├── MobileTelevision 0.2.2.zip ├── ModThis 0.8.0.zip ├── Moolah 0.1.1.zip ├── Moolah 0.3.0.zip ├── Moolah 0.5.0.zip ├── Moolah 0.6.0.zip ├── Moolah 0.6.1.zip ├── Moolah 0.6.4.zip ├── MoveIt 0.2.0.zip ├── MoveIt 0.2.2.zip ├── MoveIt 0.3.1.zip ├── MoveIt 0.3.2.zip ├── MoveablePetBowl 0.3.2.zip ├── MoveablePetBowl 0.4.0.zip ├── MultiSave 0.1.1.zip ├── MultiSave 0.1.2.zip ├── MultiSave 0.1.6.zip ├── MultiSave 0.1.7.zip ├── MultiStoryFarmhouse 0.2.1.zip ├── MultipleSpouses 3.2.1.zip ├── Murdercrows 0.2.2.zip ├── NapalmMummies 0.1.2.zip ├── NonRandomPrairieKing 0.1.0.zip ├── OmniTools 0.3.1.zip ├── OmniTools 0.4.0.zip ├── OmniTools 0.4.2.zip ├── OmniTools 0.5.0.zip ├── OmniTools 0.5.1.zip ├── OmniTools 0.5.2.zip ├── OmniTools 0.5.3.zip ├── OmniTools 0.5.4.zip ├── OmniTools 0.5.5.zip ├── OmniTools 0.5.6.zip ├── OmniTools 0.5.7.zip ├── OmniTools 0.6.0.zip ├── OmniTools 0.7.1.zip ├── OmniTools 0.7.2.zip ├── OmniTools 0.8.0.zip ├── OmniTools 0.8.1.zip ├── OverworldChests 0.5.3.zip ├── PacifistValley 0.10.0.zip ├── PacifistValley 0.7.2.zip ├── PacifistValley 0.9.1.zip ├── PacifistValley 1.0.0.zip ├── ParrotPerch 0.1.0.zip ├── PartialHearts 0.2.1.zip ├── ParticleEffects 0.2.0.zip ├── PersisitentGrangeDisplay 0.1.0.zip ├── PersonalTravellingCart 0.2.0.zip ├── PersonalTravellingCart 0.3.0.zip ├── PersonalTravellingCart 0.3.1.zip ├── PersonalTravellingCart 0.3.5.zip ├── PetBed 0.2.0.zip ├── PetBed 0.2.1.zip ├── PetHats 0.2.0.zip ├── PetHats 0.3.0.zip ├── PipeIrrigation 0.2.2.zip ├── PipeIrrigation 0.2.3.zip ├── PlaceShaft 2.0.0.zip ├── PlannedParenthood 0.2.5.zip ├── PlantAll 0.2.1.zip ├── PlantAll 0.3.1.zip ├── PlantAll 0.5.0.zip ├── PlantAll 0.5.1.zip ├── PlanterTrees 0.2.0.zip ├── PlaygroundMod 0.3.1.zip ├── PlaygroundMod 0.4.0.zip ├── PrismaticFire 0.4.0.zip ├── QuestTimeLimits 0.1.1.zip ├── QuickLoad 0.1.0.zip ├── QuickResponses 0.2.0.zip ├── Quotes 0.4.1.zip ├── RandomNPC 0.4.0.zip ├── RealNames 0.1.4.zip ├── Restauranteer 0.2.0.zip ├── Restauranteer 0.4.0.zip ├── Restauranteer 0.5.0.zip ├── Restauranteer 0.7.2.zip ├── Restauranteer 0.8.0.zip ├── RobinWorkHours 0.1.1.zip ├── RobinWorkHours 0.1.4.zip ├── Screenshot 0.2.0.zip ├── Screenshot 0.2.1.zip ├── SelfServe 0.1.1.zip ├── ShowPlayerBehind 0.1.3.zip ├── SixtyNine 0.1.0.zip ├── Skateboard 0.2.4.zip ├── SocialPageOrderButton 0.1.0.zip ├── SocialPageOrderButton 0.2.0.zip ├── SoundEffectReplacement 0.1.2.zip ├── SoundTweaker 0.3.0.zip ├── Spoilage 0.3.0.zip ├── SprinklerMod 0.1.2.zip ├── StardewRPG 0.1.1.zip ├── StardewRPG 0.2.1.zip ├── StardewRPG 0.2.4.zip ├── StardewRPG 0.2.5.zip ├── StardewRPG 0.2.6.zip ├── StardewRPG 0.3.1.zip ├── StardewRPG 0.3.2.zip ├── StardewRPG 0.3.3.zip ├── SubmergedCrabPots 0.2.1.zip ├── Swim 3.1.0.zip ├── Swim 3.3.1.zip ├── Swim 3.3.2.zip ├── Swim 3.4.1.zip ├── Swim 3.4.2.zip ├── ToolSmartSwitch 0.2.0.zip ├── ToolSmartSwitch 0.3.0.zip ├── ToolSmartSwitch 0.3.2.zip ├── ToolSmartSwitch 0.4.0.zip ├── ToolSmartSwitch 0.5.1.zip ├── ToolSmartSwitch 0.5.2.zip ├── ToolSmartSwitch 0.6.0.zip ├── ToolSmartSwitch 0.6.1.zip ├── TrainTracks 0.2.0.zip ├── TrainTracks 0.4.1.zip ├── TrainTracks 0.5.0.zip ├── TransparentObjects 0.5.0.zip ├── TrashCanReactions 0.2.0.zip ├── TreasureChestsExpanded 0.3.0.zip ├── TwoPlayerPrairieKing 0.2.1.zip ├── TwoPlayerPrairieKing 0.3.0.zip ├── TwoPlayerPrairieKing 0.4.0.zip ├── TwoPlayerPrairieKing 0.4.1.zip ├── UndergroundSecrets 0.6.0.zip ├── UtilityGrid 0.5.3.zip ├── UtilityGrid 0.6.1.zip ├── VideoPlayer 0.2.5.zip ├── WateringCanTweaks 0.3.0.zip ├── WeddingTweaks 0.1.1.zip ├── WeddingTweaks 0.1.2.zip ├── WeddingTweaks 0.3.0.zip ├── Wildflowers 0.2.0.zip ├── Wildflowers 0.2.1.zip ├── Wildflowers 0.3.1.zip ├── Wildflowers 0.3.2.zip ├── Wildflowers 0.4.0.zip ├── YAJM 0.7.1.zip ├── ZombieOutbreak 0.2.3.zip ├── _releases.projitems └── _releases.shproj └── xVASynth ├── Game1Patches.cs ├── IGenericModConfigMenuApi.cs ├── ModConfig.cs ├── ModEntry.cs ├── manifest.json └── xVASynth.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/.gitignore -------------------------------------------------------------------------------- /AFKPause/AFKMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/AFKMenu.cs -------------------------------------------------------------------------------- /AFKPause/AFKPause.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/AFKPause.csproj -------------------------------------------------------------------------------- /AFKPause/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/CodePatches.cs -------------------------------------------------------------------------------- /AFKPause/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/ModConfig.cs -------------------------------------------------------------------------------- /AFKPause/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/ModEntry.cs -------------------------------------------------------------------------------- /AFKPause/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/i18n/default.json -------------------------------------------------------------------------------- /AFKPause/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/i18n/fr.json -------------------------------------------------------------------------------- /AFKPause/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/i18n/ru.json -------------------------------------------------------------------------------- /AFKPause/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AFKPause/manifest.json -------------------------------------------------------------------------------- /AdvancedCooking/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedCooking/Methods.cs -------------------------------------------------------------------------------- /AdvancedCooking/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedCooking/ModEntry.cs -------------------------------------------------------------------------------- /AdvancedSigns/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedSigns/Methods.cs -------------------------------------------------------------------------------- /AdvancedSigns/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedSigns/ModConfig.cs -------------------------------------------------------------------------------- /AdvancedSigns/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedSigns/ModEntry.cs -------------------------------------------------------------------------------- /AdvancedSigns/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedSigns/manifest.json -------------------------------------------------------------------------------- /AdvancedSmoking/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedSmoking/Methods.cs -------------------------------------------------------------------------------- /AdvancedSmoking/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AdvancedSmoking/ModEntry.cs -------------------------------------------------------------------------------- /Alarms/AlarmPopupMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/AlarmPopupMenu.cs -------------------------------------------------------------------------------- /Alarms/Alarms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/Alarms.csproj -------------------------------------------------------------------------------- /Alarms/ClockSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/ClockSound.cs -------------------------------------------------------------------------------- /Alarms/ClockSoundMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/ClockSoundMenu.cs -------------------------------------------------------------------------------- /Alarms/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/Methods.cs -------------------------------------------------------------------------------- /Alarms/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/ModConfig.cs -------------------------------------------------------------------------------- /Alarms/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/ModEntry.cs -------------------------------------------------------------------------------- /Alarms/SoundComponentSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/SoundComponentSet.cs -------------------------------------------------------------------------------- /Alarms/assets/textBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/assets/textBox.png -------------------------------------------------------------------------------- /Alarms/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/i18n/default.json -------------------------------------------------------------------------------- /Alarms/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/i18n/fr.json -------------------------------------------------------------------------------- /Alarms/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Alarms/manifest.json -------------------------------------------------------------------------------- /AllChestsMenu/ChestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/ChestData.cs -------------------------------------------------------------------------------- /AllChestsMenu/ChestMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/ChestMenu.cs -------------------------------------------------------------------------------- /AllChestsMenu/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/Methods.cs -------------------------------------------------------------------------------- /AllChestsMenu/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/ModConfig.cs -------------------------------------------------------------------------------- /AllChestsMenu/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/ModEntry.cs -------------------------------------------------------------------------------- /AllChestsMenu/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/i18n/fr.json -------------------------------------------------------------------------------- /AllChestsMenu/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/i18n/ru.json -------------------------------------------------------------------------------- /AllChestsMenu/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AllChestsMenu/manifest.json -------------------------------------------------------------------------------- /AprilFools/BeeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/BeeData.cs -------------------------------------------------------------------------------- /AprilFools/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/CodePatches.cs -------------------------------------------------------------------------------- /AprilFools/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/Methods.cs -------------------------------------------------------------------------------- /AprilFools/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/ModConfig.cs -------------------------------------------------------------------------------- /AprilFools/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/ModEntry.cs -------------------------------------------------------------------------------- /AprilFools/assets/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/assets/bee.png -------------------------------------------------------------------------------- /AprilFools/assets/bee.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/assets/bee.xcf -------------------------------------------------------------------------------- /AprilFools/assets/raven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/assets/raven.txt -------------------------------------------------------------------------------- /AprilFools/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/i18n/fr.json -------------------------------------------------------------------------------- /AprilFools/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/i18n/ru.json -------------------------------------------------------------------------------- /AprilFools/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AprilFools/manifest.json -------------------------------------------------------------------------------- /AutoCollect/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AutoCollect/CodePatches.cs -------------------------------------------------------------------------------- /AutoCollect/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AutoCollect/Methods.cs -------------------------------------------------------------------------------- /AutoCollect/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AutoCollect/ModConfig.cs -------------------------------------------------------------------------------- /AutoCollect/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AutoCollect/ModEntry.cs -------------------------------------------------------------------------------- /AutoCollect/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AutoCollect/manifest.json -------------------------------------------------------------------------------- /AutoPetterTweaks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/AutoPetterTweaks/Methods.cs -------------------------------------------------------------------------------- /BatForm/BatForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/BatForm.csproj -------------------------------------------------------------------------------- /BatForm/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/CodePatches.cs -------------------------------------------------------------------------------- /BatForm/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/Compatibility.cs -------------------------------------------------------------------------------- /BatForm/ManaBarApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/ManaBarApi.cs -------------------------------------------------------------------------------- /BatForm/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/Methods.cs -------------------------------------------------------------------------------- /BatForm/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/ModConfig.cs -------------------------------------------------------------------------------- /BatForm/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/ModEntry.cs -------------------------------------------------------------------------------- /BatForm/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/i18n/default.json -------------------------------------------------------------------------------- /BatForm/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/i18n/fr.json -------------------------------------------------------------------------------- /BatForm/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/i18n/zh.json -------------------------------------------------------------------------------- /BatForm/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BatForm/manifest.json -------------------------------------------------------------------------------- /BedTweaks/BedManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/BedManager.cs -------------------------------------------------------------------------------- /BedTweaks/BedTweaks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/BedTweaks.csproj -------------------------------------------------------------------------------- /BedTweaks/BedTweaksAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/BedTweaksAPI.cs -------------------------------------------------------------------------------- /BedTweaks/IBedTweaksAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/IBedTweaksAPI.cs -------------------------------------------------------------------------------- /BedTweaks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/Methods.cs -------------------------------------------------------------------------------- /BedTweaks/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/ModConfig.cs -------------------------------------------------------------------------------- /BedTweaks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/ModEntry.cs -------------------------------------------------------------------------------- /BedTweaks/ObjectPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/ObjectPatches.cs -------------------------------------------------------------------------------- /BedTweaks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BedTweaks/manifest.json -------------------------------------------------------------------------------- /BeePaths/BeeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/BeeData.cs -------------------------------------------------------------------------------- /BeePaths/BeePaths.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/BeePaths.csproj -------------------------------------------------------------------------------- /BeePaths/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/CodePatches.cs -------------------------------------------------------------------------------- /BeePaths/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/Compatibility.cs -------------------------------------------------------------------------------- /BeePaths/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/Methods.cs -------------------------------------------------------------------------------- /BeePaths/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/ModConfig.cs -------------------------------------------------------------------------------- /BeePaths/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/ModEntry.cs -------------------------------------------------------------------------------- /BeePaths/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/i18n/default.json -------------------------------------------------------------------------------- /BeePaths/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/i18n/fr.json -------------------------------------------------------------------------------- /BeePaths/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BeePaths/manifest.json -------------------------------------------------------------------------------- /BetterElevator/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BetterElevator/ModConfig.cs -------------------------------------------------------------------------------- /BetterElevator/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BetterElevator/ModEntry.cs -------------------------------------------------------------------------------- /BetterElevator/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BetterElevator/i18n/fr.json -------------------------------------------------------------------------------- /BetterElevator/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BetterElevator/i18n/pt.json -------------------------------------------------------------------------------- /BetterElevator/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BetterElevator/i18n/ru.json -------------------------------------------------------------------------------- /BiggerMineFloors/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BiggerMineFloors/app.config -------------------------------------------------------------------------------- /BirthdayBuff/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BirthdayBuff/CodePatches.cs -------------------------------------------------------------------------------- /BirthdayBuff/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BirthdayBuff/Methods.cs -------------------------------------------------------------------------------- /BirthdayBuff/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BirthdayBuff/ModConfig.cs -------------------------------------------------------------------------------- /BirthdayBuff/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BirthdayBuff/ModEntry.cs -------------------------------------------------------------------------------- /BirthdayBuff/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BirthdayBuff/i18n/fr.json -------------------------------------------------------------------------------- /BirthdayBuff/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BirthdayBuff/manifest.json -------------------------------------------------------------------------------- /BossCreatures/BugBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/BugBoss.cs -------------------------------------------------------------------------------- /BossCreatures/GhostBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/GhostBoss.cs -------------------------------------------------------------------------------- /BossCreatures/LootList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/LootList.cs -------------------------------------------------------------------------------- /BossCreatures/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/Methods.cs -------------------------------------------------------------------------------- /BossCreatures/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/ModConfig.cs -------------------------------------------------------------------------------- /BossCreatures/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/ModEntry.cs -------------------------------------------------------------------------------- /BossCreatures/SkullBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/SkullBoss.cs -------------------------------------------------------------------------------- /BossCreatures/SlimeBoss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/SlimeBoss.cs -------------------------------------------------------------------------------- /BossCreatures/ToughFly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/ToughFly.cs -------------------------------------------------------------------------------- /BossCreatures/ToughGhost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/ToughGhost.cs -------------------------------------------------------------------------------- /BossCreatures/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/i18n/fr.json -------------------------------------------------------------------------------- /BossCreatures/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "boss-warning": "Пробудился босс!" 3 | } 4 | -------------------------------------------------------------------------------- /BossCreatures/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BossCreatures/manifest.json -------------------------------------------------------------------------------- /BuffFramework/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuffFramework/Methods.cs -------------------------------------------------------------------------------- /BuffFramework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuffFramework/ModConfig.cs -------------------------------------------------------------------------------- /BuffFramework/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuffFramework/ModEntry.cs -------------------------------------------------------------------------------- /BuffFramework/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "GMCM.ModEnabled.Name": "Activer le Mod" 3 | } 4 | -------------------------------------------------------------------------------- /BuffFramework/i18n/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "GMCM.ModEnabled.Name": "Mod engedélyezés" 3 | } 4 | -------------------------------------------------------------------------------- /BuffFramework/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuffFramework/manifest.json -------------------------------------------------------------------------------- /BuildingShift/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuildingShift/Methods.cs -------------------------------------------------------------------------------- /BuildingShift/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuildingShift/ModConfig.cs -------------------------------------------------------------------------------- /BuildingShift/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuildingShift/ModEntry.cs -------------------------------------------------------------------------------- /BuildingShift/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuildingShift/manifest.json -------------------------------------------------------------------------------- /BuildingUpgrades/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/BuildingUpgrades/Methods.cs -------------------------------------------------------------------------------- /CJBInventory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CJBInventory/LICENSE -------------------------------------------------------------------------------- /CJBInventory/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CJBInventory/manifest.json -------------------------------------------------------------------------------- /CatalogueFilter/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CatalogueFilter/ModEntry.cs -------------------------------------------------------------------------------- /CatalogueFilter/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter": "Фильтр" 3 | } -------------------------------------------------------------------------------- /ChatSounds/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChatSounds/CodePatches.cs -------------------------------------------------------------------------------- /ChatSounds/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChatSounds/ModConfig.cs -------------------------------------------------------------------------------- /ChatSounds/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChatSounds/ModEntry.cs -------------------------------------------------------------------------------- /ChatSounds/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChatSounds/manifest.json -------------------------------------------------------------------------------- /ChessBoards/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChessBoards/CodePatches.cs -------------------------------------------------------------------------------- /ChessBoards/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChessBoards/Methods.cs -------------------------------------------------------------------------------- /ChessBoards/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChessBoards/ModConfig.cs -------------------------------------------------------------------------------- /ChessBoards/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChessBoards/ModEntry.cs -------------------------------------------------------------------------------- /ChessBoards/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChessBoards/i18n/fr.json -------------------------------------------------------------------------------- /ChessBoards/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChessBoards/i18n/ru.json -------------------------------------------------------------------------------- /ChessBoards/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChessBoards/manifest.json -------------------------------------------------------------------------------- /ChestPreview/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChestPreview/CodePatches.cs -------------------------------------------------------------------------------- /ChestPreview/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChestPreview/Methods.cs -------------------------------------------------------------------------------- /ChestPreview/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChestPreview/ModConfig.cs -------------------------------------------------------------------------------- /ChestPreview/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChestPreview/ModEntry.cs -------------------------------------------------------------------------------- /ChestPreview/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ChestPreview/manifest.json -------------------------------------------------------------------------------- /CloseDoors/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CloseDoors/CodePatches.cs -------------------------------------------------------------------------------- /CloseDoors/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CloseDoors/Methods.cs -------------------------------------------------------------------------------- /CloseDoors/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CloseDoors/ModConfig.cs -------------------------------------------------------------------------------- /CloseDoors/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CloseDoors/ModEntry.cs -------------------------------------------------------------------------------- /CloseDoors/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CloseDoors/manifest.json -------------------------------------------------------------------------------- /CoinCollector/CoinData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CoinCollector/CoinData.cs -------------------------------------------------------------------------------- /CoinCollector/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CoinCollector/ModConfig.cs -------------------------------------------------------------------------------- /CoinCollector/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CoinCollector/ModEntry.cs -------------------------------------------------------------------------------- /CoinCollector/MyManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CoinCollector/MyManifest.cs -------------------------------------------------------------------------------- /CoinCollector/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CoinCollector/app.config -------------------------------------------------------------------------------- /CoinCollector/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CoinCollector/i18n/ru.json -------------------------------------------------------------------------------- /CoinCollector/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CoinCollector/manifest.json -------------------------------------------------------------------------------- /ColorTweak/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ColorTweak/CodePatches.cs -------------------------------------------------------------------------------- /ColorTweak/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ColorTweak/Methods.cs -------------------------------------------------------------------------------- /ColorTweak/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ColorTweak/ModConfig.cs -------------------------------------------------------------------------------- /ColorTweak/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ColorTweak/ModEntry.cs -------------------------------------------------------------------------------- /ColorTweak/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ColorTweak/manifest.json -------------------------------------------------------------------------------- /CropHat/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/CodePatches.cs -------------------------------------------------------------------------------- /CropHat/CropHat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/CropHat.csproj -------------------------------------------------------------------------------- /CropHat/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/Methods.cs -------------------------------------------------------------------------------- /CropHat/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/ModConfig.cs -------------------------------------------------------------------------------- /CropHat/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/ModEntry.cs -------------------------------------------------------------------------------- /CropHat/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/i18n/default.json -------------------------------------------------------------------------------- /CropHat/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/i18n/fr.json -------------------------------------------------------------------------------- /CropHat/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "x-hat": "{0} шляпа" 3 | } 4 | -------------------------------------------------------------------------------- /CropHat/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropHat/manifest.json -------------------------------------------------------------------------------- /CropMarkers/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropMarkers/CodePatches.cs -------------------------------------------------------------------------------- /CropMarkers/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropMarkers/ModConfig.cs -------------------------------------------------------------------------------- /CropMarkers/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropMarkers/ModEntry.cs -------------------------------------------------------------------------------- /CropMarkers/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropMarkers/i18n/fr.json -------------------------------------------------------------------------------- /CropMarkers/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropMarkers/manifest.json -------------------------------------------------------------------------------- /CropStacking/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropStacking/CodePatches.cs -------------------------------------------------------------------------------- /CropStacking/ItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropStacking/ItemData.cs -------------------------------------------------------------------------------- /CropStacking/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropStacking/Methods.cs -------------------------------------------------------------------------------- /CropStacking/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropStacking/ModConfig.cs -------------------------------------------------------------------------------- /CropStacking/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropStacking/ModEntry.cs -------------------------------------------------------------------------------- /CropStacking/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropStacking/manifest.json -------------------------------------------------------------------------------- /CropVariation/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropVariation/Methods.cs -------------------------------------------------------------------------------- /CropVariation/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropVariation/ModConfig.cs -------------------------------------------------------------------------------- /CropVariation/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropVariation/ModEntry.cs -------------------------------------------------------------------------------- /CropVariation/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropVariation/i18n/fr.json -------------------------------------------------------------------------------- /CropVariation/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CropVariation/manifest.json -------------------------------------------------------------------------------- /CustomAchievements/CustomAchievementsAPI.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CustomBackpack/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/Methods.cs -------------------------------------------------------------------------------- /CustomBackpack/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/ModConfig.cs -------------------------------------------------------------------------------- /CustomBackpack/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/ModEntry.cs -------------------------------------------------------------------------------- /CustomBackpack/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/de.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/es.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/fr.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/hu.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/it.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/ja.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/ko.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/pt.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/ru.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/tr.json -------------------------------------------------------------------------------- /CustomBackpack/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomBackpack/i18n/zh.json -------------------------------------------------------------------------------- /CustomHay/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomHay/CodePatches.cs -------------------------------------------------------------------------------- /CustomHay/CustomHay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomHay/CustomHay.csproj -------------------------------------------------------------------------------- /CustomHay/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomHay/ModConfig.cs -------------------------------------------------------------------------------- /CustomHay/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomHay/ModEntry.cs -------------------------------------------------------------------------------- /CustomHay/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomHay/i18n/default.json -------------------------------------------------------------------------------- /CustomHay/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomHay/i18n/fr.json -------------------------------------------------------------------------------- /CustomHay/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomHay/manifest.json -------------------------------------------------------------------------------- /CustomLocks/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomLocks/ModConfig.cs -------------------------------------------------------------------------------- /CustomLocks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomLocks/ModEntry.cs -------------------------------------------------------------------------------- /CustomLocks/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomLocks/i18n/fr.json -------------------------------------------------------------------------------- /CustomLocks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomLocks/manifest.json -------------------------------------------------------------------------------- /CustomMounts/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomMounts/CodePatches.cs -------------------------------------------------------------------------------- /CustomMounts/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomMounts/Methods.cs -------------------------------------------------------------------------------- /CustomMounts/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomMounts/ModConfig.cs -------------------------------------------------------------------------------- /CustomMounts/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomMounts/ModEntry.cs -------------------------------------------------------------------------------- /CustomMounts/MountData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomMounts/MountData.cs -------------------------------------------------------------------------------- /CustomMounts/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomMounts/manifest.json -------------------------------------------------------------------------------- /CustomOreNodes/DropItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomOreNodes/DropItem.cs -------------------------------------------------------------------------------- /CustomOreNodes/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomOreNodes/Methods.cs -------------------------------------------------------------------------------- /CustomOreNodes/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomOreNodes/ModConfig.cs -------------------------------------------------------------------------------- /CustomOreNodes/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomOreNodes/ModEntry.cs -------------------------------------------------------------------------------- /CustomPaintings/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomPaintings/ModEntry.cs -------------------------------------------------------------------------------- /CustomPaintings/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomPaintings/app.config -------------------------------------------------------------------------------- /CustomResourceClumps/i18n/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "failed": "Your {0} is not strong enough to break this." 3 | } -------------------------------------------------------------------------------- /CustomResourceClumps/i18n/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "failed": "당신의 {0} 는(은) 이걸 부술 정도로 단단하지 않습니다.", 3 | } -------------------------------------------------------------------------------- /CustomSigns/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomSigns/CodePatches.cs -------------------------------------------------------------------------------- /CustomSigns/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomSigns/Methods.cs -------------------------------------------------------------------------------- /CustomSigns/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomSigns/ModConfig.cs -------------------------------------------------------------------------------- /CustomSigns/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomSigns/ModEntry.cs -------------------------------------------------------------------------------- /CustomSigns/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomSigns/i18n/ru.json -------------------------------------------------------------------------------- /CustomSigns/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomSigns/manifest.json -------------------------------------------------------------------------------- /CustomStarterPackage/i18n/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "open-message": "'시작하는 데 도움이 될걸세.^-루이스 시장'" 3 | } 4 | -------------------------------------------------------------------------------- /CustomStarterPackage/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "open-message": "«С этим начинать будет проще.^-Мэр Льюис»" 3 | } 4 | -------------------------------------------------------------------------------- /CustomStarterPackage/i18n/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "open-message": "“收下这些,好好努力吧。^——刘易斯镇长”" 3 | } 4 | -------------------------------------------------------------------------------- /CustomToolbar/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomToolbar/ModConfig.cs -------------------------------------------------------------------------------- /CustomToolbar/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomToolbar/ModEntry.cs -------------------------------------------------------------------------------- /CustomToolbar/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomToolbar/i18n/fr.json -------------------------------------------------------------------------------- /CustomToolbar/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomToolbar/manifest.json -------------------------------------------------------------------------------- /CustomWarpPoints/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/CustomWarpPoints/app.config -------------------------------------------------------------------------------- /DGA/DynamicGameAssets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DGA/DynamicGameAssets.dll -------------------------------------------------------------------------------- /DeathTweaks/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DeathTweaks/CodePatches.cs -------------------------------------------------------------------------------- /DeathTweaks/DeathData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DeathTweaks/DeathData.cs -------------------------------------------------------------------------------- /DeathTweaks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DeathTweaks/Methods.cs -------------------------------------------------------------------------------- /DeathTweaks/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DeathTweaks/ModConfig.cs -------------------------------------------------------------------------------- /DeathTweaks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DeathTweaks/ModEntry.cs -------------------------------------------------------------------------------- /DeathTweaks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DeathTweaks/manifest.json -------------------------------------------------------------------------------- /DialogueNewLine/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DialogueNewLine/ModEntry.cs -------------------------------------------------------------------------------- /DialogueTrees/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DialogueTrees/ModConfig.cs -------------------------------------------------------------------------------- /DialogueTrees/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DialogueTrees/ModEntry.cs -------------------------------------------------------------------------------- /DialogueTrees/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DialogueTrees/app.config -------------------------------------------------------------------------------- /DialogueTrees/i18n/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "ask-npc": "Ask {0}:" 3 | } -------------------------------------------------------------------------------- /DialogueTrees/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "ask-npc": "Спросить {0}:" 3 | } 4 | -------------------------------------------------------------------------------- /DialogueTrees/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DialogueTrees/manifest.json -------------------------------------------------------------------------------- /DinoForm/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/CodePatches.cs -------------------------------------------------------------------------------- /DinoForm/DinoForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/DinoForm.csproj -------------------------------------------------------------------------------- /DinoForm/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/Methods.cs -------------------------------------------------------------------------------- /DinoForm/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/ModConfig.cs -------------------------------------------------------------------------------- /DinoForm/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/ModEntry.cs -------------------------------------------------------------------------------- /DinoForm/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/assets/icon.png -------------------------------------------------------------------------------- /DinoForm/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/i18n/default.json -------------------------------------------------------------------------------- /DinoForm/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DinoForm/manifest.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Dreamscape/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Dreamscape/CodePatches.cs -------------------------------------------------------------------------------- /Dreamscape/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Dreamscape/ModConfig.cs -------------------------------------------------------------------------------- /Dreamscape/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Dreamscape/ModEntry.cs -------------------------------------------------------------------------------- /Dreamscape/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Dreamscape/Tokens.cs -------------------------------------------------------------------------------- /Dreamscape/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Dreamscape/i18n/fr.json -------------------------------------------------------------------------------- /Dreamscape/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Dreamscape/manifest.json -------------------------------------------------------------------------------- /DungeonMerchants/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DungeonMerchants/Methods.cs -------------------------------------------------------------------------------- /DynamicFlooring/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DynamicFlooring/Methods.cs -------------------------------------------------------------------------------- /DynamicFlooring/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/DynamicFlooring/ModEntry.cs -------------------------------------------------------------------------------- /Email/Catalogues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/Catalogues.cs -------------------------------------------------------------------------------- /Email/Email.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/Email.csproj -------------------------------------------------------------------------------- /Email/EmailApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/EmailApp.cs -------------------------------------------------------------------------------- /Email/HelperEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/HelperEvents.cs -------------------------------------------------------------------------------- /Email/IMobilePhoneApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/IMobilePhoneApi.cs -------------------------------------------------------------------------------- /Email/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/ModConfig.cs -------------------------------------------------------------------------------- /Email/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/ModEntry.cs -------------------------------------------------------------------------------- /Email/Visuals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/Visuals.cs -------------------------------------------------------------------------------- /Email/assets/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/assets/app_icon.png -------------------------------------------------------------------------------- /Email/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/i18n/default.json -------------------------------------------------------------------------------- /Email/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "email": "Электронная почта" 3 | } 4 | -------------------------------------------------------------------------------- /Email/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Email/manifest.json -------------------------------------------------------------------------------- /ExpertSitting/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ExpertSitting/ModConfig.cs -------------------------------------------------------------------------------- /ExpertSitting/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ExpertSitting/ModEntry.cs -------------------------------------------------------------------------------- /ExpertSitting/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ExpertSitting/manifest.json -------------------------------------------------------------------------------- /ExtraMapLayers/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ExtraMapLayers/ModConfig.cs -------------------------------------------------------------------------------- /ExtraMapLayers/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ExtraMapLayers/ModEntry.cs -------------------------------------------------------------------------------- /Familiars/BatFamiliar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/BatFamiliar.cs -------------------------------------------------------------------------------- /Familiars/DinoFamiliar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/DinoFamiliar.cs -------------------------------------------------------------------------------- /Familiars/Familiar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/Familiar.cs -------------------------------------------------------------------------------- /Familiars/Familiars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/Familiars.csproj -------------------------------------------------------------------------------- /Familiars/FamiliarsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/FamiliarsUtils.cs -------------------------------------------------------------------------------- /Familiars/IJsonAssetsApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/IJsonAssetsApi.cs -------------------------------------------------------------------------------- /Familiars/JunimoFamiliar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/JunimoFamiliar.cs -------------------------------------------------------------------------------- /Familiars/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/ModConfig.cs -------------------------------------------------------------------------------- /Familiars/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/ModEntry.cs -------------------------------------------------------------------------------- /Familiars/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/i18n/default.json -------------------------------------------------------------------------------- /Familiars/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/i18n/ru.json -------------------------------------------------------------------------------- /Familiars/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Familiars/manifest.json -------------------------------------------------------------------------------- /FarmAnimalSex/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnimalSex/ModConfig.cs -------------------------------------------------------------------------------- /FarmAnimalSex/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnimalSex/ModEntry.cs -------------------------------------------------------------------------------- /FarmAnimalSex/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnimalSex/i18n/ru.json -------------------------------------------------------------------------------- /FarmAnimalSex/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnimalSex/manifest.json -------------------------------------------------------------------------------- /FarmAnywhere/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnywhere/ModConfig.cs -------------------------------------------------------------------------------- /FarmAnywhere/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnywhere/ModEntry.cs -------------------------------------------------------------------------------- /FarmAnywhere/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnywhere/app.config -------------------------------------------------------------------------------- /FarmAnywhere/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmAnywhere/manifest.json -------------------------------------------------------------------------------- /FarmCaveDoors/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmCaveDoors/Methods.cs -------------------------------------------------------------------------------- /FarmCaveDoors/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmCaveDoors/ModConfig.cs -------------------------------------------------------------------------------- /FarmCaveDoors/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmCaveDoors/ModEntry.cs -------------------------------------------------------------------------------- /FarmCaveDoors/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmCaveDoors/manifest.json -------------------------------------------------------------------------------- /FarmPlots/AutoPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/AutoPlot.cs -------------------------------------------------------------------------------- /FarmPlots/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/CodePatches.cs -------------------------------------------------------------------------------- /FarmPlots/FarmPlots.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/FarmPlots.csproj -------------------------------------------------------------------------------- /FarmPlots/FarmPlotsMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/FarmPlotsMenu.cs -------------------------------------------------------------------------------- /FarmPlots/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/Methods.cs -------------------------------------------------------------------------------- /FarmPlots/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/ModConfig.cs -------------------------------------------------------------------------------- /FarmPlots/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/ModEntry.cs -------------------------------------------------------------------------------- /FarmPlots/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/i18n/default.json -------------------------------------------------------------------------------- /FarmPlots/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmPlots/manifest.json -------------------------------------------------------------------------------- /FarmerHelper/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmerHelper/ModConfig.cs -------------------------------------------------------------------------------- /FarmerHelper/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmerHelper/ModEntry.cs -------------------------------------------------------------------------------- /FarmerHelper/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmerHelper/i18n/ru.json -------------------------------------------------------------------------------- /FarmerHelper/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmerHelper/manifest.json -------------------------------------------------------------------------------- /FarmerPortraits/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmerPortraits/Methods.cs -------------------------------------------------------------------------------- /FarmerPortraits/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FarmerPortraits/ModEntry.cs -------------------------------------------------------------------------------- /FastForward/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FastForward/CodePatches.cs -------------------------------------------------------------------------------- /FastForward/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FastForward/Methods.cs -------------------------------------------------------------------------------- /FastForward/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FastForward/ModConfig.cs -------------------------------------------------------------------------------- /FastForward/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FastForward/ModEntry.cs -------------------------------------------------------------------------------- /FastForward/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FastForward/manifest.json -------------------------------------------------------------------------------- /Fetch/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Fetch/CodePatches.cs -------------------------------------------------------------------------------- /Fetch/Fetch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Fetch/Fetch.csproj -------------------------------------------------------------------------------- /Fetch/FetchData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Fetch/FetchData.cs -------------------------------------------------------------------------------- /Fetch/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Fetch/ModConfig.cs -------------------------------------------------------------------------------- /Fetch/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Fetch/ModEntry.cs -------------------------------------------------------------------------------- /Fetch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Fetch/manifest.json -------------------------------------------------------------------------------- /FieldHarvest/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FieldHarvest/CodePatches.cs -------------------------------------------------------------------------------- /FieldHarvest/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FieldHarvest/ModConfig.cs -------------------------------------------------------------------------------- /FieldHarvest/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FieldHarvest/ModEntry.cs -------------------------------------------------------------------------------- /FieldHarvest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FieldHarvest/manifest.json -------------------------------------------------------------------------------- /FireBreath/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FireBreath/Compatibility.cs -------------------------------------------------------------------------------- /FireBreath/Fireball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FireBreath/Fireball.cs -------------------------------------------------------------------------------- /FireBreath/ManaBarApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FireBreath/ManaBarApi.cs -------------------------------------------------------------------------------- /FireBreath/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FireBreath/ModConfig.cs -------------------------------------------------------------------------------- /FireBreath/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FireBreath/ModEntry.cs -------------------------------------------------------------------------------- /FireBreath/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FireBreath/i18n/fr.json -------------------------------------------------------------------------------- /FireBreath/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FireBreath/manifest.json -------------------------------------------------------------------------------- /FishSpotBait/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FishSpotBait/CodePatches.cs -------------------------------------------------------------------------------- /FishSpotBait/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FishSpotBait/Methods.cs -------------------------------------------------------------------------------- /FishSpotBait/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FishSpotBait/ModConfig.cs -------------------------------------------------------------------------------- /FishSpotBait/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FishSpotBait/ModEntry.cs -------------------------------------------------------------------------------- /FishSpotBait/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FishSpotBait/i18n/fr.json -------------------------------------------------------------------------------- /FishSpotBait/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FishSpotBait/manifest.json -------------------------------------------------------------------------------- /FloatingGardenPots/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "GMCM.ModEnabled.Name": "Activer le Mod" 3 | } 4 | -------------------------------------------------------------------------------- /FlowingMineRocks/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FlowingMineRocks/app.config -------------------------------------------------------------------------------- /FoodOnTheTable/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FoodOnTheTable/ModConfig.cs -------------------------------------------------------------------------------- /FoodOnTheTable/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FoodOnTheTable/ModEntry.cs -------------------------------------------------------------------------------- /FreeLove/Divorce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/Divorce.cs -------------------------------------------------------------------------------- /FreeLove/EventPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/EventPatches.cs -------------------------------------------------------------------------------- /FreeLove/FarmerPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/FarmerPatches.cs -------------------------------------------------------------------------------- /FreeLove/FreeLove.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/FreeLove.csproj -------------------------------------------------------------------------------- /FreeLove/FreeLoveAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/FreeLoveAPI.cs -------------------------------------------------------------------------------- /FreeLove/Game1Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/Game1Patches.cs -------------------------------------------------------------------------------- /FreeLove/HelperEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/HelperEvents.cs -------------------------------------------------------------------------------- /FreeLove/IBedTweaksAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/IBedTweaksAPI.cs -------------------------------------------------------------------------------- /FreeLove/IKissingAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/IKissingAPI.cs -------------------------------------------------------------------------------- /FreeLove/Integrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/Integrations.cs -------------------------------------------------------------------------------- /FreeLove/LocationPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/LocationPatches.cs -------------------------------------------------------------------------------- /FreeLove/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/Misc.cs -------------------------------------------------------------------------------- /FreeLove/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/ModConfig.cs -------------------------------------------------------------------------------- /FreeLove/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/ModEntry.cs -------------------------------------------------------------------------------- /FreeLove/NPCPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/NPCPatches.cs -------------------------------------------------------------------------------- /FreeLove/Pregnancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/Pregnancy.cs -------------------------------------------------------------------------------- /FreeLove/UIPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/UIPatches.cs -------------------------------------------------------------------------------- /FreeLove/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/i18n/default.json -------------------------------------------------------------------------------- /FreeLove/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/i18n/es.json -------------------------------------------------------------------------------- /FreeLove/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/i18n/fr.json -------------------------------------------------------------------------------- /FreeLove/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/i18n/hu.json -------------------------------------------------------------------------------- /FreeLove/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/i18n/ru.json -------------------------------------------------------------------------------- /FreeLove/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/i18n/uk.json -------------------------------------------------------------------------------- /FreeLove/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/i18n/zh.json -------------------------------------------------------------------------------- /FreeLove/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FreeLove/manifest.json -------------------------------------------------------------------------------- /FriendlyDivorce/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FriendlyDivorce/ModEntry.cs -------------------------------------------------------------------------------- /FriendshipTweaks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FriendshipTweaks/Methods.cs -------------------------------------------------------------------------------- /FruitTreeShaker/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FruitTreeShaker/ModEntry.cs -------------------------------------------------------------------------------- /FruitTreeShaker/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FruitTreeShaker/app.config -------------------------------------------------------------------------------- /FruitTreeTweaks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FruitTreeTweaks/Methods.cs -------------------------------------------------------------------------------- /FruitTreeTweaks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/FruitTreeTweaks/ModEntry.cs -------------------------------------------------------------------------------- /FurnitureDisplayFramework/Methods.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GardenPotTweaks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GardenPotTweaks/Methods.cs -------------------------------------------------------------------------------- /GardenPotTweaks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GardenPotTweaks/ModEntry.cs -------------------------------------------------------------------------------- /GemIsles/GemIsles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GemIsles/GemIsles.csproj -------------------------------------------------------------------------------- /GemIsles/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GemIsles/ModConfig.cs -------------------------------------------------------------------------------- /GemIsles/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GemIsles/ModEntry.cs -------------------------------------------------------------------------------- /GemIsles/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GemIsles/Utils.cs -------------------------------------------------------------------------------- /GemIsles/assets/isles.tbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GemIsles/assets/isles.tbin -------------------------------------------------------------------------------- /GemIsles/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GemIsles/manifest.json -------------------------------------------------------------------------------- /GemIsles/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GemIsles/packages.config -------------------------------------------------------------------------------- /GenieLamp/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/CodePatches.cs -------------------------------------------------------------------------------- /GenieLamp/GenieLamp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/GenieLamp.csproj -------------------------------------------------------------------------------- /GenieLamp/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/Methods.cs -------------------------------------------------------------------------------- /GenieLamp/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/ModConfig.cs -------------------------------------------------------------------------------- /GenieLamp/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/ModEntry.cs -------------------------------------------------------------------------------- /GenieLamp/ObjectPickMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/ObjectPickMenu.cs -------------------------------------------------------------------------------- /GenieLamp/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/i18n/default.json -------------------------------------------------------------------------------- /GenieLamp/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/i18n/fr.json -------------------------------------------------------------------------------- /GenieLamp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GenieLamp/manifest.json -------------------------------------------------------------------------------- /GhostSpeed/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GhostSpeed/CodePatches.cs -------------------------------------------------------------------------------- /GhostSpeed/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GhostSpeed/Methods.cs -------------------------------------------------------------------------------- /GhostSpeed/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GhostSpeed/ModConfig.cs -------------------------------------------------------------------------------- /GhostSpeed/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GhostSpeed/ModEntry.cs -------------------------------------------------------------------------------- /GhostSpeed/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GhostSpeed/manifest.json -------------------------------------------------------------------------------- /GiantTrees/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiantTrees/CodePatches.cs -------------------------------------------------------------------------------- /GiantTrees/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiantTrees/Methods.cs -------------------------------------------------------------------------------- /GiantTrees/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiantTrees/ModConfig.cs -------------------------------------------------------------------------------- /GiantTrees/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiantTrees/ModEntry.cs -------------------------------------------------------------------------------- /GiantTrees/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiantTrees/manifest.json -------------------------------------------------------------------------------- /GiftRejection/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiftRejection/Methods.cs -------------------------------------------------------------------------------- /GiftRejection/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiftRejection/ModConfig.cs -------------------------------------------------------------------------------- /GiftRejection/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiftRejection/ModEntry.cs -------------------------------------------------------------------------------- /GiftRejection/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GiftRejection/manifest.json -------------------------------------------------------------------------------- /GroundhogDay/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GroundhogDay/ModConfig.cs -------------------------------------------------------------------------------- /GroundhogDay/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GroundhogDay/ModEntry.cs -------------------------------------------------------------------------------- /GroundhogDay/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "mod-enabled-x": "День сурка включён: {0}." 3 | } 4 | -------------------------------------------------------------------------------- /GroundhogDay/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/GroundhogDay/manifest.json -------------------------------------------------------------------------------- /Guns/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/CodePatches.cs -------------------------------------------------------------------------------- /Guns/GunData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/GunData.cs -------------------------------------------------------------------------------- /Guns/GunProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/GunProjectile.cs -------------------------------------------------------------------------------- /Guns/Guns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/Guns.csproj -------------------------------------------------------------------------------- /Guns/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/Methods.cs -------------------------------------------------------------------------------- /Guns/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/ModConfig.cs -------------------------------------------------------------------------------- /Guns/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/ModEntry.cs -------------------------------------------------------------------------------- /Guns/assets/uzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/assets/uzi.png -------------------------------------------------------------------------------- /Guns/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Guns/manifest.json -------------------------------------------------------------------------------- /HarvestSeeds/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HarvestSeeds/CodePatches.cs -------------------------------------------------------------------------------- /HarvestSeeds/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HarvestSeeds/Methods.cs -------------------------------------------------------------------------------- /HarvestSeeds/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HarvestSeeds/ModConfig.cs -------------------------------------------------------------------------------- /HarvestSeeds/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HarvestSeeds/ModEntry.cs -------------------------------------------------------------------------------- /HarvestSeeds/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HarvestSeeds/manifest.json -------------------------------------------------------------------------------- /HedgeMaze/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HedgeMaze/CodePatches.cs -------------------------------------------------------------------------------- /HedgeMaze/HedgeMaze.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HedgeMaze/HedgeMaze.csproj -------------------------------------------------------------------------------- /HedgeMaze/MazeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HedgeMaze/MazeData.cs -------------------------------------------------------------------------------- /HedgeMaze/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HedgeMaze/Methods.cs -------------------------------------------------------------------------------- /HedgeMaze/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HedgeMaze/ModConfig.cs -------------------------------------------------------------------------------- /HedgeMaze/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HedgeMaze/ModEntry.cs -------------------------------------------------------------------------------- /HedgeMaze/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HedgeMaze/manifest.json -------------------------------------------------------------------------------- /HelpWanted/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/CodePatches.cs -------------------------------------------------------------------------------- /HelpWanted/HelpWantedAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/HelpWantedAPI.cs -------------------------------------------------------------------------------- /HelpWanted/IQuestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/IQuestData.cs -------------------------------------------------------------------------------- /HelpWanted/JsonQuestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/JsonQuestData.cs -------------------------------------------------------------------------------- /HelpWanted/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/Methods.cs -------------------------------------------------------------------------------- /HelpWanted/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/ModConfig.cs -------------------------------------------------------------------------------- /HelpWanted/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/ModEntry.cs -------------------------------------------------------------------------------- /HelpWanted/QuestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/QuestData.cs -------------------------------------------------------------------------------- /HelpWanted/assets/pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/assets/pad.png -------------------------------------------------------------------------------- /HelpWanted/assets/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/assets/pin.png -------------------------------------------------------------------------------- /HelpWanted/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HelpWanted/manifest.json -------------------------------------------------------------------------------- /HereFishy/HereFishy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/HereFishy.csproj -------------------------------------------------------------------------------- /HereFishy/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/Methods.cs -------------------------------------------------------------------------------- /HereFishy/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/ModConfig.cs -------------------------------------------------------------------------------- /HereFishy/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/ModEntry.cs -------------------------------------------------------------------------------- /HereFishy/assets/wee.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/assets/wee.wav -------------------------------------------------------------------------------- /HereFishy/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/i18n/default.json -------------------------------------------------------------------------------- /HereFishy/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/i18n/fr.json -------------------------------------------------------------------------------- /HereFishy/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HereFishy/manifest.json -------------------------------------------------------------------------------- /HiResSprites/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HiResSprites/CodePatches.cs -------------------------------------------------------------------------------- /HiResSprites/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HiResSprites/ModConfig.cs -------------------------------------------------------------------------------- /HiResSprites/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HiResSprites/ModEntry.cs -------------------------------------------------------------------------------- /HiResSprites/TextureData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HiResSprites/TextureData.cs -------------------------------------------------------------------------------- /HiResSprites/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HiResSprites/manifest.json -------------------------------------------------------------------------------- /HugsAndKisses/Kissing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HugsAndKisses/Kissing.cs -------------------------------------------------------------------------------- /HugsAndKisses/KissingAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HugsAndKisses/KissingAPI.cs -------------------------------------------------------------------------------- /HugsAndKisses/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HugsAndKisses/Misc.cs -------------------------------------------------------------------------------- /HugsAndKisses/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HugsAndKisses/ModConfig.cs -------------------------------------------------------------------------------- /HugsAndKisses/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HugsAndKisses/ModEntry.cs -------------------------------------------------------------------------------- /HugsAndKisses/NPCPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HugsAndKisses/NPCPatches.cs -------------------------------------------------------------------------------- /HugsAndKisses/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/HugsAndKisses/manifest.json -------------------------------------------------------------------------------- /ImmersiveSigns/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImmersiveSigns/Methods.cs -------------------------------------------------------------------------------- /ImmersiveSigns/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImmersiveSigns/ModConfig.cs -------------------------------------------------------------------------------- /ImmersiveSigns/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImmersiveSigns/ModEntry.cs -------------------------------------------------------------------------------- /ImportMap/ImportMap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImportMap/ImportMap.csproj -------------------------------------------------------------------------------- /ImportMap/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImportMap/ModConfig.cs -------------------------------------------------------------------------------- /ImportMap/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImportMap/ModEntry.cs -------------------------------------------------------------------------------- /ImportMap/assets/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImportMap/assets/paths.png -------------------------------------------------------------------------------- /ImportMap/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ImportMap/manifest.json -------------------------------------------------------------------------------- /IndoorOutdoor/IndoorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/IndoorOutdoor/IndoorData.cs -------------------------------------------------------------------------------- /IndoorOutdoor/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/IndoorOutdoor/Methods.cs -------------------------------------------------------------------------------- /IndoorOutdoor/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/IndoorOutdoor/ModConfig.cs -------------------------------------------------------------------------------- /IndoorOutdoor/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/IndoorOutdoor/ModEntry.cs -------------------------------------------------------------------------------- /ItemAboveHead/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ItemAboveHead/Methods.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LICENSE -------------------------------------------------------------------------------- /LightMod/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/CodePatches.cs -------------------------------------------------------------------------------- /LightMod/LightData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/LightData.cs -------------------------------------------------------------------------------- /LightMod/LightMod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/LightMod.csproj -------------------------------------------------------------------------------- /LightMod/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/Methods.cs -------------------------------------------------------------------------------- /LightMod/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/ModConfig.cs -------------------------------------------------------------------------------- /LightMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/ModEntry.cs -------------------------------------------------------------------------------- /LightMod/TextureData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/TextureData.cs -------------------------------------------------------------------------------- /LightMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LightMod/manifest.json -------------------------------------------------------------------------------- /LoadMenuCache/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LoadMenuCache/Methods.cs -------------------------------------------------------------------------------- /LogUploader/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LogUploader/Methods.cs -------------------------------------------------------------------------------- /LogUploader/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LogUploader/ModConfig.cs -------------------------------------------------------------------------------- /LogUploader/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/LogUploader/ModEntry.cs -------------------------------------------------------------------------------- /MagnetMod/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MagnetMod/CodePatches.cs -------------------------------------------------------------------------------- /MagnetMod/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MagnetMod/ModConfig.cs -------------------------------------------------------------------------------- /MagnetMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MagnetMod/ModEntry.cs -------------------------------------------------------------------------------- /MagnetMod/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MagnetMod/i18n/fr.json -------------------------------------------------------------------------------- /MagnetMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MagnetMod/manifest.json -------------------------------------------------------------------------------- /MailboxMenu/MailMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MailboxMenu/MailMenu.cs -------------------------------------------------------------------------------- /MailboxMenu/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MailboxMenu/Methods.cs -------------------------------------------------------------------------------- /MailboxMenu/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MailboxMenu/ModConfig.cs -------------------------------------------------------------------------------- /MailboxMenu/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MailboxMenu/ModEntry.cs -------------------------------------------------------------------------------- /MapEdit/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/CodePatches.cs -------------------------------------------------------------------------------- /MapEdit/HelperEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/HelperEvents.cs -------------------------------------------------------------------------------- /MapEdit/MapActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/MapActions.cs -------------------------------------------------------------------------------- /MapEdit/MapEdit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/MapEdit.csproj -------------------------------------------------------------------------------- /MapEdit/ModActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/ModActions.cs -------------------------------------------------------------------------------- /MapEdit/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/ModConfig.cs -------------------------------------------------------------------------------- /MapEdit/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/ModEntry.cs -------------------------------------------------------------------------------- /MapEdit/TileActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/TileActions.cs -------------------------------------------------------------------------------- /MapEdit/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/Utils.cs -------------------------------------------------------------------------------- /MapEdit/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapEdit/manifest.json -------------------------------------------------------------------------------- /MapTeleport/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapTeleport/ModConfig.cs -------------------------------------------------------------------------------- /MapTeleport/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MapTeleport/ModEntry.cs -------------------------------------------------------------------------------- /MapTeleport/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "GMCM.ModEnabled.Name": "Activer le Mod" 3 | } 4 | -------------------------------------------------------------------------------- /MayoMart/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MayoMart/CodePatches.cs -------------------------------------------------------------------------------- /MayoMart/MayoMart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MayoMart/MayoMart.csproj -------------------------------------------------------------------------------- /MayoMart/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MayoMart/Methods.cs -------------------------------------------------------------------------------- /MayoMart/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MayoMart/ModConfig.cs -------------------------------------------------------------------------------- /MayoMart/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MayoMart/ModEntry.cs -------------------------------------------------------------------------------- /MayoMart/assets/town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MayoMart/assets/town.png -------------------------------------------------------------------------------- /MayoMart/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MayoMart/manifest.json -------------------------------------------------------------------------------- /MeteorDefence/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MeteorDefence/Tokens.cs -------------------------------------------------------------------------------- /MinuteDisplay/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MinuteDisplay/Methods.cs -------------------------------------------------------------------------------- /MobileArcade/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobileArcade/ModEntry.cs -------------------------------------------------------------------------------- /MobileArcade/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobileArcade/app.config -------------------------------------------------------------------------------- /MobileAudioPlayer/audio/PlaceAudioFilesHere.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MobileAudioPlayer/i18n/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "app-name": "Audio Player" 3 | } 4 | -------------------------------------------------------------------------------- /MobileAudioPlayer/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "app-name": "Аудиоплеер" 3 | } 4 | -------------------------------------------------------------------------------- /MobileCalendar/i18n/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "calendar": "Naptár", 3 | } -------------------------------------------------------------------------------- /MobileCalendar/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "calendar": "Календарь" 3 | } 4 | -------------------------------------------------------------------------------- /MobilePhone/MobileApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/MobileApp.cs -------------------------------------------------------------------------------- /MobilePhone/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/ModConfig.cs -------------------------------------------------------------------------------- /MobilePhone/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/ModEntry.cs -------------------------------------------------------------------------------- /MobilePhone/ThemeApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/ThemeApp.cs -------------------------------------------------------------------------------- /MobilePhone/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/i18n/es.json -------------------------------------------------------------------------------- /MobilePhone/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/i18n/ko.json -------------------------------------------------------------------------------- /MobilePhone/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/i18n/pt.json -------------------------------------------------------------------------------- /MobilePhone/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/i18n/ru.json -------------------------------------------------------------------------------- /MobilePhone/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/i18n/tr.json -------------------------------------------------------------------------------- /MobilePhone/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/i18n/uk.json -------------------------------------------------------------------------------- /MobilePhone/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MobilePhone/i18n/zh.json -------------------------------------------------------------------------------- /MobileTelevision/i18n/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "television": "Televízió", 3 | } -------------------------------------------------------------------------------- /Mod Translation.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Mod Translation.rar -------------------------------------------------------------------------------- /Mod Translation/Mobile Calendar v0.3.0/Hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "calendar": "Naptár", 3 | } -------------------------------------------------------------------------------- /Mod Translation/Mobile Television v0.2.1/Hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "television": "Televízió", 3 | } -------------------------------------------------------------------------------- /ModifyThis/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ModifyThis/Methods.cs -------------------------------------------------------------------------------- /ModifyThis/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ModifyThis/ModConfig.cs -------------------------------------------------------------------------------- /ModifyThis/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ModifyThis/ModEntry.cs -------------------------------------------------------------------------------- /ModifyThis/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ModifyThis/i18n/fr.json -------------------------------------------------------------------------------- /ModifyThis/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ModifyThis/i18n/ru.json -------------------------------------------------------------------------------- /ModifyThis/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ModifyThis/manifest.json -------------------------------------------------------------------------------- /MoveIt/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MoveIt/CodePatches.cs -------------------------------------------------------------------------------- /MoveIt/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MoveIt/Methods.cs -------------------------------------------------------------------------------- /MoveIt/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MoveIt/ModConfig.cs -------------------------------------------------------------------------------- /MoveIt/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MoveIt/ModEntry.cs -------------------------------------------------------------------------------- /MoveIt/MoveIt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MoveIt/MoveIt.csproj -------------------------------------------------------------------------------- /MoveIt/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MoveIt/manifest.json -------------------------------------------------------------------------------- /MultiSave/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultiSave/CodePatches.cs -------------------------------------------------------------------------------- /MultiSave/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultiSave/Methods.cs -------------------------------------------------------------------------------- /MultiSave/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultiSave/ModConfig.cs -------------------------------------------------------------------------------- /MultiSave/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultiSave/ModEntry.cs -------------------------------------------------------------------------------- /MultiSave/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultiSave/i18n/ru.json -------------------------------------------------------------------------------- /MultiSave/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultiSave/manifest.json -------------------------------------------------------------------------------- /MultipleSpouses/Maps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultipleSpouses/Maps.cs -------------------------------------------------------------------------------- /MultipleSpouses/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MultipleSpouses/Misc.cs -------------------------------------------------------------------------------- /Murdercrows/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Murdercrows/ModConfig.cs -------------------------------------------------------------------------------- /Murdercrows/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Murdercrows/ModEntry.cs -------------------------------------------------------------------------------- /Murdercrows/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Murdercrows/app.config -------------------------------------------------------------------------------- /Murdercrows/i18n/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "prepare": "Get ready! Wave {0} incoming!", 3 | } -------------------------------------------------------------------------------- /Murdercrows/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Murdercrows/i18n/ru.json -------------------------------------------------------------------------------- /MusicalPaths/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/MusicalPaths/ModEntry.cs -------------------------------------------------------------------------------- /NPCClothing/CPJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NPCClothing/CPJSON.cs -------------------------------------------------------------------------------- /NPCClothing/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NPCClothing/Methods.cs -------------------------------------------------------------------------------- /NPCClothing/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NPCClothing/ModConfig.cs -------------------------------------------------------------------------------- /NPCClothing/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NPCClothing/ModEntry.cs -------------------------------------------------------------------------------- /NewProject/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NewProject/Methods.cs -------------------------------------------------------------------------------- /NewProject/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NewProject/ModConfig.cs -------------------------------------------------------------------------------- /NewProject/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NewProject/ModEntry.cs -------------------------------------------------------------------------------- /NewProject/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/NewProject/manifest.json -------------------------------------------------------------------------------- /OKNightCheck/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OKNightCheck/Methods.cs -------------------------------------------------------------------------------- /OKNightCheck/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OKNightCheck/ModEntry.cs -------------------------------------------------------------------------------- /OKNightCheck/OKMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OKNightCheck/OKMenu.cs -------------------------------------------------------------------------------- /OmniTools/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OmniTools/CodePatches.cs -------------------------------------------------------------------------------- /OmniTools/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OmniTools/Methods.cs -------------------------------------------------------------------------------- /OmniTools/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OmniTools/ModConfig.cs -------------------------------------------------------------------------------- /OmniTools/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OmniTools/ModEntry.cs -------------------------------------------------------------------------------- /OmniTools/ToolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OmniTools/ToolInfo.cs -------------------------------------------------------------------------------- /OmniTools/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OmniTools/manifest.json -------------------------------------------------------------------------------- /OpenFolder/Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OpenFolder/Mapping.cs -------------------------------------------------------------------------------- /OpenFolder/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OpenFolder/Methods.cs -------------------------------------------------------------------------------- /OpenFolder/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OpenFolder/ModConfig.cs -------------------------------------------------------------------------------- /OpenFolder/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OpenFolder/ModEntry.cs -------------------------------------------------------------------------------- /OpenFolder/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OpenFolder/i18n/ru.json -------------------------------------------------------------------------------- /OpenFolder/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OpenFolder/manifest.json -------------------------------------------------------------------------------- /OutfitSets/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OutfitSets/Methods.cs -------------------------------------------------------------------------------- /OutfitSets/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OutfitSets/ModConfig.cs -------------------------------------------------------------------------------- /OutfitSets/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OutfitSets/ModEntry.cs -------------------------------------------------------------------------------- /OutfitSets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/OutfitSets/manifest.json -------------------------------------------------------------------------------- /ParrotPerch/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ParrotPerch/ModConfig.cs -------------------------------------------------------------------------------- /ParrotPerch/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ParrotPerch/ModEntry.cs -------------------------------------------------------------------------------- /ParrotPerch/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ParrotPerch/app.config -------------------------------------------------------------------------------- /PetBed/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetBed/CodePatches.cs -------------------------------------------------------------------------------- /PetBed/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetBed/ModConfig.cs -------------------------------------------------------------------------------- /PetBed/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetBed/ModEntry.cs -------------------------------------------------------------------------------- /PetBed/PetBed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetBed/PetBed.csproj -------------------------------------------------------------------------------- /PetBed/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetBed/manifest.json -------------------------------------------------------------------------------- /PetClothes/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetClothes/Methods.cs -------------------------------------------------------------------------------- /PetClothes/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetClothes/ModConfig.cs -------------------------------------------------------------------------------- /PetClothes/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetClothes/ModEntry.cs -------------------------------------------------------------------------------- /PetClothes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetClothes/manifest.json -------------------------------------------------------------------------------- /PetHats/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/CodePatches.cs -------------------------------------------------------------------------------- /PetHats/HatOffsetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/HatOffsetData.cs -------------------------------------------------------------------------------- /PetHats/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/Methods.cs -------------------------------------------------------------------------------- /PetHats/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/ModConfig.cs -------------------------------------------------------------------------------- /PetHats/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/ModEntry.cs -------------------------------------------------------------------------------- /PetHats/PetHats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/PetHats.csproj -------------------------------------------------------------------------------- /PetHats/assets/cats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/assets/cats.json -------------------------------------------------------------------------------- /PetHats/assets/dogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/assets/dogs.json -------------------------------------------------------------------------------- /PetHats/assets/hats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/assets/hats.json -------------------------------------------------------------------------------- /PetHats/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PetHats/manifest.json -------------------------------------------------------------------------------- /PlaceShaft/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlaceShaft/ModConfig.cs -------------------------------------------------------------------------------- /PlaceShaft/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlaceShaft/ModEntry.cs -------------------------------------------------------------------------------- /PlaceShaft/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlaceShaft/manifest.json -------------------------------------------------------------------------------- /PlantAll/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlantAll/CodePatches.cs -------------------------------------------------------------------------------- /PlantAll/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlantAll/ModConfig.cs -------------------------------------------------------------------------------- /PlantAll/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlantAll/ModEntry.cs -------------------------------------------------------------------------------- /PlantAll/PlantAll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlantAll/PlantAll.csproj -------------------------------------------------------------------------------- /PlantAll/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlantAll/manifest.json -------------------------------------------------------------------------------- /PlanterTrees/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlanterTrees/ModEntry.cs -------------------------------------------------------------------------------- /PlaygroundMod/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlaygroundMod/Methods.cs -------------------------------------------------------------------------------- /PlaygroundMod/MySeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlaygroundMod/MySeat.cs -------------------------------------------------------------------------------- /PlayingCards/CardDeck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlayingCards/CardDeck.cs -------------------------------------------------------------------------------- /PlayingCards/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PlayingCards/ModEntry.cs -------------------------------------------------------------------------------- /PoopFramework/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PoopFramework/Methods.cs -------------------------------------------------------------------------------- /PuristMod/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PuristMod/ModConfig.cs -------------------------------------------------------------------------------- /PuristMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PuristMod/ModEntry.cs -------------------------------------------------------------------------------- /PuristMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PuristMod/manifest.json -------------------------------------------------------------------------------- /PushPull/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PushPull/CodePatches.cs -------------------------------------------------------------------------------- /PushPull/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PushPull/Methods.cs -------------------------------------------------------------------------------- /PushPull/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PushPull/ModConfig.cs -------------------------------------------------------------------------------- /PushPull/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PushPull/ModEntry.cs -------------------------------------------------------------------------------- /PushPull/MovementData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PushPull/MovementData.cs -------------------------------------------------------------------------------- /PushPull/PushPull.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PushPull/PushPull.csproj -------------------------------------------------------------------------------- /PushPull/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/PushPull/manifest.json -------------------------------------------------------------------------------- /QuickLoad/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/QuickLoad/ModConfig.cs -------------------------------------------------------------------------------- /QuickLoad/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/QuickLoad/ModEntry.cs -------------------------------------------------------------------------------- /QuickLoad/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/QuickLoad/manifest.json -------------------------------------------------------------------------------- /Quotes/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Quotes/ModConfig.cs -------------------------------------------------------------------------------- /Quotes/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Quotes/ModEntry.cs -------------------------------------------------------------------------------- /Quotes/Quote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Quotes/Quote.cs -------------------------------------------------------------------------------- /Quotes/Quotes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Quotes/Quotes.csproj -------------------------------------------------------------------------------- /Quotes/QuotesAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Quotes/QuotesAPI.cs -------------------------------------------------------------------------------- /Quotes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Quotes/manifest.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/README.md -------------------------------------------------------------------------------- /RainbowTrail/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RainbowTrail/Methods.cs -------------------------------------------------------------------------------- /RainbowTrail/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RainbowTrail/ModEntry.cs -------------------------------------------------------------------------------- /RandomNPC/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RandomNPC/ModConfig.cs -------------------------------------------------------------------------------- /RandomNPC/ModData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RandomNPC/ModData.cs -------------------------------------------------------------------------------- /RandomNPC/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RandomNPC/ModEntry.cs -------------------------------------------------------------------------------- /RandomNPC/RNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RandomNPC/RNPC.cs -------------------------------------------------------------------------------- /RandomNPC/SaveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RandomNPC/SaveData.cs -------------------------------------------------------------------------------- /RandomNPC/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RandomNPC/app.config -------------------------------------------------------------------------------- /RandomNPC/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RandomNPC/manifest.json -------------------------------------------------------------------------------- /RealNames/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RealNames/ModConfig.cs -------------------------------------------------------------------------------- /RealNames/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RealNames/ModEntry.cs -------------------------------------------------------------------------------- /RealNames/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RealNames/manifest.json -------------------------------------------------------------------------------- /Renovations/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Renovations/ModConfig.cs -------------------------------------------------------------------------------- /Renovations/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Renovations/ModEntry.cs -------------------------------------------------------------------------------- /Restauranteer/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Restauranteer/Methods.cs -------------------------------------------------------------------------------- /RightToLeft/Mapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RightToLeft/Mapping.cs -------------------------------------------------------------------------------- /RightToLeft/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RightToLeft/Methods.cs -------------------------------------------------------------------------------- /RightToLeft/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RightToLeft/ModConfig.cs -------------------------------------------------------------------------------- /RightToLeft/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/RightToLeft/ModEntry.cs -------------------------------------------------------------------------------- /SDIEmily/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/CodePatches.cs -------------------------------------------------------------------------------- /SDIEmily/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/Methods.cs -------------------------------------------------------------------------------- /SDIEmily/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/ModConfig.cs -------------------------------------------------------------------------------- /SDIEmily/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/ModEntry.cs -------------------------------------------------------------------------------- /SDIEmily/RunningBurst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/RunningBurst.cs -------------------------------------------------------------------------------- /SDIEmily/RunningSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/RunningSkill.cs -------------------------------------------------------------------------------- /SDIEmily/SDIEmily.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/SDIEmily.csproj -------------------------------------------------------------------------------- /SDIEmily/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/assets/back.png -------------------------------------------------------------------------------- /SDIEmily/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDIEmily/manifest.json -------------------------------------------------------------------------------- /SDVExplorer/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDVExplorer/ModConfig.cs -------------------------------------------------------------------------------- /SDVExplorer/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SDVExplorer/ModEntry.cs -------------------------------------------------------------------------------- /Screenshot/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Screenshot/ModConfig.cs -------------------------------------------------------------------------------- /Screenshot/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Screenshot/ModEntry.cs -------------------------------------------------------------------------------- /Screenshot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Screenshot/manifest.json -------------------------------------------------------------------------------- /SeedInfo/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SeedInfo/CodePatches.cs -------------------------------------------------------------------------------- /SeedInfo/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SeedInfo/Methods.cs -------------------------------------------------------------------------------- /SeedInfo/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SeedInfo/ModConfig.cs -------------------------------------------------------------------------------- /SeedInfo/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SeedInfo/ModEntry.cs -------------------------------------------------------------------------------- /SeedInfo/SeedInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SeedInfo/SeedInfo.csproj -------------------------------------------------------------------------------- /SeedInfo/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SeedInfo/i18n/ru.json -------------------------------------------------------------------------------- /SeedInfo/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SeedInfo/manifest.json -------------------------------------------------------------------------------- /SelfServe/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SelfServe/CodePatches.cs -------------------------------------------------------------------------------- /SelfServe/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SelfServe/ModConfig.cs -------------------------------------------------------------------------------- /SelfServe/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SelfServe/ModEntry.cs -------------------------------------------------------------------------------- /SelfServe/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SelfServe/manifest.json -------------------------------------------------------------------------------- /SewerSlimes/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SewerSlimes/Methods.cs -------------------------------------------------------------------------------- /SewerSlimes/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SewerSlimes/ModConfig.cs -------------------------------------------------------------------------------- /SewerSlimes/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SewerSlimes/ModEntry.cs -------------------------------------------------------------------------------- /SixtyNine/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SixtyNine/ModConfig.cs -------------------------------------------------------------------------------- /SixtyNine/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SixtyNine/ModEntry.cs -------------------------------------------------------------------------------- /SixtyNine/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SixtyNine/app.config -------------------------------------------------------------------------------- /SixtyNine/i18n/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "nice": "Nice." 3 | } 4 | -------------------------------------------------------------------------------- /SixtyNine/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "nice": "Отлично." 3 | } 4 | -------------------------------------------------------------------------------- /SixtyNine/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SixtyNine/manifest.json -------------------------------------------------------------------------------- /SixtyNine/new 2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SixtyNine/new 2.txt -------------------------------------------------------------------------------- /Skateboard/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Skateboard/ModConfig.cs -------------------------------------------------------------------------------- /Skateboard/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Skateboard/ModEntry.cs -------------------------------------------------------------------------------- /Skateboard/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Skateboard/i18n/de.json -------------------------------------------------------------------------------- /Skateboard/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Skateboard/i18n/ru.json -------------------------------------------------------------------------------- /Skateboard/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Skateboard/manifest.json -------------------------------------------------------------------------------- /SmallerCrops/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SmallerCrops/Methods.cs -------------------------------------------------------------------------------- /SmallerCrops/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SmallerCrops/ModEntry.cs -------------------------------------------------------------------------------- /SocialNetwork/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SocialNetwork/Utils.cs -------------------------------------------------------------------------------- /SocialNetwork/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SocialNetwork/app.config -------------------------------------------------------------------------------- /SocialNetwork/i18n/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "Mod.App.Name": "Social Network" 3 | } 4 | -------------------------------------------------------------------------------- /SocialNetwork/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "Mod.App.Name": "ВДолине" 3 | } 4 | -------------------------------------------------------------------------------- /SoundTweaker/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SoundTweaker/Methods.cs -------------------------------------------------------------------------------- /SoundTweaker/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SoundTweaker/ModEntry.cs -------------------------------------------------------------------------------- /Spoilage/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/CodePatches.cs -------------------------------------------------------------------------------- /Spoilage/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/Methods.cs -------------------------------------------------------------------------------- /Spoilage/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/ModConfig.cs -------------------------------------------------------------------------------- /Spoilage/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/ModEntry.cs -------------------------------------------------------------------------------- /Spoilage/SpoilData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/SpoilData.cs -------------------------------------------------------------------------------- /Spoilage/Spoilage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/Spoilage.csproj -------------------------------------------------------------------------------- /Spoilage/SpoilageAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/SpoilageAPI.cs -------------------------------------------------------------------------------- /Spoilage/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/i18n/ru.json -------------------------------------------------------------------------------- /Spoilage/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Spoilage/manifest.json -------------------------------------------------------------------------------- /SprinklerMod/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SprinklerMod/Methods.cs -------------------------------------------------------------------------------- /SprinklerMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/SprinklerMod/ModEntry.cs -------------------------------------------------------------------------------- /StardewImpact/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewImpact/Display.cs -------------------------------------------------------------------------------- /StardewImpact/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewImpact/Input.cs -------------------------------------------------------------------------------- /StardewImpact/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewImpact/Methods.cs -------------------------------------------------------------------------------- /StardewRPG/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewRPG/Methods.cs -------------------------------------------------------------------------------- /StardewRPG/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewRPG/ModConfig.cs -------------------------------------------------------------------------------- /StardewRPG/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewRPG/ModEntry.cs -------------------------------------------------------------------------------- /StardewRPG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewRPG/README.md -------------------------------------------------------------------------------- /StardewRPG/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewRPG/i18n/ru.json -------------------------------------------------------------------------------- /StardewRPG/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewRPG/manifest.json -------------------------------------------------------------------------------- /StardewValleyMods.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StardewValleyMods.sln -------------------------------------------------------------------------------- /StatueShorts/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/StatueShorts/ModEntry.cs -------------------------------------------------------------------------------- /Swim 0.9.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim 0.9.2.zip -------------------------------------------------------------------------------- /Swim/AbigailMetalHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/AbigailMetalHead.cs -------------------------------------------------------------------------------- /Swim/BigFishie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/BigFishie.cs -------------------------------------------------------------------------------- /Swim/DiveMapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/DiveMapData.cs -------------------------------------------------------------------------------- /Swim/Fishie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/Fishie.cs -------------------------------------------------------------------------------- /Swim/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/ModConfig.cs -------------------------------------------------------------------------------- /Swim/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/ModEntry.cs -------------------------------------------------------------------------------- /Swim/SeaCrab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SeaCrab.cs -------------------------------------------------------------------------------- /Swim/Swim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/Swim.csproj -------------------------------------------------------------------------------- /Swim/SwimDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SwimDialog.cs -------------------------------------------------------------------------------- /Swim/SwimHelperEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SwimHelperEvents.cs -------------------------------------------------------------------------------- /Swim/SwimMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SwimMaps.cs -------------------------------------------------------------------------------- /Swim/SwimModApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SwimModApi.cs -------------------------------------------------------------------------------- /Swim/SwimPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SwimPatches.cs -------------------------------------------------------------------------------- /Swim/SwimUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SwimUtils.cs -------------------------------------------------------------------------------- /Swim/SwimmerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/SwimmerData.cs -------------------------------------------------------------------------------- /Swim/assets/breathe.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/assets/breathe.wav -------------------------------------------------------------------------------- /Swim/assets/notes.txt: -------------------------------------------------------------------------------- 1 | ParadigmNomad (PPJA & SVO) Scuba.png -------------------------------------------------------------------------------- /Swim/assets/scuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/assets/scuba.png -------------------------------------------------------------------------------- /Swim/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/i18n/default.json -------------------------------------------------------------------------------- /Swim/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/i18n/es.json -------------------------------------------------------------------------------- /Swim/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/i18n/ko.json -------------------------------------------------------------------------------- /Swim/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/i18n/pl.json -------------------------------------------------------------------------------- /Swim/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/i18n/pt.json -------------------------------------------------------------------------------- /Swim/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/i18n/ru.json -------------------------------------------------------------------------------- /Swim/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/i18n/zh.json -------------------------------------------------------------------------------- /Swim/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Swim/manifest.json -------------------------------------------------------------------------------- /TakeAll/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TakeAll/CodePatches.cs -------------------------------------------------------------------------------- /TakeAll/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TakeAll/Methods.cs -------------------------------------------------------------------------------- /TakeAll/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TakeAll/ModConfig.cs -------------------------------------------------------------------------------- /TakeAll/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TakeAll/ModEntry.cs -------------------------------------------------------------------------------- /TakeAll/TakeAll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TakeAll/TakeAll.csproj -------------------------------------------------------------------------------- /TakeAll/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TakeAll/manifest.json -------------------------------------------------------------------------------- /Tent/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/CodePatches.cs -------------------------------------------------------------------------------- /Tent/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/ModConfig.cs -------------------------------------------------------------------------------- /Tent/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/ModEntry.cs -------------------------------------------------------------------------------- /Tent/MyManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/MyManifest.cs -------------------------------------------------------------------------------- /Tent/Tent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/Tent.csproj -------------------------------------------------------------------------------- /Tent/dga/assets/tent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/dga/assets/tent.png -------------------------------------------------------------------------------- /Tent/dga/assets/tent.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/dga/assets/tent.xcf -------------------------------------------------------------------------------- /Tent/dga/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/dga/content.json -------------------------------------------------------------------------------- /Tent/dga/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/dga/i18n/ru.json -------------------------------------------------------------------------------- /Tent/dga/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/dga/manifest.json -------------------------------------------------------------------------------- /Tent/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Tent/manifest.json -------------------------------------------------------------------------------- /Terrarium/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Terrarium/ModConfig.cs -------------------------------------------------------------------------------- /Terrarium/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Terrarium/ModEntry.cs -------------------------------------------------------------------------------- /Terrarium/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Terrarium/app.config -------------------------------------------------------------------------------- /Terrarium/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Terrarium/manifest.json -------------------------------------------------------------------------------- /TextureTweaks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TextureTweaks/Methods.cs -------------------------------------------------------------------------------- /ToolMod/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ToolMod/CodePatches.cs -------------------------------------------------------------------------------- /ToolMod/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ToolMod/Methods.cs -------------------------------------------------------------------------------- /ToolMod/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ToolMod/ModConfig.cs -------------------------------------------------------------------------------- /ToolMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ToolMod/ModEntry.cs -------------------------------------------------------------------------------- /ToolMod/ToolMod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ToolMod/ToolMod.csproj -------------------------------------------------------------------------------- /ToolMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ToolMod/manifest.json -------------------------------------------------------------------------------- /TrainTracks/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TrainTracks/ModConfig.cs -------------------------------------------------------------------------------- /TrainTracks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TrainTracks/ModEntry.cs -------------------------------------------------------------------------------- /TrainTracks/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TrainTracks/Utils.cs -------------------------------------------------------------------------------- /Trampoline/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Trampoline/Methods.cs -------------------------------------------------------------------------------- /Trampoline/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Trampoline/ModConfig.cs -------------------------------------------------------------------------------- /Trampoline/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Trampoline/ModEntry.cs -------------------------------------------------------------------------------- /Trampoline/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Trampoline/manifest.json -------------------------------------------------------------------------------- /TreeTweaks/DropData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TreeTweaks/DropData.cs -------------------------------------------------------------------------------- /TreeTweaks/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TreeTweaks/ModConfig.cs -------------------------------------------------------------------------------- /TreeTweaks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TreeTweaks/ModEntry.cs -------------------------------------------------------------------------------- /TreeTweaks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/TreeTweaks/manifest.json -------------------------------------------------------------------------------- /UniqueValley/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UniqueValley/ModEntry.cs -------------------------------------------------------------------------------- /UniqueValley/SubData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UniqueValley/SubData.cs -------------------------------------------------------------------------------- /UtilityGrid/GridPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UtilityGrid/GridPipe.cs -------------------------------------------------------------------------------- /UtilityGrid/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UtilityGrid/Methods.cs -------------------------------------------------------------------------------- /UtilityGrid/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UtilityGrid/ModConfig.cs -------------------------------------------------------------------------------- /UtilityGrid/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UtilityGrid/ModEntry.cs -------------------------------------------------------------------------------- /UtilityGrid/PipeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UtilityGrid/PipeGroup.cs -------------------------------------------------------------------------------- /UtilityGrid/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/UtilityGrid/i18n/ru.json -------------------------------------------------------------------------------- /VideoPlayer/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/VideoPlayer/ModConfig.cs -------------------------------------------------------------------------------- /VideoPlayer/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/VideoPlayer/ModEntry.cs -------------------------------------------------------------------------------- /VideoPlayer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/VideoPlayer/app.config -------------------------------------------------------------------------------- /VideoPlayer/assets/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/VideoPlayer/assets/x.png -------------------------------------------------------------------------------- /VideoPlayer/i18n/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "app-name": "Video Player" 3 | } 4 | -------------------------------------------------------------------------------- /VideoPlayer/i18n/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "app-name": "Видеоплеер" 3 | } 4 | -------------------------------------------------------------------------------- /WallPlanter/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WallPlanter/ModConfig.cs -------------------------------------------------------------------------------- /WallPlanter/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WallPlanter/ModEntry.cs -------------------------------------------------------------------------------- /WallPlanter/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WallPlanter/i18n/fr.json -------------------------------------------------------------------------------- /WaterPump/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WaterPump/ModConfig.cs -------------------------------------------------------------------------------- /WaterPump/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WaterPump/ModEntry.cs -------------------------------------------------------------------------------- /WaterPump/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WaterPump/manifest.json -------------------------------------------------------------------------------- /WeatherTotems/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WeatherTotems/Tokens.cs -------------------------------------------------------------------------------- /WeddingTweaks/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WeddingTweaks/Misc.cs -------------------------------------------------------------------------------- /Weeds/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/CodePatches.cs -------------------------------------------------------------------------------- /Weeds/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/Methods.cs -------------------------------------------------------------------------------- /Weeds/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/ModConfig.cs -------------------------------------------------------------------------------- /Weeds/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/ModEntry.cs -------------------------------------------------------------------------------- /Weeds/Weeds.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/Weeds.csproj -------------------------------------------------------------------------------- /Weeds/assets/weeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/assets/weeds.png -------------------------------------------------------------------------------- /Weeds/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/i18n/default.json -------------------------------------------------------------------------------- /Weeds/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Weeds/manifest.json -------------------------------------------------------------------------------- /WikiLinks/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WikiLinks/Methods.cs -------------------------------------------------------------------------------- /WikiLinks/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WikiLinks/ModConfig.cs -------------------------------------------------------------------------------- /WikiLinks/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WikiLinks/ModEntry.cs -------------------------------------------------------------------------------- /WikiLinks/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WikiLinks/i18n/fr.json -------------------------------------------------------------------------------- /WikiLinks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WikiLinks/manifest.json -------------------------------------------------------------------------------- /Wildflowers/CropData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Wildflowers/CropData.cs -------------------------------------------------------------------------------- /Wildflowers/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Wildflowers/Methods.cs -------------------------------------------------------------------------------- /Wildflowers/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Wildflowers/ModConfig.cs -------------------------------------------------------------------------------- /Wildflowers/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/Wildflowers/ModEntry.cs -------------------------------------------------------------------------------- /WitcherMod/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WitcherMod/ModConfig.cs -------------------------------------------------------------------------------- /WitcherMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WitcherMod/ModEntry.cs -------------------------------------------------------------------------------- /WitcherMod/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WitcherMod/app.config -------------------------------------------------------------------------------- /WitcherMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/WitcherMod/manifest.json -------------------------------------------------------------------------------- /YAJM/CodePatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/CodePatches.cs -------------------------------------------------------------------------------- /YAJM/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/Methods.cs -------------------------------------------------------------------------------- /YAJM/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/ModConfig.cs -------------------------------------------------------------------------------- /YAJM/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/ModEntry.cs -------------------------------------------------------------------------------- /YAJM/YAJM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/YAJM.csproj -------------------------------------------------------------------------------- /YAJM/assets/horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/assets/horse.png -------------------------------------------------------------------------------- /YAJM/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/i18n/default.json -------------------------------------------------------------------------------- /YAJM/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/i18n/fr.json -------------------------------------------------------------------------------- /YAJM/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/YAJM/manifest.json -------------------------------------------------------------------------------- /ZombieOutbreak/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/ZombieOutbreak/Tokens.cs -------------------------------------------------------------------------------- /_releases/Swim 3.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/_releases/Swim 3.1.0.zip -------------------------------------------------------------------------------- /_releases/Swim 3.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/_releases/Swim 3.3.1.zip -------------------------------------------------------------------------------- /_releases/Swim 3.3.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/_releases/Swim 3.3.2.zip -------------------------------------------------------------------------------- /_releases/Swim 3.4.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/_releases/Swim 3.4.1.zip -------------------------------------------------------------------------------- /_releases/Swim 3.4.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/_releases/Swim 3.4.2.zip -------------------------------------------------------------------------------- /_releases/YAJM 0.7.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/_releases/YAJM 0.7.1.zip -------------------------------------------------------------------------------- /xVASynth/Game1Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/xVASynth/Game1Patches.cs -------------------------------------------------------------------------------- /xVASynth/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/xVASynth/ModConfig.cs -------------------------------------------------------------------------------- /xVASynth/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/xVASynth/ModEntry.cs -------------------------------------------------------------------------------- /xVASynth/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/xVASynth/manifest.json -------------------------------------------------------------------------------- /xVASynth/xVASynth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aedenthorn/StardewValleyMods/HEAD/xVASynth/xVASynth.csproj --------------------------------------------------------------------------------