Adding a syndicate pairing page with some notes

This commit is contained in:
2026-07-17 17:12:39 -04:00
parent 8fa0422be4
commit e64193639e
50 changed files with 1689 additions and 398 deletions
+2 -2
View File
@@ -202,7 +202,7 @@
{
allCards = CardDatabase.Cards;
factions = allCards
.Select(c => c.Faction)
.Select(c => c.Syndicate)
.Where(f => f != null)
.Distinct()
.OrderBy(f => f)
@@ -214,7 +214,7 @@
var primarySet = allCards.Where(c =>
c.MatchesSearch(search) &&
(categoryFilter == "" || c.Category == categoryFilter) &&
(factionFilter == "" || c.Faction == factionFilter) &&
(factionFilter == "" || c.Syndicate == factionFilter) &&
(costFilter == "" || c.Cost?.ToString() == costFilter)
);