├── .github └── FUNDING.yml ├── .gitignore ├── Changelog.txt ├── DWViceSimpleInstaller └── DWViceSimpleInstaller │ ├── .vs │ └── DWViceSimpleInstaller │ │ ├── FileContentIndex │ │ └── 28369b1a-ca96-4238-b0bf-4f51ffc93c3b.vsidx │ │ └── v17 │ │ ├── .suo │ │ ├── DocumentLayout.backup.json │ │ └── DocumentLayout.json │ ├── DWViceSimpleInstaller.sln │ └── DWViceSimpleInstaller │ ├── App.config │ ├── DWViceSimpleInstaller.csproj │ ├── HardcoreHackInfo.Designer.cs │ ├── HardcoreHackInfo.cs │ ├── HardcoreHackInfo.resx │ ├── HardcorePatcher.Designer.cs │ ├── HardcorePatcher.cs │ ├── HardcorePatcher.resx │ ├── InstallerMain.Designer.cs │ ├── InstallerMain.cs │ ├── InstallerMain.resx │ ├── OptionalPatchesInfo.Designer.cs │ ├── OptionalPatchesInfo.cs │ ├── OptionalPatchesInfo.resx │ ├── PatchConfirm.Designer.cs │ ├── PatchConfirm.cs │ ├── PatchConfirm.resx │ ├── Patching.Designer.cs │ ├── Patching.cs │ ├── Patching.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ViceHackInfoForm.Designer.cs │ ├── ViceHackInfoForm.cs │ ├── ViceHackInfoForm.resx │ ├── ViceHackPatcher.Designer.cs │ ├── ViceHackPatcher.cs │ ├── ViceHackPatcher.resx │ └── obj │ ├── Debug │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── DWViceSimpleInstaller.HardcoreHackInfo.resources │ ├── DWViceSimpleInstaller.HardcorePatcher.resources │ ├── DWViceSimpleInstaller.MainApp.resources │ ├── DWViceSimpleInstaller.OptionalPatchesInfo.resources │ ├── DWViceSimpleInstaller.PatchConfirm.resources │ ├── DWViceSimpleInstaller.Patching.resources │ ├── DWViceSimpleInstaller.Properties.Resources.resources │ ├── DWViceSimpleInstaller.ViceHackInfo.resources │ ├── DWViceSimpleInstaller.ViceHackPatcher.resources │ ├── DWViceSimpleInstaller.csproj.AssemblyReference.cache │ ├── DWViceSimpleInstaller.csproj.CoreCompileInputs.cache │ ├── DWViceSimpleInstaller.csproj.FileListAbsolute.txt │ ├── DWViceSimpleInstaller.csproj.GenerateResource.cache │ ├── DWViceSimpleInstaller.exe │ ├── DWViceSimpleInstaller.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache │ └── Release │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ ├── DWViceSimpleInstaller.HardcoreHackInfo.resources │ ├── DWViceSimpleInstaller.HardcorePatcher.resources │ ├── DWViceSimpleInstaller.MainApp.resources │ ├── DWViceSimpleInstaller.OptionalPatchesInfo.resources │ ├── DWViceSimpleInstaller.PatchConfirm.resources │ ├── DWViceSimpleInstaller.Patching.resources │ ├── DWViceSimpleInstaller.Properties.Resources.resources │ ├── DWViceSimpleInstaller.ViceHackInfo.resources │ ├── DWViceSimpleInstaller.ViceHackPatcher.resources │ ├── DWViceSimpleInstaller.csproj.AssemblyReference.cache │ ├── DWViceSimpleInstaller.csproj.CoreCompileInputs.cache │ ├── DWViceSimpleInstaller.csproj.FileListAbsolute.txt │ ├── DWViceSimpleInstaller.csproj.GenerateResource.cache │ ├── DWViceSimpleInstaller.exe │ ├── DWViceSimpleInstaller.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── Digimon Code ├── BTL │ └── CalculateMovementDamage.asm ├── EVL │ ├── Check Stats Limits.asm │ ├── Evolution Code.asm │ └── Special Stat Gains.asm ├── Forget Moves.asm ├── GetRandomCard.asm ├── Handle Item Being Feed.asm ├── KAR JP │ ├── LoadMetalmamemonCurlingText.asm │ └── LoadPenguinmonCurlingText.asm ├── KAR │ ├── LoadMetalmamemonCurlingText.asm │ └── LoadPenguinmonCurlingText.asm ├── Monochromon Digimon Bubble creation.asm ├── Pass Time After Battle.asm ├── RenderLoadDataBoxes.asm ├── RenderSaveDataConfirmation.asm ├── RenderSmallNumbersUI.txt ├── Save file data.asm ├── Scold Praise Mechanics.asm ├── Set Birdramon Flying Locations.asm ├── Set Scroll List Choice.asm ├── TRN │ └── Tech learning text.asm └── Textbox choice creation.asm ├── Digimon patches ├── BGM patch.asm ├── Bank text fix.asm ├── Battle time fix.asm ├── Better Training Boost.asm ├── Better cards.asm ├── Better fishing.asm ├── Bonus try.asm ├── Brains tech text.asm ├── Evo Item Flag Fix.asm ├── Evo Item Rejection fix.asm ├── Fix black box after shopping.txt ├── Forget Moves fix.asm ├── Get Evolution fix.asm ├── Giromon jukebox fix.asm ├── Insane Damage.asm ├── Learn multiple techs.asm ├── Movement softlock fix.asm ├── New Stat Gains.asm ├── OmniDisk fix.asm ├── Recycling shop text fix.asm ├── RotationFix.asm ├── Save Data Text fix.asm ├── Sleep Hunger fix.asm ├── Sleep regeneration fix.asm ├── Sukamon Stat Gains Fix.asm ├── Textbox choice fix.asm └── Tournament Schedule info fix.asm ├── DuckstationSettings.JPG ├── Hack data ├── 2.0 changes.asm ├── 2.1 changes (might not be complete).asm ├── 2.2 changes (still in progress).asm ├── Add poison timer.asm ├── Curling Randomizer Code.asm ├── Curling Randomizer JP Code.asm ├── Digimon World Evo Hack.asm ├── Digimon World extra digimon.asm ├── Digimon World moves boost.asm ├── DigitalClock.asm ├── Hardcore 1.1 changes.asm ├── Hardmore changes.asm ├── RNG tracker.asm ├── Royal cup restoration + cup related changes.asm └── Super-Ultra Hardcore patch.asm ├── Information links.txt ├── New installer ├── Base_script.cs ├── DataCheck.cs ├── DataCheck │ ├── Bosses2.cs │ ├── ChestStuff.cs │ ├── CupItemStuff.cs │ ├── DamageCalculator.cs │ ├── DigimonStuff.cs │ ├── EvoChart.cs │ ├── EvoItems.cs │ ├── EvolutionStuff.cs │ ├── FactorialUp.cs │ ├── ItemDropsStuff.cs │ ├── ItemSpawnsStuff.cs │ ├── ItemsStuff.cs │ ├── LearnBattle.cs │ ├── OtherItemsStuff.cs │ ├── Recruits.cs │ ├── SpecialEvo.cs │ ├── StatGains.cs │ ├── TechBoost.cs │ ├── TechDamage.cs │ ├── TechData.cs │ ├── TechStuff.cs │ └── TournamentsData.cs ├── DifficultyContainer.cs ├── DigimonContainer.cs ├── DigimonContainerRando.cs ├── DigimonRandomizer.cs ├── EvolutionCalculator.cs ├── EvolutionContainer.cs ├── Items │ ├── DaySchedule.cs │ ├── DigimonDropsSetup.cs │ ├── DigimonTournament.cs │ ├── EvoItem.cs │ ├── ItemSearch.cs │ ├── MapDigimon.cs │ ├── Recruit.cs │ ├── SpecialGains.cs │ ├── StatGainsDigimon.cs │ ├── TechBoostInfo.cs │ └── TechInfo.cs ├── ItemsContainer.cs ├── MiscContainer.cs ├── MiscContainerRando.cs ├── RandomizerContainer.cs ├── TechContainer.cs ├── TechContainerRando.cs ├── ToolsHandler.cs ├── UsefulContainer.cs └── VicePatcherContainer.cs ├── Other data ├── Animation offsets JP.txt ├── Animation offsets.txt ├── File size Vice hack.txt ├── Movements that can be used by digimon lists.txt └── Moves lists JP.txt ├── README.md └── SECURITY.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Changelog.txt -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/FileContentIndex/28369b1a-ca96-4238-b0bf-4f51ffc93c3b.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/FileContentIndex/28369b1a-ca96-4238-b0bf-4f51ffc93c3b.vsidx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/v17/.suo -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/v17/DocumentLayout.backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/v17/DocumentLayout.backup.json -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/.vs/DWViceSimpleInstaller/v17/DocumentLayout.json -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller.sln -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/App.config -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller.csproj -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcoreHackInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcoreHackInfo.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcoreHackInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcoreHackInfo.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcoreHackInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcoreHackInfo.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcorePatcher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcorePatcher.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcorePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcorePatcher.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcorePatcher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/HardcorePatcher.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/InstallerMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/InstallerMain.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/InstallerMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/InstallerMain.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/InstallerMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/InstallerMain.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/OptionalPatchesInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/OptionalPatchesInfo.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/OptionalPatchesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/OptionalPatchesInfo.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/OptionalPatchesInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/OptionalPatchesInfo.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/PatchConfirm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/PatchConfirm.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/PatchConfirm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/PatchConfirm.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/PatchConfirm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/PatchConfirm.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Patching.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Patching.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Patching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Patching.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Patching.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Patching.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Program.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Resources.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/Properties/Settings.settings -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackInfoForm.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackInfoForm.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackInfoForm.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackPatcher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackPatcher.Designer.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackPatcher.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackPatcher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/ViceHackPatcher.resx -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.HardcoreHackInfo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.HardcoreHackInfo.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.HardcorePatcher.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.HardcorePatcher.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.MainApp.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.MainApp.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.OptionalPatchesInfo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.OptionalPatchesInfo.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.PatchConfirm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.PatchConfirm.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.Patching.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.Patching.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.Properties.Resources.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.ViceHackInfo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.ViceHackInfo.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.ViceHackPatcher.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.ViceHackPatcher.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.exe -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DWViceSimpleInstaller.pdb -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.HardcoreHackInfo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.HardcoreHackInfo.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.HardcorePatcher.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.HardcorePatcher.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.MainApp.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.MainApp.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.OptionalPatchesInfo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.OptionalPatchesInfo.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.PatchConfirm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.PatchConfirm.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.Patching.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.Patching.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.Properties.Resources.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.ViceHackInfo.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.ViceHackInfo.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.ViceHackPatcher.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.ViceHackPatcher.resources -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.exe -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DWViceSimpleInstaller.pdb -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DWViceSimpleInstaller/DWViceSimpleInstaller/DWViceSimpleInstaller/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Digimon Code/BTL/CalculateMovementDamage.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/BTL/CalculateMovementDamage.asm -------------------------------------------------------------------------------- /Digimon Code/EVL/Check Stats Limits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/EVL/Check Stats Limits.asm -------------------------------------------------------------------------------- /Digimon Code/EVL/Evolution Code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/EVL/Evolution Code.asm -------------------------------------------------------------------------------- /Digimon Code/EVL/Special Stat Gains.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/EVL/Special Stat Gains.asm -------------------------------------------------------------------------------- /Digimon Code/Forget Moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Forget Moves.asm -------------------------------------------------------------------------------- /Digimon Code/GetRandomCard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/GetRandomCard.asm -------------------------------------------------------------------------------- /Digimon Code/Handle Item Being Feed.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Handle Item Being Feed.asm -------------------------------------------------------------------------------- /Digimon Code/KAR JP/LoadMetalmamemonCurlingText.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/KAR JP/LoadMetalmamemonCurlingText.asm -------------------------------------------------------------------------------- /Digimon Code/KAR JP/LoadPenguinmonCurlingText.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/KAR JP/LoadPenguinmonCurlingText.asm -------------------------------------------------------------------------------- /Digimon Code/KAR/LoadMetalmamemonCurlingText.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/KAR/LoadMetalmamemonCurlingText.asm -------------------------------------------------------------------------------- /Digimon Code/KAR/LoadPenguinmonCurlingText.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/KAR/LoadPenguinmonCurlingText.asm -------------------------------------------------------------------------------- /Digimon Code/Monochromon Digimon Bubble creation.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Monochromon Digimon Bubble creation.asm -------------------------------------------------------------------------------- /Digimon Code/Pass Time After Battle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Pass Time After Battle.asm -------------------------------------------------------------------------------- /Digimon Code/RenderLoadDataBoxes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/RenderLoadDataBoxes.asm -------------------------------------------------------------------------------- /Digimon Code/RenderSaveDataConfirmation.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/RenderSaveDataConfirmation.asm -------------------------------------------------------------------------------- /Digimon Code/RenderSmallNumbersUI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/RenderSmallNumbersUI.txt -------------------------------------------------------------------------------- /Digimon Code/Save file data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Save file data.asm -------------------------------------------------------------------------------- /Digimon Code/Scold Praise Mechanics.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Scold Praise Mechanics.asm -------------------------------------------------------------------------------- /Digimon Code/Set Birdramon Flying Locations.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Set Birdramon Flying Locations.asm -------------------------------------------------------------------------------- /Digimon Code/Set Scroll List Choice.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Set Scroll List Choice.asm -------------------------------------------------------------------------------- /Digimon Code/TRN/Tech learning text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/TRN/Tech learning text.asm -------------------------------------------------------------------------------- /Digimon Code/Textbox choice creation.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon Code/Textbox choice creation.asm -------------------------------------------------------------------------------- /Digimon patches/BGM patch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/BGM patch.asm -------------------------------------------------------------------------------- /Digimon patches/Bank text fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Bank text fix.asm -------------------------------------------------------------------------------- /Digimon patches/Battle time fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Battle time fix.asm -------------------------------------------------------------------------------- /Digimon patches/Better Training Boost.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Better Training Boost.asm -------------------------------------------------------------------------------- /Digimon patches/Better cards.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Better cards.asm -------------------------------------------------------------------------------- /Digimon patches/Better fishing.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Better fishing.asm -------------------------------------------------------------------------------- /Digimon patches/Bonus try.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Bonus try.asm -------------------------------------------------------------------------------- /Digimon patches/Brains tech text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Brains tech text.asm -------------------------------------------------------------------------------- /Digimon patches/Evo Item Flag Fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Evo Item Flag Fix.asm -------------------------------------------------------------------------------- /Digimon patches/Evo Item Rejection fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Evo Item Rejection fix.asm -------------------------------------------------------------------------------- /Digimon patches/Fix black box after shopping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Fix black box after shopping.txt -------------------------------------------------------------------------------- /Digimon patches/Forget Moves fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Forget Moves fix.asm -------------------------------------------------------------------------------- /Digimon patches/Get Evolution fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Get Evolution fix.asm -------------------------------------------------------------------------------- /Digimon patches/Giromon jukebox fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Giromon jukebox fix.asm -------------------------------------------------------------------------------- /Digimon patches/Insane Damage.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Insane Damage.asm -------------------------------------------------------------------------------- /Digimon patches/Learn multiple techs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Learn multiple techs.asm -------------------------------------------------------------------------------- /Digimon patches/Movement softlock fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Movement softlock fix.asm -------------------------------------------------------------------------------- /Digimon patches/New Stat Gains.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/New Stat Gains.asm -------------------------------------------------------------------------------- /Digimon patches/OmniDisk fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/OmniDisk fix.asm -------------------------------------------------------------------------------- /Digimon patches/Recycling shop text fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Recycling shop text fix.asm -------------------------------------------------------------------------------- /Digimon patches/RotationFix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/RotationFix.asm -------------------------------------------------------------------------------- /Digimon patches/Save Data Text fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Save Data Text fix.asm -------------------------------------------------------------------------------- /Digimon patches/Sleep Hunger fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Sleep Hunger fix.asm -------------------------------------------------------------------------------- /Digimon patches/Sleep regeneration fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Sleep regeneration fix.asm -------------------------------------------------------------------------------- /Digimon patches/Sukamon Stat Gains Fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Sukamon Stat Gains Fix.asm -------------------------------------------------------------------------------- /Digimon patches/Textbox choice fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Textbox choice fix.asm -------------------------------------------------------------------------------- /Digimon patches/Tournament Schedule info fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Digimon patches/Tournament Schedule info fix.asm -------------------------------------------------------------------------------- /DuckstationSettings.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/DuckstationSettings.JPG -------------------------------------------------------------------------------- /Hack data/2.0 changes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/2.0 changes.asm -------------------------------------------------------------------------------- /Hack data/2.1 changes (might not be complete).asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/2.1 changes (might not be complete).asm -------------------------------------------------------------------------------- /Hack data/2.2 changes (still in progress).asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/2.2 changes (still in progress).asm -------------------------------------------------------------------------------- /Hack data/Add poison timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Add poison timer.asm -------------------------------------------------------------------------------- /Hack data/Curling Randomizer Code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Curling Randomizer Code.asm -------------------------------------------------------------------------------- /Hack data/Curling Randomizer JP Code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Curling Randomizer JP Code.asm -------------------------------------------------------------------------------- /Hack data/Digimon World Evo Hack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Digimon World Evo Hack.asm -------------------------------------------------------------------------------- /Hack data/Digimon World extra digimon.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Digimon World extra digimon.asm -------------------------------------------------------------------------------- /Hack data/Digimon World moves boost.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Digimon World moves boost.asm -------------------------------------------------------------------------------- /Hack data/DigitalClock.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/DigitalClock.asm -------------------------------------------------------------------------------- /Hack data/Hardcore 1.1 changes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Hardcore 1.1 changes.asm -------------------------------------------------------------------------------- /Hack data/Hardmore changes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Hardmore changes.asm -------------------------------------------------------------------------------- /Hack data/RNG tracker.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/RNG tracker.asm -------------------------------------------------------------------------------- /Hack data/Royal cup restoration + cup related changes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Royal cup restoration + cup related changes.asm -------------------------------------------------------------------------------- /Hack data/Super-Ultra Hardcore patch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Hack data/Super-Ultra Hardcore patch.asm -------------------------------------------------------------------------------- /Information links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Information links.txt -------------------------------------------------------------------------------- /New installer/Base_script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Base_script.cs -------------------------------------------------------------------------------- /New installer/DataCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck.cs -------------------------------------------------------------------------------- /New installer/DataCheck/Bosses2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/Bosses2.cs -------------------------------------------------------------------------------- /New installer/DataCheck/ChestStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/ChestStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/CupItemStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/CupItemStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/DamageCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/DamageCalculator.cs -------------------------------------------------------------------------------- /New installer/DataCheck/DigimonStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/DigimonStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/EvoChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/EvoChart.cs -------------------------------------------------------------------------------- /New installer/DataCheck/EvoItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/EvoItems.cs -------------------------------------------------------------------------------- /New installer/DataCheck/EvolutionStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/EvolutionStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/FactorialUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/FactorialUp.cs -------------------------------------------------------------------------------- /New installer/DataCheck/ItemDropsStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/ItemDropsStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/ItemSpawnsStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/ItemSpawnsStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/ItemsStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/ItemsStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/LearnBattle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/LearnBattle.cs -------------------------------------------------------------------------------- /New installer/DataCheck/OtherItemsStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/OtherItemsStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/Recruits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/Recruits.cs -------------------------------------------------------------------------------- /New installer/DataCheck/SpecialEvo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/SpecialEvo.cs -------------------------------------------------------------------------------- /New installer/DataCheck/StatGains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/StatGains.cs -------------------------------------------------------------------------------- /New installer/DataCheck/TechBoost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/TechBoost.cs -------------------------------------------------------------------------------- /New installer/DataCheck/TechDamage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/TechDamage.cs -------------------------------------------------------------------------------- /New installer/DataCheck/TechData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/TechData.cs -------------------------------------------------------------------------------- /New installer/DataCheck/TechStuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/TechStuff.cs -------------------------------------------------------------------------------- /New installer/DataCheck/TournamentsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DataCheck/TournamentsData.cs -------------------------------------------------------------------------------- /New installer/DifficultyContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DifficultyContainer.cs -------------------------------------------------------------------------------- /New installer/DigimonContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DigimonContainer.cs -------------------------------------------------------------------------------- /New installer/DigimonContainerRando.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DigimonContainerRando.cs -------------------------------------------------------------------------------- /New installer/DigimonRandomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/DigimonRandomizer.cs -------------------------------------------------------------------------------- /New installer/EvolutionCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/EvolutionCalculator.cs -------------------------------------------------------------------------------- /New installer/EvolutionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/EvolutionContainer.cs -------------------------------------------------------------------------------- /New installer/Items/DaySchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/DaySchedule.cs -------------------------------------------------------------------------------- /New installer/Items/DigimonDropsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/DigimonDropsSetup.cs -------------------------------------------------------------------------------- /New installer/Items/DigimonTournament.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/DigimonTournament.cs -------------------------------------------------------------------------------- /New installer/Items/EvoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/EvoItem.cs -------------------------------------------------------------------------------- /New installer/Items/ItemSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/ItemSearch.cs -------------------------------------------------------------------------------- /New installer/Items/MapDigimon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/MapDigimon.cs -------------------------------------------------------------------------------- /New installer/Items/Recruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/Recruit.cs -------------------------------------------------------------------------------- /New installer/Items/SpecialGains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/SpecialGains.cs -------------------------------------------------------------------------------- /New installer/Items/StatGainsDigimon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/StatGainsDigimon.cs -------------------------------------------------------------------------------- /New installer/Items/TechBoostInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/TechBoostInfo.cs -------------------------------------------------------------------------------- /New installer/Items/TechInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/Items/TechInfo.cs -------------------------------------------------------------------------------- /New installer/ItemsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/ItemsContainer.cs -------------------------------------------------------------------------------- /New installer/MiscContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/MiscContainer.cs -------------------------------------------------------------------------------- /New installer/MiscContainerRando.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/MiscContainerRando.cs -------------------------------------------------------------------------------- /New installer/RandomizerContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/RandomizerContainer.cs -------------------------------------------------------------------------------- /New installer/TechContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/TechContainer.cs -------------------------------------------------------------------------------- /New installer/TechContainerRando.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/TechContainerRando.cs -------------------------------------------------------------------------------- /New installer/ToolsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/ToolsHandler.cs -------------------------------------------------------------------------------- /New installer/UsefulContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/UsefulContainer.cs -------------------------------------------------------------------------------- /New installer/VicePatcherContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/New installer/VicePatcherContainer.cs -------------------------------------------------------------------------------- /Other data/Animation offsets JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Other data/Animation offsets JP.txt -------------------------------------------------------------------------------- /Other data/Animation offsets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Other data/Animation offsets.txt -------------------------------------------------------------------------------- /Other data/File size Vice hack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Other data/File size Vice hack.txt -------------------------------------------------------------------------------- /Other data/Movements that can be used by digimon lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Other data/Movements that can be used by digimon lists.txt -------------------------------------------------------------------------------- /Other data/Moves lists JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/Other data/Moves lists JP.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vicen04/Dw1DataAndPatches/HEAD/SECURITY.md --------------------------------------------------------------------------------