Updating deck and adding deck code

This commit is contained in:
2026-06-20 15:11:14 -04:00
parent 26899fb59f
commit a01397941e
14 changed files with 97 additions and 12870 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ public class CardData
public string? ImmortalizeFrom { get; init; }
public string? ImmortalizeWhen { get; init; }
public string? ImageFile { get; init; }
public bool IsAgent => Category == "Agent";
public bool IsSpell => Category == "Spell";
public bool IsToken => Category == "Token";
+3
View File
@@ -7,6 +7,9 @@ public class DeckData
public List<string> Keycards { get; init; } = [];
public List<string> Divers { get; init; } = [];
public string? Description { get; init; }
public string? DeckCode { get; init; }
public List<string> Factions { get; init; } = [];
public bool IsVisible { get; init; }