├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── custom.md └── SUPPORT.md ├── .gitignore ├── Automate ├── Automate.csproj ├── Framework │ ├── AutomateAPI.cs │ ├── AutomateConstants.cs │ ├── AutomateContainerPreference.cs │ ├── AutomationFactory.cs │ ├── BaseMachine.cs │ ├── BaseMachineForBuilding.cs │ ├── Commands │ │ ├── CommandHandler.cs │ │ ├── ResetCommand.cs │ │ ├── Summary │ │ │ ├── GlobalStats.cs │ │ │ ├── GroupContainerStats.cs │ │ │ ├── GroupMachineStats.cs │ │ │ ├── GroupStats.cs │ │ │ └── LocationStats.cs │ │ └── SummaryCommand.cs │ ├── Connector.cs │ ├── Consumable.cs │ ├── GameLocationNameComparer.cs │ ├── GenericModConfigMenuIntegrationForAutomate.cs │ ├── GenericObjectMachine.cs │ ├── IMachineGroup.cs │ ├── JunimoMachineGroup.cs │ ├── LocationFloodFillIndex.cs │ ├── MachineDataForLocation.cs │ ├── MachineGroup.cs │ ├── MachineGroupBuilder.cs │ ├── MachineGroupFactory.cs │ ├── MachineManager.cs │ ├── MachineWrapper.cs │ ├── Machines │ │ ├── Buildings │ │ │ ├── FishPondMachine.cs │ │ │ ├── JunimoHutMachine.cs │ │ │ └── ShippingBinMachine.cs │ │ ├── DataBasedBuildingMachine.cs │ │ ├── DataBasedObjectMachine.cs │ │ ├── Objects │ │ │ ├── AutoGrabberMachine.cs │ │ │ ├── CrabPotMachine.cs │ │ │ ├── FeedHopperMachine.cs │ │ │ └── MiniShippingBinMachine.cs │ │ ├── TerrainFeatures │ │ │ ├── BushMachine.cs │ │ │ ├── FruitTreeMachine.cs │ │ │ └── TreeMachine.cs │ │ └── Tiles │ │ │ └── TrashCanMachine.cs │ ├── Models │ │ ├── DataModel.cs │ │ ├── DataModelIntegration.cs │ │ ├── JunimoHutBehavior.cs │ │ ├── ModConfig.cs │ │ ├── ModConfigKeys.cs │ │ ├── ModConfigMachine.cs │ │ └── ModConfigStorage.cs │ ├── OverlayMenu.cs │ ├── Recipe.cs │ ├── StackAccumulator.cs │ ├── Storage │ │ ├── ChestContainer.cs │ │ └── ContainerExtensions.cs │ └── StorageManager.cs ├── IAutomatable.cs ├── IAutomateAPI.cs ├── IAutomationFactory.cs ├── IConsumable.cs ├── IContainer.cs ├── IMachine.cs ├── IRecipe.cs ├── IStorage.cs ├── ITrackedStack.cs ├── MachineState.cs ├── ModEntry.cs ├── TrackedItem.cs ├── TrackedItemCollection.cs ├── assets │ └── data.json ├── docs │ ├── README.md │ ├── release-notes.md │ ├── screenshots │ │ ├── chests-anywhere-config.png │ │ ├── connectors.png │ │ ├── console-command.png │ │ ├── crab-pot-factory.png │ │ ├── example-overlay.png │ │ ├── extensibility-machine-groups.png │ │ ├── generic-config-menu-machines.png │ │ ├── generic-config-menu.png │ │ ├── iridium-bar-factory.png │ │ ├── iridium-cheese-factory.png │ │ ├── iridium-mead-factory.png │ │ ├── refined-quartz-factory.png │ │ ├── technical-machines-flood-fill.png │ │ ├── technical-machines-layout.png │ │ ├── technical-machines-scan-2.png │ │ └── technical-machines-scan.png │ └── technical.md ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ └── zh.json └── manifest.json ├── CentralStation ├── Api │ ├── ICentralStationApi.cs │ ├── IStop.cs │ └── StopNetworks.cs ├── CentralStation.csproj ├── CentralStation.csproj.DotSettings ├── Framework │ ├── CentralStationApi.cs │ ├── Constants │ │ ├── AssetNames.cs │ │ ├── Constant.cs │ │ ├── DestinationIds.cs │ │ └── MapSubActions.cs │ ├── ContentManager.cs │ ├── ContentModels │ │ ├── StopModel.cs │ │ ├── TouristMapModel.cs │ │ └── TouristModel.cs │ ├── GenericModConfigMenuIntegrationForCentralStation.cs │ ├── Integrations │ │ ├── BusLocations │ │ │ ├── BusLocationsStopProvider.cs │ │ │ └── ReassignedContentPackModel.cs │ │ ├── ICustomStopProvider.cs │ │ └── TrainStation │ │ │ ├── ReassignedContentPackModel.cs │ │ │ ├── ReassignedContentPackStopModel.cs │ │ │ └── TrainStationStopProvider.cs │ ├── LiveMessageQueue.cs │ ├── ModConfig.cs │ ├── ShouldEnableStopDelegate.cs │ ├── Stop.cs │ ├── StopManager.cs │ └── StopNetworksExtensions.cs ├── ModEntry.cs ├── [CP] CentralStation │ ├── assets │ │ ├── empty.json │ │ ├── furniture.png │ │ └── maps │ │ │ ├── .Pathoschild.CentralStation_Tiles.png │ │ │ ├── centralStation.tmx │ │ │ ├── centralStation_emptyWoodPedestal.tmx │ │ │ ├── ticketMachine.tmx │ │ │ └── tourists.tmx │ ├── content.json │ ├── i18n │ │ ├── de.json │ │ ├── default.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── pt.json │ │ ├── tr.json │ │ └── zh.json │ ├── manifest.json │ └── patches │ │ ├── destinations.json │ │ ├── items.json │ │ ├── location.json │ │ ├── shops.json │ │ ├── ticketMachine.json │ │ └── tourists.json ├── docs │ ├── README.md │ ├── author-guide.md │ ├── author-lore-guide.md │ ├── release-notes.md │ └── screenshots │ │ ├── boat-dock.png │ │ ├── bookshelf.png │ │ ├── bus-stop.png │ │ ├── central-station.png │ │ ├── config-menu.png │ │ ├── tourist-map.png │ │ └── train-station.png └── manifest.json ├── ChestsAnywhere ├── ChestFactory.cs ├── ChestsAnywhere.csproj ├── Framework │ ├── ChestRange.cs │ ├── ChestsAnywhereApi.cs │ ├── Constants.cs │ ├── ContainerData.cs │ ├── Containers │ │ ├── AutoGrabberContainer.cs │ │ ├── ChestContainer.cs │ │ ├── IContainer.cs │ │ ├── JunimoHutContainer.cs │ │ ├── ShippingBinContainer.cs │ │ ├── ShippingBinMode.cs │ │ └── StorageFurnitureContainer.cs │ ├── GenericModConfigMenuIntegrationForChestsAnywhere.cs │ ├── ManagedChest.cs │ ├── ModConfig.cs │ ├── ModConfigKeys.cs │ ├── ModData.cs │ └── RangeHandler.cs ├── IChestsAnywhereApi.cs ├── Menus │ ├── Components │ │ ├── Checkbox.cs │ │ ├── SimpleDropdown.cs │ │ ├── Sprites.cs │ │ └── ValidatedTextBox.cs │ └── Overlays │ │ ├── BaseChestOverlay.cs │ │ ├── ChestOverlay.cs │ │ ├── Element.cs │ │ ├── IStorageOverlay.cs │ │ └── ShopMenuOverlay.cs ├── ModEntry.cs ├── assets │ └── data.json ├── docs │ ├── README.md │ ├── release-notes.md │ └── screenshots │ │ ├── animated-edit.gif │ │ ├── animated-usage.gif │ │ ├── edit-chest.png │ │ ├── generic-config-menu.png │ │ └── screenshot.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── Common.Patching ├── .Common.Patching.shproj ├── BasePatcher.cs ├── Common.Patching.projitems ├── HarmonyPatcher.cs ├── IPatcher.cs └── PatchHelper.cs ├── Common ├── .Common.shproj ├── CollectionExtensions.cs ├── Commands │ ├── BaseCommand.cs │ ├── GenericCommandHandler.cs │ ├── GenericHelpCommand.cs │ └── ICommand.cs ├── Common.projitems ├── CommonHelper.cs ├── DataParsers │ └── CropDataParser.cs ├── DrawHelper.cs ├── GameI18n.cs ├── Integrations │ ├── Automate │ │ ├── AutomateIntegration.cs │ │ └── IAutomateApi.cs │ ├── BaseIntegration.cs │ ├── BetterGameMenu │ │ ├── BetterGameMenuIntegration.cs │ │ └── IBetterGameMenuApi.cs │ ├── BetterSprinklers │ │ ├── BetterSprinklersIntegration.cs │ │ └── IBetterSprinklersApi.cs │ ├── BetterSprinklersPlus │ │ ├── BetterSprinklersPlusIntegration.cs │ │ └── IBetterSprinklersPlusApi.cs │ ├── BushBloomMod │ │ ├── BushBloomModIntegration.cs │ │ └── IBushBloomModApi.cs │ ├── CustomBush │ │ ├── CustomBushIntegration.cs │ │ ├── ICustomBush.cs │ │ ├── ICustomBushApi.cs │ │ └── ICustomBushDrop.cs │ ├── CustomFarmingRedux │ │ ├── CustomFarmingReduxIntegration.cs │ │ └── ICustomFarmingApi.cs │ ├── ExtraMachineConfig │ │ ├── ExtraMachineConfigIntegration.cs │ │ └── IExtraMachineConfigApi.cs │ ├── GenericModConfigMenu │ │ ├── GenericModConfigMenuIntegration.cs │ │ ├── IGenericModConfigMenuApi.cs │ │ └── IGenericModConfigMenuIntegrationFor.cs │ ├── IModIntegration.cs │ ├── IconicFramework │ │ ├── IIconicFrameworkApi.cs │ │ └── IconicFrameworkIntegration.cs │ ├── LineSprinklers │ │ ├── ILineSprinklersApi.cs │ │ └── LineSprinklersIntegration.cs │ ├── MultiFertilizer │ │ └── MultiFertilizerIntegration.cs │ ├── PelicanFiber │ │ └── PelicanFiberIntegration.cs │ ├── ProducerFrameworkMod │ │ ├── IProducerFrameworkModApi.cs │ │ ├── ProducerFrameworkIngredient.cs │ │ ├── ProducerFrameworkModIntegration.cs │ │ └── ProducerFrameworkRecipe.cs │ ├── Profiler │ │ ├── IProfilerApi.cs │ │ └── ProfilerIntegration.cs │ ├── SimpleSprinkler │ │ ├── ISimplerSprinklerApi.cs │ │ └── SimpleSprinklerIntegration.cs │ ├── SpaceCore │ │ ├── ISpaceCoreApi.cs │ │ └── SpaceCoreIntegration.cs │ └── TrainStation │ │ ├── ITrainStationApi.cs │ │ ├── ITrainStationStopModel.cs │ │ └── TrainStationIntegration.cs ├── Items │ ├── ItemRepository.cs │ └── SearchableItem.cs ├── ListExtensions.cs ├── MachineDataHelper.cs ├── MapExtensions.cs ├── Messages │ └── AutomateUpdateChestMessage.cs ├── ModDataDictionaryExtensions.cs ├── ObjectExtensions.cs ├── SpriteInfo.cs ├── SuppressReasons.cs ├── TileHelper.cs ├── UI │ ├── BaseOverlay.cs │ ├── CommonSprites.cs │ ├── Dropdown.cs │ ├── DropdownList.cs │ └── SpriteBatchExtensions.cs └── Utilities │ ├── Cached.cs │ ├── ConstraintSet.cs │ ├── HumanSortComparer.cs │ ├── IInvariantSet.cs │ ├── InvariantDictionary.cs │ ├── InvariantSet.cs │ ├── MutableInvariantSet.cs │ └── ObjectReferenceComparer.cs ├── ContentPatcher ├── ContentPatcher.csproj ├── Framework │ ├── AggregateContextual.cs │ ├── Api │ │ ├── ApiManagedConditions.cs │ │ ├── ApiManagedConditionsForSingleScreen.cs │ │ ├── ApiManagedTokenString.cs │ │ └── ApiManagedTokenStringForSingleScreen.cs │ ├── Commands │ │ ├── CommandHandler.cs │ │ ├── Commands │ │ │ ├── DumpCommand.cs │ │ │ ├── ExportCommand.cs │ │ │ ├── InvalidateCommand.cs │ │ │ ├── ParseCommand.cs │ │ │ ├── ReloadCommand.cs │ │ │ ├── SummaryCommand.cs │ │ │ └── UpdateCommand.cs │ │ ├── PatchBaseInfo.cs │ │ ├── PatchDisplaySortComparer.cs │ │ └── PatchInfo.cs │ ├── Conditions │ │ ├── Condition.cs │ │ ├── ConditionType.cs │ │ ├── ContextUpdateType.cs │ │ ├── LiteralString.cs │ │ ├── PatchImageMode.cs │ │ ├── PatchType.cs │ │ ├── TokenString.cs │ │ └── UpdateRate.cs │ ├── ConfigFileHandler.cs │ ├── ConfigModels │ │ ├── ConfigField.cs │ │ ├── ConfigSchemaFieldConfig.cs │ │ ├── ContentConfig.cs │ │ ├── CustomLocationConfig.cs │ │ ├── DynamicTokenConfig.cs │ │ ├── ModConfig.cs │ │ ├── ModConfigKeys.cs │ │ ├── PatchConfig.cs │ │ ├── PatchMapTileConfig.cs │ │ ├── PatchMoveEntryConfig.cs │ │ ├── PatchPositionConfig.cs │ │ ├── PatchRectangleConfig.cs │ │ └── TextOperationConfig.cs │ ├── Constants │ │ ├── FarmCaveType.cs │ │ ├── FarmType.cs │ │ ├── PathFragment.cs │ │ ├── PetType.cs │ │ ├── PlayerType.cs │ │ ├── Profession.cs │ │ ├── Skill.cs │ │ ├── TextOperationReplaceMode.cs │ │ ├── TextOperationTargetRoot.cs │ │ ├── TextOperationType.cs │ │ └── WalletItem.cs │ ├── ContentPatcherAPI.cs │ ├── ContextualState.cs │ ├── DebugOverlay.cs │ ├── GenericModConfigMenuIntegrationForContentPack.cs │ ├── GenericTokenContext.cs │ ├── IContextual.cs │ ├── IContextualState.cs │ ├── IManagedTokenString.cs │ ├── ITokenString.cs │ ├── IndexedPatchValues.cs │ ├── InternalConstants.cs │ ├── InternalExtensions.cs │ ├── InvariantSets.cs │ ├── Lexing │ │ ├── LexTokens │ │ │ ├── ILexToken.cs │ │ │ ├── LexBit.cs │ │ │ ├── LexBitType.cs │ │ │ ├── LexFormatException.cs │ │ │ ├── LexTokenInput.cs │ │ │ ├── LexTokenLiteral.cs │ │ │ ├── LexTokenToken.cs │ │ │ └── LexTokenType.cs │ │ └── Lexer.cs │ ├── LoadedContentPack.cs │ ├── LocalContext.cs │ ├── Locations │ │ ├── CustomLocationData.cs │ │ ├── CustomLocationManager.cs │ │ └── TmxlLocationLoader.cs │ ├── LogPathBuilder.cs │ ├── Migrations │ │ ├── AggregateMigration.cs │ │ ├── BaseMigration.cs │ │ ├── BaseRuntimeMigration.cs │ │ ├── EmptyMigration.cs │ │ ├── IMigration.cs │ │ ├── IRuntimeMigration.cs │ │ ├── Internal │ │ │ ├── FakeAssetData.cs │ │ │ ├── IEditAssetMigrator.cs │ │ │ ├── RuntimeMigrationHelper.cs │ │ │ └── VanillaAssetFactory.cs │ │ ├── Migration_1_10.cs │ │ ├── Migration_1_11.cs │ │ ├── Migration_1_13.cs │ │ ├── Migration_1_14.cs │ │ ├── Migration_1_15_Prevalidation.cs │ │ ├── Migration_1_15_Rewrites.cs │ │ ├── Migration_1_16.cs │ │ ├── Migration_1_17.cs │ │ ├── Migration_1_18.cs │ │ ├── Migration_1_19.cs │ │ ├── Migration_1_20.cs │ │ ├── Migration_1_21.cs │ │ ├── Migration_1_22.cs │ │ ├── Migration_1_23.cs │ │ ├── Migration_1_24.cs │ │ ├── Migration_1_25.cs │ │ ├── Migration_1_26.cs │ │ ├── Migration_1_28.cs │ │ ├── Migration_1_3.cs │ │ ├── Migration_1_4.cs │ │ ├── Migration_1_5.cs │ │ ├── Migration_1_6.cs │ │ ├── Migration_1_7.cs │ │ ├── Migration_1_8.cs │ │ ├── Migration_1_9.cs │ │ ├── Migration_2_0.ForBigCraftablesInformation.cs │ │ ├── Migration_2_0.ForBlueprints.cs │ │ ├── Migration_2_0.ForBoots.cs │ │ ├── Migration_2_0.ForCrops.cs │ │ ├── Migration_2_0.ForFurniture.cs │ │ ├── Migration_2_0.ForLocations.cs │ │ ├── Migration_2_0.ForNpcDispositions.cs │ │ ├── Migration_2_0.ForObjectContextTags.cs │ │ ├── Migration_2_0.ForObjectInformation.cs │ │ ├── Migration_2_0.ForWeapons.cs │ │ ├── Migration_2_0.cs │ │ ├── Migration_2_1.cs │ │ ├── Migration_2_2.cs │ │ ├── Migration_2_4.cs │ │ ├── Migration_2_5.cs │ │ ├── Migration_2_6.cs │ │ └── Migration_2_7.cs │ ├── ModTokenContext.cs │ ├── PatchLoader.cs │ ├── PatchManager.cs │ ├── Patches │ │ ├── DisabledPatch.cs │ │ ├── EditData │ │ │ ├── BaseDataEditor.cs │ │ │ ├── DelimitedStringKeyValueEditor.cs │ │ │ ├── DictionaryKeyValueEditor.cs │ │ │ ├── IKeyValueEditor.cs │ │ │ ├── KeyValueEditorFactory.cs │ │ │ ├── ListKeyValueEditor.cs │ │ │ ├── ModelKeyValueEditor.cs │ │ │ └── MoveResult.cs │ │ ├── EditDataPatch.cs │ │ ├── EditDataPatchField.cs │ │ ├── EditDataPatchMoveRecord.cs │ │ ├── EditDataPatchRecord.cs │ │ ├── EditImagePatch.cs │ │ ├── EditMapPatch.cs │ │ ├── EditMapPatchProperty.cs │ │ ├── EditMapPatchTile.cs │ │ ├── IPatch.cs │ │ ├── IncludePatch.cs │ │ ├── LoadPatch.cs │ │ ├── MoveEntryPosition.cs │ │ ├── Patch.cs │ │ ├── PatchAuditChange.cs │ │ └── PatchIndexComparer.cs │ ├── RawContentPack.cs │ ├── ScreenManager.cs │ ├── TextOperations │ │ ├── AppendOrPrependTextOperation.cs │ │ ├── BaseDelimitedTextOperation.cs │ │ ├── BaseTextOperation.cs │ │ ├── ITextOperation.cs │ │ ├── RemoveDelimitedTextOperation.cs │ │ └── ReplaceDelimitedTextOperation.cs │ ├── TokenManager.cs │ ├── TokenParser.cs │ ├── TokenSaveReader.cs │ ├── Tokens │ │ ├── DynamicTokenValue.cs │ │ ├── EmptyInputArguments.cs │ │ ├── IContext.cs │ │ ├── IInputArgumentValue.cs │ │ ├── IInputArguments.cs │ │ ├── IToken.cs │ │ ├── InputArgumentValue.cs │ │ ├── InputArguments.cs │ │ ├── Json │ │ │ ├── TokenizableJToken.cs │ │ │ └── TokenizableProxy.cs │ │ ├── ManagedManualToken.cs │ │ ├── ModProvidedToken.cs │ │ ├── Token.cs │ │ ├── TokenPosition.cs │ │ ├── TokenRectangle.cs │ │ └── ValueProviders │ │ │ ├── AbsoluteFilePathValueProvider.cs │ │ │ ├── BaseValueProvider.cs │ │ │ ├── ConditionTypeValueProvider.cs │ │ │ ├── CountValueProvider.cs │ │ │ ├── FarmMapAssetValueProvider.cs │ │ │ ├── FirstValidFileValueProvider.cs │ │ │ ├── FormatAssetNameValueProvider.cs │ │ │ ├── HasFileValueProvider.cs │ │ │ ├── HasValueValueProvider.cs │ │ │ ├── HavingChildValueProvider.cs │ │ │ ├── IValueProvider.cs │ │ │ ├── ImmutableValueProvider.cs │ │ │ ├── InternalAssetKeyValueProvider.cs │ │ │ ├── LetterCaseValueProvider.cs │ │ │ ├── ManualValueProvider.cs │ │ │ ├── MergeValueProvider.cs │ │ │ ├── ModConvention │ │ │ ├── ConventionDelegates.cs │ │ │ ├── ConventionValueProvider.cs │ │ │ └── ConventionWrapper.cs │ │ │ ├── ModSimpleValueProvider.cs │ │ │ ├── PathPartValueProvider.cs │ │ │ ├── Players │ │ │ └── PerPlayerValueProvider.cs │ │ │ ├── QueryValueProvider.cs │ │ │ ├── RandomValueProvider.cs │ │ │ ├── RangeValueProvider.cs │ │ │ ├── RenderValueProvider.cs │ │ │ ├── RoundValueProvider.cs │ │ │ ├── SkillLevelValueProvider.cs │ │ │ ├── TimeValueProvider.cs │ │ │ ├── TranslationValueProvider.cs │ │ │ ├── VillagerHeartsValueProvider.cs │ │ │ ├── VillagerRelationshipValueProvider.cs │ │ │ └── WeatherValueProvider.cs │ ├── TriggerActions │ │ ├── MigrateIdType.cs │ │ └── MigrateIdsAction.cs │ └── Validators │ │ ├── BaseValidator.cs │ │ ├── IAssetValidator.cs │ │ └── StardewValley_1_3_36_Validator.cs ├── IContentPatcherAPI.cs ├── IContextualInfo.cs ├── IManagedConditions.cs ├── IManagedTokenString.cs ├── ModEntry.cs ├── docs │ ├── README.md │ ├── author-guide.md │ ├── author-guide │ │ ├── action-editdata.md │ │ ├── action-editimage.md │ │ ├── action-editmap.md │ │ ├── action-include.md │ │ ├── action-load.md │ │ ├── config.md │ │ ├── custom-locations.md │ │ ├── text-operations.md │ │ ├── tokens.md │ │ ├── translations.md │ │ ├── trigger-actions.md │ │ └── troubleshooting.md │ ├── author-migration-guide.md │ ├── author-tokens-guide.md │ ├── conditions-api.md │ ├── extensibility.md │ ├── release-notes.md │ ├── screenshots │ │ ├── config-plain.png │ │ ├── config-with-sections.png │ │ ├── config-with-translations.png │ │ ├── debug-mode.png │ │ ├── map-patch-mode-overlay.png │ │ ├── map-patch-mode-replace-by-layer.png │ │ ├── map-patch-mode-replace.png │ │ ├── map-patch-mode-source.png │ │ ├── patch-mode-examples.png │ │ └── sample-asset.png │ ├── token-strings-api.md │ └── zh │ │ ├── README.md │ │ ├── author-guide.md │ │ ├── author-guide │ │ ├── action-editdata.md │ │ ├── action-editimage.md │ │ ├── action-editmap.md │ │ ├── action-include.md │ │ ├── action-load.md │ │ ├── config.md │ │ ├── custom-locations.md │ │ ├── text-operations.md │ │ ├── tokens.md │ │ ├── translations.md │ │ ├── trigger-actions.md │ │ └── troubleshooting.md │ │ ├── author-migration-guide.md │ │ ├── conditions-api.md │ │ ├── extensibility.md │ │ ├── token-strings-api.md │ │ └── translation-notes.md └── manifest.json ├── CropsAnytimeAnywhere ├── CropsAnytimeAnywhere.csproj ├── Framework │ ├── BaseRule.cs │ ├── ConfigRuleManager.cs │ ├── GenericModConfigMenuIntegrationForCropsAnytimeAnywhere.cs │ ├── ModConfig.cs │ ├── ModData.cs │ ├── PlantRule.cs │ └── TillableRule.cs ├── ModEntry.cs ├── Patches │ ├── FruitTreePatcher.cs │ └── LocationPatcher.cs ├── assets │ └── data.json ├── docs │ ├── README.md │ ├── release-notes.md │ ├── screenshot.gif │ └── screenshots │ │ └── generic-config-menu.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── it.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── tr.json │ └── zh.json └── manifest.json ├── DataLayers ├── DataLayers.csproj ├── Framework │ ├── Api.cs │ ├── ApiDataLayer.cs │ ├── ColorRegistry.cs │ ├── ColorScheme.cs │ ├── Commands │ │ ├── CommandHandler.cs │ │ └── ExportCommand.cs │ ├── Components │ │ └── LegendComponent.cs │ ├── ConfigModels │ │ ├── LayerConfig.cs │ │ ├── LayerConfigWithAutoSupport.cs │ │ ├── ModConfig.cs │ │ ├── ModConfigKeys.cs │ │ └── ModConfigLayers.cs │ ├── DataLayerOverlay.cs │ ├── GenericModConfigMenuIntegrationForDataLayers.cs │ ├── IAutoBuildingLayer.cs │ ├── IAutoItemCoverageLayer.cs │ ├── ILayer.cs │ ├── LayerRegistry.cs │ ├── LegendEntry.cs │ ├── ModIntegrations.cs │ ├── TileData.cs │ ├── TileDrawData.cs │ ├── TileEdge.cs │ └── TileGroup.cs ├── IDataLayersApi.cs ├── Layers │ ├── AccessibleLayer.cs │ ├── AutoLayer.cs │ ├── BaseLayer.cs │ ├── BuildableLayer.cs │ ├── Coverage │ │ ├── BeeHouseLayer.cs │ │ ├── BombLayer.cs │ │ ├── JunimoHutLayer.cs │ │ ├── ScarecrowLayer.cs │ │ └── SprinklerLayer.cs │ ├── Crops │ │ ├── CropFertilizerLayer.cs │ │ ├── CropHarvestLayer.cs │ │ ├── CropPaddyWaterLayer.cs │ │ └── CropWaterLayer.cs │ ├── GridLayer.cs │ ├── MachineLayer.cs │ ├── ModLayer.cs │ └── TillableLayer.cs ├── ModEntry.cs ├── assets │ ├── colors.json │ └── icon.png ├── docs │ ├── README.md │ ├── author-guide.md │ ├── release-notes.md │ └── screenshots │ │ ├── accessible.png │ │ ├── auto-layer.png │ │ ├── bee-houses.png │ │ ├── bombs.png │ │ ├── buildable.png │ │ ├── crops-fertilized.png │ │ ├── crops-harvest.png │ │ ├── crops-paddy-water.png │ │ ├── crops-watered.png │ │ ├── custom-layer.png │ │ ├── generic-config-menu.png │ │ ├── grid-layer.png │ │ ├── grid-option.png │ │ ├── junimo-huts.png │ │ ├── machines.png │ │ ├── scarecrows.png │ │ ├── sprinklers.png │ │ └── tillable.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── DebugMode ├── DebugMode.csproj ├── Framework │ ├── GenericModConfigMenuIntegrationForChestsAnywhere.cs │ ├── ModConfig.cs │ ├── ModConfigKeys.cs │ └── PlayerDirection.cs ├── ModEntry.cs ├── assets │ └── icon.png ├── docs │ ├── README.md │ ├── release-notes.md │ └── screenshots │ │ ├── dialogue.png │ │ ├── event.png │ │ ├── festival.png │ │ ├── generic-config-menu.png │ │ ├── menu.png │ │ ├── minigame.png │ │ └── world.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── Directory.Build.props ├── Directory.Packages.props ├── FastAnimations ├── FastAnimations.csproj ├── Framework │ ├── BaseAnimationHandler.cs │ ├── GenericModConfigMenuIntegrationForFastAnimations.cs │ ├── IAnimationHandler.cs │ ├── IAnimationHandlerWithObjectList.cs │ └── ModConfig.cs ├── Handlers │ ├── BreakingGeodeHandler.cs │ ├── CasinoSlotsHandler.cs │ ├── DialogueTypingHandler.cs │ ├── EatingHandler.cs │ ├── EventHandler.cs │ ├── FadeHandler.cs │ ├── FishingHandler.cs │ ├── FishingTextHandler.cs │ ├── FishingTreasureHandler.cs │ ├── ForgeHandler.cs │ ├── HarvestHandler.cs │ ├── HoldUpItemHandler.cs │ ├── HorseFluteHandler.cs │ ├── LoadGameMenuHandler.cs │ ├── MilkingHandler.cs │ ├── MountHorseHandler.cs │ ├── OpenChestHandler.cs │ ├── OpenDialogueBoxHandler.cs │ ├── PamBusHandler.cs │ ├── ParrotExpressHandler.cs │ ├── PrizeTicketMachineHandler.cs │ ├── ReadBookHandler.cs │ ├── ShearingHandler.cs │ ├── ShippingMenuHandler.cs │ ├── SlingshotHandler.cs │ ├── TailoringHandler.cs │ ├── TitleMenuHandler.cs │ ├── ToolSwingHandler.cs │ ├── TreeFallingHandler.cs │ ├── UseTotemHandler.cs │ ├── WeaponSwingHandler.cs │ └── WheelSpinHandler.cs ├── ModEntry.cs ├── docs │ ├── README.md │ ├── release-notes.md │ └── screenshots │ │ └── generic-config-menu.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── HorseFluteAnywhere ├── Framework │ ├── GenericModConfigMenuIntegrationForHorseFluteAnywhere.cs │ └── ModConfig.cs ├── HorseFluteAnywhere.csproj ├── ModEntry.cs ├── Patches │ └── UtilityPatcher.cs ├── docs │ ├── README.md │ ├── release-notes.md │ └── screenshots │ │ ├── dungeon.png │ │ ├── generic-config-menu.png │ │ └── indoors.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── LICENSE ├── LookupAnything ├── Components │ ├── BaseMenu.cs │ ├── DebugInterface.cs │ ├── IScrollableMenu.cs │ ├── LookupMenu.cs │ ├── SearchMenu.cs │ ├── SearchResultComponent.cs │ └── Sprites.cs ├── DataParser.cs ├── DrawHelper.cs ├── Framework │ ├── Constants │ │ ├── ChildAge.cs │ │ ├── Constant.cs │ │ ├── FacingDirection.cs │ │ ├── GiftTaste.cs │ │ └── ItemQuality.cs │ ├── Data │ │ ├── CharacterData.cs │ │ ├── ConstantData.cs │ │ ├── FishPondDropData.cs │ │ ├── FishPondPopulationGateData.cs │ │ ├── FishPondPopulationGateQuestItemData.cs │ │ ├── ItemData.cs │ │ ├── ItemDropData.cs │ │ ├── MonsterData.cs │ │ ├── ObjectContext.cs │ │ ├── PuzzleSolutionsData.cs │ │ └── ShopData.cs │ ├── DataMinedValues │ │ ├── GenericDataMinedValue.cs │ │ ├── IDataMinedValue.cs │ │ └── PinnedDataMinedValue.cs │ ├── Fields │ │ ├── CharacterFriendshipField.cs │ │ ├── CharacterGiftTastesField.cs │ │ ├── CheckboxListField.cs │ │ ├── ColorField.cs │ │ ├── DataMiningField.cs │ │ ├── FishPondDropsField.cs │ │ ├── FishSpawnRulesField.cs │ │ ├── GenericField.cs │ │ ├── ICustomField.cs │ │ ├── ItemDropListField.cs │ │ ├── ItemGiftTastesField.cs │ │ ├── ItemIconField.cs │ │ ├── ItemIconListField.cs │ │ ├── ItemRecipesField.cs │ │ ├── LinkField.cs │ │ ├── Models │ │ │ ├── Checkbox.cs │ │ │ ├── CheckboxList.cs │ │ │ ├── FishPondDrop.cs │ │ │ ├── RecipeByTypeGroup.cs │ │ │ ├── RecipeEntry.cs │ │ │ └── RecipeItemEntry.cs │ │ ├── MovieTastesField.cs │ │ ├── PercentageBarField.cs │ │ ├── ScheduleField.cs │ │ └── SkillBarField.cs │ ├── FormattedText.cs │ ├── GenericModConfigMenuIntegrationForLookupAnything.cs │ ├── HumanReadableConditionParser.cs │ ├── HumanReadableContextTagParser.cs │ ├── I18nExtensions.cs │ ├── IFormattedText.cs │ ├── ISubjectRegistry.cs │ ├── ItemScanning │ │ ├── FoundItem.cs │ │ └── WorldItemScanner.cs │ ├── Lookups │ │ ├── BaseLookupProvider.cs │ │ ├── BaseSubject.cs │ │ ├── Buildings │ │ │ ├── BuildingLookupProvider.cs │ │ │ ├── BuildingSubject.cs │ │ │ └── BuildingTarget.cs │ │ ├── Characters │ │ │ ├── CharacterLookupProvider.cs │ │ │ ├── CharacterSubject.cs │ │ │ ├── CharacterTarget.cs │ │ │ ├── FarmAnimalSubject.cs │ │ │ ├── FarmAnimalTarget.cs │ │ │ ├── FarmerSubject.cs │ │ │ └── FarmerTarget.cs │ │ ├── GenericTarget.cs │ │ ├── ILookupProvider.cs │ │ ├── ISubject.cs │ │ ├── ITarget.cs │ │ ├── Items │ │ │ ├── CropTarget.cs │ │ │ ├── FlooringTarget.cs │ │ │ ├── ItemLookupProvider.cs │ │ │ ├── ItemSubject.cs │ │ │ ├── MovieSnackSubject.cs │ │ │ └── ObjectTarget.cs │ │ ├── TerrainFeatures │ │ │ ├── BushSubject.cs │ │ │ ├── BushTarget.cs │ │ │ ├── FruitTreeSubject.cs │ │ │ ├── FruitTreeTarget.cs │ │ │ ├── TerrainFeatureLookupProvider.cs │ │ │ ├── TreeSubject.cs │ │ │ └── TreeTarget.cs │ │ └── Tiles │ │ │ ├── CrystalCavePuzzleSubject.cs │ │ │ ├── IslandMermaidPuzzleSubject.cs │ │ │ ├── IslandShrinePuzzleSubject.cs │ │ │ ├── TileLookupProvider.cs │ │ │ ├── TileSubject.cs │ │ │ └── TileTarget.cs │ ├── Metadata.cs │ ├── ModCollapseLargeFieldsConfig.cs │ ├── ModConfig.cs │ ├── ModConfigKeys.cs │ ├── ModGiftTasteConfig.cs │ ├── Models │ │ ├── BundleIngredientModel.cs │ │ ├── BundleModel.cs │ │ ├── FishData │ │ │ ├── FishSpawnData.cs │ │ │ ├── FishSpawnLocationData.cs │ │ │ ├── FishSpawnTimeOfDayData.cs │ │ │ └── FishSpawnWeather.cs │ │ ├── FriendshipModel.cs │ │ ├── GiftTasteModel.cs │ │ ├── LinkTextArea.cs │ │ ├── QuestModel.cs │ │ ├── RecipeIngredientModel.cs │ │ ├── RecipeModel.cs │ │ └── RecipeType.cs │ ├── SubjectType.cs │ ├── TargetFactory.cs │ └── Themes │ │ ├── MenuBackground.cs │ │ ├── MenuBackgroundType.cs │ │ ├── ThemeData.cs │ │ └── ThemeManager.cs ├── GameHelper.cs ├── LookupAnything.csproj ├── ModEntry.cs ├── assets │ └── data.json ├── docs │ ├── README.md │ ├── author-guide.md │ ├── release-notes.md │ └── screenshots │ │ ├── animated.gif │ │ ├── barn.png │ │ ├── cask.png │ │ ├── child.png │ │ ├── crafting.png │ │ ├── crop.png │ │ ├── debug-farm-animal.png │ │ ├── farm-animal.png │ │ ├── fence.png │ │ ├── fish-pond.png │ │ ├── fish.png │ │ ├── fruit-tree.png │ │ ├── fruit-tree2.png │ │ ├── generic-config-menu.png │ │ ├── item.png │ │ ├── map-tile.png │ │ ├── mine-ice.png │ │ ├── mine-ore.png │ │ ├── mine-stone.png │ │ ├── monster.png │ │ ├── player.png │ │ ├── progression-mode.png │ │ ├── target-bundle.png │ │ ├── target-calendar.png │ │ ├── target-inventory.png │ │ ├── target-shops.png │ │ ├── target-social-menu.png │ │ ├── target-toolbar.png │ │ ├── target-world.png │ │ └── villager.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ └── zh.json └── manifest.json ├── NoclipMode ├── Framework │ ├── GenericModConfigMenuIntegrationForNoclipMode.cs │ └── ModConfig.cs ├── ModEntry.cs ├── NoclipMode.csproj ├── docs │ ├── README.md │ ├── animated.gif │ ├── release-notes.md │ └── screenshots │ │ └── generic-config-menu.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ └── zh.json └── manifest.json ├── Pathoschild.Stardew.slnx ├── Pathoschild.Stardew.slnx.DotSettings ├── README.md ├── SkipIntro ├── Framework │ ├── GenericModConfigMenuIntegrationForSkipIntro.cs │ ├── ModConfig.cs │ ├── Screen.cs │ └── Stage.cs ├── ModEntry.cs ├── SkipIntro.csproj ├── docs │ ├── README.md │ ├── release-notes.md │ └── screenshots │ │ └── generic-config-menu.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── SmallBeachFarm ├── Framework │ ├── Config │ │ ├── ModConfig.cs │ │ └── ModData.cs │ ├── FishType.cs │ └── GenericModConfigMenuIntegrationForSmallBeachFarm.cs ├── ModEntry.cs ├── Patches │ ├── CharacterCustomizationPatcher.cs │ └── FarmPatcher.cs ├── SmallBeachFarm.csproj ├── assets │ ├── data.json │ ├── farm.tmx │ ├── overlay_islands.tmx │ ├── overlay_pier.tmx │ ├── paths.tsx │ ├── spring_beach.tsx │ ├── spring_island_tilesheet_1.tsx │ ├── spring_outdoorsTileSheet.tsx │ └── spring_outdoorsTileSheet2.png ├── docs │ ├── README.md │ ├── release-notes.md │ └── screenshots │ │ ├── automate-crabpots.png │ │ ├── best-river-spot.png │ │ ├── campfire.gif │ │ ├── create-save-1.png │ │ ├── create-save-2.png │ │ ├── exits.png │ │ ├── farm-islands.png │ │ ├── farm.png │ │ ├── fish-areas.greenshot │ │ ├── fish-areas.png │ │ ├── generic-config-menu.png │ │ ├── supply-crates.png │ │ └── tilled.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ └── zh.json └── manifest.json ├── TestDataLayersMod ├── Framework │ └── CheckerboardLayer.cs ├── ModEntry.cs ├── TestDataLayersMod.csproj ├── i18n │ └── default.json └── manifest.json ├── TestMod ├── ModEntry.cs ├── TestMod.csproj └── manifest.json ├── Tests.Common ├── CommonTests │ ├── CachedTests.cs │ ├── CommonHelperTests.cs │ ├── ConstraintSetTests.cs │ ├── HumanSortComparerTests.cs │ ├── InvariantDictionaryTests.cs │ └── InvariantSetTests.cs └── Tests.Common.csproj ├── Tests.Mods ├── ContentPatcher │ ├── LexerTests.cs │ └── TokenStringTests.cs └── Tests.Mods.csproj ├── TractorMod ├── Framework │ ├── Attachments │ │ ├── AxeAttachment.cs │ │ ├── CustomAttachment.cs │ │ ├── FertilizerAttachment.cs │ │ ├── GrassStarterAttachment.cs │ │ ├── HoeAttachment.cs │ │ ├── IAttachment.cs │ │ ├── MeleeBluntAttachment.cs │ │ ├── MeleeDaggerAttachment.cs │ │ ├── MeleeSwordAttachment.cs │ │ ├── MilkPailAttachment.cs │ │ ├── PickaxeAttachment.cs │ │ ├── ScytheAttachment.cs │ │ ├── SeedAttachment.cs │ │ ├── ShearsAttachment.cs │ │ ├── SlingshotAttachment.cs │ │ └── WateringCanAttachment.cs │ ├── AudioManager.cs │ ├── BaseAttachment.cs │ ├── Config │ │ ├── AxeConfig.cs │ │ ├── GenericAttachmentConfig.cs │ │ ├── HoeConfig.cs │ │ ├── MeleeBluntConfig.cs │ │ ├── MeleeDaggerConfig.cs │ │ ├── MeleeSwordConfig.cs │ │ ├── ModConfigKeys.cs │ │ ├── PickAxeConfig.cs │ │ ├── ScytheConfig.cs │ │ └── StandardAttachmentConfig.cs │ ├── EngineState.cs │ ├── GenericModConfigMenuIntegrationForTractor.cs │ ├── LegacySaveData.cs │ ├── LegacySaveDataBuilding.cs │ ├── Migrator.cs │ ├── ModAttachments │ │ └── SeedBagAttachment.cs │ ├── ModConfig.cs │ ├── ModConstants.cs │ ├── TextureManager.cs │ ├── ToolUseSoundLimit.cs │ ├── TractorManager.cs │ └── TractorSoundType.cs ├── LICENSE ├── ModEntry.cs ├── TractorMod.csproj ├── assets │ ├── audio │ │ ├── idle.ogg │ │ ├── rev.ogg │ │ ├── start.ogg │ │ └── stop.ogg │ ├── buffIcon.png │ ├── garage.png │ ├── icon.png │ └── tractor.png ├── docs │ ├── README.md │ ├── release-notes.md │ └── screenshots │ │ ├── build-garage.png │ │ ├── buy-garage.png │ │ ├── distance.png │ │ ├── final-garage.png │ │ ├── generic-config-menu.png │ │ └── tractor.png ├── i18n │ ├── de.json │ ├── default.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ ├── uk.json │ ├── vi.json │ └── zh.json └── manifest.json └── _archived ├── RotateToolbar ├── Framework │ ├── ModConfig.cs │ └── ModConfigKeys.cs ├── ModEntry.cs ├── RotateToolbar.csproj ├── docs │ ├── README.md │ ├── example.gif │ └── release-notes.md └── manifest.json └── TheLongNight ├── ModEntry.cs ├── TheLongNight.csproj ├── docs ├── README.md ├── release-notes.md └── screenshots │ └── clock.png └── manifest.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # always normalize line endings 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/.gitignore -------------------------------------------------------------------------------- /Automate/Automate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Automate.csproj -------------------------------------------------------------------------------- /Automate/Framework/AutomateAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/AutomateAPI.cs -------------------------------------------------------------------------------- /Automate/Framework/AutomateConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/AutomateConstants.cs -------------------------------------------------------------------------------- /Automate/Framework/AutomateContainerPreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/AutomateContainerPreference.cs -------------------------------------------------------------------------------- /Automate/Framework/AutomationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/AutomationFactory.cs -------------------------------------------------------------------------------- /Automate/Framework/BaseMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/BaseMachine.cs -------------------------------------------------------------------------------- /Automate/Framework/BaseMachineForBuilding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/BaseMachineForBuilding.cs -------------------------------------------------------------------------------- /Automate/Framework/Commands/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Commands/CommandHandler.cs -------------------------------------------------------------------------------- /Automate/Framework/Commands/ResetCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Commands/ResetCommand.cs -------------------------------------------------------------------------------- /Automate/Framework/Commands/Summary/GlobalStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Commands/Summary/GlobalStats.cs -------------------------------------------------------------------------------- /Automate/Framework/Commands/Summary/GroupStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Commands/Summary/GroupStats.cs -------------------------------------------------------------------------------- /Automate/Framework/Commands/Summary/LocationStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Commands/Summary/LocationStats.cs -------------------------------------------------------------------------------- /Automate/Framework/Commands/SummaryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Commands/SummaryCommand.cs -------------------------------------------------------------------------------- /Automate/Framework/Connector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Connector.cs -------------------------------------------------------------------------------- /Automate/Framework/Consumable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Consumable.cs -------------------------------------------------------------------------------- /Automate/Framework/GameLocationNameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/GameLocationNameComparer.cs -------------------------------------------------------------------------------- /Automate/Framework/GenericObjectMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/GenericObjectMachine.cs -------------------------------------------------------------------------------- /Automate/Framework/IMachineGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/IMachineGroup.cs -------------------------------------------------------------------------------- /Automate/Framework/JunimoMachineGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/JunimoMachineGroup.cs -------------------------------------------------------------------------------- /Automate/Framework/LocationFloodFillIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/LocationFloodFillIndex.cs -------------------------------------------------------------------------------- /Automate/Framework/MachineDataForLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/MachineDataForLocation.cs -------------------------------------------------------------------------------- /Automate/Framework/MachineGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/MachineGroup.cs -------------------------------------------------------------------------------- /Automate/Framework/MachineGroupBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/MachineGroupBuilder.cs -------------------------------------------------------------------------------- /Automate/Framework/MachineGroupFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/MachineGroupFactory.cs -------------------------------------------------------------------------------- /Automate/Framework/MachineManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/MachineManager.cs -------------------------------------------------------------------------------- /Automate/Framework/MachineWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/MachineWrapper.cs -------------------------------------------------------------------------------- /Automate/Framework/Machines/Tiles/TrashCanMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Machines/Tiles/TrashCanMachine.cs -------------------------------------------------------------------------------- /Automate/Framework/Models/DataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Models/DataModel.cs -------------------------------------------------------------------------------- /Automate/Framework/Models/DataModelIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Models/DataModelIntegration.cs -------------------------------------------------------------------------------- /Automate/Framework/Models/JunimoHutBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Models/JunimoHutBehavior.cs -------------------------------------------------------------------------------- /Automate/Framework/Models/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Models/ModConfig.cs -------------------------------------------------------------------------------- /Automate/Framework/Models/ModConfigKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Models/ModConfigKeys.cs -------------------------------------------------------------------------------- /Automate/Framework/Models/ModConfigMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Models/ModConfigMachine.cs -------------------------------------------------------------------------------- /Automate/Framework/Models/ModConfigStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Models/ModConfigStorage.cs -------------------------------------------------------------------------------- /Automate/Framework/OverlayMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/OverlayMenu.cs -------------------------------------------------------------------------------- /Automate/Framework/Recipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Recipe.cs -------------------------------------------------------------------------------- /Automate/Framework/StackAccumulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/StackAccumulator.cs -------------------------------------------------------------------------------- /Automate/Framework/Storage/ChestContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Storage/ChestContainer.cs -------------------------------------------------------------------------------- /Automate/Framework/Storage/ContainerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/Storage/ContainerExtensions.cs -------------------------------------------------------------------------------- /Automate/Framework/StorageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/Framework/StorageManager.cs -------------------------------------------------------------------------------- /Automate/IAutomatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IAutomatable.cs -------------------------------------------------------------------------------- /Automate/IAutomateAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IAutomateAPI.cs -------------------------------------------------------------------------------- /Automate/IAutomationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IAutomationFactory.cs -------------------------------------------------------------------------------- /Automate/IConsumable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IConsumable.cs -------------------------------------------------------------------------------- /Automate/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IContainer.cs -------------------------------------------------------------------------------- /Automate/IMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IMachine.cs -------------------------------------------------------------------------------- /Automate/IRecipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IRecipe.cs -------------------------------------------------------------------------------- /Automate/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/IStorage.cs -------------------------------------------------------------------------------- /Automate/ITrackedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/ITrackedStack.cs -------------------------------------------------------------------------------- /Automate/MachineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/MachineState.cs -------------------------------------------------------------------------------- /Automate/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/ModEntry.cs -------------------------------------------------------------------------------- /Automate/TrackedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/TrackedItem.cs -------------------------------------------------------------------------------- /Automate/TrackedItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/TrackedItemCollection.cs -------------------------------------------------------------------------------- /Automate/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/assets/data.json -------------------------------------------------------------------------------- /Automate/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/README.md -------------------------------------------------------------------------------- /Automate/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/release-notes.md -------------------------------------------------------------------------------- /Automate/docs/screenshots/chests-anywhere-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/chests-anywhere-config.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/connectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/connectors.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/console-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/console-command.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/crab-pot-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/crab-pot-factory.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/example-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/example-overlay.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/generic-config-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/generic-config-menu.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/iridium-bar-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/iridium-bar-factory.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/iridium-cheese-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/iridium-cheese-factory.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/iridium-mead-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/iridium-mead-factory.png -------------------------------------------------------------------------------- /Automate/docs/screenshots/refined-quartz-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/screenshots/refined-quartz-factory.png -------------------------------------------------------------------------------- /Automate/docs/technical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/docs/technical.md -------------------------------------------------------------------------------- /Automate/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/de.json -------------------------------------------------------------------------------- /Automate/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/default.json -------------------------------------------------------------------------------- /Automate/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/es.json -------------------------------------------------------------------------------- /Automate/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/fr.json -------------------------------------------------------------------------------- /Automate/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/hu.json -------------------------------------------------------------------------------- /Automate/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/it.json -------------------------------------------------------------------------------- /Automate/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/ko.json -------------------------------------------------------------------------------- /Automate/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/pl.json -------------------------------------------------------------------------------- /Automate/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/pt.json -------------------------------------------------------------------------------- /Automate/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/ru.json -------------------------------------------------------------------------------- /Automate/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/th.json -------------------------------------------------------------------------------- /Automate/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/tr.json -------------------------------------------------------------------------------- /Automate/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/uk.json -------------------------------------------------------------------------------- /Automate/i18n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/vi.json -------------------------------------------------------------------------------- /Automate/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/i18n/zh.json -------------------------------------------------------------------------------- /Automate/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Automate/manifest.json -------------------------------------------------------------------------------- /CentralStation/Api/ICentralStationApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Api/ICentralStationApi.cs -------------------------------------------------------------------------------- /CentralStation/Api/IStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Api/IStop.cs -------------------------------------------------------------------------------- /CentralStation/Api/StopNetworks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Api/StopNetworks.cs -------------------------------------------------------------------------------- /CentralStation/CentralStation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/CentralStation.csproj -------------------------------------------------------------------------------- /CentralStation/CentralStation.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/CentralStation.csproj.DotSettings -------------------------------------------------------------------------------- /CentralStation/Framework/CentralStationApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/CentralStationApi.cs -------------------------------------------------------------------------------- /CentralStation/Framework/Constants/AssetNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/Constants/AssetNames.cs -------------------------------------------------------------------------------- /CentralStation/Framework/Constants/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/Constants/Constant.cs -------------------------------------------------------------------------------- /CentralStation/Framework/Constants/DestinationIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/Constants/DestinationIds.cs -------------------------------------------------------------------------------- /CentralStation/Framework/Constants/MapSubActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/Constants/MapSubActions.cs -------------------------------------------------------------------------------- /CentralStation/Framework/ContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/ContentManager.cs -------------------------------------------------------------------------------- /CentralStation/Framework/ContentModels/StopModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/ContentModels/StopModel.cs -------------------------------------------------------------------------------- /CentralStation/Framework/LiveMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/LiveMessageQueue.cs -------------------------------------------------------------------------------- /CentralStation/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/ModConfig.cs -------------------------------------------------------------------------------- /CentralStation/Framework/ShouldEnableStopDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/ShouldEnableStopDelegate.cs -------------------------------------------------------------------------------- /CentralStation/Framework/Stop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/Stop.cs -------------------------------------------------------------------------------- /CentralStation/Framework/StopManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/StopManager.cs -------------------------------------------------------------------------------- /CentralStation/Framework/StopNetworksExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/Framework/StopNetworksExtensions.cs -------------------------------------------------------------------------------- /CentralStation/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/ModEntry.cs -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/assets/empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/content.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/de.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/default.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/es.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/fr.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/it.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/ja.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/ko.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/pt.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/tr.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/i18n/zh.json -------------------------------------------------------------------------------- /CentralStation/[CP] CentralStation/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/[CP] CentralStation/manifest.json -------------------------------------------------------------------------------- /CentralStation/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/README.md -------------------------------------------------------------------------------- /CentralStation/docs/author-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/author-guide.md -------------------------------------------------------------------------------- /CentralStation/docs/author-lore-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/author-lore-guide.md -------------------------------------------------------------------------------- /CentralStation/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/release-notes.md -------------------------------------------------------------------------------- /CentralStation/docs/screenshots/boat-dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/screenshots/boat-dock.png -------------------------------------------------------------------------------- /CentralStation/docs/screenshots/bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/screenshots/bookshelf.png -------------------------------------------------------------------------------- /CentralStation/docs/screenshots/bus-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/screenshots/bus-stop.png -------------------------------------------------------------------------------- /CentralStation/docs/screenshots/central-station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/screenshots/central-station.png -------------------------------------------------------------------------------- /CentralStation/docs/screenshots/config-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/screenshots/config-menu.png -------------------------------------------------------------------------------- /CentralStation/docs/screenshots/tourist-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/screenshots/tourist-map.png -------------------------------------------------------------------------------- /CentralStation/docs/screenshots/train-station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/docs/screenshots/train-station.png -------------------------------------------------------------------------------- /CentralStation/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CentralStation/manifest.json -------------------------------------------------------------------------------- /ChestsAnywhere/ChestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/ChestFactory.cs -------------------------------------------------------------------------------- /ChestsAnywhere/ChestsAnywhere.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/ChestsAnywhere.csproj -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/ChestRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/ChestRange.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/ChestsAnywhereApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/ChestsAnywhereApi.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/Constants.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/ContainerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/ContainerData.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/Containers/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/Containers/IContainer.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/ManagedChest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/ManagedChest.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/ModConfig.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/ModConfigKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/ModConfigKeys.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/ModData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/ModData.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Framework/RangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Framework/RangeHandler.cs -------------------------------------------------------------------------------- /ChestsAnywhere/IChestsAnywhereApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/IChestsAnywhereApi.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Components/Checkbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Components/Checkbox.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Components/SimpleDropdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Components/SimpleDropdown.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Components/Sprites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Components/Sprites.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Components/ValidatedTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Components/ValidatedTextBox.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Overlays/BaseChestOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Overlays/BaseChestOverlay.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Overlays/ChestOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Overlays/ChestOverlay.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Overlays/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Overlays/Element.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Overlays/IStorageOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Overlays/IStorageOverlay.cs -------------------------------------------------------------------------------- /ChestsAnywhere/Menus/Overlays/ShopMenuOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/Menus/Overlays/ShopMenuOverlay.cs -------------------------------------------------------------------------------- /ChestsAnywhere/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/ModEntry.cs -------------------------------------------------------------------------------- /ChestsAnywhere/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/assets/data.json -------------------------------------------------------------------------------- /ChestsAnywhere/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/docs/README.md -------------------------------------------------------------------------------- /ChestsAnywhere/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/docs/release-notes.md -------------------------------------------------------------------------------- /ChestsAnywhere/docs/screenshots/animated-edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/docs/screenshots/animated-edit.gif -------------------------------------------------------------------------------- /ChestsAnywhere/docs/screenshots/animated-usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/docs/screenshots/animated-usage.gif -------------------------------------------------------------------------------- /ChestsAnywhere/docs/screenshots/edit-chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/docs/screenshots/edit-chest.png -------------------------------------------------------------------------------- /ChestsAnywhere/docs/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/docs/screenshots/screenshot.png -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/de.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/default.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/es.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/fr.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/hu.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/it.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/ja.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/ko.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/pl.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/pt.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/ru.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/th.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/tr.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/uk.json -------------------------------------------------------------------------------- /ChestsAnywhere/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/i18n/zh.json -------------------------------------------------------------------------------- /ChestsAnywhere/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ChestsAnywhere/manifest.json -------------------------------------------------------------------------------- /Common.Patching/.Common.Patching.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common.Patching/.Common.Patching.shproj -------------------------------------------------------------------------------- /Common.Patching/BasePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common.Patching/BasePatcher.cs -------------------------------------------------------------------------------- /Common.Patching/Common.Patching.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common.Patching/Common.Patching.projitems -------------------------------------------------------------------------------- /Common.Patching/HarmonyPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common.Patching/HarmonyPatcher.cs -------------------------------------------------------------------------------- /Common.Patching/IPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common.Patching/IPatcher.cs -------------------------------------------------------------------------------- /Common.Patching/PatchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common.Patching/PatchHelper.cs -------------------------------------------------------------------------------- /Common/.Common.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/.Common.shproj -------------------------------------------------------------------------------- /Common/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/CollectionExtensions.cs -------------------------------------------------------------------------------- /Common/Commands/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Commands/BaseCommand.cs -------------------------------------------------------------------------------- /Common/Commands/GenericCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Commands/GenericCommandHandler.cs -------------------------------------------------------------------------------- /Common/Commands/GenericHelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Commands/GenericHelpCommand.cs -------------------------------------------------------------------------------- /Common/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Commands/ICommand.cs -------------------------------------------------------------------------------- /Common/Common.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Common.projitems -------------------------------------------------------------------------------- /Common/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/CommonHelper.cs -------------------------------------------------------------------------------- /Common/DataParsers/CropDataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/DataParsers/CropDataParser.cs -------------------------------------------------------------------------------- /Common/DrawHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/DrawHelper.cs -------------------------------------------------------------------------------- /Common/GameI18n.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/GameI18n.cs -------------------------------------------------------------------------------- /Common/Integrations/Automate/AutomateIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/Automate/AutomateIntegration.cs -------------------------------------------------------------------------------- /Common/Integrations/Automate/IAutomateApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/Automate/IAutomateApi.cs -------------------------------------------------------------------------------- /Common/Integrations/BaseIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/BaseIntegration.cs -------------------------------------------------------------------------------- /Common/Integrations/BushBloomMod/IBushBloomModApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/BushBloomMod/IBushBloomModApi.cs -------------------------------------------------------------------------------- /Common/Integrations/CustomBush/ICustomBush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/CustomBush/ICustomBush.cs -------------------------------------------------------------------------------- /Common/Integrations/CustomBush/ICustomBushApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/CustomBush/ICustomBushApi.cs -------------------------------------------------------------------------------- /Common/Integrations/CustomBush/ICustomBushDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/CustomBush/ICustomBushDrop.cs -------------------------------------------------------------------------------- /Common/Integrations/IModIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/IModIntegration.cs -------------------------------------------------------------------------------- /Common/Integrations/Profiler/IProfilerApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/Profiler/IProfilerApi.cs -------------------------------------------------------------------------------- /Common/Integrations/Profiler/ProfilerIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/Profiler/ProfilerIntegration.cs -------------------------------------------------------------------------------- /Common/Integrations/SpaceCore/ISpaceCoreApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/SpaceCore/ISpaceCoreApi.cs -------------------------------------------------------------------------------- /Common/Integrations/TrainStation/ITrainStationApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Integrations/TrainStation/ITrainStationApi.cs -------------------------------------------------------------------------------- /Common/Items/ItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Items/ItemRepository.cs -------------------------------------------------------------------------------- /Common/Items/SearchableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Items/SearchableItem.cs -------------------------------------------------------------------------------- /Common/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/ListExtensions.cs -------------------------------------------------------------------------------- /Common/MachineDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/MachineDataHelper.cs -------------------------------------------------------------------------------- /Common/MapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/MapExtensions.cs -------------------------------------------------------------------------------- /Common/Messages/AutomateUpdateChestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Messages/AutomateUpdateChestMessage.cs -------------------------------------------------------------------------------- /Common/ModDataDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/ModDataDictionaryExtensions.cs -------------------------------------------------------------------------------- /Common/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/ObjectExtensions.cs -------------------------------------------------------------------------------- /Common/SpriteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/SpriteInfo.cs -------------------------------------------------------------------------------- /Common/SuppressReasons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/SuppressReasons.cs -------------------------------------------------------------------------------- /Common/TileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/TileHelper.cs -------------------------------------------------------------------------------- /Common/UI/BaseOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/UI/BaseOverlay.cs -------------------------------------------------------------------------------- /Common/UI/CommonSprites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/UI/CommonSprites.cs -------------------------------------------------------------------------------- /Common/UI/Dropdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/UI/Dropdown.cs -------------------------------------------------------------------------------- /Common/UI/DropdownList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/UI/DropdownList.cs -------------------------------------------------------------------------------- /Common/UI/SpriteBatchExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/UI/SpriteBatchExtensions.cs -------------------------------------------------------------------------------- /Common/Utilities/Cached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/Cached.cs -------------------------------------------------------------------------------- /Common/Utilities/ConstraintSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/ConstraintSet.cs -------------------------------------------------------------------------------- /Common/Utilities/HumanSortComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/HumanSortComparer.cs -------------------------------------------------------------------------------- /Common/Utilities/IInvariantSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/IInvariantSet.cs -------------------------------------------------------------------------------- /Common/Utilities/InvariantDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/InvariantDictionary.cs -------------------------------------------------------------------------------- /Common/Utilities/InvariantSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/InvariantSet.cs -------------------------------------------------------------------------------- /Common/Utilities/MutableInvariantSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/MutableInvariantSet.cs -------------------------------------------------------------------------------- /Common/Utilities/ObjectReferenceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Common/Utilities/ObjectReferenceComparer.cs -------------------------------------------------------------------------------- /ContentPatcher/ContentPatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/ContentPatcher.csproj -------------------------------------------------------------------------------- /ContentPatcher/Framework/AggregateContextual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/AggregateContextual.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Api/ApiManagedConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Api/ApiManagedConditions.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Commands/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Commands/CommandHandler.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Commands/PatchBaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Commands/PatchBaseInfo.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Commands/PatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Commands/PatchInfo.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Conditions/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Conditions/Condition.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Conditions/ConditionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Conditions/ConditionType.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Conditions/LiteralString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Conditions/LiteralString.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Conditions/PatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Conditions/PatchType.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Conditions/TokenString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Conditions/TokenString.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Conditions/UpdateRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Conditions/UpdateRate.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ConfigFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ConfigFileHandler.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ConfigModels/ConfigField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ConfigModels/ConfigField.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ConfigModels/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ConfigModels/ModConfig.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ConfigModels/PatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ConfigModels/PatchConfig.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/FarmCaveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/FarmCaveType.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/FarmType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/FarmType.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/PathFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/PathFragment.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/PetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/PetType.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/PlayerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/PlayerType.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/Profession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/Profession.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/Skill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/Skill.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Constants/WalletItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Constants/WalletItem.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ContentPatcherAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ContentPatcherAPI.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ContextualState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ContextualState.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/DebugOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/DebugOverlay.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/GenericTokenContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/GenericTokenContext.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/IContextual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/IContextual.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/IContextualState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/IContextualState.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/IManagedTokenString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/IManagedTokenString.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ITokenString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ITokenString.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/IndexedPatchValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/IndexedPatchValues.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/InternalConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/InternalConstants.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/InternalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/InternalExtensions.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/InvariantSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/InvariantSets.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Lexing/LexTokens/LexBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Lexing/LexTokens/LexBit.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Lexing/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Lexing/Lexer.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/LoadedContentPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/LoadedContentPack.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/LocalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/LocalContext.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/LogPathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/LogPathBuilder.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/BaseMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/BaseMigration.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/IMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/IMigration.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_1_3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_1_3.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_1_4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_1_4.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_1_5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_1_5.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_1_6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_1_6.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_1_7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_1_7.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_1_8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_1_8.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_1_9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_1_9.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_2_0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_2_0.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_2_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_2_1.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_2_2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_2_2.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_2_4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_2_4.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Migrations/Migration_2_5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Migrations/Migration_2_5.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ModTokenContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ModTokenContext.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/PatchLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/PatchLoader.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/PatchManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/PatchManager.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Patches/DisabledPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Patches/DisabledPatch.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Patches/EditDataPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Patches/EditDataPatch.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Patches/EditMapPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Patches/EditMapPatch.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Patches/IPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Patches/IPatch.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Patches/IncludePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Patches/IncludePatch.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Patches/LoadPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Patches/LoadPatch.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Patches/Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Patches/Patch.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/RawContentPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/RawContentPack.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/ScreenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/ScreenManager.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/TokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/TokenManager.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/TokenParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/TokenParser.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/TokenSaveReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/TokenSaveReader.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Tokens/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Tokens/IContext.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Tokens/IToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Tokens/IToken.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Tokens/InputArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Tokens/InputArguments.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Tokens/Token.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Tokens/TokenPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Tokens/TokenPosition.cs -------------------------------------------------------------------------------- /ContentPatcher/Framework/Tokens/TokenRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/Framework/Tokens/TokenRectangle.cs -------------------------------------------------------------------------------- /ContentPatcher/IContentPatcherAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/IContentPatcherAPI.cs -------------------------------------------------------------------------------- /ContentPatcher/IContextualInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/IContextualInfo.cs -------------------------------------------------------------------------------- /ContentPatcher/IManagedConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/IManagedConditions.cs -------------------------------------------------------------------------------- /ContentPatcher/IManagedTokenString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/IManagedTokenString.cs -------------------------------------------------------------------------------- /ContentPatcher/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/ModEntry.cs -------------------------------------------------------------------------------- /ContentPatcher/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/README.md -------------------------------------------------------------------------------- /ContentPatcher/docs/author-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/author-guide.md -------------------------------------------------------------------------------- /ContentPatcher/docs/author-guide/action-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/author-guide/action-load.md -------------------------------------------------------------------------------- /ContentPatcher/docs/author-guide/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/author-guide/config.md -------------------------------------------------------------------------------- /ContentPatcher/docs/author-guide/tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/author-guide/tokens.md -------------------------------------------------------------------------------- /ContentPatcher/docs/author-guide/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/author-guide/translations.md -------------------------------------------------------------------------------- /ContentPatcher/docs/author-migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/author-migration-guide.md -------------------------------------------------------------------------------- /ContentPatcher/docs/author-tokens-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/author-tokens-guide.md -------------------------------------------------------------------------------- /ContentPatcher/docs/conditions-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/conditions-api.md -------------------------------------------------------------------------------- /ContentPatcher/docs/extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/extensibility.md -------------------------------------------------------------------------------- /ContentPatcher/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/release-notes.md -------------------------------------------------------------------------------- /ContentPatcher/docs/screenshots/config-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/screenshots/config-plain.png -------------------------------------------------------------------------------- /ContentPatcher/docs/screenshots/debug-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/screenshots/debug-mode.png -------------------------------------------------------------------------------- /ContentPatcher/docs/screenshots/sample-asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/screenshots/sample-asset.png -------------------------------------------------------------------------------- /ContentPatcher/docs/token-strings-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/token-strings-api.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/README.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/author-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/author-guide.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/author-guide/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/author-guide/config.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/author-guide/tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/author-guide/tokens.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/author-migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/author-migration-guide.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/conditions-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/conditions-api.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/extensibility.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/token-strings-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/token-strings-api.md -------------------------------------------------------------------------------- /ContentPatcher/docs/zh/translation-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/docs/zh/translation-notes.md -------------------------------------------------------------------------------- /ContentPatcher/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/ContentPatcher/manifest.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/CropsAnytimeAnywhere.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/CropsAnytimeAnywhere.csproj -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/Framework/BaseRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/Framework/BaseRule.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/Framework/ModConfig.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/Framework/ModData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/Framework/ModData.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/Framework/PlantRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/Framework/PlantRule.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/Framework/TillableRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/Framework/TillableRule.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/ModEntry.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/Patches/FruitTreePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/Patches/FruitTreePatcher.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/Patches/LocationPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/Patches/LocationPatcher.cs -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/assets/data.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/docs/README.md -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/docs/release-notes.md -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/docs/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/docs/screenshot.gif -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/de.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/default.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/es.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/it.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/ko.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/pt.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/ru.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/tr.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/i18n/zh.json -------------------------------------------------------------------------------- /CropsAnytimeAnywhere/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/CropsAnytimeAnywhere/manifest.json -------------------------------------------------------------------------------- /DataLayers/DataLayers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/DataLayers.csproj -------------------------------------------------------------------------------- /DataLayers/Framework/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/Api.cs -------------------------------------------------------------------------------- /DataLayers/Framework/ApiDataLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/ApiDataLayer.cs -------------------------------------------------------------------------------- /DataLayers/Framework/ColorRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/ColorRegistry.cs -------------------------------------------------------------------------------- /DataLayers/Framework/ColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/ColorScheme.cs -------------------------------------------------------------------------------- /DataLayers/Framework/Commands/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/Commands/CommandHandler.cs -------------------------------------------------------------------------------- /DataLayers/Framework/Commands/ExportCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/Commands/ExportCommand.cs -------------------------------------------------------------------------------- /DataLayers/Framework/ConfigModels/LayerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/ConfigModels/LayerConfig.cs -------------------------------------------------------------------------------- /DataLayers/Framework/ConfigModels/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/ConfigModels/ModConfig.cs -------------------------------------------------------------------------------- /DataLayers/Framework/DataLayerOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/DataLayerOverlay.cs -------------------------------------------------------------------------------- /DataLayers/Framework/IAutoBuildingLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/IAutoBuildingLayer.cs -------------------------------------------------------------------------------- /DataLayers/Framework/IAutoItemCoverageLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/IAutoItemCoverageLayer.cs -------------------------------------------------------------------------------- /DataLayers/Framework/ILayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/ILayer.cs -------------------------------------------------------------------------------- /DataLayers/Framework/LayerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/LayerRegistry.cs -------------------------------------------------------------------------------- /DataLayers/Framework/LegendEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/LegendEntry.cs -------------------------------------------------------------------------------- /DataLayers/Framework/ModIntegrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/ModIntegrations.cs -------------------------------------------------------------------------------- /DataLayers/Framework/TileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/TileData.cs -------------------------------------------------------------------------------- /DataLayers/Framework/TileDrawData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/TileDrawData.cs -------------------------------------------------------------------------------- /DataLayers/Framework/TileEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/TileEdge.cs -------------------------------------------------------------------------------- /DataLayers/Framework/TileGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Framework/TileGroup.cs -------------------------------------------------------------------------------- /DataLayers/IDataLayersApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/IDataLayersApi.cs -------------------------------------------------------------------------------- /DataLayers/Layers/AccessibleLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/AccessibleLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/AutoLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/AutoLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/BaseLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/BaseLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/BuildableLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/BuildableLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Coverage/BeeHouseLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Coverage/BeeHouseLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Coverage/BombLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Coverage/BombLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Coverage/JunimoHutLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Coverage/JunimoHutLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Coverage/ScarecrowLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Coverage/ScarecrowLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Coverage/SprinklerLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Coverage/SprinklerLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Crops/CropFertilizerLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Crops/CropFertilizerLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Crops/CropHarvestLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Crops/CropHarvestLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Crops/CropPaddyWaterLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Crops/CropPaddyWaterLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/Crops/CropWaterLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/Crops/CropWaterLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/GridLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/GridLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/MachineLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/MachineLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/ModLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/ModLayer.cs -------------------------------------------------------------------------------- /DataLayers/Layers/TillableLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/Layers/TillableLayer.cs -------------------------------------------------------------------------------- /DataLayers/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/ModEntry.cs -------------------------------------------------------------------------------- /DataLayers/assets/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/assets/colors.json -------------------------------------------------------------------------------- /DataLayers/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/assets/icon.png -------------------------------------------------------------------------------- /DataLayers/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/README.md -------------------------------------------------------------------------------- /DataLayers/docs/author-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/author-guide.md -------------------------------------------------------------------------------- /DataLayers/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/release-notes.md -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/accessible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/accessible.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/auto-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/auto-layer.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/bee-houses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/bee-houses.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/bombs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/bombs.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/buildable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/buildable.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/crops-fertilized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/crops-fertilized.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/crops-harvest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/crops-harvest.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/crops-paddy-water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/crops-paddy-water.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/crops-watered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/crops-watered.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/custom-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/custom-layer.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/grid-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/grid-layer.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/grid-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/grid-option.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/junimo-huts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/junimo-huts.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/machines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/machines.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/scarecrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/scarecrows.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/sprinklers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/sprinklers.png -------------------------------------------------------------------------------- /DataLayers/docs/screenshots/tillable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/docs/screenshots/tillable.png -------------------------------------------------------------------------------- /DataLayers/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/de.json -------------------------------------------------------------------------------- /DataLayers/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/default.json -------------------------------------------------------------------------------- /DataLayers/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/es.json -------------------------------------------------------------------------------- /DataLayers/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/fr.json -------------------------------------------------------------------------------- /DataLayers/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/hu.json -------------------------------------------------------------------------------- /DataLayers/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/it.json -------------------------------------------------------------------------------- /DataLayers/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/ja.json -------------------------------------------------------------------------------- /DataLayers/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/ko.json -------------------------------------------------------------------------------- /DataLayers/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/pl.json -------------------------------------------------------------------------------- /DataLayers/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/pt.json -------------------------------------------------------------------------------- /DataLayers/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/ru.json -------------------------------------------------------------------------------- /DataLayers/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/th.json -------------------------------------------------------------------------------- /DataLayers/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/tr.json -------------------------------------------------------------------------------- /DataLayers/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/uk.json -------------------------------------------------------------------------------- /DataLayers/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/i18n/zh.json -------------------------------------------------------------------------------- /DataLayers/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DataLayers/manifest.json -------------------------------------------------------------------------------- /DebugMode/DebugMode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/DebugMode.csproj -------------------------------------------------------------------------------- /DebugMode/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/Framework/ModConfig.cs -------------------------------------------------------------------------------- /DebugMode/Framework/ModConfigKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/Framework/ModConfigKeys.cs -------------------------------------------------------------------------------- /DebugMode/Framework/PlayerDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/Framework/PlayerDirection.cs -------------------------------------------------------------------------------- /DebugMode/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/ModEntry.cs -------------------------------------------------------------------------------- /DebugMode/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/assets/icon.png -------------------------------------------------------------------------------- /DebugMode/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/README.md -------------------------------------------------------------------------------- /DebugMode/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/release-notes.md -------------------------------------------------------------------------------- /DebugMode/docs/screenshots/dialogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/screenshots/dialogue.png -------------------------------------------------------------------------------- /DebugMode/docs/screenshots/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/screenshots/event.png -------------------------------------------------------------------------------- /DebugMode/docs/screenshots/festival.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/screenshots/festival.png -------------------------------------------------------------------------------- /DebugMode/docs/screenshots/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/screenshots/menu.png -------------------------------------------------------------------------------- /DebugMode/docs/screenshots/minigame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/screenshots/minigame.png -------------------------------------------------------------------------------- /DebugMode/docs/screenshots/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/docs/screenshots/world.png -------------------------------------------------------------------------------- /DebugMode/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/de.json -------------------------------------------------------------------------------- /DebugMode/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/default.json -------------------------------------------------------------------------------- /DebugMode/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/es.json -------------------------------------------------------------------------------- /DebugMode/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/fr.json -------------------------------------------------------------------------------- /DebugMode/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/hu.json -------------------------------------------------------------------------------- /DebugMode/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/it.json -------------------------------------------------------------------------------- /DebugMode/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/ja.json -------------------------------------------------------------------------------- /DebugMode/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/ko.json -------------------------------------------------------------------------------- /DebugMode/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/pl.json -------------------------------------------------------------------------------- /DebugMode/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/pt.json -------------------------------------------------------------------------------- /DebugMode/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/ru.json -------------------------------------------------------------------------------- /DebugMode/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/th.json -------------------------------------------------------------------------------- /DebugMode/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/tr.json -------------------------------------------------------------------------------- /DebugMode/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/uk.json -------------------------------------------------------------------------------- /DebugMode/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/i18n/zh.json -------------------------------------------------------------------------------- /DebugMode/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/DebugMode/manifest.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /FastAnimations/FastAnimations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/FastAnimations.csproj -------------------------------------------------------------------------------- /FastAnimations/Framework/BaseAnimationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Framework/BaseAnimationHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Framework/IAnimationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Framework/IAnimationHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Framework/ModConfig.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/BreakingGeodeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/BreakingGeodeHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/CasinoSlotsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/CasinoSlotsHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/DialogueTypingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/DialogueTypingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/EatingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/EatingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/EventHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/FadeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/FadeHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/FishingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/FishingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/FishingTextHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/FishingTextHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/FishingTreasureHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/FishingTreasureHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/ForgeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/ForgeHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/HarvestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/HarvestHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/HoldUpItemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/HoldUpItemHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/HorseFluteHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/HorseFluteHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/LoadGameMenuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/LoadGameMenuHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/MilkingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/MilkingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/MountHorseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/MountHorseHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/OpenChestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/OpenChestHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/OpenDialogueBoxHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/OpenDialogueBoxHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/PamBusHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/PamBusHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/ParrotExpressHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/ParrotExpressHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/ReadBookHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/ReadBookHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/ShearingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/ShearingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/ShippingMenuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/ShippingMenuHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/SlingshotHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/SlingshotHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/TailoringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/TailoringHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/TitleMenuHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/TitleMenuHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/ToolSwingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/ToolSwingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/TreeFallingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/TreeFallingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/UseTotemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/UseTotemHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/WeaponSwingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/WeaponSwingHandler.cs -------------------------------------------------------------------------------- /FastAnimations/Handlers/WheelSpinHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/Handlers/WheelSpinHandler.cs -------------------------------------------------------------------------------- /FastAnimations/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/ModEntry.cs -------------------------------------------------------------------------------- /FastAnimations/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/docs/README.md -------------------------------------------------------------------------------- /FastAnimations/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/docs/release-notes.md -------------------------------------------------------------------------------- /FastAnimations/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/de.json -------------------------------------------------------------------------------- /FastAnimations/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/default.json -------------------------------------------------------------------------------- /FastAnimations/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/es.json -------------------------------------------------------------------------------- /FastAnimations/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/fr.json -------------------------------------------------------------------------------- /FastAnimations/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/hu.json -------------------------------------------------------------------------------- /FastAnimations/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/it.json -------------------------------------------------------------------------------- /FastAnimations/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/ja.json -------------------------------------------------------------------------------- /FastAnimations/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/ko.json -------------------------------------------------------------------------------- /FastAnimations/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/pt.json -------------------------------------------------------------------------------- /FastAnimations/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/ru.json -------------------------------------------------------------------------------- /FastAnimations/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/th.json -------------------------------------------------------------------------------- /FastAnimations/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/tr.json -------------------------------------------------------------------------------- /FastAnimations/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/uk.json -------------------------------------------------------------------------------- /FastAnimations/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/i18n/zh.json -------------------------------------------------------------------------------- /FastAnimations/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/FastAnimations/manifest.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/Framework/ModConfig.cs -------------------------------------------------------------------------------- /HorseFluteAnywhere/HorseFluteAnywhere.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/HorseFluteAnywhere.csproj -------------------------------------------------------------------------------- /HorseFluteAnywhere/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/ModEntry.cs -------------------------------------------------------------------------------- /HorseFluteAnywhere/Patches/UtilityPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/Patches/UtilityPatcher.cs -------------------------------------------------------------------------------- /HorseFluteAnywhere/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/docs/README.md -------------------------------------------------------------------------------- /HorseFluteAnywhere/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/docs/release-notes.md -------------------------------------------------------------------------------- /HorseFluteAnywhere/docs/screenshots/dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/docs/screenshots/dungeon.png -------------------------------------------------------------------------------- /HorseFluteAnywhere/docs/screenshots/indoors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/docs/screenshots/indoors.png -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/de.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/default.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/es.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/fr.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/hu.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/it.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/ja.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/ko.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/pt.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/ru.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/th.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/tr.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/uk.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/i18n/zh.json -------------------------------------------------------------------------------- /HorseFluteAnywhere/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/HorseFluteAnywhere/manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LICENSE -------------------------------------------------------------------------------- /LookupAnything/Components/BaseMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Components/BaseMenu.cs -------------------------------------------------------------------------------- /LookupAnything/Components/DebugInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Components/DebugInterface.cs -------------------------------------------------------------------------------- /LookupAnything/Components/IScrollableMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Components/IScrollableMenu.cs -------------------------------------------------------------------------------- /LookupAnything/Components/LookupMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Components/LookupMenu.cs -------------------------------------------------------------------------------- /LookupAnything/Components/SearchMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Components/SearchMenu.cs -------------------------------------------------------------------------------- /LookupAnything/Components/Sprites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Components/Sprites.cs -------------------------------------------------------------------------------- /LookupAnything/DataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/DataParser.cs -------------------------------------------------------------------------------- /LookupAnything/DrawHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/DrawHelper.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Constants/ChildAge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Constants/ChildAge.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Constants/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Constants/Constant.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Constants/GiftTaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Constants/GiftTaste.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Constants/ItemQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Constants/ItemQuality.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/CharacterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/CharacterData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/ConstantData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/ConstantData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/FishPondDropData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/FishPondDropData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/ItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/ItemData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/ItemDropData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/ItemDropData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/MonsterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/MonsterData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/ObjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/ObjectContext.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Data/ShopData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Data/ShopData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Fields/ColorField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Fields/ColorField.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Fields/GenericField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Fields/GenericField.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Fields/ICustomField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Fields/ICustomField.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Fields/ItemIconField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Fields/ItemIconField.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Fields/LinkField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Fields/LinkField.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Fields/ScheduleField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Fields/ScheduleField.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Fields/SkillBarField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Fields/SkillBarField.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/FormattedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/FormattedText.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/I18nExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/I18nExtensions.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/IFormattedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/IFormattedText.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/ISubjectRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/ISubjectRegistry.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Lookups/BaseSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Lookups/BaseSubject.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Lookups/GenericTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Lookups/GenericTarget.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Lookups/ISubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Lookups/ISubject.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Lookups/ITarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Lookups/ITarget.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Metadata.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/ModConfig.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/ModConfigKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/ModConfigKeys.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/ModGiftTasteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/ModGiftTasteConfig.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Models/BundleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Models/BundleModel.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Models/GiftTasteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Models/GiftTasteModel.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Models/LinkTextArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Models/LinkTextArea.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Models/QuestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Models/QuestModel.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Models/RecipeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Models/RecipeModel.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Models/RecipeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Models/RecipeType.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/SubjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/SubjectType.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/TargetFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/TargetFactory.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Themes/MenuBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Themes/MenuBackground.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Themes/ThemeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Themes/ThemeData.cs -------------------------------------------------------------------------------- /LookupAnything/Framework/Themes/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/Framework/Themes/ThemeManager.cs -------------------------------------------------------------------------------- /LookupAnything/GameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/GameHelper.cs -------------------------------------------------------------------------------- /LookupAnything/LookupAnything.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/LookupAnything.csproj -------------------------------------------------------------------------------- /LookupAnything/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/ModEntry.cs -------------------------------------------------------------------------------- /LookupAnything/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/assets/data.json -------------------------------------------------------------------------------- /LookupAnything/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/README.md -------------------------------------------------------------------------------- /LookupAnything/docs/author-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/author-guide.md -------------------------------------------------------------------------------- /LookupAnything/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/release-notes.md -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/animated.gif -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/barn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/barn.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/cask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/cask.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/child.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/crafting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/crafting.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/crop.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/farm-animal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/farm-animal.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/fence.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/fish-pond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/fish-pond.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/fish.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/fruit-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/fruit-tree.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/fruit-tree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/fruit-tree2.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/item.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/map-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/map-tile.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/mine-ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/mine-ice.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/mine-ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/mine-ore.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/mine-stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/mine-stone.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/monster.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/player.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/target-bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/target-bundle.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/target-shops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/target-shops.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/target-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/target-world.png -------------------------------------------------------------------------------- /LookupAnything/docs/screenshots/villager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/docs/screenshots/villager.png -------------------------------------------------------------------------------- /LookupAnything/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/de.json -------------------------------------------------------------------------------- /LookupAnything/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/default.json -------------------------------------------------------------------------------- /LookupAnything/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/es.json -------------------------------------------------------------------------------- /LookupAnything/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/fr.json -------------------------------------------------------------------------------- /LookupAnything/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/hu.json -------------------------------------------------------------------------------- /LookupAnything/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/it.json -------------------------------------------------------------------------------- /LookupAnything/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/ja.json -------------------------------------------------------------------------------- /LookupAnything/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/ko.json -------------------------------------------------------------------------------- /LookupAnything/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/pl.json -------------------------------------------------------------------------------- /LookupAnything/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/pt.json -------------------------------------------------------------------------------- /LookupAnything/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/ru.json -------------------------------------------------------------------------------- /LookupAnything/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/th.json -------------------------------------------------------------------------------- /LookupAnything/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/tr.json -------------------------------------------------------------------------------- /LookupAnything/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/uk.json -------------------------------------------------------------------------------- /LookupAnything/i18n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/vi.json -------------------------------------------------------------------------------- /LookupAnything/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/i18n/zh.json -------------------------------------------------------------------------------- /LookupAnything/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/LookupAnything/manifest.json -------------------------------------------------------------------------------- /NoclipMode/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/Framework/ModConfig.cs -------------------------------------------------------------------------------- /NoclipMode/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/ModEntry.cs -------------------------------------------------------------------------------- /NoclipMode/NoclipMode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/NoclipMode.csproj -------------------------------------------------------------------------------- /NoclipMode/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/docs/README.md -------------------------------------------------------------------------------- /NoclipMode/docs/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/docs/animated.gif -------------------------------------------------------------------------------- /NoclipMode/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/docs/release-notes.md -------------------------------------------------------------------------------- /NoclipMode/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/de.json -------------------------------------------------------------------------------- /NoclipMode/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/default.json -------------------------------------------------------------------------------- /NoclipMode/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/es.json -------------------------------------------------------------------------------- /NoclipMode/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/fr.json -------------------------------------------------------------------------------- /NoclipMode/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/hu.json -------------------------------------------------------------------------------- /NoclipMode/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/it.json -------------------------------------------------------------------------------- /NoclipMode/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/ja.json -------------------------------------------------------------------------------- /NoclipMode/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/ko.json -------------------------------------------------------------------------------- /NoclipMode/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/pl.json -------------------------------------------------------------------------------- /NoclipMode/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/pt.json -------------------------------------------------------------------------------- /NoclipMode/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/ru.json -------------------------------------------------------------------------------- /NoclipMode/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/th.json -------------------------------------------------------------------------------- /NoclipMode/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/tr.json -------------------------------------------------------------------------------- /NoclipMode/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/uk.json -------------------------------------------------------------------------------- /NoclipMode/i18n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/vi.json -------------------------------------------------------------------------------- /NoclipMode/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/i18n/zh.json -------------------------------------------------------------------------------- /NoclipMode/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/NoclipMode/manifest.json -------------------------------------------------------------------------------- /Pathoschild.Stardew.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Pathoschild.Stardew.slnx -------------------------------------------------------------------------------- /Pathoschild.Stardew.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Pathoschild.Stardew.slnx.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/README.md -------------------------------------------------------------------------------- /SkipIntro/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/Framework/ModConfig.cs -------------------------------------------------------------------------------- /SkipIntro/Framework/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/Framework/Screen.cs -------------------------------------------------------------------------------- /SkipIntro/Framework/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/Framework/Stage.cs -------------------------------------------------------------------------------- /SkipIntro/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/ModEntry.cs -------------------------------------------------------------------------------- /SkipIntro/SkipIntro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/SkipIntro.csproj -------------------------------------------------------------------------------- /SkipIntro/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/docs/README.md -------------------------------------------------------------------------------- /SkipIntro/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/docs/release-notes.md -------------------------------------------------------------------------------- /SkipIntro/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/de.json -------------------------------------------------------------------------------- /SkipIntro/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/default.json -------------------------------------------------------------------------------- /SkipIntro/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/es.json -------------------------------------------------------------------------------- /SkipIntro/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/fr.json -------------------------------------------------------------------------------- /SkipIntro/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/it.json -------------------------------------------------------------------------------- /SkipIntro/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/ja.json -------------------------------------------------------------------------------- /SkipIntro/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/ko.json -------------------------------------------------------------------------------- /SkipIntro/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/pt.json -------------------------------------------------------------------------------- /SkipIntro/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/ru.json -------------------------------------------------------------------------------- /SkipIntro/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/th.json -------------------------------------------------------------------------------- /SkipIntro/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/tr.json -------------------------------------------------------------------------------- /SkipIntro/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/uk.json -------------------------------------------------------------------------------- /SkipIntro/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/i18n/zh.json -------------------------------------------------------------------------------- /SkipIntro/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SkipIntro/manifest.json -------------------------------------------------------------------------------- /SmallBeachFarm/Framework/Config/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/Framework/Config/ModConfig.cs -------------------------------------------------------------------------------- /SmallBeachFarm/Framework/Config/ModData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/Framework/Config/ModData.cs -------------------------------------------------------------------------------- /SmallBeachFarm/Framework/FishType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/Framework/FishType.cs -------------------------------------------------------------------------------- /SmallBeachFarm/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/ModEntry.cs -------------------------------------------------------------------------------- /SmallBeachFarm/Patches/FarmPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/Patches/FarmPatcher.cs -------------------------------------------------------------------------------- /SmallBeachFarm/SmallBeachFarm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/SmallBeachFarm.csproj -------------------------------------------------------------------------------- /SmallBeachFarm/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/assets/data.json -------------------------------------------------------------------------------- /SmallBeachFarm/assets/farm.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/assets/farm.tmx -------------------------------------------------------------------------------- /SmallBeachFarm/assets/overlay_islands.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/assets/overlay_islands.tmx -------------------------------------------------------------------------------- /SmallBeachFarm/assets/overlay_pier.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/assets/overlay_pier.tmx -------------------------------------------------------------------------------- /SmallBeachFarm/assets/paths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/assets/paths.tsx -------------------------------------------------------------------------------- /SmallBeachFarm/assets/spring_beach.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/assets/spring_beach.tsx -------------------------------------------------------------------------------- /SmallBeachFarm/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/README.md -------------------------------------------------------------------------------- /SmallBeachFarm/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/release-notes.md -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/campfire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/campfire.gif -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/create-save-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/create-save-1.png -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/create-save-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/create-save-2.png -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/exits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/exits.png -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/farm-islands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/farm-islands.png -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/farm.png -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/fish-areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/fish-areas.png -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/supply-crates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/supply-crates.png -------------------------------------------------------------------------------- /SmallBeachFarm/docs/screenshots/tilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/docs/screenshots/tilled.png -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/de.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/default.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/es.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/fr.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/hu.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/it.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/ja.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/ko.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/pt.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/ru.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/th.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/tr.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/uk.json -------------------------------------------------------------------------------- /SmallBeachFarm/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/i18n/zh.json -------------------------------------------------------------------------------- /SmallBeachFarm/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/SmallBeachFarm/manifest.json -------------------------------------------------------------------------------- /TestDataLayersMod/Framework/CheckerboardLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestDataLayersMod/Framework/CheckerboardLayer.cs -------------------------------------------------------------------------------- /TestDataLayersMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestDataLayersMod/ModEntry.cs -------------------------------------------------------------------------------- /TestDataLayersMod/TestDataLayersMod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestDataLayersMod/TestDataLayersMod.csproj -------------------------------------------------------------------------------- /TestDataLayersMod/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestDataLayersMod/i18n/default.json -------------------------------------------------------------------------------- /TestDataLayersMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestDataLayersMod/manifest.json -------------------------------------------------------------------------------- /TestMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestMod/ModEntry.cs -------------------------------------------------------------------------------- /TestMod/TestMod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestMod/TestMod.csproj -------------------------------------------------------------------------------- /TestMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TestMod/manifest.json -------------------------------------------------------------------------------- /Tests.Common/CommonTests/CachedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Common/CommonTests/CachedTests.cs -------------------------------------------------------------------------------- /Tests.Common/CommonTests/CommonHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Common/CommonTests/CommonHelperTests.cs -------------------------------------------------------------------------------- /Tests.Common/CommonTests/ConstraintSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Common/CommonTests/ConstraintSetTests.cs -------------------------------------------------------------------------------- /Tests.Common/CommonTests/InvariantSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Common/CommonTests/InvariantSetTests.cs -------------------------------------------------------------------------------- /Tests.Common/Tests.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Common/Tests.Common.csproj -------------------------------------------------------------------------------- /Tests.Mods/ContentPatcher/LexerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Mods/ContentPatcher/LexerTests.cs -------------------------------------------------------------------------------- /Tests.Mods/ContentPatcher/TokenStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Mods/ContentPatcher/TokenStringTests.cs -------------------------------------------------------------------------------- /Tests.Mods/Tests.Mods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/Tests.Mods/Tests.Mods.csproj -------------------------------------------------------------------------------- /TractorMod/Framework/Attachments/AxeAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Attachments/AxeAttachment.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Attachments/HoeAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Attachments/HoeAttachment.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Attachments/IAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Attachments/IAttachment.cs -------------------------------------------------------------------------------- /TractorMod/Framework/AudioManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/AudioManager.cs -------------------------------------------------------------------------------- /TractorMod/Framework/BaseAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/BaseAttachment.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/AxeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/AxeConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/HoeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/HoeConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/MeleeBluntConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/MeleeBluntConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/MeleeDaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/MeleeDaggerConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/MeleeSwordConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/MeleeSwordConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/ModConfigKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/ModConfigKeys.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/PickAxeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/PickAxeConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Config/ScytheConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Config/ScytheConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/EngineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/EngineState.cs -------------------------------------------------------------------------------- /TractorMod/Framework/LegacySaveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/LegacySaveData.cs -------------------------------------------------------------------------------- /TractorMod/Framework/LegacySaveDataBuilding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/LegacySaveDataBuilding.cs -------------------------------------------------------------------------------- /TractorMod/Framework/Migrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/Migrator.cs -------------------------------------------------------------------------------- /TractorMod/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/ModConfig.cs -------------------------------------------------------------------------------- /TractorMod/Framework/ModConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/ModConstants.cs -------------------------------------------------------------------------------- /TractorMod/Framework/TextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/TextureManager.cs -------------------------------------------------------------------------------- /TractorMod/Framework/ToolUseSoundLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/ToolUseSoundLimit.cs -------------------------------------------------------------------------------- /TractorMod/Framework/TractorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/TractorManager.cs -------------------------------------------------------------------------------- /TractorMod/Framework/TractorSoundType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/Framework/TractorSoundType.cs -------------------------------------------------------------------------------- /TractorMod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/LICENSE -------------------------------------------------------------------------------- /TractorMod/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/ModEntry.cs -------------------------------------------------------------------------------- /TractorMod/TractorMod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/TractorMod.csproj -------------------------------------------------------------------------------- /TractorMod/assets/audio/idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/audio/idle.ogg -------------------------------------------------------------------------------- /TractorMod/assets/audio/rev.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/audio/rev.ogg -------------------------------------------------------------------------------- /TractorMod/assets/audio/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/audio/start.ogg -------------------------------------------------------------------------------- /TractorMod/assets/audio/stop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/audio/stop.ogg -------------------------------------------------------------------------------- /TractorMod/assets/buffIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/buffIcon.png -------------------------------------------------------------------------------- /TractorMod/assets/garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/garage.png -------------------------------------------------------------------------------- /TractorMod/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/icon.png -------------------------------------------------------------------------------- /TractorMod/assets/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/assets/tractor.png -------------------------------------------------------------------------------- /TractorMod/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/docs/README.md -------------------------------------------------------------------------------- /TractorMod/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/docs/release-notes.md -------------------------------------------------------------------------------- /TractorMod/docs/screenshots/build-garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/docs/screenshots/build-garage.png -------------------------------------------------------------------------------- /TractorMod/docs/screenshots/buy-garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/docs/screenshots/buy-garage.png -------------------------------------------------------------------------------- /TractorMod/docs/screenshots/distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/docs/screenshots/distance.png -------------------------------------------------------------------------------- /TractorMod/docs/screenshots/final-garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/docs/screenshots/final-garage.png -------------------------------------------------------------------------------- /TractorMod/docs/screenshots/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/docs/screenshots/tractor.png -------------------------------------------------------------------------------- /TractorMod/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/de.json -------------------------------------------------------------------------------- /TractorMod/i18n/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/default.json -------------------------------------------------------------------------------- /TractorMod/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/es.json -------------------------------------------------------------------------------- /TractorMod/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/fr.json -------------------------------------------------------------------------------- /TractorMod/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/hu.json -------------------------------------------------------------------------------- /TractorMod/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/it.json -------------------------------------------------------------------------------- /TractorMod/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/ja.json -------------------------------------------------------------------------------- /TractorMod/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/ko.json -------------------------------------------------------------------------------- /TractorMod/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/pl.json -------------------------------------------------------------------------------- /TractorMod/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/pt.json -------------------------------------------------------------------------------- /TractorMod/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/ru.json -------------------------------------------------------------------------------- /TractorMod/i18n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/th.json -------------------------------------------------------------------------------- /TractorMod/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/tr.json -------------------------------------------------------------------------------- /TractorMod/i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/uk.json -------------------------------------------------------------------------------- /TractorMod/i18n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/vi.json -------------------------------------------------------------------------------- /TractorMod/i18n/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/i18n/zh.json -------------------------------------------------------------------------------- /TractorMod/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/TractorMod/manifest.json -------------------------------------------------------------------------------- /_archived/RotateToolbar/Framework/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/RotateToolbar/Framework/ModConfig.cs -------------------------------------------------------------------------------- /_archived/RotateToolbar/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/RotateToolbar/ModEntry.cs -------------------------------------------------------------------------------- /_archived/RotateToolbar/RotateToolbar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/RotateToolbar/RotateToolbar.csproj -------------------------------------------------------------------------------- /_archived/RotateToolbar/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/RotateToolbar/docs/README.md -------------------------------------------------------------------------------- /_archived/RotateToolbar/docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/RotateToolbar/docs/example.gif -------------------------------------------------------------------------------- /_archived/RotateToolbar/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/RotateToolbar/docs/release-notes.md -------------------------------------------------------------------------------- /_archived/RotateToolbar/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/RotateToolbar/manifest.json -------------------------------------------------------------------------------- /_archived/TheLongNight/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/TheLongNight/ModEntry.cs -------------------------------------------------------------------------------- /_archived/TheLongNight/TheLongNight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/TheLongNight/TheLongNight.csproj -------------------------------------------------------------------------------- /_archived/TheLongNight/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/TheLongNight/docs/README.md -------------------------------------------------------------------------------- /_archived/TheLongNight/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/TheLongNight/docs/release-notes.md -------------------------------------------------------------------------------- /_archived/TheLongNight/docs/screenshots/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/TheLongNight/docs/screenshots/clock.png -------------------------------------------------------------------------------- /_archived/TheLongNight/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathoschild/StardewMods/HEAD/_archived/TheLongNight/manifest.json --------------------------------------------------------------------------------