├── .gitattributes ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Docs ├── endgame_decks.png ├── endgame_menu.png ├── endgame_settings.png └── endgame_stats.png ├── EndGame.Tests ├── EndGame.Tests.csproj ├── EndGameTest.cs ├── Models │ ├── ArchetypeDeckTest.cs │ ├── ArchetypeRecordTest.cs │ ├── CardTest.cs │ ├── DeckTest.cs │ └── MatchResultTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ ├── TempStormSlugTest.cs │ ├── TempoStormImporterTest.cs │ └── UpdateResultTest.cs ├── TestHelper.cs ├── Utilities │ └── MatchResultToStarRatingConverterTest.cs ├── ViewModels │ ├── BasicNoteViewModelTest.cs │ ├── EmptyNoteViewModelTest.cs │ ├── MainViewModelTest.cs │ ├── NoteViewModelTest.cs │ └── ViewModelHelperTest.cs ├── app.config └── packages.config ├── EndGame.sln ├── EndGame ├── EndGame.cs ├── EndGame.csproj ├── FodyWeavers.xml ├── ImportException.cs ├── MergedTrigger.cs ├── Models │ ├── ArchetypeDeck.cs │ ├── ArchetypeRecord.cs │ └── MatchResult.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── Default.ini ├── Services │ ├── IArchetypeImporter.cs │ ├── TempoStorm │ │ ├── DeckSnapshot.cs │ │ ├── Error.cs │ │ ├── Include.cs │ │ ├── Slugs.cs │ │ ├── SnapshotImporter.cs │ │ ├── SnapshotRequest.cs │ │ └── SnapshotResponse.cs │ └── UpdateResult.cs ├── Utilities │ ├── IUpdatable.cs │ ├── MatchResultToStarRatingConverter.cs │ └── Strings.cs ├── ViewModels │ ├── BasicNoteViewModel.cs │ ├── EmptyNoteViewModel.cs │ ├── MainViewModel.cs │ ├── NoteViewModel.cs │ ├── NoteViewModelBase.cs │ ├── RankRangeRule.cs │ ├── SettingsViewModel.cs │ ├── StatsViewModel.cs │ └── ViewModelHelper.cs ├── Views │ ├── BasicNoteView.xaml │ ├── BasicNoteView.xaml.cs │ ├── EmptyNoteView.xaml │ ├── EmptyNoteView.xaml.cs │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── NoteView.xaml │ ├── NoteView.xaml.cs │ ├── SettingsView.xaml │ ├── SettingsView.xaml.cs │ ├── StatsView.xaml │ ├── StatsView.xaml.cs │ └── Styles.xaml ├── app.config └── packages.config ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Docs/endgame_decks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/Docs/endgame_decks.png -------------------------------------------------------------------------------- /Docs/endgame_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/Docs/endgame_menu.png -------------------------------------------------------------------------------- /Docs/endgame_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/Docs/endgame_settings.png -------------------------------------------------------------------------------- /Docs/endgame_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/Docs/endgame_stats.png -------------------------------------------------------------------------------- /EndGame.Tests/EndGame.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/EndGame.Tests.csproj -------------------------------------------------------------------------------- /EndGame.Tests/EndGameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/EndGameTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Models/ArchetypeDeckTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Models/ArchetypeDeckTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Models/ArchetypeRecordTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Models/ArchetypeRecordTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Models/CardTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Models/CardTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Models/DeckTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Models/DeckTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Models/MatchResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Models/MatchResultTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EndGame.Tests/Services/TempStormSlugTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Services/TempStormSlugTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Services/TempoStormImporterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Services/TempoStormImporterTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/Services/UpdateResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Services/UpdateResultTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/TestHelper.cs -------------------------------------------------------------------------------- /EndGame.Tests/Utilities/MatchResultToStarRatingConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/Utilities/MatchResultToStarRatingConverterTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/ViewModels/BasicNoteViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/ViewModels/BasicNoteViewModelTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/ViewModels/EmptyNoteViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/ViewModels/EmptyNoteViewModelTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/ViewModels/MainViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/ViewModels/MainViewModelTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/ViewModels/NoteViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/ViewModels/NoteViewModelTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/ViewModels/ViewModelHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/ViewModels/ViewModelHelperTest.cs -------------------------------------------------------------------------------- /EndGame.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/app.config -------------------------------------------------------------------------------- /EndGame.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.Tests/packages.config -------------------------------------------------------------------------------- /EndGame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame.sln -------------------------------------------------------------------------------- /EndGame/EndGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/EndGame.cs -------------------------------------------------------------------------------- /EndGame/EndGame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/EndGame.csproj -------------------------------------------------------------------------------- /EndGame/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/FodyWeavers.xml -------------------------------------------------------------------------------- /EndGame/ImportException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ImportException.cs -------------------------------------------------------------------------------- /EndGame/MergedTrigger.cs: -------------------------------------------------------------------------------- 1 | public class MergedTrigger 2 | { 3 | } -------------------------------------------------------------------------------- /EndGame/Models/ArchetypeDeck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Models/ArchetypeDeck.cs -------------------------------------------------------------------------------- /EndGame/Models/ArchetypeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Models/ArchetypeRecord.cs -------------------------------------------------------------------------------- /EndGame/Models/MatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Models/MatchResult.cs -------------------------------------------------------------------------------- /EndGame/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EndGame/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EndGame/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Properties/Resources.resx -------------------------------------------------------------------------------- /EndGame/Resources/Default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Resources/Default.ini -------------------------------------------------------------------------------- /EndGame/Services/IArchetypeImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/IArchetypeImporter.cs -------------------------------------------------------------------------------- /EndGame/Services/TempoStorm/DeckSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/TempoStorm/DeckSnapshot.cs -------------------------------------------------------------------------------- /EndGame/Services/TempoStorm/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/TempoStorm/Error.cs -------------------------------------------------------------------------------- /EndGame/Services/TempoStorm/Include.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/TempoStorm/Include.cs -------------------------------------------------------------------------------- /EndGame/Services/TempoStorm/Slugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/TempoStorm/Slugs.cs -------------------------------------------------------------------------------- /EndGame/Services/TempoStorm/SnapshotImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/TempoStorm/SnapshotImporter.cs -------------------------------------------------------------------------------- /EndGame/Services/TempoStorm/SnapshotRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/TempoStorm/SnapshotRequest.cs -------------------------------------------------------------------------------- /EndGame/Services/TempoStorm/SnapshotResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/TempoStorm/SnapshotResponse.cs -------------------------------------------------------------------------------- /EndGame/Services/UpdateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Services/UpdateResult.cs -------------------------------------------------------------------------------- /EndGame/Utilities/IUpdatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Utilities/IUpdatable.cs -------------------------------------------------------------------------------- /EndGame/Utilities/MatchResultToStarRatingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Utilities/MatchResultToStarRatingConverter.cs -------------------------------------------------------------------------------- /EndGame/Utilities/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Utilities/Strings.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/BasicNoteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/BasicNoteViewModel.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/EmptyNoteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/EmptyNoteViewModel.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/NoteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/NoteViewModel.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/NoteViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/NoteViewModelBase.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/RankRangeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/RankRangeRule.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/StatsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/StatsViewModel.cs -------------------------------------------------------------------------------- /EndGame/ViewModels/ViewModelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/ViewModels/ViewModelHelper.cs -------------------------------------------------------------------------------- /EndGame/Views/BasicNoteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/BasicNoteView.xaml -------------------------------------------------------------------------------- /EndGame/Views/BasicNoteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/BasicNoteView.xaml.cs -------------------------------------------------------------------------------- /EndGame/Views/EmptyNoteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/EmptyNoteView.xaml -------------------------------------------------------------------------------- /EndGame/Views/EmptyNoteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/EmptyNoteView.xaml.cs -------------------------------------------------------------------------------- /EndGame/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/MainView.xaml -------------------------------------------------------------------------------- /EndGame/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /EndGame/Views/NoteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/NoteView.xaml -------------------------------------------------------------------------------- /EndGame/Views/NoteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/NoteView.xaml.cs -------------------------------------------------------------------------------- /EndGame/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/SettingsView.xaml -------------------------------------------------------------------------------- /EndGame/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /EndGame/Views/StatsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/StatsView.xaml -------------------------------------------------------------------------------- /EndGame/Views/StatsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/StatsView.xaml.cs -------------------------------------------------------------------------------- /EndGame/Views/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/Views/Styles.xaml -------------------------------------------------------------------------------- /EndGame/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/app.config -------------------------------------------------------------------------------- /EndGame/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/EndGame/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andburn/hdt-plugin-endgame/HEAD/README.md --------------------------------------------------------------------------------