├── .github └── workflows │ └── main.yml ├── .gitignore ├── HomeLive.Core ├── Classes │ ├── HomeWrapper.cs │ ├── Legacy │ │ ├── PH1 │ │ │ ├── GameData1PA8.cs │ │ │ ├── GameData1PB7.cs │ │ │ ├── GameData1PB8.cs │ │ │ ├── GameData1PK8.cs │ │ │ ├── GameDataCore1.cs │ │ │ ├── HomeOptional1.cs │ │ │ ├── IGameDataSide1.cs │ │ │ └── PH1.cs │ │ └── PH2 │ │ │ ├── GameData2PA8.cs │ │ │ ├── GameData2PB7.cs │ │ │ ├── GameData2PB8.cs │ │ │ ├── GameData2PK8.cs │ │ │ ├── GameData2PK9.cs │ │ │ ├── GameDataCore2.cs │ │ │ ├── HomeOptional2.cs │ │ │ ├── IGameDataSide2.cs │ │ │ └── PH2.cs │ ├── LegalityHandler.cs │ ├── PokeHandler.cs │ ├── SaveHandler.cs │ └── VersionHandler.cs ├── Enums │ └── Enums.cs ├── HomeLive.Core.csproj ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx └── Resources │ └── icon.ico ├── HomeLive.DeviceExecutor ├── DeviceExecutor.cs ├── HomeDataOffsets.cs ├── HomeLive.DeviceExecutor.csproj └── deps │ └── SysBot.Base.dll ├── HomeLive.Plugins ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Forms │ ├── DumperForm.Designer.cs │ ├── DumperForm.cs │ ├── DumperForm.resx │ ├── SettingsForm.Designer.cs │ ├── SettingsForm.cs │ ├── SettingsForm.resx │ ├── ViewerForm.Designer.cs │ ├── ViewerForm.cs │ └── ViewerForm.resx ├── HomeLive.Plugins.csproj ├── HomePlugin.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── icon.ico │ └── translations │ │ ├── lang_de.txt │ │ ├── lang_en.txt │ │ ├── lang_es.txt │ │ ├── lang_fr.txt │ │ ├── lang_it.txt │ │ ├── lang_ja.txt │ │ ├── lang_ko.txt │ │ ├── lang_zh-Hans.txt │ │ └── lang_zh-Hant.txt └── Utils │ ├── GitHubUtil.cs │ └── WinFormsTranslator.cs ├── HomeLive.sln ├── LICENSE └── README.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /HomeLive.Core/Classes/HomeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/HomeWrapper.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/GameData1PA8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/GameData1PA8.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/GameData1PB7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/GameData1PB7.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/GameData1PB8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/GameData1PB8.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/GameData1PK8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/GameData1PK8.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/GameDataCore1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/GameDataCore1.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/HomeOptional1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/HomeOptional1.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/IGameDataSide1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/IGameDataSide1.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH1/PH1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH1/PH1.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/GameData2PA8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/GameData2PA8.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/GameData2PB7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/GameData2PB7.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/GameData2PB8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/GameData2PB8.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/GameData2PK8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/GameData2PK8.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/GameData2PK9.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/GameData2PK9.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/GameDataCore2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/GameDataCore2.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/HomeOptional2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/HomeOptional2.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/IGameDataSide2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/IGameDataSide2.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/Legacy/PH2/PH2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/Legacy/PH2/PH2.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/LegalityHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/LegalityHandler.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/PokeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/PokeHandler.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/SaveHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/SaveHandler.cs -------------------------------------------------------------------------------- /HomeLive.Core/Classes/VersionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Classes/VersionHandler.cs -------------------------------------------------------------------------------- /HomeLive.Core/Enums/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Enums/Enums.cs -------------------------------------------------------------------------------- /HomeLive.Core/HomeLive.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/HomeLive.Core.csproj -------------------------------------------------------------------------------- /HomeLive.Core/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HomeLive.Core/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Properties/Resources.resx -------------------------------------------------------------------------------- /HomeLive.Core/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Core/Resources/icon.ico -------------------------------------------------------------------------------- /HomeLive.DeviceExecutor/DeviceExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.DeviceExecutor/DeviceExecutor.cs -------------------------------------------------------------------------------- /HomeLive.DeviceExecutor/HomeDataOffsets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.DeviceExecutor/HomeDataOffsets.cs -------------------------------------------------------------------------------- /HomeLive.DeviceExecutor/HomeLive.DeviceExecutor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.DeviceExecutor/HomeLive.DeviceExecutor.csproj -------------------------------------------------------------------------------- /HomeLive.DeviceExecutor/deps/SysBot.Base.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.DeviceExecutor/deps/SysBot.Base.dll -------------------------------------------------------------------------------- /HomeLive.Plugins/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/FodyWeavers.xml -------------------------------------------------------------------------------- /HomeLive.Plugins/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/FodyWeavers.xsd -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/DumperForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/DumperForm.Designer.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/DumperForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/DumperForm.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/DumperForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/DumperForm.resx -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/ViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/ViewerForm.Designer.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/ViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/ViewerForm.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Forms/ViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Forms/ViewerForm.resx -------------------------------------------------------------------------------- /HomeLive.Plugins/HomeLive.Plugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/HomeLive.Plugins.csproj -------------------------------------------------------------------------------- /HomeLive.Plugins/HomePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/HomePlugin.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Properties/Resources.resx -------------------------------------------------------------------------------- /HomeLive.Plugins/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Properties/Settings.settings -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/icon.ico -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_de.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_en.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_es.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_fr.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_it.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_ja.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_ko.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_zh-Hans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_zh-Hans.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Resources/translations/lang_zh-Hant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Resources/translations/lang_zh-Hant.txt -------------------------------------------------------------------------------- /HomeLive.Plugins/Utils/GitHubUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Utils/GitHubUtil.cs -------------------------------------------------------------------------------- /HomeLive.Plugins/Utils/WinFormsTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.Plugins/Utils/WinFormsTranslator.cs -------------------------------------------------------------------------------- /HomeLive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/HomeLive.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manu098vm/HOME-Live-Plugin/HEAD/README.md --------------------------------------------------------------------------------