diff --git a/Chrono/Build/Program.cs b/Chrono/Build/Program.cs
index 2447e5a..bb2ed78 100644
--- a/Chrono/Build/Program.cs
+++ b/Chrono/Build/Program.cs
@@ -58,7 +58,9 @@ foreach (var file in mdFiles)
: null,
ImmortalizeFrom = StripWikiLink(yaml.GetValueOrDefault("immortalizeFrom")),
ImmortalizeWhen = NullIfNa(StripWikiLinks(yaml.GetValueOrDefault("immortalizeWhen"))),
- ImageFile = imageFile
+ ImageFile = imageFile,
+ Artist = yaml.GetValueOrDefault("artist"),
+ Rarity = yaml.GetValueOrDefault("rarity"),
};
cards.Add(card);
@@ -115,6 +117,9 @@ for (var i = 0; i < cards.Count; i++)
WriteStrProp(writer, "ImmortalizeFrom", c.ImmortalizeFrom, 3);
WriteStrProp(writer, "ImmortalizeWhen", c.ImmortalizeWhen, 3);
WriteStrProp(writer, "ImageFile", c.ImageFile, 3);
+
+ WriteStrProp(writer, "Artist", c.Artist, 3);
+ WriteStrProp(writer, "Rarity", c.Rarity, 3);
var comma = i < cards.Count - 1 ? "," : "";
writer.WriteLine($" }}{comma}");
diff --git a/Chrono/Model/CardData.cs b/Chrono/Model/CardData.cs
index 9dd9c81..d41d66a 100644
--- a/Chrono/Model/CardData.cs
+++ b/Chrono/Model/CardData.cs
@@ -22,6 +22,9 @@ public class CardData
public string? ImmortalizeWhen { get; init; }
public string? ImageFile { get; init; }
+ public string? Artist { get; init; }
+ public string? Rarity { get; init; }
+
public bool IsAgent => Category == "Agent";
public bool IsSpell => Category == "Spell";
public bool IsToken => Category == "Token";
diff --git a/Chrono/Shared/Components/CardDetailModal.razor b/Chrono/Shared/Components/CardDetailModal.razor
index afdbb12..f8d35c0 100644
--- a/Chrono/Shared/Components/CardDetailModal.razor
+++ b/Chrono/Shared/Components/CardDetailModal.razor
@@ -61,6 +61,22 @@
@Card.Set
}
+
+ @if (Card.Artist != null)
+ {
+
+ Artists
+ @Card.Artist
+
+ }
+
+ @if (Card.Rarity != null)
+ {
+
+ Rarity
+ @Card.Rarity
+
+ }
@if (Card.Archetypes is { Count: > 0 })
{
diff --git a/Chrono/Shared/Generated/Cards.g.cs b/Chrono/Shared/Generated/Cards.g.cs
index bcb2189..588160f 100644
--- a/Chrono/Shared/Generated/Cards.g.cs
+++ b/Chrono/Shared/Generated/Cards.g.cs
@@ -587,6 +587,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round End: I see 5+ other allies. When I Immortalize, Shift to Deadly Fauna.",
ImageFile = "Aardvark Precinct Captain.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Divergent",
},
new()
{
@@ -606,6 +608,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen allies Flourish 4+ times.",
ImageFile = "Burrowing Beetles.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -625,6 +629,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen allies Flourish 4+ times.",
ImageFile = "Egg Tender.png",
+ Artist = "BEIKI",
+ Rarity = "Divergent",
},
new()
{
@@ -644,6 +650,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've Struck the enemy Core.",
ImageFile = "Fervent Mycologist.png",
+ Artist = "Guilherme Faria",
+ Rarity = "Common",
},
new()
{
@@ -663,6 +671,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you Sprout 4+ times.",
ImageFile = "Gardener Apprentice.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -682,6 +692,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I have 6+ Strength.",
ImageFile = "Glade Grazers.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -701,6 +713,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you Shift twice.",
ImageFile = "Glasswinged Monarch.png",
+ Artist = "Kurt Daryll Ludaes",
+ Rarity = "Lost",
},
new()
{
@@ -720,6 +734,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen the enemy Core take damage through Overpower.",
ImageFile = "Harbinger of Power.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Common",
},
new()
{
@@ -738,6 +754,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've destroyed an Agent.",
ImageFile = "Hungry Tyrannosaur.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -757,6 +775,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round End: I do not see an allied Wolf in play. When I Immortalize, Shift to Abundant Growth.",
ImageFile = "Panicked Refugee.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Common",
},
new()
{
@@ -775,6 +795,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've Struck the enemy Core.",
ImageFile = "Pterosaur Rider.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Rare",
},
new()
{
@@ -794,6 +816,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents destroyed.",
ImageFile = "Sap Sapper.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -813,6 +837,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you Sprout 4+ times.",
ImageFile = "Sapling Dryad.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -832,6 +858,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen allies Flourish 4+ times.",
ImageFile = "Sleepy Druid.png",
+ Artist = "BEIKI",
+ Rarity = "Rare",
},
new()
{
@@ -851,6 +879,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round End: You have 15+ Strength in play.",
ImageFile = "Spark of Bounty.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Rare",
},
new()
{
@@ -869,6 +899,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round End: I do not see an allied Wolf in Play.",
ImageFile = "Territorial Pack.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -887,6 +919,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Give the strongest enemy Exposed and set its stats to 1/1 this round. Immortalize: I've destroyed an Agent.",
ImageFile = "Zealot of the Hunt.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Divergent",
},
new()
{
@@ -906,6 +940,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen allies or your Core Heal 6+.",
ImageFile = "Bareknuckle Inquisitor.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Divergent",
},
new()
{
@@ -924,6 +960,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've played Blessed Soup 2+ times this game.",
ImageFile = "Bearer of the Broth.png",
+ Artist = "Jeffrey Viloria",
+ Rarity = "Rare",
},
new()
{
@@ -943,6 +981,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I am Phased or Rewound.",
ImageFile = "Curious Acolyte.png",
+ Artist = "Kurt Daryll Ludaes",
+ Rarity = "Divergent",
},
new()
{
@@ -962,6 +1002,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've Phased or Rewound Agents 6+ times this game.",
ImageFile = "Divergence Assassin.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -982,6 +1024,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I have 6+ Strength.",
ImageFile = "Fervent Follower.png",
+ Artist = "Simon Carr",
+ Rarity = "Rare",
},
new()
{
@@ -1002,6 +1046,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Shifts.",
ImageFile = "Heretic Whistleblower.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -1021,6 +1067,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I am Phased or Rewound.",
ImageFile = "Holder of the Instruments.png",
+ Artist = "Simon Carr",
+ Rarity = "Common",
},
new()
{
@@ -1040,6 +1088,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've Rewound 3+ times this game.",
ImageFile = "Holy Cleaner.png",
+ Artist = "Millena Ramos",
+ Rarity = "Common",
},
new()
{
@@ -1059,6 +1109,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents Phased or Rewound.",
ImageFile = "Karmic Debtor.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -1077,6 +1129,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've set the Strength of 4+ enemies to 0 this game.",
ImageFile = "Nonlethal Special Forces.png",
+ Artist = "Zed Edge",
+ Rarity = "Divergent",
},
new()
{
@@ -1096,6 +1150,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see The One True Timeline.",
ImageFile = "Seeker of Truth.png",
+ Artist = "Zed Edge",
+ Rarity = "Common",
},
new()
{
@@ -1115,6 +1171,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see The One True Timeline.",
ImageFile = "Shattersmith.png",
+ Artist = "TheLastEmber",
+ Rarity = "Common",
},
new()
{
@@ -1134,6 +1192,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see The One True Timeline.",
ImageFile = "Slow Convert.png",
+ Artist = "Xtian.Art",
+ Rarity = "Divergent",
},
new()
{
@@ -1152,6 +1212,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you play 3+ cards wi...",
ImageFile = "Stern Arbiter.png",
+ Artist = "Simon Carr",
+ Rarity = "Lost",
},
new()
{
@@ -1171,6 +1233,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents Phased or Rewound.",
ImageFile = "Temple Analyst.png",
+ Artist = "Xtian.Art",
+ Rarity = "Divergent",
},
new()
{
@@ -1190,6 +1254,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see The One True Timeline.",
ImageFile = "Temple Guard Hound.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -1210,6 +1276,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round Start: I see Voiceless Sky.",
ImageFile = "Braindead Bouncer.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Common",
},
new()
{
@@ -1228,6 +1296,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen allies Refresh 4+ times.",
ImageFile = "Death Jockey.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Lost",
},
new()
{
@@ -1246,6 +1316,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents Mute|Muted.",
ImageFile = "Destiny Ripper.png",
+ Artist = "BEIKI",
+ Rarity = "Common",
},
new()
{
@@ -1265,6 +1337,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see Voiceless Sky.",
ImageFile = "Disciplined Student.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -1283,6 +1357,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen Agents Deplete 4+ times.",
ImageFile = "Forest Recluse.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -1301,6 +1377,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen Agents Deplete 4+ times.",
ImageFile = "Fuzzy Archivist.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -1320,6 +1398,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you play 3+ Actions.",
ImageFile = "Librarian's Assistant.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -1340,6 +1420,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "When I would be destroyed while I see Voiceless Sky, instead, Heal me to full and I Immortalize.",
ImageFile = "Nameless Spirit.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -1358,6 +1440,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've cast the same Action 3+ times this game.",
ImageFile = "Overburdened Scribe.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -1376,6 +1460,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents destroyed.",
ImageFile = "Redactionist.png",
+ Artist = "Xtian.Art",
+ Rarity = "Rare",
},
new()
{
@@ -1394,6 +1480,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen Agents Deplete 4+ times.",
ImageFile = "Rotting Rocker.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Divergent",
},
new()
{
@@ -1414,6 +1502,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents destroyed.",
ImageFile = "Sensory Deprivation Pod.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -1432,6 +1522,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents destroyed.",
ImageFile = "Solemn Attendant.png",
+ Artist = "Simon Carr",
+ Rarity = "Divergent",
},
new()
{
@@ -1451,6 +1543,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you Shift 2+ times.",
ImageFile = "Somber Astronomer.png",
+ Artist = "Kurt Daryll Ludaes",
+ Rarity = "Common",
},
new()
{
@@ -1470,6 +1564,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've dealt 15+ non-combat damage this game.",
ImageFile = "Telepathic Conduit.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -1489,6 +1585,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen Agents Deplete 4+ times.",
ImageFile = "Telepathic Scavenger.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Common",
},
new()
{
@@ -1507,6 +1605,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents destroyed.",
ImageFile = "The Forgotten Tale.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Lost",
},
new()
{
@@ -1525,6 +1625,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see 3+ Agents with 0 Strength in play.",
ImageFile = "Awakened Security System.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -1545,6 +1647,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you Draw 6+ cards.",
ImageFile = "Efficient Scrapbot.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -1564,6 +1668,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round End: I see a 1 cost ally in play.",
ImageFile = "Enhanced Retriever.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -1584,6 +1690,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you Draw 6+ cards.",
ImageFile = "Enlightened Refugee.png",
+ Artist = "Jeffrey Viloria",
+ Rarity = "Divergent",
},
new()
{
@@ -1602,6 +1710,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see 3+ allied Pocket Scouts in play.",
ImageFile = "Enthusiastic Bot-Poke.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Rare",
},
new()
{
@@ -1621,6 +1731,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I have 4+ Strength.",
ImageFile = "Fractal Phantasm.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -1639,6 +1751,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round End: I see Paradox.",
ImageFile = "Nascent Clone.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Lost",
},
new()
{
@@ -1658,6 +1772,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Your hand is empty.",
ImageFile = "Origination Engine.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -1678,6 +1794,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've Discarded 3+ times this game.",
ImageFile = "Recycler.png",
+ Artist = "Horugode",
+ Rarity = "Common",
},
new()
{
@@ -1698,6 +1816,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen you Draw 6+ cards.",
ImageFile = "Rogue Amalgam.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -1717,6 +1837,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've Discarded 3+ times this game.",
ImageFile = "Roiling Amalgam.png",
+ Artist = "BEIKI",
+ Rarity = "Rare",
},
new()
{
@@ -1736,6 +1858,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see 3+ allies with the same name as other allies.",
ImageFile = "Scattered Helpers.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Rare",
},
new()
{
@@ -1755,6 +1879,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see 2+ Scuttling Spares in your Graveyard. I can Immortalize out of play.",
ImageFile = "Scuttling Spares.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -1773,6 +1899,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see 3+ Agents with 0 Strength in play.",
ImageFile = "Traffic Conductor.png",
+ Artist = "Ritchie Cantuária",
+ Rarity = "Common",
},
new()
{
@@ -1792,6 +1920,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I have 7+ Strength.",
ImageFile = "Blazing Shifter.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Divergent",
},
new()
{
@@ -1810,6 +1940,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've dealt 6+ damage.",
ImageFile = "Bloodline Tracker.png",
+ Artist = "Simon Carr",
+ Rarity = "Divergent",
},
new()
{
@@ -1828,6 +1960,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've survived damage twice.",
ImageFile = "Bright-Eyed Supplicant.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Rare",
},
new()
{
@@ -1846,6 +1980,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Breakdown 10.",
ImageFile = "Brutal Reveler.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Rare",
},
new()
{
@@ -1864,6 +2000,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've destroyed two enemies.",
ImageFile = "Bullseye Bounty Hunter.png",
+ Artist = "Zed Edge",
+ Rarity = "Rare",
},
new()
{
@@ -1883,6 +2021,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see you Shift to Volcanic Rivers while Volcanic Rivers is the current Timeline.",
ImageFile = "Denizen of Flames.png",
+ Artist = "um_predo",
+ Rarity = "Rare",
},
new()
{
@@ -1901,6 +2041,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen the enemy Core take damage twice.",
ImageFile = "Desperate Primordial.png",
+ Artist = "Xtian.Art",
+ Rarity = "Common",
},
new()
{
@@ -1921,6 +2063,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've Drawn 3+ cards.",
ImageFile = "Devoted Bloodletter.png",
+ Artist = "Simon Carr",
+ Rarity = "Rare",
},
new()
{
@@ -1939,6 +2083,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Breakdown 10.",
ImageFile = "Frontline Juggernaut.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -1957,6 +2103,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've dealt 15+ non-combat damage this game.",
ImageFile = "Gilded Behemoth.png",
+ Artist = "Donnie Obina",
+ Rarity = "Lost",
},
new()
{
@@ -1975,6 +2123,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've Struck an Agent with less Strength than me.",
ImageFile = "Glittering Gladiator.png",
+ Artist = "BEIKI",
+ Rarity = "Common",
},
new()
{
@@ -1993,6 +2143,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've survived damage.",
ImageFile = "Hungry Engine.png",
+ Artist = "Simon Carr",
+ Rarity = "Divergent",
},
new()
{
@@ -2011,6 +2163,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Breakdown 10.",
ImageFile = "Painforger.png",
+ Artist = "G.C.",
+ Rarity = "Lost",
},
new()
{
@@ -2029,6 +2183,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see an Agent destroyed by Bleed.",
ImageFile = "Persistent Squire.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Common",
},
new()
{
@@ -2047,6 +2203,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've damaged the enemy Core.",
ImageFile = "Pit Dog.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -2065,6 +2223,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see an Agent destroyed by Bleed.",
ImageFile = "Red Reaper.png",
+ Artist = "Zed Edge",
+ Rarity = "Lost",
},
new()
{
@@ -2083,6 +2243,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Breakdown 15.",
ImageFile = "Stalwart Champion.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -2101,6 +2263,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see an Agent destroyed by Bleed.",
ImageFile = "Toothy Pugilist.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -2120,6 +2284,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see your Energy Reserve Overflow.",
ImageFile = "Brilliant Martyr.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -2138,6 +2304,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've Struck the enemy Core.",
ImageFile = "Canine Adjutant.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -2156,6 +2324,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've seen 3+ Agents destroyed.",
ImageFile = "Containment Breach.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Divergent",
},
new()
{
@@ -2174,6 +2344,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I have 10+ Strength.",
ImageFile = "Debris Collector.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Rare",
},
new()
{
@@ -2193,6 +2365,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've gained 7+ keywords.",
ImageFile = "Devourer Spawn.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Lost",
},
new()
{
@@ -2211,6 +2385,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see your Energy Reserve Overflow.",
ImageFile = "Gunnery Captain.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Rare",
},
new()
{
@@ -2229,6 +2405,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "Round Start: You have 10 Energy Crystals.",
ImageFile = "Hidden Locus.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -2247,6 +2425,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've spent 12+ Energy in one round this game.",
ImageFile = "Jury of the Second Law.png",
+ Artist = "Donnie Obina",
+ Rarity = "Divergent",
},
new()
{
@@ -2266,6 +2446,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I survive an enemy Striking me. When I Immortalize, Shift to Star Siphon.",
ImageFile = "Kinetic Absorber.png",
+ Artist = "Horugode",
+ Rarity = "Rare",
},
new()
{
@@ -2284,6 +2466,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You have 10 Energy Crystals.",
ImageFile = "Lightsteel Colossus.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -2302,6 +2486,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've prevented 5+ damage to your Core.",
ImageFile = "Lightsteel Engineer.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Lost",
},
new()
{
@@ -2321,6 +2507,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see your Energy Reserve Overflow.",
ImageFile = "Limit Breaker.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -2339,6 +2527,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I survive damage.",
ImageFile = "Lumbering Starseeker.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -2358,6 +2548,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've spent 12+ Energy in one round this game.",
ImageFile = "Magmatic Tether.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -2376,6 +2568,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see your Energy Reserve Overflow.",
ImageFile = "Peaceful Synthesizer.png",
+ Artist = "Xtian.Art",
+ Rarity = "Divergent",
},
new()
{
@@ -2395,6 +2589,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I see Paradox.",
ImageFile = "Planet Seeder.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Lost",
},
new()
{
@@ -2414,6 +2610,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've healed your Core in 4+ different rounds.",
ImageFile = "Starfueled Medics.png",
+ Artist = "Horugode",
+ Rarity = "Rare",
},
new()
{
@@ -2432,6 +2630,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've played the same Action 3+ times this game.",
ImageFile = "Sunbringer Artillerist.png",
+ Artist = "Xtian.Art",
+ Rarity = "Lost",
},
new()
{
@@ -2451,6 +2651,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "You've spent 12+ Energy in one round this game.",
ImageFile = "Suncursed Conduit.png",
+ Artist = "Xtian.Art",
+ Rarity = "Common",
},
new()
{
@@ -2470,6 +2672,8 @@ public static class CardDatabase
],
ImmortalizeWhen = "I've Phased in twice.",
ImageFile = "Swashbuckling Diehard.png",
+ Artist = "Zed Edge",
+ Rarity = "Rare",
},
new()
{
@@ -2489,6 +2693,8 @@ public static class CardDatabase
ImmortalizeFrom = "Egg Tender",
ImmortalizeWhen = "I've seen allies Flourish 4+ times.",
ImageFile = "Arra, Saurian Broodmother.png",
+ Artist = "BEIKI",
+ Rarity = "Divergent",
},
new()
{
@@ -2507,6 +2713,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Glade Grazers",
ImageFile = "Battleharts.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -2524,6 +2732,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Territorial Pack",
ImageFile = "Boof, Lonely and Proud.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -2542,6 +2752,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Panicked Refugee",
ImageFile = "Bronk the Calm.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Common",
},
new()
{
@@ -2560,6 +2772,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Harbinger of Power",
ImageFile = "Evolution Incarnate.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -2577,6 +2791,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Pterosaur Rider",
ImageFile = "Gritmancer Grant.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Rare",
},
new()
{
@@ -2596,6 +2812,8 @@ public static class CardDatabase
ImmortalizeFrom = "Gardener Apprentice",
ImmortalizeWhen = "",
ImageFile = "Horticulturist Oswald.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -2614,6 +2832,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Fervent Mycologist",
ImageFile = "Jenny, Sower of Spores.png",
+ Artist = "Guilherme Faria",
+ Rarity = "Common",
},
new()
{
@@ -2631,6 +2851,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Zealot of the Hunt",
ImageFile = "Khaelar.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Divergent",
},
new()
{
@@ -2649,6 +2871,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Glasswinged Monarch",
ImageFile = "Omeganeura.png",
+ Artist = "Kurt Daryll Ludaes",
+ Rarity = "Lost",
},
new()
{
@@ -2668,6 +2892,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Spark of Bounty",
ImageFile = "The Beating Heart.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Rare",
},
new()
{
@@ -2686,6 +2912,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Sap Sapper",
ImageFile = "The Botanist.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -2706,6 +2934,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Burrowing Beetles",
ImageFile = "The Cycle Embodied.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -2724,6 +2954,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Sapling Dryad",
ImageFile = "The Great Oakmother.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -2743,6 +2975,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Aardvark Precinct Captain",
ImageFile = "Tino, Majestic Stumbler.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Divergent",
},
new()
{
@@ -2760,6 +2994,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Hungry Tyrannosaur",
ImageFile = "Wreck-o Rex.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -2779,6 +3015,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Sleepy Druid",
ImageFile = "Xae, Dreamstrider.png",
+ Artist = "BEIKI",
+ Rarity = "Rare",
},
new()
{
@@ -2796,6 +3034,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Bearer of the Broth",
ImageFile = "Alina, the Overflowing Cup.png",
+ Artist = "Jeffrey Viloria",
+ Rarity = "Rare",
},
new()
{
@@ -2813,6 +3053,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Temple Guard Hound",
ImageFile = "Boof, Ever Loyal.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -2831,6 +3073,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Karmic Debtor",
ImageFile = "Consequence Admin Cain.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -2849,6 +3093,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Bareknuckle Inquisitor",
ImageFile = "Da'Kad, Heretic Crusher.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Divergent",
},
new()
{
@@ -2867,6 +3113,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Slow Convert",
ImageFile = "Dedicated Missionary.png",
+ Artist = "Xtian.Art",
+ Rarity = "Divergent",
},
new()
{
@@ -2884,6 +3132,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Stern Arbiter",
ImageFile = "Grand Judge Dhael.png",
+ Artist = "Simon Carr",
+ Rarity = "Lost",
},
new()
{
@@ -2902,6 +3152,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Heretic Whistleblower",
ImageFile = "Harker, Metal Reporter.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -2920,6 +3172,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Temple Analyst",
ImageFile = "Khaela the Savior.png",
+ Artist = "Xtian.Art",
+ Rarity = "Divergent",
},
new()
{
@@ -2938,6 +3192,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Divergence Assassin",
ImageFile = "Masa, Time-Lost.png",
+ Artist = "BEIKI",
+ Rarity = "Lost",
},
new()
{
@@ -2957,6 +3213,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Fervent Follower",
ImageFile = "Pontifex Dhabu.png",
+ Artist = "Simon Carr",
+ Rarity = "Rare",
},
new()
{
@@ -2974,6 +3232,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Seeker of Truth",
ImageFile = "Priestess Minia.png",
+ Artist = "Zed Edge",
+ Rarity = "Common",
},
new()
{
@@ -2992,6 +3252,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Shattersmith",
ImageFile = "Rift Mender Aris.png",
+ Artist = "TheLastEmber",
+ Rarity = "Common",
},
new()
{
@@ -3010,6 +3272,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Holder of the Instruments",
ImageFile = "Symphony of the Path.png",
+ Artist = "Simon Carr",
+ Rarity = "Common",
},
new()
{
@@ -3027,6 +3291,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Nonlethal Special Forces",
ImageFile = "The 'Stache.png",
+ Artist = "Zed Edge",
+ Rarity = "Divergent",
},
new()
{
@@ -3045,6 +3311,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Holy Cleaner",
ImageFile = "Violet Inquisitioner.png",
+ Artist = "Millena Ramos",
+ Rarity = "Common",
},
new()
{
@@ -3064,6 +3332,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Holy Cleaner",
ImageFile = "Violent Inquisitioner.png",
+ Artist = "Millena Ramos",
+ Rarity = "Common",
},
new()
{
@@ -3082,6 +3352,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Curious Acolyte",
ImageFile = "Zel, the First Diver.png",
+ Artist = "Kurt Daryll Ludaes",
+ Rarity = "Divergent",
},
new()
{
@@ -3099,6 +3371,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Somber Astronomer",
ImageFile = "A'kon, Starry Diviner.png",
+ Artist = "Kurt Daryll Ludaes",
+ Rarity = "Common",
},
new()
{
@@ -3116,6 +3390,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Destiny Ripper",
ImageFile = "Alina Who Cuts the Strings.png",
+ Artist = "BEIKI",
+ Rarity = "Common",
},
new()
{
@@ -3134,6 +3410,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Librarian's Assistant",
ImageFile = "Boof, the Listener.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -3152,6 +3430,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Death Jockey",
ImageFile = "Daville, the Star Song.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Divergent",
},
new()
{
@@ -3169,6 +3449,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Overburdened Scribe",
ImageFile = "Dhali, Bearer of Memories.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -3186,6 +3468,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Fuzzy Archivist",
ImageFile = "Greyl, the Problem.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -3203,6 +3487,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Solemn Attendant",
ImageFile = "Indara, the Candle.png",
+ Artist = "Simon Carr",
+ Rarity = "Divergent",
},
new()
{
@@ -3220,6 +3506,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Nameless Spirit",
ImageFile = "Khaela, the Vanished.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -3237,6 +3525,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "The Forgotten Tale",
ImageFile = "Shae'Fan, Remembered.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Lost",
},
new()
{
@@ -3256,6 +3546,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Sensory Deprivation Pod",
ImageFile = "Somnus, the Dreaming.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -3273,6 +3565,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Redactionist",
ImageFile = "Talia, Purger of Memory.png",
+ Artist = "Xtian.Art",
+ Rarity = "Rare",
},
new()
{
@@ -3291,6 +3585,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Telepathic Conduit",
ImageFile = "The Strand.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -3309,6 +3605,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Telepathic Scavenger",
ImageFile = "The Uncontained.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Common",
},
new()
{
@@ -3327,6 +3625,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Disciplined Student",
ImageFile = "True Believer.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -3345,6 +3645,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Braindead Bouncer",
ImageFile = "Wilfred, Lobotomizer.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Common",
},
new()
{
@@ -3362,6 +3664,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Forest Recluse",
ImageFile = "Witch of the Woods.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -3379,6 +3683,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Rotting Rocker",
ImageFile = "Ylka, the Headliner.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Divergent",
},
new()
{
@@ -3397,6 +3703,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Enhanced Retriever",
ImageFile = "B.O.O.F..png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -3414,6 +3722,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Enthusiastic Bot-Poke",
ImageFile = "Bill, First Point of Contact.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Rare",
},
new()
{
@@ -3432,6 +3742,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Enlightened Refugee",
ImageFile = "Bronk the Guide.png",
+ Artist = "Jeffrey Viloria",
+ Rarity = "Divergent",
},
new()
{
@@ -3451,6 +3763,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Efficient Scrapbot",
ImageFile = "E-Law, Boot Shepherd.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -3468,6 +3782,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Nascent Clone",
ImageFile = "Herald of the One.png",
+ Artist = "Romulo Reyes",
+ Rarity = "Lost",
},
new()
{
@@ -3487,6 +3803,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Rogue Amalgam",
ImageFile = "Mr. E.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -3505,6 +3823,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Scattered Helpers",
ImageFile = "Nanobot Hive.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Rare",
},
new()
{
@@ -3523,6 +3843,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Origination Engine",
ImageFile = "Overmind's Guilt.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -3541,6 +3863,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Fractal Phantasm",
ImageFile = "Quicksilver Khaela.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -3558,6 +3882,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Traffic Conductor",
ImageFile = "Raiz, Pacifist's Conclusion.png",
+ Artist = "Ritchie Cantuária",
+ Rarity = "Common",
},
new()
{
@@ -3578,6 +3904,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Recycler",
ImageFile = "Terraformer.png",
+ Artist = "Horugode",
+ Rarity = "Common",
},
new()
{
@@ -3595,6 +3923,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Awakened Security System",
ImageFile = "Wom, Sweet Wom.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -3614,6 +3944,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Roiling Amalgam",
ImageFile = "Ziv, the Adaptable.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -3631,6 +3963,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Scuttling Spares",
ImageFile = "Zorp, Unrecyclable.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -3648,6 +3982,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Hungry Engine",
ImageFile = "Armageddonaut.png",
+ Artist = "Simon Carr",
+ Rarity = "Divergent",
},
new()
{
@@ -3665,6 +4001,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Gilded Behemoth",
ImageFile = "Boatswain Corvus.png",
+ Artist = "Donnie Obina",
+ Rarity = "Lost",
},
new()
{
@@ -3682,6 +4020,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Pit Dog",
ImageFile = "Boof, the Champion.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -3700,6 +4040,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Persistent Squire",
ImageFile = "Brant the Bloody.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Common",
},
new()
{
@@ -3717,6 +4059,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Stalwart Champion",
ImageFile = "Enlightened Survivor.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -3734,6 +4078,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Painforger",
ImageFile = "Khaela the Hungry.png",
+ Artist = "G.C.",
+ Rarity = "Lost",
},
new()
{
@@ -3751,6 +4097,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Frontline Juggernaut",
ImageFile = "Kurian, the Breaker.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -3769,6 +4117,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Denizen of Flames",
ImageFile = "Magnus Lavaborn.png",
+ Artist = "um_predo",
+ Rarity = "Rare",
},
new()
{
@@ -3786,6 +4136,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Bloodline Tracker",
ImageFile = "Master of Ceremonies.png",
+ Artist = "Simon Carr",
+ Rarity = "Divergent",
},
new()
{
@@ -3804,6 +4156,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Red Reaper",
ImageFile = "Odol, the Red Death.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -3823,6 +4177,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Devoted Bloodletter",
ImageFile = "Opener of the Way.png",
+ Artist = "Simon Carr",
+ Rarity = "Rare",
},
new()
{
@@ -3840,6 +4196,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Bright-Eyed Supplicant",
ImageFile = "Overseer of Trials.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Rare",
},
new()
{
@@ -3857,6 +4215,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Bullseye Bounty Hunter",
ImageFile = "Sareh, Rebel Strategist.png",
+ Artist = "Zed Edge",
+ Rarity = "Rare",
},
new()
{
@@ -3874,6 +4234,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Glittering Gladiator",
ImageFile = "Scoot Sparkles.png",
+ Artist = "BEIKI",
+ Rarity = "Common",
},
new()
{
@@ -3891,6 +4253,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Toothy Pugilist",
ImageFile = "The Ripper.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -3909,6 +4273,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Blazing Shifter",
ImageFile = "The Unstoppable Flow.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Divergent",
},
new()
{
@@ -3926,6 +4292,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Brutal Reveler",
ImageFile = "Tyar, Benevolent Ruler.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Rare",
},
new()
{
@@ -3944,6 +4312,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Desperate Primordial",
ImageFile = "Vera, Original Proof.png",
+ Artist = "Xtian.Art",
+ Rarity = "Common",
},
new()
{
@@ -3961,6 +4331,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Jury of the Second Law",
ImageFile = "Chaos Conductor Boltz.png",
+ Artist = "Donnie Obina",
+ Rarity = "Divergent",
},
new()
{
@@ -3979,6 +4351,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Magmatic Tether",
ImageFile = "Clarion, Deepest Breath.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -3997,6 +4371,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Starfueled Medics",
ImageFile = "Doctor Mirthram Remora.png",
+ Artist = "ssunnyday",
+ Rarity = "Rare",
},
new()
{
@@ -4015,6 +4391,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Kinetic Absorber",
ImageFile = "Dyson, the Aspirant.png",
+ Artist = "Horugode",
+ Rarity = "Rare",
},
new()
{
@@ -4032,6 +4410,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Hidden Locus",
ImageFile = "Eruption Incarnate.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4049,6 +4429,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Lightsteel Colossus",
ImageFile = "Gentle Frank.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4066,6 +4448,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Gunnery Captain",
ImageFile = "Grand Admiral Khaela.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Rare",
},
new()
{
@@ -4084,6 +4468,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Planet Seeder",
ImageFile = "Kyln, the Dynasty.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Lost",
},
new()
{
@@ -4101,6 +4487,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Debris Collector",
ImageFile = "Living Comet.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Rare",
},
new()
{
@@ -4118,6 +4506,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Lumbering Starseeker",
ImageFile = "Luminous Vengeance.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -4135,6 +4525,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Swashbuckling Diehard",
ImageFile = "Malark, the Silver Wave.png",
+ Artist = "Zed Edge",
+ Rarity = "Rare",
},
new()
{
@@ -4153,6 +4545,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Limit Breaker",
ImageFile = "Malum, the Fist.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -4170,6 +4564,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Lightsteel Engineer",
ImageFile = "Mechanist Daedelus.png",
+ Artist = "Karl Angelo Brito",
+ Rarity = "Lost",
},
new()
{
@@ -4187,6 +4583,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Containment Breach",
ImageFile = "Penitent Star.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Divergent",
},
new()
{
@@ -4205,6 +4603,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Brilliant Martyr",
ImageFile = "Quaid, the Willing.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -4222,6 +4622,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Sunbringer Artillerist",
ImageFile = "Sali, Top Gunner.png",
+ Artist = "Xtian.Art",
+ Rarity = "Lost",
},
new()
{
@@ -4239,6 +4641,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Canine Adjutant",
ImageFile = "Specialist Boof.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4256,6 +4660,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Peaceful Synthesizer",
ImageFile = "Sungarden Protector.png",
+ Artist = "Xtian.Art",
+ Rarity = "Divergent",
},
new()
{
@@ -4275,6 +4681,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Devourer Spawn",
ImageFile = "Time Devourer Soval.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Lost",
},
new()
{
@@ -4293,6 +4701,8 @@ public static class CardDatabase
],
ImmortalizeFrom = "Suncursed Conduit",
ImageFile = "Vor’kon, Eternal Source.png",
+ Artist = "Xtian.Art",
+ Rarity = "Common",
},
new()
{
@@ -4306,6 +4716,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Affront to Nature.png",
+ Artist = "Donnie Obina",
+ Rarity = "Divergent",
},
new()
{
@@ -4319,6 +4731,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Bloom.png",
+ Artist = "Joyblivion",
+ Rarity = "Common",
},
new()
{
@@ -4332,6 +4746,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Chronosynthesis.png",
+ Artist = "Simon Carr",
+ Rarity = "Lost",
},
new()
{
@@ -4345,6 +4761,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Convergent Pack.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Divergent",
},
new()
{
@@ -4358,6 +4776,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Focused Adaptation.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -4371,6 +4791,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Mulch.png",
+ Artist = "Donnie Obina",
+ Rarity = "Common",
},
new()
{
@@ -4384,6 +4806,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Paradox Stimulator.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4397,6 +4821,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Rumpus.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -4410,6 +4836,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Scent the Prey.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Rare",
},
new()
{
@@ -4423,6 +4851,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Strength of the Grove.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -4436,6 +4866,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Symbiosis.png",
+ Artist = "Red Dragon Artwork",
+ Rarity = "Divergent",
},
new()
{
@@ -4449,6 +4881,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Throwdown.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -4462,6 +4896,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Uninhibited Expansion.png",
+ Artist = "Simon Carr",
+ Rarity = "Common",
},
new()
{
@@ -4475,6 +4911,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Unstoppable Growth.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Lost",
},
new()
{
@@ -4488,6 +4926,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Backhand.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -4501,6 +4941,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Balanced Blade.png",
+ Artist = "Jeffrey Viloria",
+ Rarity = "Rare",
},
new()
{
@@ -4514,6 +4956,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Blessed Soup.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -4527,6 +4971,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "By the Numbers.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4540,6 +4986,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Chronal Quarantine.png",
+ Artist = "Bi Pi",
+ Rarity = "Lost",
},
new()
{
@@ -4553,6 +5001,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Chronicle of the One.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Lost",
},
new()
{
@@ -4566,6 +5016,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Curb the Anomalies.png",
+ Artist = "Jeffrey Viloria",
+ Rarity = "Divergent",
},
new()
{
@@ -4579,6 +5031,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Invigorating Balm.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4592,6 +5046,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Out of Line.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -4605,6 +5061,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Paradox Flow.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Rare",
},
new()
{
@@ -4618,6 +5076,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Prayer of Rescue.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4631,6 +5091,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Rescind Authorization.png",
+ Artist = "TheLastEmber",
+ Rarity = "Rare",
},
new()
{
@@ -4644,6 +5106,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Set in Stone.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4657,6 +5121,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Snap Back.png",
+ Artist = "Simon Carr",
+ Rarity = "Rare",
},
new()
{
@@ -4670,6 +5136,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "The Firm Hand.png",
+ Artist = "TheLastEmber",
+ Rarity = "Common",
},
new()
{
@@ -4683,6 +5151,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Tidal Wave.png",
+ Artist = "TheLastEmber",
+ Rarity = "Lost",
},
new()
{
@@ -4696,6 +5166,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Appeal to the Scrolls.png",
+ Artist = "Nimesh N.",
+ Rarity = "Common",
},
new()
{
@@ -4709,6 +5181,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Bury the Evidence.png",
+ Artist = "Alec Aldeva",
+ Rarity = "Rare",
},
new()
{
@@ -4722,6 +5196,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Cascading Serenity.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Common",
},
new()
{
@@ -4735,6 +5211,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Gnosis.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Lost",
},
new()
{
@@ -4748,6 +5226,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Hush Now.png",
+ Artist = "Zed Edge",
+ Rarity = "Common",
},
new()
{
@@ -4761,6 +5241,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Mind Over Matter.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -4774,6 +5256,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Muffle.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -4787,6 +5271,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Not so Fast.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Rare",
},
new()
{
@@ -4800,6 +5286,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Paradox Plague.png",
+ Artist = "Artby.dre",
+ Rarity = "Divergent",
},
new()
{
@@ -4813,6 +5301,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Pressure Spike.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -4826,6 +5316,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Quiet Repose.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Divergent",
},
new()
{
@@ -4839,6 +5331,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Return to Stillness.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -4852,6 +5346,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Spirit's Lament.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Lost",
},
new()
{
@@ -4865,6 +5361,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Spread the Sickness.png",
+ Artist = "Artby.dre",
+ Rarity = "Rare",
},
new()
{
@@ -4878,6 +5376,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Aggressive Recycling.png",
+ Artist = "TheLastEmber",
+ Rarity = "Rare",
},
new()
{
@@ -4891,6 +5391,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Built to Burn.png",
+ Artist = "Donnie Obina",
+ Rarity = "Common",
},
new()
{
@@ -4904,6 +5406,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Chronal Scan.png",
+ Artist = "Bi Pi",
+ Rarity = "Divergent",
},
new()
{
@@ -4917,6 +5421,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Conscientious Overwrite.png",
+ Artist = "Donnie Obina",
+ Rarity = "Common",
},
new()
{
@@ -4930,6 +5436,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Frontline Fellowship.png",
+ Artist = "Bi Pi",
+ Rarity = "Rare",
},
new()
{
@@ -4943,6 +5451,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Headbanging.png",
+ Artist = "Zed Edge",
+ Rarity = "Common",
},
new()
{
@@ -4956,6 +5466,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Overclock.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Divergent",
},
new()
{
@@ -4969,6 +5481,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Paradox Analysis.png",
+ Artist = "TheLastEmber",
+ Rarity = "Rare",
},
new()
{
@@ -4982,6 +5496,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Pocket Dimension.png",
+ Artist = "Bi Pi",
+ Rarity = "Common",
},
new()
{
@@ -4995,6 +5511,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Rapid Iteration.png",
+ Artist = "Donnie Obina",
+ Rarity = "Common",
},
new()
{
@@ -5008,6 +5526,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Scouter Round.png",
+ Artist = "um_predo",
+ Rarity = "Common",
},
new()
{
@@ -5021,6 +5541,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Stability Control.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -5034,6 +5556,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Timestop.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Divergent",
},
new()
{
@@ -5047,6 +5571,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Timewarped Discombobulator.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Lost",
},
new()
{
@@ -5060,6 +5586,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Wake-Up Prod.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -5073,6 +5601,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "We Have Cookies.png",
+ Artist = "um_predo",
+ Rarity = "Lost",
},
new()
{
@@ -5086,6 +5616,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "What Could Be.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Divergent",
},
new()
{
@@ -5099,6 +5631,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Bathe in Flames.png",
+ Artist = "um_predo",
+ Rarity = "Common",
},
new()
{
@@ -5112,6 +5646,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Bloodbolt.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Common",
},
new()
{
@@ -5125,6 +5661,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Bloodlust.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -5138,6 +5676,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "BREAK AND SHATTER!.png",
+ Artist = "Donnie Obina",
+ Rarity = "Divergent",
},
new()
{
@@ -5151,6 +5691,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Channel Vigor.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -5164,6 +5706,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Circle of Strife.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Rare",
},
new()
{
@@ -5177,6 +5721,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Fueled by Pain.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Common",
},
new()
{
@@ -5190,6 +5736,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Go for the Heart.png",
+ Artist = "Donnie Obina",
+ Rarity = "Divergent",
},
new()
{
@@ -5203,6 +5751,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Ironblood Elixir.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Rare",
},
new()
{
@@ -5216,6 +5766,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Kintsu-Kai.png",
+ Artist = "TheLastEmber",
+ Rarity = "Common",
},
new()
{
@@ -5229,6 +5781,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Magmatic Teachings.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Lost",
},
new()
{
@@ -5242,6 +5796,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Paradox Cacophony.png",
+ Artist = "TheLastEmber",
+ Rarity = "Rare",
},
new()
{
@@ -5255,6 +5811,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Rebuild.png",
+ Artist = "Donnie Obina",
+ Rarity = "Common",
},
new()
{
@@ -5268,6 +5826,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Rippling Resplendence.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Lost",
},
new()
{
@@ -5281,6 +5841,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Sanguine Resurgence.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Rare",
},
new()
{
@@ -5294,6 +5856,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Army of the Sun.png",
+ Artist = "TheLastEmber",
+ Rarity = "Divergent",
},
new()
{
@@ -5307,6 +5871,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Chaos Control.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -5320,6 +5886,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Entropy's End.png",
+ Artist = "Julien Fenoglio",
+ Rarity = "Lost",
},
new()
{
@@ -5333,6 +5901,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Novathermal Mining.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Common",
},
new()
{
@@ -5346,6 +5916,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Paradox Capacitor.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Divergent",
},
new()
{
@@ -5359,6 +5931,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Radiant Channeling.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Rare",
},
new()
{
@@ -5372,6 +5946,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Soothing Glow.png",
+ Artist = "Donnie Obina",
+ Rarity = "Common",
},
new()
{
@@ -5385,6 +5961,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Sunshock.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -5398,6 +5976,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Supernova.png",
+ Artist = "Donnie Obina",
+ Rarity = "Rare",
},
new()
{
@@ -5411,6 +5991,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Throw into the Sun.png",
+ Artist = "Rhuan Gon",
+ Rarity = "Common",
},
new()
{
@@ -5424,6 +6006,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Unlocked Potential.png",
+ Artist = "Artby.dre",
+ Rarity = "Common",
},
new()
{
@@ -5501,6 +6085,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Seedling.png",
+ Artist = "Paul Takahashi",
+ Rarity = "Common",
},
new()
{
@@ -5515,6 +6101,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Wolf.png",
+ Artist = "Arthur Rosa",
+ Rarity = "Common",
},
new()
{
@@ -5529,6 +6117,8 @@ public static class CardDatabase
Archetypes = [
],
ImageFile = "Pocket Scout.png",
+ Artist = "um_predo",
+ Rarity = "Common",
}
];
}
diff --git a/Chrono/Shared/Generated/Decks.g.cs b/Chrono/Shared/Generated/Decks.g.cs
index c9d46d3..9f8f3fc 100644
--- a/Chrono/Shared/Generated/Decks.g.cs
+++ b/Chrono/Shared/Generated/Decks.g.cs
@@ -208,6 +208,68 @@ public static class DeckDatabase
DeckType = "store",
},
new()
+ {
+ Name = "Overflowing Security",
+ Cards = [
+ "Scattered Helpers",
+ "Scattered Helpers",
+ "Scattered Helpers",
+ "Awakened Security System",
+ "Awakened Security System",
+ "Traffic Conductor",
+ "Traffic Conductor",
+ "Traffic Conductor",
+ "Hidden Locus",
+ "Hidden Locus",
+ "Hidden Locus",
+ "Limit Breaker",
+ "Limit Breaker",
+ "Limit Breaker",
+ "Chronal Scan",
+ "Chronal Scan",
+ "Chaos Control",
+ "Chaos Control",
+ "Chaos Control",
+ "Frontline Fellowship",
+ "Frontline Fellowship",
+ "Frontline Fellowship",
+ "Timestop",
+ "Built to Burn",
+ "Built to Burn",
+ "Radiant Channeling",
+ "Radiant Channeling",
+ "Radiant Channeling",
+ "Supernova",
+ "Supernova",
+ "Supernova",
+ "Stability Control",
+ "Stability Control",
+ "Stability Control",
+ "Throw into the Sun",
+ "Throw into the Sun",
+ "Throw into the Sun",
+ "What Could Be",
+ "What Could Be",
+ "What Could Be",
+ ],
+ Keycards = [
+ "Limit Breaker",
+ "Awakened Security System",
+ ],
+ Divers = [
+ "Brilliant Martyr",
+ "Enthusiastic Bot-Poke",
+ ],
+ Description = "Built deck as a joke, but it kind of feels nuts in limited testing.\nMulligan everything for Radiant Channeling and Supernova. You are hoping that limited removal keeps you alive.\nIf they heavy buff something out from your removal range, you might still have enough reserve to Throw into the Sun that big target.\nIf you survive, start scaling your board with Awakened Security System or Limit Breaker.",
+ Factions = [
+ "Sungrace",
+ "Singularity",
+ ],
+ IsVisible = true,
+ DeckCode = "AUMU65TFOJTGY33XNFXGOICTMVRXK4TJOR4SAQ3POB4QWY3PNZZXI4TVMN2GKZBRACQAAANZAEBZEAI6AQFTSAYCAMOQGBADAEBQCAZ2AMCAGGQDAQBQCAY",
+ DeckType = "custom",
+ },
+ new()
{
Name = "Rewind Me",
Cards = [
diff --git a/Chrono/Shared/Generated/Docs.g.cs b/Chrono/Shared/Generated/Docs.g.cs
index 50b389b..613f52b 100644
--- a/Chrono/Shared/Generated/Docs.g.cs
+++ b/Chrono/Shared/Generated/Docs.g.cs
@@ -491,7 +491,7 @@ public static class DocDatabase
{
Title = "Daily Wins",
Category = "Quest",
- Content = "",
+ Content = "1: 30cc 30xp \n2: 20cc 25xp \n3: 20cc 20xp \n4: 10cc 20xp \n5: 10cc 15xp \n6-12 are all simply 5xp. \n\nSo the daily total win reward for 12 wins is 90cc/145xp.",
Frontmatter = new()
{
{ "category", "Quest" },
diff --git a/add_name_frontmatter.py b/add_name_frontmatter.py
new file mode 100644
index 0000000..fed5d04
--- /dev/null
+++ b/add_name_frontmatter.py
@@ -0,0 +1,62 @@
+import os
+
+CARD_ROOT = "chrono.docs"
+CATEGORIES = ["Agent", "Spell", "Immortalized", "Token"]
+
+card_files = []
+for cat in CATEGORIES:
+ cat_path = os.path.join(CARD_ROOT, cat)
+ if os.path.isdir(cat_path):
+ for root, dirs, files in os.walk(cat_path):
+ for f in sorted(files):
+ if f.endswith(".md"):
+ card_files.append(os.path.join(root, f))
+
+card_files.sort()
+print(f"Found {len(card_files)} card files")
+
+updated = 0
+skipped = 0
+
+for filepath in card_files:
+ name = os.path.basename(filepath).replace(".md", "")
+ with open(filepath, "r", encoding="utf-8") as f:
+ content = f.read()
+
+ if content.count("---") < 2:
+ print(f"SKIP (no frontmatter): {filepath}")
+ continue
+
+ front = content.split("---")[1]
+
+ has_name = False
+ for line in front.split("\n"):
+ if line.startswith("name:"):
+ has_name = True
+ break
+
+ if has_name:
+ skipped += 1
+ continue
+
+ lines = content.split("\n")
+ first_sep = None
+ for i, line in enumerate(lines):
+ if line.strip() == "---":
+ first_sep = i
+ break
+
+ if first_sep is None:
+ print(f"SKIP (no ---): {filepath}")
+ continue
+
+ new_lines = lines[:first_sep + 1]
+ new_lines.append(f"name: {name}")
+ new_lines.extend(lines[first_sep + 1:])
+
+ with open(filepath, "w", encoding="utf-8") as f:
+ f.write("\n".join(new_lines))
+
+ updated += 1
+
+print(f"Done. Updated: {updated}, Skipped (already had): {skipped}")
diff --git a/add_rarity_artist.py b/add_rarity_artist.py
new file mode 100644
index 0000000..e2738e3
--- /dev/null
+++ b/add_rarity_artist.py
@@ -0,0 +1,141 @@
+import os, re, json, urllib.request, urllib.error
+
+API_URL = "https://runeterra.ar/api/cards/get/en_us?game=chrono"
+HEADERS = {
+ "Content-Type": "application/json",
+ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
+}
+
+def normalize(name):
+ return name.lower().replace('"', "").replace("'", "").replace("\u2019", "'").replace("\u2018", "'").strip()
+
+CARD_ROOT = "chrono.docs"
+
+FACTION_DIRS = [
+ "Agent/[[Lifeblood]]", "Agent/[[Phasetide]]", "Agent/[[Splintergleam]]",
+ "Agent/[[Starshard]]", "Agent/[[Synthos]]", "Agent/[[Voidmen]]",
+ "Spell/[[Lifeblood]]", "Spell/[[Phasetide]]", "Spell/[[Splintergleam]]",
+ "Spell/[[Starshard]]", "Spell/[[Synthos]]", "Spell/[[Voidmen]]",
+ "Immortalized/[[Lifeblood]]", "Immortalized/[[Phasetide]]",
+ "Immortalized/[[Splintergleam]]", "Immortalized/[[Starshard]]",
+ "Immortalized/[[Synthos]]", "Immortalized/[[Voidmen]]",
+ "Token/[[Lifeblood]]", "Token/[[Phasetide]]",
+ "Token/[[Splintergleam]]", "Token/[[Starshard]]",
+ "Token/[[Synthos]]", "Token/[[Voidmen]]",
+]
+
+card_files = []
+for faction_dir in FACTION_DIRS:
+ full_path = os.path.join(CARD_ROOT, faction_dir)
+ if os.path.isdir(full_path):
+ for f in sorted(os.listdir(full_path)):
+ if f.endswith(".md"):
+ card_files.append(os.path.join(full_path, f))
+
+card_files.sort()
+print(f"Found {len(card_files)} card files")
+
+def fetch_card_data(card_name):
+ search_terms = [card_name]
+ first_word = card_name.split()[0] if card_name.split() else card_name
+ search_terms.append(first_word)
+ # Try searching for each word in the name
+ for word in card_name.split():
+ if word not in search_terms:
+ search_terms.append(word)
+ # Try searching for quoted form if name contains quotes
+ quoted = re.findall(r'"([^"]*)"', card_name)
+ if quoted:
+ search_terms.append(quoted[0])
+ # For "Violent", also try "Violet"
+ if "violent" in card_name.lower():
+ search_terms.append(card_name.lower().replace("violent", "Violet"))
+ search_terms.append("Violet")
+ seen = set()
+ for term in search_terms:
+ if term in seen:
+ continue
+ seen.add(term)
+ body = json.dumps({"search": term}).encode("utf-8")
+ req = urllib.request.Request(API_URL, data=body, headers=HEADERS)
+ try:
+ with urllib.request.urlopen(req, timeout=10) as resp:
+ data = json.loads(resp.read())
+ cards = data.get("cards", [])
+ if not cards:
+ continue
+ ncard_name = normalize(card_name)
+ for c in cards:
+ if normalize(c.get("name", "")) == ncard_name:
+ return c.get("rarity"), c.get("artistName")
+ for c in cards:
+ for ac in c.get("associatedCards", []):
+ if normalize(ac.get("name", "")) == ncard_name:
+ return ac.get("rarity"), ac.get("artistName")
+ for c in cards:
+ if ncard_name in normalize(c.get("name", "")) and c.get("type") != "Immortalized Agent":
+ return c.get("rarity"), c.get("artistName")
+ for c in cards:
+ for ac in c.get("associatedCards", []):
+ if ncard_name in normalize(ac.get("name", "")):
+ return ac.get("rarity"), ac.get("artistName")
+ except urllib.error.HTTPError as e:
+ err_body = e.read().decode()
+ print(f"[HTTP {e.code}] {err_body[:200]}", end=" ")
+ return None, None
+ return None, None
+
+not_found = []
+found_count = 0
+skipped_count = 0
+
+for i, filepath in enumerate(card_files, 1):
+ filename = os.path.basename(filepath).replace(".md", "")
+ print(f"[{i}/{len(card_files)}] {filename}...", end=" ")
+
+ with open(filepath, "r", encoding="utf-8") as f:
+ content = f.read()
+
+ # Check if rarity and artist already exist in frontmatter
+ if "rarity:" in content.split("---")[1].strip() if content.count("---") >= 2 else False:
+ # Extract existing values to print
+ front = content.split("---")[1]
+ r = ""
+ a = ""
+ for line in front.split("\n"):
+ if line.startswith("rarity:"):
+ r = line.split(":", 1)[1].strip()
+ if line.startswith("artist:"):
+ a = line.split(":", 1)[1].strip()
+ print(f"rarity={r}, artist={a} (skipped)")
+ skipped_count += 1
+ continue
+
+ rarity, artist = fetch_card_data(filename)
+
+ if rarity is None or artist is None:
+ print("NOT FOUND")
+ not_found.append(filename)
+ continue
+
+ print(f"rarity={rarity}, artist={artist}")
+
+ # Insert after 'category:' line
+ lines = content.split("\n")
+ new_lines = []
+ inserted = False
+ for line in lines:
+ new_lines.append(line)
+ if line.startswith("category:") and not inserted:
+ new_lines.append(f"rarity: {rarity}")
+ new_lines.append(f"artist: {artist}")
+ inserted = True
+ with open(filepath, "w", encoding="utf-8") as f:
+ f.write("\n".join(new_lines))
+ found_count += 1
+
+print(f"\nDone. Found+updated: {found_count}, Skipped (already had): {skipped_count}, Not found: {len(not_found)}")
+if not_found:
+ print("Not found cards:")
+ for n in not_found:
+ print(f" - {n}")
diff --git a/check_missing.py b/check_missing.py
new file mode 100644
index 0000000..7170066
--- /dev/null
+++ b/check_missing.py
@@ -0,0 +1,19 @@
+import json, urllib.request
+
+b = json.dumps({}).encode()
+r = urllib.request.Request(
+ "https://runeterra.ar/api/cards/get/en_us?game=chrono",
+ data=b,
+ headers={"Content-Type": "application/json", "User-Agent": "Mozilla/5.0"},
+)
+d = json.loads(urllib.request.urlopen(r, timeout=10).read())
+print(f"Total cards in default response: {len(d['cards'])}")
+
+for c in d["cards"]:
+ name = c["name"]
+ if "viol" in name.lower() or "scoot" in name.lower() or "ripper" in name.lower():
+ print(f"MATCH: {name} - {c['rarity']} - {c['artistName']}")
+ for ac in c.get("associatedCards", []):
+ acname = ac["name"]
+ if "viol" in acname.lower() or "scoot" in acname.lower() or "ripper" in acname.lower():
+ print(f" associated: {acname} - {ac['rarity']} - {ac['artistName']}")
diff --git a/check_missing2.py b/check_missing2.py
new file mode 100644
index 0000000..1086d52
--- /dev/null
+++ b/check_missing2.py
@@ -0,0 +1,18 @@
+import json, urllib.request
+
+searches = ["Violent", "Scoot", "Ripper", "Inquisitioner", "Sparkles"]
+HEADERS = {"Content-Type": "application/json", "User-Agent": "Mozilla/5.0"}
+
+for s in searches:
+ b = json.dumps({"search": s}).encode()
+ r = urllib.request.Request(
+ "https://runeterra.ar/api/cards/get/en_us?game=chrono",
+ data=b,
+ headers=HEADERS,
+ )
+ d = json.loads(urllib.request.urlopen(r, timeout=10).read())
+ print(f"Search '{s}': {len(d['cards'])} results")
+ for c in d["cards"]:
+ print(f" {c['name']} - {c['rarity']} - {c['artistName']}")
+ for ac in c.get("associatedCards", []):
+ print(f" ac: {ac['name']} - {ac['rarity']} - {ac['artistName']}")
diff --git a/check_missing3.py b/check_missing3.py
new file mode 100644
index 0000000..5e0f60a
--- /dev/null
+++ b/check_missing3.py
@@ -0,0 +1,46 @@
+import json, urllib.request
+
+HEADERS = {"Content-Type": "application/json", "User-Agent": "Mozilla/5.0"}
+
+# Search for Scoot Sparkles base form
+b = json.dumps({"search": "Scoot"}).encode()
+r = urllib.request.Request(
+ "https://runeterra.ar/api/cards/get/en_us?game=chrono",
+ data=b,
+ headers=HEADERS,
+)
+d = json.loads(urllib.request.urlopen(r, timeout=10).read())
+for c in d["cards"]:
+ print(f"Card: '{c['name']}'")
+ for ac in c.get("associatedCards", []):
+ print(f" Assoc: name='{ac['name']}', rarity={ac['rarity']}, artist={ac['artistName']}")
+
+print()
+
+# Search for Ripper
+b2 = json.dumps({"search": "Ripper"}).encode()
+r2 = urllib.request.Request(
+ "https://runeterra.ar/api/cards/get/en_us?game=chrono",
+ data=b2,
+ headers=HEADERS,
+)
+d2 = json.loads(urllib.request.urlopen(r2, timeout=10).read())
+for c in d2["cards"]:
+ print(f"Card: '{c['name']}'")
+ for ac in c.get("associatedCards", []):
+ print(f" Assoc: name='{ac['name']}', rarity={ac['rarity']}, artist={ac['artistName']}")
+
+print()
+
+# Search for Violent/Violet
+b3 = json.dumps({"search": "Inquisitioner"}).encode()
+r3 = urllib.request.Request(
+ "https://runeterra.ar/api/cards/get/en_us?game=chrono",
+ data=b3,
+ headers=HEADERS,
+)
+d3 = json.loads(urllib.request.urlopen(r3, timeout=10).read())
+for c in d3["cards"]:
+ print(f"Card: '{c['name']}'")
+ for ac in c.get("associatedCards", []):
+ print(f" Assoc: name='{ac['name']}', rarity={ac['rarity']}, artist={ac['artistName']}")
diff --git a/chrono.docs/.obsidian/workspace.json b/chrono.docs/.obsidian/workspace.json
index f877ef2..3397b4f 100644
--- a/chrono.docs/.obsidian/workspace.json
+++ b/chrono.docs/.obsidian/workspace.json
@@ -10,46 +10,18 @@
{
"id": "852a1aaf6b54ec43",
"type": "leaf",
- "state": {
- "type": "bases",
- "state": {
- "file": "_Store.base",
- "viewName": "Table"
- },
- "icon": "lucide-table",
- "title": "_Store"
- }
- },
- {
- "id": "711239c069fbdec8",
- "type": "leaf",
"state": {
"type": "markdown",
"state": {
- "file": "Rule/Energy Reserves.md",
+ "file": "Deck/Overflowing Security.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
- "title": "Energy Reserves"
- }
- },
- {
- "id": "a2a9bf0db5bd1fb6",
- "type": "leaf",
- "state": {
- "type": "markdown",
- "state": {
- "file": "Pass/Beta Season 1 Track.md",
- "mode": "source",
- "source": false
- },
- "icon": "lucide-file",
- "title": "Beta Season 1 Track"
+ "title": "Overflowing Security"
}
}
- ],
- "currentTab": 2
+ ]
}
],
"direction": "vertical"
@@ -81,7 +53,7 @@
"state": {
"type": "search",
"state": {
- "query": "deckType: store",
+ "query": "The Ripper",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
@@ -106,7 +78,8 @@
}
],
"direction": "horizontal",
- "width": 331.5
+ "width": 331.5,
+ "collapsed": true
},
"right": {
"id": "47f3bcd7aed212ab",
@@ -211,38 +184,37 @@
"bases:Create new base": false
}
},
- "active": "a2a9bf0db5bd1fb6",
+ "active": "852a1aaf6b54ec43",
"lastOpenFiles": [
- "Pass",
+ "Deck/Big Energy.md",
+ "Deck/Overflowing Security.md",
+ "Agent/[[Lifeblood]]/Aardvark Precinct Captain.md",
+ "Agent/[[Lifeblood]]/Egg Tender.md",
+ "Quest/Daily Wins.md",
+ "Quest/Deal 30 Damage with Overpower Agents.md",
+ "Quest/Weekly Wins.md",
+ "Quest/Overflow 10 Times.md",
+ "Rule/Slow.md",
+ "Rule/Energy Reserves.md",
"Pass/Onboarding Track.md",
"Pass/Beta Season 1 Track.md",
- "Rule/Energy Reserves.md",
+ "Pass",
"Keyword/Overflow.md",
- "_Store.base",
- "Faction/Sungrace.md",
- "Overload.md",
- "Faction/Splintergleam.md",
- "Faction/Phasetide.md",
- "Faction/Lifeblood.md",
- "Deck/Example.md",
- "Deck/Big Energy.md",
- "_Timeline.base",
- "Deck/Aggro.md",
- "Deck/Kyln Control.md",
- "Deck/Rewind.md",
- "Deck/Somnus Spam.md",
- "Deck/Sunbleed.md",
- "Deck/Untitled.md",
"Deck/Tempo Deplete.md",
- "Deck/Rewind Me.md",
- "Store/Core Set Packs x50.md",
+ "Deck/Sunbleed.md",
+ "Deck/Somnus Spam.md",
+ "Deck/Rewind.md",
+ "Deck/Kyln Control.md",
+ "Deck/Example.md",
+ "Deck/Aggro.md",
+ "Note.md",
+ "Rule/Immediate.md",
+ "Rule/Fast.md",
+ "_Store.base",
+ "_Timeline.base",
"Store/Core Set Packs x1.md",
- "_Spells.base",
- "Rule/Slow.md",
- "Speed/Slow.md",
- "Speed/Immediate.md",
- "Speed/Fast.md",
- "Speed",
+ "Store/Core Set Packs x5.md",
+ "Store/Core Set Packs x10.md",
"_Quests.base",
"Quest",
"Store",
@@ -250,6 +222,7 @@
"_Factions.base",
"Decks/Rewind Me.canvas",
"_Debuff.base",
+ "_Keyword.base",
"images/Wolf.png",
"images/Seedling.png",
"images/Pocket Scout.png",
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Aardvark Precinct Captain.md b/chrono.docs/Agent/[[Lifeblood]]/Aardvark Precinct Captain.md
index 70f82f9..d8070cf 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Aardvark Precinct Captain.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Aardvark Precinct Captain.md
@@ -1,5 +1,8 @@
---
+name: Aardvark Precinct Captain
category: Agent
+artist: Arthur Rosa
+rarity: Divergent
cost: 2
attack: 0
health: 1
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Burrowing Beetles.md b/chrono.docs/Agent/[[Lifeblood]]/Burrowing Beetles.md
index 47a5bdd..43fbc93 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Burrowing Beetles.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Burrowing Beetles.md
@@ -1,5 +1,8 @@
---
+name: Burrowing Beetles
category: Agent
+artist: Arthur Rosa
+rarity: Common
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Egg Tender.md b/chrono.docs/Agent/[[Lifeblood]]/Egg Tender.md
index d94909a..e54c776 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Egg Tender.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Egg Tender.md
@@ -1,5 +1,8 @@
---
+name: Egg Tender
category: Agent
+artist: BEIKI
+rarity: Divergent
cost: 1
attack: 0
health: 1
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Fervent Mycologist.md b/chrono.docs/Agent/[[Lifeblood]]/Fervent Mycologist.md
index 8a8c5c9..626e4c5 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Fervent Mycologist.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Fervent Mycologist.md
@@ -1,5 +1,8 @@
---
+name: Fervent Mycologist
category: Agent
+artist: Guilherme Faria
+rarity: Common
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Gardener Apprentice.md b/chrono.docs/Agent/[[Lifeblood]]/Gardener Apprentice.md
index 52de945..a0fe11c 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Gardener Apprentice.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Gardener Apprentice.md
@@ -1,5 +1,8 @@
---
+name: Gardener Apprentice
category: Agent
+artist: Bi Pi
+rarity: Divergent
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Glade Grazers.md b/chrono.docs/Agent/[[Lifeblood]]/Glade Grazers.md
index 839f259..01f28e0 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Glade Grazers.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Glade Grazers.md
@@ -1,5 +1,8 @@
---
+name: Glade Grazers
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 0
health: 1
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Glasswinged Monarch.md b/chrono.docs/Agent/[[Lifeblood]]/Glasswinged Monarch.md
index 3ac35ca..49fb7ff 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Glasswinged Monarch.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Glasswinged Monarch.md
@@ -1,5 +1,8 @@
---
+name: Glasswinged Monarch
category: Agent
+artist: Kurt Daryll Ludaes
+rarity: Lost
cost: 6
attack: 4
health: 4
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Harbinger of Power.md b/chrono.docs/Agent/[[Lifeblood]]/Harbinger of Power.md
index fcd6392..012d5aa 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Harbinger of Power.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Harbinger of Power.md
@@ -1,5 +1,8 @@
---
+name: Harbinger of Power
category: Agent
+artist: Karl Angelo Brito
+rarity: Common
cost: 5
attack: 5
health: 5
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Hungry Tyrannosaur.md b/chrono.docs/Agent/[[Lifeblood]]/Hungry Tyrannosaur.md
index f9bc430..5291767 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Hungry Tyrannosaur.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Hungry Tyrannosaur.md
@@ -1,5 +1,8 @@
---
+name: Hungry Tyrannosaur
category: Agent
+artist: Paul Takahashi
+rarity: Common
cost: 8
attack: 8
health: 7
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Panicked Refugee.md b/chrono.docs/Agent/[[Lifeblood]]/Panicked Refugee.md
index df037e9..1568658 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Panicked Refugee.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Panicked Refugee.md
@@ -1,5 +1,8 @@
---
+name: Panicked Refugee
category: Agent
+artist: Karl Angelo Brito
+rarity: Common
cost: 3
attack: 2
health: 2
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Pterosaur Rider.md b/chrono.docs/Agent/[[Lifeblood]]/Pterosaur Rider.md
index 2b609e1..56708c0 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Pterosaur Rider.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Pterosaur Rider.md
@@ -1,5 +1,8 @@
---
+name: Pterosaur Rider
category: Agent
+artist: Paul Takahashi
+rarity: Rare
cost: 4
attack: 3
health: 3
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Sap Sapper.md b/chrono.docs/Agent/[[Lifeblood]]/Sap Sapper.md
index c59b9d6..0af95d3 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Sap Sapper.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Sap Sapper.md
@@ -1,5 +1,8 @@
---
+name: Sap Sapper
category: Agent
+artist: Arthur Rosa
+rarity: Lost
cost: 4
attack: 2
health: 4
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Sapling Dryad.md b/chrono.docs/Agent/[[Lifeblood]]/Sapling Dryad.md
index 0087a80..761d1bd 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Sapling Dryad.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Sapling Dryad.md
@@ -1,5 +1,8 @@
---
+name: Sapling Dryad
category: Agent
+artist: Arthur Rosa
+rarity: Lost
cost: 2
attack: 1
health: 2
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Sleepy Druid.md b/chrono.docs/Agent/[[Lifeblood]]/Sleepy Druid.md
index 000ea57..d8497aa 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Sleepy Druid.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Sleepy Druid.md
@@ -1,5 +1,8 @@
---
+name: Sleepy Druid
category: Agent
+artist: BEIKI
+rarity: Rare
cost: 3
attack: 2
health: 2
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Spark of Bounty.md b/chrono.docs/Agent/[[Lifeblood]]/Spark of Bounty.md
index 3ee3387..a169558 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Spark of Bounty.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Spark of Bounty.md
@@ -1,5 +1,8 @@
---
+name: Spark of Bounty
category: Agent
+artist: Paul Takahashi
+rarity: Rare
cost: 5
attack: 4
health: 4
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Territorial Pack.md b/chrono.docs/Agent/[[Lifeblood]]/Territorial Pack.md
index f638fa1..ec9ef90 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Territorial Pack.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Territorial Pack.md
@@ -1,5 +1,8 @@
---
+name: Territorial Pack
category: Agent
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 1
health: 2
diff --git a/chrono.docs/Agent/[[Lifeblood]]/Zealot of the Hunt.md b/chrono.docs/Agent/[[Lifeblood]]/Zealot of the Hunt.md
index b69c9b5..a9408c8 100644
--- a/chrono.docs/Agent/[[Lifeblood]]/Zealot of the Hunt.md
+++ b/chrono.docs/Agent/[[Lifeblood]]/Zealot of the Hunt.md
@@ -1,5 +1,8 @@
---
+name: Zealot of the Hunt
category: Agent
+artist: Karl Angelo Brito
+rarity: Divergent
cost: 6
attack: 7
health: 5
diff --git a/chrono.docs/Agent/[[Phasetide]]/Bareknuckle Inquisitor.md b/chrono.docs/Agent/[[Phasetide]]/Bareknuckle Inquisitor.md
index 9fcf8ac..3dbcab0 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Bareknuckle Inquisitor.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Bareknuckle Inquisitor.md
@@ -1,5 +1,8 @@
---
+name: Bareknuckle Inquisitor
category: Agent
+artist: Arthur Rosa
+rarity: Divergent
cost: 5
attack: 3
health: 8
diff --git a/chrono.docs/Agent/[[Phasetide]]/Bearer of the Broth.md b/chrono.docs/Agent/[[Phasetide]]/Bearer of the Broth.md
index ad18048..39f1e03 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Bearer of the Broth.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Bearer of the Broth.md
@@ -1,5 +1,8 @@
---
+name: Bearer of the Broth
category: Agent
+artist: Jeffrey Viloria
+rarity: Rare
cost: 4
attack: 2
health: 4
diff --git a/chrono.docs/Agent/[[Phasetide]]/Curious Acolyte.md b/chrono.docs/Agent/[[Phasetide]]/Curious Acolyte.md
index 140eee4..3378060 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Curious Acolyte.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Curious Acolyte.md
@@ -1,5 +1,8 @@
---
+name: Curious Acolyte
category: Agent
+artist: Kurt Daryll Ludaes
+rarity: Divergent
description: When I am [[Phased]] or [[Rewound]], [[Draw]] 1.
immortalizeWhen: I am [[Phased]] or [[Rewound]].
immortalizeTo: "[[Zel, the First Diver]]"
diff --git a/chrono.docs/Agent/[[Phasetide]]/Divergence Assassin.md b/chrono.docs/Agent/[[Phasetide]]/Divergence Assassin.md
index 5fbed3d..66047b1 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Divergence Assassin.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Divergence Assassin.md
@@ -1,5 +1,8 @@
---
+name: Divergence Assassin
category: Agent
+artist: Arthur Rosa
+rarity: Lost
cost: 6
attack: 6
health: 3
diff --git a/chrono.docs/Agent/[[Phasetide]]/Fervent Follower.md b/chrono.docs/Agent/[[Phasetide]]/Fervent Follower.md
index 4b75724..e5f2495 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Fervent Follower.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Fervent Follower.md
@@ -1,5 +1,8 @@
---
+name: Fervent Follower
category: Agent
+artist: Simon Carr
+rarity: Rare
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Agent/[[Phasetide]]/Heretic Whistleblower.md b/chrono.docs/Agent/[[Phasetide]]/Heretic Whistleblower.md
index 0e07f62..15a455a 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Heretic Whistleblower.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Heretic Whistleblower.md
@@ -1,5 +1,8 @@
---
+name: Heretic Whistleblower
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 3
attack: 2
health: 4
diff --git a/chrono.docs/Agent/[[Phasetide]]/Holder of the Instruments.md b/chrono.docs/Agent/[[Phasetide]]/Holder of the Instruments.md
index bc26f2b..f5889a2 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Holder of the Instruments.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Holder of the Instruments.md
@@ -1,5 +1,8 @@
---
+name: Holder of the Instruments
category: Agent
+artist: Simon Carr
+rarity: Common
cost: 1
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Phasetide]]/Holy Cleaner.md b/chrono.docs/Agent/[[Phasetide]]/Holy Cleaner.md
index 37d486b..cffb00e 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Holy Cleaner.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Holy Cleaner.md
@@ -1,5 +1,8 @@
---
+name: Holy Cleaner
category: Agent
+artist: Millena Ramos
+rarity: Common
cost: 3
attack: 2
health: 3
diff --git a/chrono.docs/Agent/[[Phasetide]]/Karmic Debtor.md b/chrono.docs/Agent/[[Phasetide]]/Karmic Debtor.md
index d84f157..b9e0ff1 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Karmic Debtor.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Karmic Debtor.md
@@ -1,5 +1,8 @@
---
+name: Karmic Debtor
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 4
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Phasetide]]/Nonlethal Special Forces.md b/chrono.docs/Agent/[[Phasetide]]/Nonlethal Special Forces.md
index a816b5c..20a190f 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Nonlethal Special Forces.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Nonlethal Special Forces.md
@@ -1,5 +1,8 @@
---
+name: Nonlethal Special Forces
category: Agent
+artist: Zed Edge
+rarity: Divergent
cost: 4
attack: 3
health: 3
diff --git a/chrono.docs/Agent/[[Phasetide]]/Seeker of Truth.md b/chrono.docs/Agent/[[Phasetide]]/Seeker of Truth.md
index a38a333..c243cb7 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Seeker of Truth.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Seeker of Truth.md
@@ -1,5 +1,8 @@
---
+name: Seeker of Truth
category: Agent
+artist: Zed Edge
+rarity: Common
cost: 2
attack: 2
health: 6
diff --git a/chrono.docs/Agent/[[Phasetide]]/Shattersmith.md b/chrono.docs/Agent/[[Phasetide]]/Shattersmith.md
index a192903..4d1e6b1 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Shattersmith.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Shattersmith.md
@@ -1,5 +1,8 @@
---
+name: Shattersmith
category: Agent
+artist: TheLastEmber
+rarity: Common
cost: 3
attack: 5
health: 5
diff --git a/chrono.docs/Agent/[[Phasetide]]/Slow Convert.md b/chrono.docs/Agent/[[Phasetide]]/Slow Convert.md
index 4929725..86b80ed 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Slow Convert.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Slow Convert.md
@@ -1,5 +1,8 @@
---
+name: Slow Convert
category: Agent
+artist: Xtian.Art
+rarity: Divergent
cost: 6
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Phasetide]]/Stern Arbiter.md b/chrono.docs/Agent/[[Phasetide]]/Stern Arbiter.md
index 60e9620..829b562 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Stern Arbiter.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Stern Arbiter.md
@@ -1,5 +1,8 @@
---
+name: Stern Arbiter
category: Agent
+artist: Simon Carr
+rarity: Lost
cost: 7
attack: 5
health: 5
diff --git a/chrono.docs/Agent/[[Phasetide]]/Temple Analyst.md b/chrono.docs/Agent/[[Phasetide]]/Temple Analyst.md
index cbc8797..476cbe4 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Temple Analyst.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Temple Analyst.md
@@ -1,5 +1,8 @@
---
+name: Temple Analyst
category: Agent
+artist: Xtian.Art
+rarity: Divergent
cost: 2
attack: 2
health: 3
diff --git a/chrono.docs/Agent/[[Phasetide]]/Temple Guard Hound.md b/chrono.docs/Agent/[[Phasetide]]/Temple Guard Hound.md
index a250bb2..3852cb4 100644
--- a/chrono.docs/Agent/[[Phasetide]]/Temple Guard Hound.md
+++ b/chrono.docs/Agent/[[Phasetide]]/Temple Guard Hound.md
@@ -1,5 +1,8 @@
---
+name: Temple Guard Hound
category: Agent
+artist: Bi Pi
+rarity: Common
cost: 1
attack: 2
health: 5
diff --git a/chrono.docs/Agent/[[Silence]]/Braindead Bouncer.md b/chrono.docs/Agent/[[Silence]]/Braindead Bouncer.md
index e49fd25..d4d2c1d 100644
--- a/chrono.docs/Agent/[[Silence]]/Braindead Bouncer.md
+++ b/chrono.docs/Agent/[[Silence]]/Braindead Bouncer.md
@@ -1,5 +1,8 @@
---
+name: Braindead Bouncer
category: Agent
+artist: Romulo Reyes
+rarity: Common
cost: 1
attack: 3
health: 2
diff --git a/chrono.docs/Agent/[[Silence]]/Death Jockey.md b/chrono.docs/Agent/[[Silence]]/Death Jockey.md
index 8021f4e..16c2f4d 100644
--- a/chrono.docs/Agent/[[Silence]]/Death Jockey.md
+++ b/chrono.docs/Agent/[[Silence]]/Death Jockey.md
@@ -1,5 +1,8 @@
---
+name: Death Jockey
category: Agent
+artist: Romulo Reyes
+rarity: Lost
cost: 5
attack: 4
health: 4
diff --git a/chrono.docs/Agent/[[Silence]]/Destiny Ripper.md b/chrono.docs/Agent/[[Silence]]/Destiny Ripper.md
index 645a583..67926f2 100644
--- a/chrono.docs/Agent/[[Silence]]/Destiny Ripper.md
+++ b/chrono.docs/Agent/[[Silence]]/Destiny Ripper.md
@@ -1,5 +1,8 @@
---
+name: Destiny Ripper
category: Agent
+artist: BEIKI
+rarity: Common
cost: 4
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Silence]]/Disciplined Student.md b/chrono.docs/Agent/[[Silence]]/Disciplined Student.md
index bfaf78f..371a1b3 100644
--- a/chrono.docs/Agent/[[Silence]]/Disciplined Student.md
+++ b/chrono.docs/Agent/[[Silence]]/Disciplined Student.md
@@ -1,5 +1,8 @@
---
+name: Disciplined Student
category: Agent
+artist: Bi Pi
+rarity: Divergent
cost: 3
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Silence]]/Forest Recluse.md b/chrono.docs/Agent/[[Silence]]/Forest Recluse.md
index 4f00ba5..946fcc2 100644
--- a/chrono.docs/Agent/[[Silence]]/Forest Recluse.md
+++ b/chrono.docs/Agent/[[Silence]]/Forest Recluse.md
@@ -1,5 +1,8 @@
---
+name: Forest Recluse
category: Agent
+artist: Paul Takahashi
+rarity: Common
cost: 3
attack: 3
health: 2
diff --git a/chrono.docs/Agent/[[Silence]]/Fuzzy Archivist.md b/chrono.docs/Agent/[[Silence]]/Fuzzy Archivist.md
index 9da8a12..4be1683 100644
--- a/chrono.docs/Agent/[[Silence]]/Fuzzy Archivist.md
+++ b/chrono.docs/Agent/[[Silence]]/Fuzzy Archivist.md
@@ -1,5 +1,8 @@
---
+name: Fuzzy Archivist
category: Agent
+artist: Bi Pi
+rarity: Divergent
cost: 4
attack: 1
health: 3
diff --git a/chrono.docs/Agent/[[Silence]]/Librarian's Assistant.md b/chrono.docs/Agent/[[Silence]]/Librarian's Assistant.md
index 0ebedb2..25d3902 100644
--- a/chrono.docs/Agent/[[Silence]]/Librarian's Assistant.md
+++ b/chrono.docs/Agent/[[Silence]]/Librarian's Assistant.md
@@ -1,5 +1,8 @@
---
+name: Librarian's Assistant
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Silence]]/Nameless Spirit.md b/chrono.docs/Agent/[[Silence]]/Nameless Spirit.md
index f79629d..369985c 100644
--- a/chrono.docs/Agent/[[Silence]]/Nameless Spirit.md
+++ b/chrono.docs/Agent/[[Silence]]/Nameless Spirit.md
@@ -1,5 +1,8 @@
---
+name: Nameless Spirit
category: Agent
+artist: Paul Takahashi
+rarity: Common
cost: 2
attack: 3
health: 2
diff --git a/chrono.docs/Agent/[[Silence]]/Overburdened Scribe.md b/chrono.docs/Agent/[[Silence]]/Overburdened Scribe.md
index cddf670..6eb1481 100644
--- a/chrono.docs/Agent/[[Silence]]/Overburdened Scribe.md
+++ b/chrono.docs/Agent/[[Silence]]/Overburdened Scribe.md
@@ -1,5 +1,8 @@
---
+name: Overburdened Scribe
category: Agent
+artist: Arthur Rosa
+rarity: Lost
cost: 6
attack: 3
health: 4
diff --git a/chrono.docs/Agent/[[Silence]]/Redactionist.md b/chrono.docs/Agent/[[Silence]]/Redactionist.md
index 839808f..e4b0c8c 100644
--- a/chrono.docs/Agent/[[Silence]]/Redactionist.md
+++ b/chrono.docs/Agent/[[Silence]]/Redactionist.md
@@ -1,5 +1,8 @@
---
+name: Redactionist
category: Agent
+artist: Xtian.Art
+rarity: Rare
cost: 4
attack: 4
health: 1
diff --git a/chrono.docs/Agent/[[Silence]]/Rotting Rocker.md b/chrono.docs/Agent/[[Silence]]/Rotting Rocker.md
index 390f89a..c52e127 100644
--- a/chrono.docs/Agent/[[Silence]]/Rotting Rocker.md
+++ b/chrono.docs/Agent/[[Silence]]/Rotting Rocker.md
@@ -1,5 +1,8 @@
---
+name: Rotting Rocker
category: Agent
+artist: Paul Takahashi
+rarity: Divergent
cost: 3
attack: 3
health: 1
diff --git a/chrono.docs/Agent/[[Silence]]/Sensory Deprivation Pod.md b/chrono.docs/Agent/[[Silence]]/Sensory Deprivation Pod.md
index 08c4ab2..077224c 100644
--- a/chrono.docs/Agent/[[Silence]]/Sensory Deprivation Pod.md
+++ b/chrono.docs/Agent/[[Silence]]/Sensory Deprivation Pod.md
@@ -1,5 +1,8 @@
---
+name: Sensory Deprivation Pod
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 5
attack: 2
health: 3
diff --git a/chrono.docs/Agent/[[Silence]]/Solemn Attendant.md b/chrono.docs/Agent/[[Silence]]/Solemn Attendant.md
index 1dc279a..0a8c41f 100644
--- a/chrono.docs/Agent/[[Silence]]/Solemn Attendant.md
+++ b/chrono.docs/Agent/[[Silence]]/Solemn Attendant.md
@@ -1,5 +1,8 @@
---
+name: Solemn Attendant
category: Agent
+artist: Simon Carr
+rarity: Divergent
cost: 6
attack: 3
health: 3
diff --git a/chrono.docs/Agent/[[Silence]]/Somber Astronomer.md b/chrono.docs/Agent/[[Silence]]/Somber Astronomer.md
index f7dd9cd..b68147c 100644
--- a/chrono.docs/Agent/[[Silence]]/Somber Astronomer.md
+++ b/chrono.docs/Agent/[[Silence]]/Somber Astronomer.md
@@ -1,5 +1,8 @@
---
+name: Somber Astronomer
category: Agent
+artist: Kurt Daryll Ludaes
+rarity: Common
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Agent/[[Silence]]/Telepathic Conduit.md b/chrono.docs/Agent/[[Silence]]/Telepathic Conduit.md
index 920eccd..0a7d13c 100644
--- a/chrono.docs/Agent/[[Silence]]/Telepathic Conduit.md
+++ b/chrono.docs/Agent/[[Silence]]/Telepathic Conduit.md
@@ -1,5 +1,8 @@
---
+name: Telepathic Conduit
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 1
health: 2
diff --git a/chrono.docs/Agent/[[Silence]]/Telepathic Scavenger.md b/chrono.docs/Agent/[[Silence]]/Telepathic Scavenger.md
index 849827e..551086f 100644
--- a/chrono.docs/Agent/[[Silence]]/Telepathic Scavenger.md
+++ b/chrono.docs/Agent/[[Silence]]/Telepathic Scavenger.md
@@ -1,5 +1,8 @@
---
+name: Telepathic Scavenger
category: Agent
+artist: Rhuan Gon
+rarity: Common
cost: 4
attack: 2
health: 3
diff --git a/chrono.docs/Agent/[[Silence]]/The Forgotten Tale.md b/chrono.docs/Agent/[[Silence]]/The Forgotten Tale.md
index 805afd8..269a676 100644
--- a/chrono.docs/Agent/[[Silence]]/The Forgotten Tale.md
+++ b/chrono.docs/Agent/[[Silence]]/The Forgotten Tale.md
@@ -1,5 +1,8 @@
---
+name: The Forgotten Tale
category: Agent
+artist: Romulo Reyes
+rarity: Lost
cost: 6
attack: 3
health: 7
diff --git a/chrono.docs/Agent/[[Singularity]]/Awakened Security System.md b/chrono.docs/Agent/[[Singularity]]/Awakened Security System.md
index a382b09..2db1c71 100644
--- a/chrono.docs/Agent/[[Singularity]]/Awakened Security System.md
+++ b/chrono.docs/Agent/[[Singularity]]/Awakened Security System.md
@@ -1,5 +1,8 @@
---
+name: Awakened Security System
category: Agent
+artist: Bi Pi
+rarity: Divergent
cost: 2
attack: 1
health: 3
diff --git a/chrono.docs/Agent/[[Singularity]]/Efficient Scrapbot.md b/chrono.docs/Agent/[[Singularity]]/Efficient Scrapbot.md
index 756f430..08f297c 100644
--- a/chrono.docs/Agent/[[Singularity]]/Efficient Scrapbot.md
+++ b/chrono.docs/Agent/[[Singularity]]/Efficient Scrapbot.md
@@ -1,5 +1,8 @@
---
+name: Efficient Scrapbot
category: Agent
+artist: Arthur Rosa
+rarity: Common
cost: 1
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Singularity]]/Enhanced Retriever.md b/chrono.docs/Agent/[[Singularity]]/Enhanced Retriever.md
index 694bcdf..137df33 100644
--- a/chrono.docs/Agent/[[Singularity]]/Enhanced Retriever.md
+++ b/chrono.docs/Agent/[[Singularity]]/Enhanced Retriever.md
@@ -1,5 +1,8 @@
---
+name: Enhanced Retriever
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Singularity]]/Enlightened Refugee.md b/chrono.docs/Agent/[[Singularity]]/Enlightened Refugee.md
index fc49fa8..dd0a4fe 100644
--- a/chrono.docs/Agent/[[Singularity]]/Enlightened Refugee.md
+++ b/chrono.docs/Agent/[[Singularity]]/Enlightened Refugee.md
@@ -1,5 +1,8 @@
---
+name: Enlightened Refugee
category: Agent
+artist: Jeffrey Viloria
+rarity: Divergent
cost: 3
attack: 2
health: 2
diff --git a/chrono.docs/Agent/[[Singularity]]/Enthusiastic Bot-Poke.md b/chrono.docs/Agent/[[Singularity]]/Enthusiastic Bot-Poke.md
index 1e8b2dd..cb0df98 100644
--- a/chrono.docs/Agent/[[Singularity]]/Enthusiastic Bot-Poke.md
+++ b/chrono.docs/Agent/[[Singularity]]/Enthusiastic Bot-Poke.md
@@ -1,5 +1,8 @@
---
+name: Enthusiastic Bot-Poke
category: Agent
+artist: Romulo Reyes
+rarity: Rare
cost: 4
attack: 2
health: 3
diff --git a/chrono.docs/Agent/[[Singularity]]/Fractal Phantasm.md b/chrono.docs/Agent/[[Singularity]]/Fractal Phantasm.md
index d947c6c..580f48f 100644
--- a/chrono.docs/Agent/[[Singularity]]/Fractal Phantasm.md
+++ b/chrono.docs/Agent/[[Singularity]]/Fractal Phantasm.md
@@ -1,5 +1,8 @@
---
+name: Fractal Phantasm
category: Agent
+artist: Arthur Rosa
+rarity: Lost
cost: 2
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Singularity]]/Nascent Clone.md b/chrono.docs/Agent/[[Singularity]]/Nascent Clone.md
index 3c8cdd2..2049355 100644
--- a/chrono.docs/Agent/[[Singularity]]/Nascent Clone.md
+++ b/chrono.docs/Agent/[[Singularity]]/Nascent Clone.md
@@ -1,5 +1,8 @@
---
+name: Nascent Clone
category: Agent
+artist: Romulo Reyes
+rarity: Lost
cost: 4
attack: 1
health: 3
diff --git a/chrono.docs/Agent/[[Singularity]]/Origination Engine.md b/chrono.docs/Agent/[[Singularity]]/Origination Engine.md
index 6ab740e..97e9825 100644
--- a/chrono.docs/Agent/[[Singularity]]/Origination Engine.md
+++ b/chrono.docs/Agent/[[Singularity]]/Origination Engine.md
@@ -1,5 +1,8 @@
---
+name: Origination Engine
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 8
attack: 6
health: 6
diff --git a/chrono.docs/Agent/[[Singularity]]/Recycler.md b/chrono.docs/Agent/[[Singularity]]/Recycler.md
index 7557c72..e851880 100644
--- a/chrono.docs/Agent/[[Singularity]]/Recycler.md
+++ b/chrono.docs/Agent/[[Singularity]]/Recycler.md
@@ -1,5 +1,8 @@
---
+name: Recycler
category: Agent
+artist: Horugode
+rarity: Common
cost: 4
attack: 2
health: 4
diff --git a/chrono.docs/Agent/[[Singularity]]/Rogue Amalgam.md b/chrono.docs/Agent/[[Singularity]]/Rogue Amalgam.md
index d11b379..cb08840 100644
--- a/chrono.docs/Agent/[[Singularity]]/Rogue Amalgam.md
+++ b/chrono.docs/Agent/[[Singularity]]/Rogue Amalgam.md
@@ -1,5 +1,8 @@
---
+name: Rogue Amalgam
category: Agent
+artist: Arthur Rosa
+rarity: Lost
cost: 7
attack: 3
health: 5
diff --git a/chrono.docs/Agent/[[Singularity]]/Roiling Amalgam.md b/chrono.docs/Agent/[[Singularity]]/Roiling Amalgam.md
index c398f29..fce7773 100644
--- a/chrono.docs/Agent/[[Singularity]]/Roiling Amalgam.md
+++ b/chrono.docs/Agent/[[Singularity]]/Roiling Amalgam.md
@@ -1,5 +1,8 @@
---
+name: Roiling Amalgam
category: Agent
+artist: BEIKI
+rarity: Rare
cost: 5
attack: 3
health: 5
diff --git a/chrono.docs/Agent/[[Singularity]]/Scattered Helpers.md b/chrono.docs/Agent/[[Singularity]]/Scattered Helpers.md
index cf7dc9b..b295ba3 100644
--- a/chrono.docs/Agent/[[Singularity]]/Scattered Helpers.md
+++ b/chrono.docs/Agent/[[Singularity]]/Scattered Helpers.md
@@ -1,5 +1,8 @@
---
+name: Scattered Helpers
category: Agent
+artist: Arthur Rosa
+rarity: Rare
cost: 2
attack: 0
health: 4
diff --git a/chrono.docs/Agent/[[Singularity]]/Scuttling Spares.md b/chrono.docs/Agent/[[Singularity]]/Scuttling Spares.md
index eb77426..488cfda 100644
--- a/chrono.docs/Agent/[[Singularity]]/Scuttling Spares.md
+++ b/chrono.docs/Agent/[[Singularity]]/Scuttling Spares.md
@@ -1,5 +1,8 @@
---
+name: Scuttling Spares
category: Agent
+artist: Bi Pi
+rarity: Common
cost: 3
attack: 3
health: 1
diff --git a/chrono.docs/Agent/[[Singularity]]/Traffic Conductor.md b/chrono.docs/Agent/[[Singularity]]/Traffic Conductor.md
index 5f4922c..9bd7995 100644
--- a/chrono.docs/Agent/[[Singularity]]/Traffic Conductor.md
+++ b/chrono.docs/Agent/[[Singularity]]/Traffic Conductor.md
@@ -1,5 +1,8 @@
---
+name: Traffic Conductor
category: Agent
+artist: Ritchie Cantuária
+rarity: Common
cost: 2
attack: 2
health: 2
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Blazing Shifter.md b/chrono.docs/Agent/[[Splintergleam]]/Blazing Shifter.md
index f28b561..f2b6150 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Blazing Shifter.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Blazing Shifter.md
@@ -1,5 +1,8 @@
---
+name: Blazing Shifter
category: Agent
+artist: Paul Takahashi
+rarity: Divergent
cost: 4
attack: 2
health: 2
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Bloodline Tracker.md b/chrono.docs/Agent/[[Splintergleam]]/Bloodline Tracker.md
index 3e17baa..e61c8eb 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Bloodline Tracker.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Bloodline Tracker.md
@@ -1,5 +1,8 @@
---
+name: Bloodline Tracker
category: Agent
+artist: Simon Carr
+rarity: Divergent
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Bright-Eyed Supplicant.md b/chrono.docs/Agent/[[Splintergleam]]/Bright-Eyed Supplicant.md
index dcba5d3..6be1014 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Bright-Eyed Supplicant.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Bright-Eyed Supplicant.md
@@ -1,5 +1,8 @@
---
+name: Bright-Eyed Supplicant
category: Agent
+artist: Julien Fenoglio
+rarity: Rare
cost: 3
attack: 2
health: 4
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Brutal Reveler.md b/chrono.docs/Agent/[[Splintergleam]]/Brutal Reveler.md
index e64103e..e59e017 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Brutal Reveler.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Brutal Reveler.md
@@ -1,5 +1,8 @@
---
+name: Brutal Reveler
category: Agent
+artist: Julien Fenoglio
+rarity: Rare
cost: 7
attack: 6
health: 5
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Bullseye Bounty Hunter.md b/chrono.docs/Agent/[[Splintergleam]]/Bullseye Bounty Hunter.md
index f011a5f..a6bd684 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Bullseye Bounty Hunter.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Bullseye Bounty Hunter.md
@@ -1,5 +1,8 @@
---
+name: Bullseye Bounty Hunter
category: Agent
+artist: Zed Edge
+rarity: Rare
cost: 4
attack: 4
health: 3
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Denizen of Flames.md b/chrono.docs/Agent/[[Splintergleam]]/Denizen of Flames.md
index 1150b77..917753f 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Denizen of Flames.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Denizen of Flames.md
@@ -1,5 +1,8 @@
---
+name: Denizen of Flames
category: Agent
+artist: um_predo
+rarity: Rare
cost: 1
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Desperate Primordial.md b/chrono.docs/Agent/[[Splintergleam]]/Desperate Primordial.md
index 51d6ee9..39d49c2 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Desperate Primordial.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Desperate Primordial.md
@@ -1,5 +1,8 @@
---
+name: Desperate Primordial
category: Agent
+artist: Xtian.Art
+rarity: Common
cost: 2
attack: 4
health: 2
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Devoted Bloodletter.md b/chrono.docs/Agent/[[Splintergleam]]/Devoted Bloodletter.md
index b8625e6..ec806f9 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Devoted Bloodletter.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Devoted Bloodletter.md
@@ -1,5 +1,8 @@
---
+name: Devoted Bloodletter
category: Agent
+artist: Simon Carr
+rarity: Rare
cost: 5
attack: 4
health: 5
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Frontline Juggernaut.md b/chrono.docs/Agent/[[Splintergleam]]/Frontline Juggernaut.md
index 2fa417c..89ed8b2 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Frontline Juggernaut.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Frontline Juggernaut.md
@@ -1,5 +1,8 @@
---
+name: Frontline Juggernaut
category: Agent
+artist: Paul Takahashi
+rarity: Common
cost: 6
attack: 6
health: 5
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Gilded Behemoth.md b/chrono.docs/Agent/[[Splintergleam]]/Gilded Behemoth.md
index f66648d..42419b2 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Gilded Behemoth.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Gilded Behemoth.md
@@ -1,5 +1,8 @@
---
+name: Gilded Behemoth
category: Agent
+artist: Donnie Obina
+rarity: Lost
cost: 7
attack: 5
health: 9
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Glittering Gladiator.md b/chrono.docs/Agent/[[Splintergleam]]/Glittering Gladiator.md
index 7fc0950..a62af18 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Glittering Gladiator.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Glittering Gladiator.md
@@ -1,5 +1,8 @@
---
+name: Glittering Gladiator
category: Agent
+artist: BEIKI
+rarity: Common
cost: 1
attack: 1
health: 3
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Hungry Engine.md b/chrono.docs/Agent/[[Splintergleam]]/Hungry Engine.md
index 828636b..6e54796 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Hungry Engine.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Hungry Engine.md
@@ -1,5 +1,8 @@
---
+name: Hungry Engine
category: Agent
+artist: Simon Carr
+rarity: Divergent
cost: 5
attack: 5
health: 5
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Painforger.md b/chrono.docs/Agent/[[Splintergleam]]/Painforger.md
index 885cc94..0cd13ff 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Painforger.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Painforger.md
@@ -1,5 +1,8 @@
---
+name: Painforger
category: Agent
+artist: G.C.
+rarity: Lost
cost: 2
attack: 1
health: 3
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Persistent Squire.md b/chrono.docs/Agent/[[Splintergleam]]/Persistent Squire.md
index cf69c6e..9dbfc45 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Persistent Squire.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Persistent Squire.md
@@ -1,5 +1,8 @@
---
+name: Persistent Squire
category: Agent
+artist: Karl Angelo Brito
+rarity: Common
cost: 1
attack: 1
health: 2
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Pit Dog.md b/chrono.docs/Agent/[[Splintergleam]]/Pit Dog.md
index 81b98a6..76a207b 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Pit Dog.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Pit Dog.md
@@ -1,5 +1,8 @@
---
+name: Pit Dog
category: Agent
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 2
health: 4
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Red Reaper.md b/chrono.docs/Agent/[[Splintergleam]]/Red Reaper.md
index 2196020..3c2668f 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Red Reaper.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Red Reaper.md
@@ -1,5 +1,8 @@
---
+name: Red Reaper
category: Agent
+artist: Zed Edge
+rarity: Lost
cost: 5
attack: 3
health: 5
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Stalwart Champion.md b/chrono.docs/Agent/[[Splintergleam]]/Stalwart Champion.md
index 5a9c4a9..a78a37c 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Stalwart Champion.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Stalwart Champion.md
@@ -1,5 +1,8 @@
---
+name: Stalwart Champion
category: Agent
+artist: Paul Takahashi
+rarity: Common
cost: 3
attack: 3
health: 4
diff --git a/chrono.docs/Agent/[[Splintergleam]]/Toothy Pugilist.md b/chrono.docs/Agent/[[Splintergleam]]/Toothy Pugilist.md
index 4703c5c..c020818 100644
--- a/chrono.docs/Agent/[[Splintergleam]]/Toothy Pugilist.md
+++ b/chrono.docs/Agent/[[Splintergleam]]/Toothy Pugilist.md
@@ -1,5 +1,8 @@
---
+name: Toothy Pugilist
category: Agent
+artist: Julien Fenoglio
+rarity: Common
cost: 4
attack: 3
health: 6
diff --git a/chrono.docs/Agent/[[Sungrace]]/Brilliant Martyr.md b/chrono.docs/Agent/[[Sungrace]]/Brilliant Martyr.md
index f841b52..0ecd09e 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Brilliant Martyr.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Brilliant Martyr.md
@@ -1,5 +1,8 @@
---
+name: Brilliant Martyr
category: Agent
+artist: Arthur Rosa
+rarity: Common
cost: 1
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Sungrace]]/Canine Adjutant.md b/chrono.docs/Agent/[[Sungrace]]/Canine Adjutant.md
index 3c28cc3..d12c852 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Canine Adjutant.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Canine Adjutant.md
@@ -1,5 +1,8 @@
---
+name: Canine Adjutant
category: Agent
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 2
health: 1
diff --git a/chrono.docs/Agent/[[Sungrace]]/Containment Breach.md b/chrono.docs/Agent/[[Sungrace]]/Containment Breach.md
index 9c6d40d..f2f64af 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Containment Breach.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Containment Breach.md
@@ -1,5 +1,8 @@
---
+name: Containment Breach
category: Agent
+artist: Arthur Rosa
+rarity: Divergent
cost: 5
attack: 2
health: 6
diff --git a/chrono.docs/Agent/[[Sungrace]]/Debris Collector.md b/chrono.docs/Agent/[[Sungrace]]/Debris Collector.md
index 616af4d..daf9809 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Debris Collector.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Debris Collector.md
@@ -1,5 +1,8 @@
---
+name: Debris Collector
category: Agent
+artist: Arthur Rosa
+rarity: Rare
cost: 4
attack: 1
health: 1
diff --git a/chrono.docs/Agent/[[Sungrace]]/Devourer Spawn.md b/chrono.docs/Agent/[[Sungrace]]/Devourer Spawn.md
index 3a4ac38..2dff911 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Devourer Spawn.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Devourer Spawn.md
@@ -1,5 +1,8 @@
---
+name: Devourer Spawn
category: Agent
+artist: Paul Takahashi
+rarity: Lost
cost: 10
attack: 10
health: 10
diff --git a/chrono.docs/Agent/[[Sungrace]]/Gunnery Captain.md b/chrono.docs/Agent/[[Sungrace]]/Gunnery Captain.md
index 7e86e94..6ff6bc4 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Gunnery Captain.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Gunnery Captain.md
@@ -1,5 +1,8 @@
---
+name: Gunnery Captain
category: Agent
+artist: Arthur Rosa
+rarity: Rare
cost: 7
attack: 5
health: 6
diff --git a/chrono.docs/Agent/[[Sungrace]]/Hidden Locus.md b/chrono.docs/Agent/[[Sungrace]]/Hidden Locus.md
index aab18ea..259379b 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Hidden Locus.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Hidden Locus.md
@@ -1,5 +1,8 @@
---
+name: Hidden Locus
category: Agent
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 0
health: 2
diff --git a/chrono.docs/Agent/[[Sungrace]]/Jury of the Second Law.md b/chrono.docs/Agent/[[Sungrace]]/Jury of the Second Law.md
index e783c5e..ab66e47 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Jury of the Second Law.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Jury of the Second Law.md
@@ -1,5 +1,8 @@
---
+name: Jury of the Second Law
category: Agent
+artist: Donnie Obina
+rarity: Divergent
cost: 5
attack: 5
health: 3
diff --git a/chrono.docs/Agent/[[Sungrace]]/Kinetic Absorber.md b/chrono.docs/Agent/[[Sungrace]]/Kinetic Absorber.md
index 285b306..6407b95 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Kinetic Absorber.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Kinetic Absorber.md
@@ -1,5 +1,8 @@
---
+name: Kinetic Absorber
category: Agent
+artist: Horugode
+rarity: Rare
cost: 2
attack: 2
health: 3
diff --git a/chrono.docs/Agent/[[Sungrace]]/Lightsteel Colossus.md b/chrono.docs/Agent/[[Sungrace]]/Lightsteel Colossus.md
index 0f5c33f..634de53 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Lightsteel Colossus.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Lightsteel Colossus.md
@@ -1,5 +1,8 @@
---
+name: Lightsteel Colossus
category: Agent
+artist: Bi Pi
+rarity: Common
cost: 8
attack: 9
health: 14
diff --git a/chrono.docs/Agent/[[Sungrace]]/Lightsteel Engineer.md b/chrono.docs/Agent/[[Sungrace]]/Lightsteel Engineer.md
index 42a4407..880c912 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Lightsteel Engineer.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Lightsteel Engineer.md
@@ -1,5 +1,8 @@
---
+name: Lightsteel Engineer
category: Agent
+artist: Karl Angelo Brito
+rarity: Lost
cost: 5
attack: 4
health: 5
diff --git a/chrono.docs/Agent/[[Sungrace]]/Limit Breaker.md b/chrono.docs/Agent/[[Sungrace]]/Limit Breaker.md
index 95f8799..21bd468 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Limit Breaker.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Limit Breaker.md
@@ -1,5 +1,8 @@
---
+name: Limit Breaker
category: Agent
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 0
health: 1
diff --git a/chrono.docs/Agent/[[Sungrace]]/Lumbering Starseeker.md b/chrono.docs/Agent/[[Sungrace]]/Lumbering Starseeker.md
index 76c41fb..da9f7cd 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Lumbering Starseeker.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Lumbering Starseeker.md
@@ -1,5 +1,8 @@
---
+name: Lumbering Starseeker
category: Agent
+artist: Arthur Rosa
+rarity: Common
cost: 5
attack: 5
health: 6
diff --git a/chrono.docs/Agent/[[Sungrace]]/Magmatic Tether.md b/chrono.docs/Agent/[[Sungrace]]/Magmatic Tether.md
index 7ee2e60..6e3a697 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Magmatic Tether.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Magmatic Tether.md
@@ -1,5 +1,8 @@
---
+name: Magmatic Tether
category: Agent
+artist: Bi Pi
+rarity: Divergent
cost: 6
attack: 5
health: 5
diff --git a/chrono.docs/Agent/[[Sungrace]]/Peaceful Synthesizer.md b/chrono.docs/Agent/[[Sungrace]]/Peaceful Synthesizer.md
index b1496d4..e46ee63 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Peaceful Synthesizer.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Peaceful Synthesizer.md
@@ -1,5 +1,8 @@
---
+name: Peaceful Synthesizer
category: Agent
+artist: Xtian.Art
+rarity: Divergent
cost: 1
attack: 0
health: 1
diff --git a/chrono.docs/Agent/[[Sungrace]]/Planet Seeder.md b/chrono.docs/Agent/[[Sungrace]]/Planet Seeder.md
index 92c8ec2..83bd453 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Planet Seeder.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Planet Seeder.md
@@ -1,5 +1,8 @@
---
+name: Planet Seeder
category: Agent
+artist: Karl Angelo Brito
+rarity: Lost
cost: 8
attack: 2
health: 2
diff --git a/chrono.docs/Agent/[[Sungrace]]/Starfueled Medics.md b/chrono.docs/Agent/[[Sungrace]]/Starfueled Medics.md
index 73128a3..303224e 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Starfueled Medics.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Starfueled Medics.md
@@ -1,5 +1,8 @@
---
+name: Starfueled Medics
category: Agent
+artist: Horugode
+rarity: Rare
cost: 4
attack: 2
health: 3
diff --git a/chrono.docs/Agent/[[Sungrace]]/Sunbringer Artillerist.md b/chrono.docs/Agent/[[Sungrace]]/Sunbringer Artillerist.md
index f7457bd..14ce371 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Sunbringer Artillerist.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Sunbringer Artillerist.md
@@ -1,5 +1,8 @@
---
+name: Sunbringer Artillerist
category: Agent
+artist: Xtian.Art
+rarity: Lost
cost: 2
attack: 1
health: 2
diff --git a/chrono.docs/Agent/[[Sungrace]]/Suncursed Conduit.md b/chrono.docs/Agent/[[Sungrace]]/Suncursed Conduit.md
index fa047a7..2ae04a1 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Suncursed Conduit.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Suncursed Conduit.md
@@ -1,5 +1,8 @@
---
+name: Suncursed Conduit
category: Agent
+artist: Xtian.Art
+rarity: Common
cost: 3
attack: 2
health: 4
diff --git a/chrono.docs/Agent/[[Sungrace]]/Swashbuckling Diehard.md b/chrono.docs/Agent/[[Sungrace]]/Swashbuckling Diehard.md
index 5d90873..0b2fe29 100644
--- a/chrono.docs/Agent/[[Sungrace]]/Swashbuckling Diehard.md
+++ b/chrono.docs/Agent/[[Sungrace]]/Swashbuckling Diehard.md
@@ -1,5 +1,8 @@
---
+name: Swashbuckling Diehard
category: Agent
+artist: Zed Edge
+rarity: Rare
cost: 3
attack: 4
health: 1
diff --git a/chrono.docs/Deck/Overflowing Security.md b/chrono.docs/Deck/Overflowing Security.md
new file mode 100644
index 0000000..caa6bf2
--- /dev/null
+++ b/chrono.docs/Deck/Overflowing Security.md
@@ -0,0 +1,74 @@
+---
+category: Deck
+cards:
+ - "[[Scattered Helpers]]"
+ - "[[Scattered Helpers]]"
+ - "[[Scattered Helpers]]"
+ - "[[Awakened Security System]]"
+ - "[[Awakened Security System]]"
+ - "[[Traffic Conductor]]"
+ - "[[Traffic Conductor]]"
+ - "[[Traffic Conductor]]"
+ - "[[Hidden Locus]]"
+ - "[[Hidden Locus]]"
+ - "[[Hidden Locus]]"
+ - "[[Limit Breaker]]"
+ - "[[Limit Breaker]]"
+ - "[[Limit Breaker]]"
+ - "[[Chronal Scan]]"
+ - "[[Chronal Scan]]"
+ - "[[Chaos Control]]"
+ - "[[Chaos Control]]"
+ - "[[Chaos Control]]"
+ - "[[Frontline Fellowship]]"
+ - "[[Frontline Fellowship]]"
+ - "[[Frontline Fellowship]]"
+ - "[[Timestop]]"
+ - "[[Built to Burn]]"
+ - "[[Built to Burn]]"
+ - "[[Radiant Channeling]]"
+ - "[[Radiant Channeling]]"
+ - "[[Radiant Channeling]]"
+ - "[[Supernova]]"
+ - "[[Supernova]]"
+ - "[[Supernova]]"
+ - "[[Stability Control]]"
+ - "[[Stability Control]]"
+ - "[[Stability Control]]"
+ - "[[Throw into the Sun]]"
+ - "[[Throw into the Sun]]"
+ - "[[Throw into the Sun]]"
+ - "[[What Could Be]]"
+ - "[[What Could Be]]"
+ - "[[What Could Be]]"
+divers:
+ - "[[Brilliant Martyr]]"
+ - "[[Enthusiastic Bot-Poke]]"
+isVisible: true
+keycards:
+ - "[[Limit Breaker]]"
+ - "[[Awakened Security System]]"
+description: |-
+ Built deck as a joke, but it kind of feels nuts in limited testing.
+
+ Mulligan everything for [[Radiant Channeling]] and [[Supernova]]. You are hoping that limited removal keeps you alive.
+
+ If they heavy buff something out from your removal range, you might still have enough reserve to [[Throw into the Sun]] that big target.
+
+ If you survive, start scaling your board with [[Awakened Security System]] or [[Limit Breaker]].
+factions:
+ - "[[Sungrace]]"
+ - "[[Singularity]]"
+deckCode: AUMU65TFOJTGY33XNFXGOICTMVRXK4TJOR4SAQ3POB4QWY3PNZZXI4TVMN2GKZBRACQAAANZAEBZEAI6AQFTSAYCAMOQGBADAEBQCAZ2AMCAGGQDAQBQCAY
+deckType: custom
+---
+Built deck as a joke, but it kind of feels nuts in limited testing.
+
+Mulligan everything for [[Radiant Channeling]] and [[Supernova]]. You are hoping that limited removal keeps you alive.
+
+If they heavy buff something out from your removal range, you might still have enough reserve to [[Throw into the Sun]] that big target.
+
+If you survive, start scaling your board with [[Awakened Security System]] or [[Limit Breaker]].
+
+
+
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Arra, Saurian Broodmother.md b/chrono.docs/Immortalized/[[Lifeblood]]/Arra, Saurian Broodmother.md
index 4bd2d95..a52e66b 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Arra, Saurian Broodmother.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Arra, Saurian Broodmother.md
@@ -1,5 +1,8 @@
---
+name: Arra, Saurian Broodmother
category: Immortalized
+artist: BEIKI
+rarity: Divergent
cost: 1
attack: 1
health: 2
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Battleharts.md b/chrono.docs/Immortalized/[[Lifeblood]]/Battleharts.md
index 1da53d1..8f6d2e4 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Battleharts.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Battleharts.md
@@ -1,5 +1,8 @@
---
+name: Battleharts
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 0
health: 1
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Boof, Lonely and Proud.md b/chrono.docs/Immortalized/[[Lifeblood]]/Boof, Lonely and Proud.md
index 052b896..20f4211 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Boof, Lonely and Proud.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Boof, Lonely and Proud.md
@@ -1,5 +1,8 @@
---
+name: Boof, Lonely and Proud
category: Immortalized
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Bronk the Calm.md b/chrono.docs/Immortalized/[[Lifeblood]]/Bronk the Calm.md
index 466ef44..fe66918 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Bronk the Calm.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Bronk the Calm.md
@@ -1,5 +1,8 @@
---
+name: Bronk the Calm
category: Immortalized
+artist: Karl Angelo Brito
+rarity: Common
cost: 3
attack: 3
health: 4
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Evolution Incarnate.md b/chrono.docs/Immortalized/[[Lifeblood]]/Evolution Incarnate.md
index f613c84..0009891 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Evolution Incarnate.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Evolution Incarnate.md
@@ -1,5 +1,8 @@
---
+name: Evolution Incarnate
category: Immortalized
+artist: Paul Takahashi
+rarity: Common
cost: 5
attack: 6
health: 6
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Gritmancer Grant.md b/chrono.docs/Immortalized/[[Lifeblood]]/Gritmancer Grant.md
index d990cc8..6a659f2 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Gritmancer Grant.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Gritmancer Grant.md
@@ -1,5 +1,8 @@
---
+name: Gritmancer Grant
category: Immortalized
+artist: Paul Takahashi
+rarity: Rare
cost: 4
attack: 4
health: 4
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Horticulturist Oswald.md b/chrono.docs/Immortalized/[[Lifeblood]]/Horticulturist Oswald.md
index 932e8b3..2b6c6e6 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Horticulturist Oswald.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Horticulturist Oswald.md
@@ -1,5 +1,8 @@
---
+name: Horticulturist Oswald
category: Immortalized
+artist: Bi Pi
+rarity: Divergent
cost: 1
attack: 2
health: 2
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Jenny, Sower of Spores.md b/chrono.docs/Immortalized/[[Lifeblood]]/Jenny, Sower of Spores.md
index b99c676..133dba3 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Jenny, Sower of Spores.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Jenny, Sower of Spores.md
@@ -1,5 +1,8 @@
---
+name: Jenny, Sower of Spores
category: Immortalized
+artist: Guilherme Faria
+rarity: Common
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Khaelar.md b/chrono.docs/Immortalized/[[Lifeblood]]/Khaelar.md
index 8503bb1..064c53b 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Khaelar.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Khaelar.md
@@ -1,5 +1,8 @@
---
+name: Khaelar
category: Immortalized
+artist: Karl Angelo Brito
+rarity: Divergent
cost: 6
attack: 8
health: 6
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Omeganeura.md b/chrono.docs/Immortalized/[[Lifeblood]]/Omeganeura.md
index 9fd98f5..cf10c0f 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Omeganeura.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Omeganeura.md
@@ -1,5 +1,8 @@
---
+name: Omeganeura
category: Immortalized
+artist: Kurt Daryll Ludaes
+rarity: Lost
cost: 6
attack: 4
health: 4
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/The Beating Heart.md b/chrono.docs/Immortalized/[[Lifeblood]]/The Beating Heart.md
index f948ac3..4e27422 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/The Beating Heart.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/The Beating Heart.md
@@ -1,5 +1,8 @@
---
+name: The Beating Heart
category: Immortalized
+artist: Paul Takahashi
+rarity: Rare
cost: 5
attack: 5
health: 5
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/The Botanist.md b/chrono.docs/Immortalized/[[Lifeblood]]/The Botanist.md
index 733a82f..bca675a 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/The Botanist.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/The Botanist.md
@@ -1,5 +1,8 @@
---
+name: The Botanist
category: Immortalized
+artist: Arthur Rosa
+rarity: Lost
cost: 4
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/The Cycle Embodied.md b/chrono.docs/Immortalized/[[Lifeblood]]/The Cycle Embodied.md
index 84a11b4..3be97f7 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/The Cycle Embodied.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/The Cycle Embodied.md
@@ -1,5 +1,8 @@
---
+name: The Cycle Embodied
category: Immortalized
+artist: Arthur Rosa
+rarity: Common
cost: 1
attack: 2
health: 2
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/The Great Oakmother.md b/chrono.docs/Immortalized/[[Lifeblood]]/The Great Oakmother.md
index 6f69f2b..837b098 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/The Great Oakmother.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/The Great Oakmother.md
@@ -1,5 +1,8 @@
---
+name: The Great Oakmother
category: Immortalized
+artist: Arthur Rosa
+rarity: Lost
cost: 2
attack: 1
health: 3
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Tino, Majestic Stumbler.md b/chrono.docs/Immortalized/[[Lifeblood]]/Tino, Majestic Stumbler.md
index 0d79f77..55b4a43 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Tino, Majestic Stumbler.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Tino, Majestic Stumbler.md
@@ -1,5 +1,8 @@
---
+name: Tino, Majestic Stumbler
category: Immortalized
+artist: Arthur Rosa
+rarity: Divergent
cost: 2
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Wreck-o Rex.md b/chrono.docs/Immortalized/[[Lifeblood]]/Wreck-o Rex.md
index 0cc2b5c..2a87793 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Wreck-o Rex.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Wreck-o Rex.md
@@ -1,5 +1,8 @@
---
+name: Wreck-o Rex
category: Immortalized
+artist: Paul Takahashi
+rarity: Common
cost: 8
attack: 9
health: 9
diff --git a/chrono.docs/Immortalized/[[Lifeblood]]/Xae, Dreamstrider.md b/chrono.docs/Immortalized/[[Lifeblood]]/Xae, Dreamstrider.md
index 0e596e4..e907f0b 100644
--- a/chrono.docs/Immortalized/[[Lifeblood]]/Xae, Dreamstrider.md
+++ b/chrono.docs/Immortalized/[[Lifeblood]]/Xae, Dreamstrider.md
@@ -1,5 +1,8 @@
---
+name: Xae, Dreamstrider
category: Immortalized
+artist: BEIKI
+rarity: Rare
cost: 3
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Alina, the Overflowing Cup.md b/chrono.docs/Immortalized/[[Phasetide]]/Alina, the Overflowing Cup.md
index 85af685..aa81d7d 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Alina, the Overflowing Cup.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Alina, the Overflowing Cup.md
@@ -1,5 +1,8 @@
---
+name: Alina, the Overflowing Cup
category: Immortalized
+artist: Jeffrey Viloria
+rarity: Rare
cost: 4
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Boof, Ever Loyal.md b/chrono.docs/Immortalized/[[Phasetide]]/Boof, Ever Loyal.md
index d30ffc8..1fc3941 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Boof, Ever Loyal.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Boof, Ever Loyal.md
@@ -1,5 +1,8 @@
---
+name: Boof, Ever Loyal
category: Immortalized
+artist: Bi Pi
+rarity: Common
cost: 1
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Consequence Admin Cain.md b/chrono.docs/Immortalized/[[Phasetide]]/Consequence Admin Cain.md
index c068725..f93b44f 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Consequence Admin Cain.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Consequence Admin Cain.md
@@ -1,5 +1,8 @@
---
+name: Consequence Admin Cain
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 4
attack: 2
health: 1
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Da'Kad, Heretic Crusher.md b/chrono.docs/Immortalized/[[Phasetide]]/Da'Kad, Heretic Crusher.md
index 23eed20..6d69300 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Da'Kad, Heretic Crusher.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Da'Kad, Heretic Crusher.md
@@ -1,5 +1,8 @@
---
+name: Da'Kad, Heretic Crusher
category: Immortalized
+artist: Arthur Rosa
+rarity: Divergent
cost: 5
attack: 4
health: 9
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Dedicated Missionary.md b/chrono.docs/Immortalized/[[Phasetide]]/Dedicated Missionary.md
index 2de1a38..7e660fa 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Dedicated Missionary.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Dedicated Missionary.md
@@ -1,5 +1,8 @@
---
+name: Dedicated Missionary
category: Immortalized
+artist: Xtian.Art
+rarity: Divergent
cost: 6
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Grand Judge Dhael.md b/chrono.docs/Immortalized/[[Phasetide]]/Grand Judge Dhael.md
index 5e14f9b..fd1d557 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Grand Judge Dhael.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Grand Judge Dhael.md
@@ -1,5 +1,8 @@
---
+name: Grand Judge Dhael
category: Immortalized
+artist: Simon Carr
+rarity: Lost
cost: 7
attack: 5
health: 5
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Harker, Metal Reporter.md b/chrono.docs/Immortalized/[[Phasetide]]/Harker, Metal Reporter.md
index 4391232..2fe6ac2 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Harker, Metal Reporter.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Harker, Metal Reporter.md
@@ -1,5 +1,8 @@
---
+name: Harker, Metal Reporter
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 3
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Khaela the Savior.md b/chrono.docs/Immortalized/[[Phasetide]]/Khaela the Savior.md
index cb09e57..7783edc 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Khaela the Savior.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Khaela the Savior.md
@@ -1,5 +1,8 @@
---
+name: Khaela the Savior
category: Immortalized
+artist: Xtian.Art
+rarity: Divergent
cost: 2
attack: 3
health: 4
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Masa, Time-Lost.md b/chrono.docs/Immortalized/[[Phasetide]]/Masa, Time-Lost.md
index 691bb5b..44b88c8 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Masa, Time-Lost.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Masa, Time-Lost.md
@@ -1,5 +1,8 @@
---
+name: Masa, Time-Lost
category: Immortalized
+artist: BEIKI
+rarity: Lost
cost: 6
attack: 7
health: 4
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Pontifex Dhabu.md b/chrono.docs/Immortalized/[[Phasetide]]/Pontifex Dhabu.md
index 7e727a5..d8dbb85 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Pontifex Dhabu.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Pontifex Dhabu.md
@@ -1,5 +1,8 @@
---
+name: Pontifex Dhabu
category: Immortalized
+artist: Simon Carr
+rarity: Rare
cost: 1
attack: 2
health: 2
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Priestess Minia.md b/chrono.docs/Immortalized/[[Phasetide]]/Priestess Minia.md
index da3e07e..d8f8269 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Priestess Minia.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Priestess Minia.md
@@ -1,5 +1,8 @@
---
+name: Priestess Minia
category: Immortalized
+artist: Zed Edge
+rarity: Common
cost: 2
attack: 3
health: 7
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Rift Mender Aris.md b/chrono.docs/Immortalized/[[Phasetide]]/Rift Mender Aris.md
index 6b8d9e2..d62e2ae 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Rift Mender Aris.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Rift Mender Aris.md
@@ -1,5 +1,8 @@
---
+name: Rift Mender Aris
category: Immortalized
+artist: TheLastEmber
+rarity: Common
cost: 3
attack: 6
health: 6
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Symphony of the Path.md b/chrono.docs/Immortalized/[[Phasetide]]/Symphony of the Path.md
index 6114437..9b5f883 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Symphony of the Path.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Symphony of the Path.md
@@ -1,5 +1,8 @@
---
+name: Symphony of the Path
category: Immortalized
+artist: Simon Carr
+rarity: Common
cost: 1
attack: 2
health: 2
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/The 'Stache.md b/chrono.docs/Immortalized/[[Phasetide]]/The 'Stache.md
index b1e37ce..0787d13 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/The 'Stache.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/The 'Stache.md
@@ -1,5 +1,8 @@
---
+name: The 'Stache
category: Immortalized
+artist: Zed Edge
+rarity: Divergent
cost: 4
attack: 4
health: 4
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Violent Inquisitioner.md b/chrono.docs/Immortalized/[[Phasetide]]/Violent Inquisitioner.md
index 255c115..ae53f13 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Violent Inquisitioner.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Violent Inquisitioner.md
@@ -1,5 +1,8 @@
---
+name: Violent Inquisitioner
category: Immortalized
+rarity: Common
+artist: Millena Ramos
cost: 3
attack: 3
health: 4
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Violet Inquisitioner.md b/chrono.docs/Immortalized/[[Phasetide]]/Violet Inquisitioner.md
index fb08db9..d8cc332 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Violet Inquisitioner.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Violet Inquisitioner.md
@@ -1,5 +1,8 @@
---
+name: Violet Inquisitioner
category: Immortalized
+artist: Millena Ramos
+rarity: Common
cost: 3
attack: 3
health: 4
diff --git a/chrono.docs/Immortalized/[[Phasetide]]/Zel, the First Diver.md b/chrono.docs/Immortalized/[[Phasetide]]/Zel, the First Diver.md
index 7618e2a..f1ef0f7 100644
--- a/chrono.docs/Immortalized/[[Phasetide]]/Zel, the First Diver.md
+++ b/chrono.docs/Immortalized/[[Phasetide]]/Zel, the First Diver.md
@@ -1,5 +1,8 @@
---
+name: Zel, the First Diver
category: Immortalized
+artist: Kurt Daryll Ludaes
+rarity: Divergent
cost: 1
attack: 1
health: 3
diff --git a/chrono.docs/Immortalized/[[Silence]]/A'kon, Starry Diviner.md b/chrono.docs/Immortalized/[[Silence]]/A'kon, Starry Diviner.md
index 30d2108..be2b26c 100644
--- a/chrono.docs/Immortalized/[[Silence]]/A'kon, Starry Diviner.md
+++ b/chrono.docs/Immortalized/[[Silence]]/A'kon, Starry Diviner.md
@@ -1,5 +1,8 @@
---
+name: A'kon, Starry Diviner
category: Immortalized
+artist: Kurt Daryll Ludaes
+rarity: Common
cost: 1
attack: 2
health: 2
diff --git a/chrono.docs/Immortalized/[[Silence]]/Alina Who Cuts the Strings.md b/chrono.docs/Immortalized/[[Silence]]/Alina Who Cuts the Strings.md
index 5b4b567..106f690 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Alina Who Cuts the Strings.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Alina Who Cuts the Strings.md
@@ -1,5 +1,8 @@
---
+name: Alina Who Cuts the Strings
category: Immortalized
+artist: BEIKI
+rarity: Common
cost: 4
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Silence]]/Boof, the Listener.md b/chrono.docs/Immortalized/[[Silence]]/Boof, the Listener.md
index 4bea9cc..a45d606 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Boof, the Listener.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Boof, the Listener.md
@@ -1,5 +1,8 @@
---
+name: Boof, the Listener
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 2
health: 1
diff --git a/chrono.docs/Immortalized/[[Silence]]/Daville, the Star Song.md b/chrono.docs/Immortalized/[[Silence]]/Daville, the Star Song.md
index 143f173..3b9d1fa 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Daville, the Star Song.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Daville, the Star Song.md
@@ -1,5 +1,8 @@
---
+name: Daville, the Star Song
category: Immortalized
+artist: Romulo Reyes
+rarity: Divergent
cost: 5
attack: 5
health: 5
diff --git a/chrono.docs/Immortalized/[[Silence]]/Dhali, Bearer of Memories.md b/chrono.docs/Immortalized/[[Silence]]/Dhali, Bearer of Memories.md
index f5fba46..a74f0d3 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Dhali, Bearer of Memories.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Dhali, Bearer of Memories.md
@@ -1,5 +1,8 @@
---
+name: Dhali, Bearer of Memories
category: Immortalized
+artist: Arthur Rosa
+rarity: Lost
cost: 6
attack: 4
health: 5
diff --git a/chrono.docs/Immortalized/[[Silence]]/Greyl, the Problem.md b/chrono.docs/Immortalized/[[Silence]]/Greyl, the Problem.md
index 8bffb1e..65f4d51 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Greyl, the Problem.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Greyl, the Problem.md
@@ -1,5 +1,8 @@
---
+name: Greyl, the Problem
category: Immortalized
+artist: Bi Pi
+rarity: Divergent
cost: 4
attack: 2
health: 4
diff --git a/chrono.docs/Immortalized/[[Silence]]/Indara, the Candle.md b/chrono.docs/Immortalized/[[Silence]]/Indara, the Candle.md
index 41d2c35..6e2e014 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Indara, the Candle.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Indara, the Candle.md
@@ -1,5 +1,8 @@
---
+name: Indara, the Candle
category: Immortalized
+artist: Simon Carr
+rarity: Divergent
cost: 6
attack: 4
health: 4
diff --git a/chrono.docs/Immortalized/[[Silence]]/Khaela, the Vanished.md b/chrono.docs/Immortalized/[[Silence]]/Khaela, the Vanished.md
index 9a0aee2..5f65932 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Khaela, the Vanished.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Khaela, the Vanished.md
@@ -1,5 +1,8 @@
---
+name: Khaela, the Vanished
category: Immortalized
+artist: Paul Takahashi
+rarity: Common
cost: 2
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Silence]]/Shae'Fan, Remembered.md b/chrono.docs/Immortalized/[[Silence]]/Shae'Fan, Remembered.md
index 3bc0530..10d305d 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Shae'Fan, Remembered.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Shae'Fan, Remembered.md
@@ -1,5 +1,8 @@
---
+name: Shae'Fan, Remembered
category: Immortalized
+artist: Romulo Reyes
+rarity: Lost
cost: 6
attack: 4
health: 7
diff --git a/chrono.docs/Immortalized/[[Silence]]/Somnus, the Dreaming.md b/chrono.docs/Immortalized/[[Silence]]/Somnus, the Dreaming.md
index 1e7c774..ded11d8 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Somnus, the Dreaming.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Somnus, the Dreaming.md
@@ -1,5 +1,8 @@
---
+name: Somnus, the Dreaming
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 5
attack: 3
health: 4
diff --git a/chrono.docs/Immortalized/[[Silence]]/Talia, Purger of Memory.md b/chrono.docs/Immortalized/[[Silence]]/Talia, Purger of Memory.md
index 0bf7e2a..ff225ca 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Talia, Purger of Memory.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Talia, Purger of Memory.md
@@ -1,5 +1,8 @@
---
+name: Talia, Purger of Memory
category: Immortalized
+artist: Xtian.Art
+rarity: Rare
cost: 4
attack: 5
health: 2
diff --git a/chrono.docs/Immortalized/[[Silence]]/The Strand.md b/chrono.docs/Immortalized/[[Silence]]/The Strand.md
index a75a9fb..56b29e0 100644
--- a/chrono.docs/Immortalized/[[Silence]]/The Strand.md
+++ b/chrono.docs/Immortalized/[[Silence]]/The Strand.md
@@ -1,5 +1,8 @@
---
+name: The Strand
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 1
health: 4
diff --git a/chrono.docs/Immortalized/[[Silence]]/The Uncontained.md b/chrono.docs/Immortalized/[[Silence]]/The Uncontained.md
index 2322cac..3e23e7e 100644
--- a/chrono.docs/Immortalized/[[Silence]]/The Uncontained.md
+++ b/chrono.docs/Immortalized/[[Silence]]/The Uncontained.md
@@ -1,5 +1,8 @@
---
+name: The Uncontained
category: Immortalized
+artist: Rhuan Gon
+rarity: Common
cost: 4
attack: 2
health: 3
diff --git a/chrono.docs/Immortalized/[[Silence]]/True Believer.md b/chrono.docs/Immortalized/[[Silence]]/True Believer.md
index 9b4cca6..d7d0b8e 100644
--- a/chrono.docs/Immortalized/[[Silence]]/True Believer.md
+++ b/chrono.docs/Immortalized/[[Silence]]/True Believer.md
@@ -1,5 +1,8 @@
---
+name: True Believer
category: Immortalized
+artist: Bi Pi
+rarity: Divergent
cost: 3
attack: 2
health: 1
diff --git a/chrono.docs/Immortalized/[[Silence]]/Wilfred, Lobotomizer.md b/chrono.docs/Immortalized/[[Silence]]/Wilfred, Lobotomizer.md
index 1c00cf6..c055406 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Wilfred, Lobotomizer.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Wilfred, Lobotomizer.md
@@ -1,5 +1,8 @@
---
+name: Wilfred, Lobotomizer
category: Immortalized
+artist: Romulo Reyes
+rarity: Common
cost: 1
attack: 4
health: 3
diff --git a/chrono.docs/Immortalized/[[Silence]]/Witch of the Woods.md b/chrono.docs/Immortalized/[[Silence]]/Witch of the Woods.md
index 098929a..63c0de3 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Witch of the Woods.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Witch of the Woods.md
@@ -1,5 +1,8 @@
---
+name: Witch of the Woods
category: Immortalized
+artist: Paul Takahashi
+rarity: Common
cost: 3
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Silence]]/Ylka, the Headliner.md b/chrono.docs/Immortalized/[[Silence]]/Ylka, the Headliner.md
index 501b283..ca612c4 100644
--- a/chrono.docs/Immortalized/[[Silence]]/Ylka, the Headliner.md
+++ b/chrono.docs/Immortalized/[[Silence]]/Ylka, the Headliner.md
@@ -1,5 +1,8 @@
---
+name: Ylka, the Headliner
category: Immortalized
+artist: Paul Takahashi
+rarity: Divergent
cost: 3
attack: 3
health: 1
diff --git a/chrono.docs/Immortalized/[[Singularity]]/B.O.O.F..md b/chrono.docs/Immortalized/[[Singularity]]/B.O.O.F..md
index 2840caa..f1361a2 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/B.O.O.F..md
+++ b/chrono.docs/Immortalized/[[Singularity]]/B.O.O.F..md
@@ -1,5 +1,8 @@
---
+name: B.O.O.F.
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Bill, First Point of Contact.md b/chrono.docs/Immortalized/[[Singularity]]/Bill, First Point of Contact.md
index bedc79c..52959c8 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Bill, First Point of Contact.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Bill, First Point of Contact.md
@@ -1,5 +1,8 @@
---
+name: Bill, First Point of Contact
category: Immortalized
+artist: Romulo Reyes
+rarity: Rare
cost: 4
attack: 3
health: 4
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Bronk the Guide.md b/chrono.docs/Immortalized/[[Singularity]]/Bronk the Guide.md
index ea310c7..6e2e1fb 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Bronk the Guide.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Bronk the Guide.md
@@ -1,5 +1,8 @@
---
+name: Bronk the Guide
category: Immortalized
+artist: Jeffrey Viloria
+rarity: Divergent
cost: 3
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Singularity]]/E-Law, Boot Shepherd.md b/chrono.docs/Immortalized/[[Singularity]]/E-Law, Boot Shepherd.md
index b34b64e..c45827c 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/E-Law, Boot Shepherd.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/E-Law, Boot Shepherd.md
@@ -1,5 +1,8 @@
---
+name: E-Law, Boot Shepherd
category: Immortalized
+artist: Arthur Rosa
+rarity: Common
cost: 1
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Herald of the One.md b/chrono.docs/Immortalized/[[Singularity]]/Herald of the One.md
index 7ccf818..3ffabe3 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Herald of the One.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Herald of the One.md
@@ -1,5 +1,8 @@
---
+name: Herald of the One
category: Immortalized
+artist: Romulo Reyes
+rarity: Lost
cost: 4
attack: 1
health: 4
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Mr. E.md b/chrono.docs/Immortalized/[[Singularity]]/Mr. E.md
index e9e4899..203d7a2 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Mr. E.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Mr. E.md
@@ -1,5 +1,8 @@
---
+name: Mr. E
category: Immortalized
+artist: Arthur Rosa
+rarity: Lost
cost: 7
attack: 4
health: 6
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Nanobot Hive.md b/chrono.docs/Immortalized/[[Singularity]]/Nanobot Hive.md
index 335d1cd..959c3b1 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Nanobot Hive.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Nanobot Hive.md
@@ -1,5 +1,8 @@
---
+name: Nanobot Hive
category: Immortalized
+artist: Arthur Rosa
+rarity: Rare
cost: 2
attack: 4
health: 4
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Overmind's Guilt.md b/chrono.docs/Immortalized/[[Singularity]]/Overmind's Guilt.md
index f9633f8..661db44 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Overmind's Guilt.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Overmind's Guilt.md
@@ -1,5 +1,8 @@
---
+name: Overmind's Guilt
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 8
attack: 8
health: 8
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Quicksilver Khaela.md b/chrono.docs/Immortalized/[[Singularity]]/Quicksilver Khaela.md
index bf04869..d72d02d 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Quicksilver Khaela.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Quicksilver Khaela.md
@@ -1,5 +1,8 @@
---
+name: Quicksilver Khaela
category: Immortalized
+artist: Arthur Rosa
+rarity: Lost
cost: 2
attack: 2
health: 1
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Raiz, Pacifist's Conclusion.md b/chrono.docs/Immortalized/[[Singularity]]/Raiz, Pacifist's Conclusion.md
index dacec06..2a5a87f 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Raiz, Pacifist's Conclusion.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Raiz, Pacifist's Conclusion.md
@@ -1,5 +1,8 @@
---
+name: Raiz, Pacifist's Conclusion
category: Immortalized
+artist: Ritchie Cantuária
+rarity: Common
cost: 2
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Terraformer.md b/chrono.docs/Immortalized/[[Singularity]]/Terraformer.md
index 2ebf01d..ba547fd 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Terraformer.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Terraformer.md
@@ -1,5 +1,8 @@
---
+name: Terraformer
category: Immortalized
+artist: Horugode
+rarity: Common
cost: 4
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Wom, Sweet Wom.md b/chrono.docs/Immortalized/[[Singularity]]/Wom, Sweet Wom.md
index 06ac861..181ada3 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Wom, Sweet Wom.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Wom, Sweet Wom.md
@@ -1,5 +1,8 @@
---
+name: Wom, Sweet Wom
category: Immortalized
+artist: Bi Pi
+rarity: Divergent
cost: 2
attack: 1
health: 4
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Ziv, the Adaptable.md b/chrono.docs/Immortalized/[[Singularity]]/Ziv, the Adaptable.md
index fdb0cd0..79ff552 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Ziv, the Adaptable.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Ziv, the Adaptable.md
@@ -1,5 +1,8 @@
---
+name: Ziv, the Adaptable
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 5
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Singularity]]/Zorp, Unrecyclable.md b/chrono.docs/Immortalized/[[Singularity]]/Zorp, Unrecyclable.md
index 00fa226..bd0c443 100644
--- a/chrono.docs/Immortalized/[[Singularity]]/Zorp, Unrecyclable.md
+++ b/chrono.docs/Immortalized/[[Singularity]]/Zorp, Unrecyclable.md
@@ -1,5 +1,8 @@
---
+name: Zorp, Unrecyclable
category: Immortalized
+artist: Bi Pi
+rarity: Common
cost: 3
attack: 6
health: 1
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Armageddonaut.md b/chrono.docs/Immortalized/[[Splintergleam]]/Armageddonaut.md
index 8b74836..b10920c 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Armageddonaut.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Armageddonaut.md
@@ -1,5 +1,8 @@
---
+name: Armageddonaut
category: Immortalized
+artist: Simon Carr
+rarity: Divergent
cost: 5
attack: 6
health: 6
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Boatswain Corvus.md b/chrono.docs/Immortalized/[[Splintergleam]]/Boatswain Corvus.md
index d236589..e09fb2a 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Boatswain Corvus.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Boatswain Corvus.md
@@ -1,5 +1,8 @@
---
+name: Boatswain Corvus
category: Immortalized
+artist: Donnie Obina
+rarity: Lost
cost: 7
attack: 6
health: 10
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Boof, the Champion.md b/chrono.docs/Immortalized/[[Splintergleam]]/Boof, the Champion.md
index 652f9ee..40d24d5 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Boof, the Champion.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Boof, the Champion.md
@@ -1,5 +1,8 @@
---
+name: Boof, the Champion
category: Immortalized
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 4
health: 4
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Brant the Bloody.md b/chrono.docs/Immortalized/[[Splintergleam]]/Brant the Bloody.md
index a353610..ef99276 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Brant the Bloody.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Brant the Bloody.md
@@ -1,5 +1,8 @@
---
+name: Brant the Bloody
category: Immortalized
+artist: Karl Angelo Brito
+rarity: Common
cost: 1
attack: 2
health: 3
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Enlightened Survivor.md b/chrono.docs/Immortalized/[[Splintergleam]]/Enlightened Survivor.md
index 1895ce2..a370073 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Enlightened Survivor.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Enlightened Survivor.md
@@ -1,5 +1,8 @@
---
+name: Enlightened Survivor
category: Immortalized
+artist: Paul Takahashi
+rarity: Common
cost: 3
attack: 4
health: 5
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Khaela the Hungry.md b/chrono.docs/Immortalized/[[Splintergleam]]/Khaela the Hungry.md
index c4a2e6c..80e97d2 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Khaela the Hungry.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Khaela the Hungry.md
@@ -1,5 +1,8 @@
---
+name: Khaela the Hungry
category: Immortalized
+artist: G.C.
+rarity: Lost
cost: 2
attack: 1
health: 5
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Kurian, the Breaker.md b/chrono.docs/Immortalized/[[Splintergleam]]/Kurian, the Breaker.md
index 3d1eaf1..c9c24c0 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Kurian, the Breaker.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Kurian, the Breaker.md
@@ -1,5 +1,8 @@
---
+name: Kurian, the Breaker
category: Immortalized
+artist: Paul Takahashi
+rarity: Common
cost: 6
attack: 10
health: 5
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Magnus Lavaborn.md b/chrono.docs/Immortalized/[[Splintergleam]]/Magnus Lavaborn.md
index 7c50145..94900a9 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Magnus Lavaborn.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Magnus Lavaborn.md
@@ -1,5 +1,8 @@
---
+name: Magnus Lavaborn
category: Immortalized
+artist: um_predo
+rarity: Rare
cost: 1
attack: 3
health: 1
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Master of Ceremonies.md b/chrono.docs/Immortalized/[[Splintergleam]]/Master of Ceremonies.md
index 53da1bc..eaac141 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Master of Ceremonies.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Master of Ceremonies.md
@@ -1,5 +1,8 @@
---
+name: Master of Ceremonies
category: Immortalized
+artist: Simon Carr
+rarity: Divergent
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Odol, the Red Death.md b/chrono.docs/Immortalized/[[Splintergleam]]/Odol, the Red Death.md
index 1e3bf57..32ef926 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Odol, the Red Death.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Odol, the Red Death.md
@@ -1,5 +1,8 @@
---
+name: Odol, the Red Death
category: Immortalized
+artist: Arthur Rosa
+rarity: Lost
cost: 5
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Opener of the Way.md b/chrono.docs/Immortalized/[[Splintergleam]]/Opener of the Way.md
index 196078f..2d52dc6 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Opener of the Way.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Opener of the Way.md
@@ -1,5 +1,8 @@
---
+name: Opener of the Way
category: Immortalized
+artist: Simon Carr
+rarity: Rare
cost: 5
attack: 5
health: 6
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Overseer of Trials.md b/chrono.docs/Immortalized/[[Splintergleam]]/Overseer of Trials.md
index 0f63bbe..280d866 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Overseer of Trials.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Overseer of Trials.md
@@ -1,5 +1,8 @@
---
+name: Overseer of Trials
category: Immortalized
+artist: Julien Fenoglio
+rarity: Rare
cost: 3
attack: 3
health: 5
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Sareh, Rebel Strategist.md b/chrono.docs/Immortalized/[[Splintergleam]]/Sareh, Rebel Strategist.md
index 19d1513..f9a60c2 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Sareh, Rebel Strategist.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Sareh, Rebel Strategist.md
@@ -1,5 +1,8 @@
---
+name: Sareh, Rebel Strategist
category: Immortalized
+artist: Zed Edge
+rarity: Rare
cost: 4
attack: 5
health: 4
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Scoot Sparkles.md b/chrono.docs/Immortalized/[[Splintergleam]]/Scoot Sparkles.md
index 0e00234..9ae2611 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Scoot Sparkles.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Scoot Sparkles.md
@@ -1,5 +1,8 @@
---
+name: Scoot Sparkles
category: Immortalized
+rarity: Common
+artist: BEIKI
cost: 1
attack: 1
health: 3
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/The Ripper.md b/chrono.docs/Immortalized/[[Splintergleam]]/The Ripper.md
index 0122c31..febc6a6 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/The Ripper.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/The Ripper.md
@@ -1,5 +1,8 @@
---
+name: The Ripper
category: Immortalized
+artist: Julien Fenoglio
+rarity: Common
cost: 4
attack: 4
health: 7
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/The Unstoppable Flow.md b/chrono.docs/Immortalized/[[Splintergleam]]/The Unstoppable Flow.md
index d96fea7..12d8e6f 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/The Unstoppable Flow.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/The Unstoppable Flow.md
@@ -1,5 +1,8 @@
---
+name: The Unstoppable Flow
category: Immortalized
+artist: Paul Takahashi
+rarity: Divergent
cost: 4
attack: 2
health: 2
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Tyar, Benevolent Ruler.md b/chrono.docs/Immortalized/[[Splintergleam]]/Tyar, Benevolent Ruler.md
index c1057f8..6232d33 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Tyar, Benevolent Ruler.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Tyar, Benevolent Ruler.md
@@ -1,5 +1,8 @@
---
+name: Tyar, Benevolent Ruler
category: Immortalized
+artist: Julien Fenoglio
+rarity: Rare
cost: 7
attack: 7
health: 6
diff --git a/chrono.docs/Immortalized/[[Splintergleam]]/Vera, Original Proof.md b/chrono.docs/Immortalized/[[Splintergleam]]/Vera, Original Proof.md
index a2cacfd..ccec203 100644
--- a/chrono.docs/Immortalized/[[Splintergleam]]/Vera, Original Proof.md
+++ b/chrono.docs/Immortalized/[[Splintergleam]]/Vera, Original Proof.md
@@ -1,5 +1,8 @@
---
+name: Vera, Original Proof
category: Immortalized
+artist: Xtian.Art
+rarity: Common
cost: 2
attack: 4
health: 3
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Chaos Conductor Boltz.md b/chrono.docs/Immortalized/[[Sungrace]]/Chaos Conductor Boltz.md
index 781f6d5..6b8904c 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Chaos Conductor Boltz.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Chaos Conductor Boltz.md
@@ -1,5 +1,8 @@
---
+name: Chaos Conductor Boltz
category: Immortalized
+artist: Donnie Obina
+rarity: Divergent
cost: 5
attack: 6
health: 4
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Clarion, Deepest Breath.md b/chrono.docs/Immortalized/[[Sungrace]]/Clarion, Deepest Breath.md
index c6b38e4..edb44a6 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Clarion, Deepest Breath.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Clarion, Deepest Breath.md
@@ -1,5 +1,8 @@
---
+name: Clarion, Deepest Breath
category: Immortalized
+artist: Bi Pi
+rarity: Divergent
cost: 6
attack: 6
health: 6
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Doctor Mirthram Remora.md b/chrono.docs/Immortalized/[[Sungrace]]/Doctor Mirthram Remora.md
index ce39cd4..9224899 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Doctor Mirthram Remora.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Doctor Mirthram Remora.md
@@ -1,5 +1,8 @@
---
+name: Doctor Mirthram Remora
category: Immortalized
+artist: ssunnyday
+rarity: Rare
cost: 4
attack: 3
health: 4
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Dyson, the Aspirant.md b/chrono.docs/Immortalized/[[Sungrace]]/Dyson, the Aspirant.md
index fe12726..e115eb4 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Dyson, the Aspirant.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Dyson, the Aspirant.md
@@ -1,5 +1,8 @@
---
+name: Dyson, the Aspirant
category: Immortalized
+artist: Horugode
+rarity: Rare
cost: 2
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Eruption Incarnate.md b/chrono.docs/Immortalized/[[Sungrace]]/Eruption Incarnate.md
index 556b9ad..cdab0b3 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Eruption Incarnate.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Eruption Incarnate.md
@@ -1,5 +1,8 @@
---
+name: Eruption Incarnate
category: Immortalized
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 5
health: 5
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Gentle Frank.md b/chrono.docs/Immortalized/[[Sungrace]]/Gentle Frank.md
index 2ba4658..8d95729 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Gentle Frank.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Gentle Frank.md
@@ -1,5 +1,8 @@
---
+name: Gentle Frank
category: Immortalized
+artist: Bi Pi
+rarity: Common
cost: 8
attack: 9
health: 15
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Grand Admiral Khaela.md b/chrono.docs/Immortalized/[[Sungrace]]/Grand Admiral Khaela.md
index dc3884e..7c186a0 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Grand Admiral Khaela.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Grand Admiral Khaela.md
@@ -1,5 +1,8 @@
---
+name: Grand Admiral Khaela
category: Immortalized
+artist: Arthur Rosa
+rarity: Rare
cost: 7
attack: 6
health: 7
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Kyln, the Dynasty.md b/chrono.docs/Immortalized/[[Sungrace]]/Kyln, the Dynasty.md
index 01a7405..435586e 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Kyln, the Dynasty.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Kyln, the Dynasty.md
@@ -1,5 +1,8 @@
---
+name: Kyln, the Dynasty
category: Immortalized
+artist: Karl Angelo Brito
+rarity: Lost
cost: 8
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Living Comet.md b/chrono.docs/Immortalized/[[Sungrace]]/Living Comet.md
index ba92cf2..9f4ffa2 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Living Comet.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Living Comet.md
@@ -1,5 +1,8 @@
---
+name: Living Comet
category: Immortalized
+artist: Arthur Rosa
+rarity: Rare
cost: 4
attack: 1
health: 1
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Luminous Vengeance.md b/chrono.docs/Immortalized/[[Sungrace]]/Luminous Vengeance.md
index 7c326f0..f875ab5 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Luminous Vengeance.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Luminous Vengeance.md
@@ -1,5 +1,8 @@
---
+name: Luminous Vengeance
category: Immortalized
+artist: Arthur Rosa
+rarity: Common
cost: 5
attack: 7
health: 6
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Malark, the Silver Wave.md b/chrono.docs/Immortalized/[[Sungrace]]/Malark, the Silver Wave.md
index a6a206b..2623a63 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Malark, the Silver Wave.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Malark, the Silver Wave.md
@@ -1,5 +1,8 @@
---
+name: Malark, the Silver Wave
category: Immortalized
+artist: Zed Edge
+rarity: Rare
cost: 3
attack: 4
health: 1
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Malum, the Fist.md b/chrono.docs/Immortalized/[[Sungrace]]/Malum, the Fist.md
index 8697522..ca411dd 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Malum, the Fist.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Malum, the Fist.md
@@ -1,5 +1,8 @@
---
+name: Malum, the Fist
category: Immortalized
+artist: Bi Pi
+rarity: Rare
cost: 2
attack: 0
health: 1
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Mechanist Daedelus.md b/chrono.docs/Immortalized/[[Sungrace]]/Mechanist Daedelus.md
index 15b4150..4520e1f 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Mechanist Daedelus.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Mechanist Daedelus.md
@@ -1,5 +1,8 @@
---
+name: Mechanist Daedelus
category: Immortalized
+artist: Karl Angelo Brito
+rarity: Lost
cost: 5
attack: 5
health: 6
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Penitent Star.md b/chrono.docs/Immortalized/[[Sungrace]]/Penitent Star.md
index 149148a..4b79f73 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Penitent Star.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Penitent Star.md
@@ -1,5 +1,8 @@
---
+name: Penitent Star
category: Immortalized
+artist: Arthur Rosa
+rarity: Divergent
cost: 5
attack: 4
health: 8
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Quaid, the Willing.md b/chrono.docs/Immortalized/[[Sungrace]]/Quaid, the Willing.md
index cc3e79c..cea2ee3 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Quaid, the Willing.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Quaid, the Willing.md
@@ -1,5 +1,8 @@
---
+name: Quaid, the Willing
category: Immortalized
+artist: Arthur Rosa
+rarity: Common
cost: 1
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Sali, Top Gunner.md b/chrono.docs/Immortalized/[[Sungrace]]/Sali, Top Gunner.md
index a08ee15..97b4e9a 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Sali, Top Gunner.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Sali, Top Gunner.md
@@ -1,5 +1,8 @@
---
+name: Sali, Top Gunner
category: Immortalized
+artist: Xtian.Art
+rarity: Lost
cost: 2
attack: 2
health: 3
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Specialist Boof.md b/chrono.docs/Immortalized/[[Sungrace]]/Specialist Boof.md
index da49225..7f0ec9a 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Specialist Boof.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Specialist Boof.md
@@ -1,5 +1,8 @@
---
+name: Specialist Boof
category: Immortalized
+artist: Bi Pi
+rarity: Common
cost: 2
attack: 3
health: 2
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Sungarden Protector.md b/chrono.docs/Immortalized/[[Sungrace]]/Sungarden Protector.md
index bf0d261..6306846 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Sungarden Protector.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Sungarden Protector.md
@@ -1,5 +1,8 @@
---
+name: Sungarden Protector
category: Immortalized
+artist: Xtian.Art
+rarity: Divergent
cost: 1
attack: 3
health: 3
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Time Devourer Soval.md b/chrono.docs/Immortalized/[[Sungrace]]/Time Devourer Soval.md
index a368c9d..d01d736 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Time Devourer Soval.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Time Devourer Soval.md
@@ -1,5 +1,8 @@
---
+name: Time Devourer Soval
category: Immortalized
+artist: Paul Takahashi
+rarity: Lost
cost: 10
attack: 12
health: 12
diff --git a/chrono.docs/Immortalized/[[Sungrace]]/Vor’kon, Eternal Source.md b/chrono.docs/Immortalized/[[Sungrace]]/Vor’kon, Eternal Source.md
index f460713..5e643d2 100644
--- a/chrono.docs/Immortalized/[[Sungrace]]/Vor’kon, Eternal Source.md
+++ b/chrono.docs/Immortalized/[[Sungrace]]/Vor’kon, Eternal Source.md
@@ -1,5 +1,8 @@
---
+name: Vor’kon, Eternal Source
category: Immortalized
+artist: Xtian.Art
+rarity: Common
cost: 3
attack: 2
health: 7
diff --git a/chrono.docs/Quest/Daily Wins.md b/chrono.docs/Quest/Daily Wins.md
index 39ab18f..848308f 100644
--- a/chrono.docs/Quest/Daily Wins.md
+++ b/chrono.docs/Quest/Daily Wins.md
@@ -1,3 +1,11 @@
---
category: Quest
---
+1: 30cc 30xp
+2: 20cc 25xp
+3: 20cc 20xp
+4: 10cc 20xp
+5: 10cc 15xp
+6-12 are all simply 5xp.
+
+So the daily total win reward for 12 wins is 90cc/145xp.
\ No newline at end of file
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Affront to Nature.md b/chrono.docs/Spell/[[Lifeblood]]/Affront to Nature.md
index f6207b6..99baeed 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Affront to Nature.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Affront to Nature.md
@@ -1,5 +1,8 @@
---
+name: Affront to Nature
category: Spell
+artist: Donnie Obina
+rarity: Divergent
cost: 9
description: "Allies [[Flourish]] 3 times. Enemies [[Decay]] 3 times."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Bloom.md b/chrono.docs/Spell/[[Lifeblood]]/Bloom.md
index a188160..8a7a632 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Bloom.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Bloom.md
@@ -1,5 +1,8 @@
---
+name: Bloom
category: Spell
+artist: Joyblivion
+rarity: Common
cost: 2
description: "Give an ally +0/+2 this round. [[Sprout]] 1."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Chronosynthesis.md b/chrono.docs/Spell/[[Lifeblood]]/Chronosynthesis.md
index 3a09e17..83a3f5b 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Chronosynthesis.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Chronosynthesis.md
@@ -1,5 +1,8 @@
---
+name: Chronosynthesis
category: Spell
+artist: Simon Carr
+rarity: Lost
cost: 8
description: "[[Sprout]] 1 for every time you have [[Sprout|Sprouted]] this game."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Convergent Pack.md b/chrono.docs/Spell/[[Lifeblood]]/Convergent Pack.md
index df4c3bb..d186b81 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Convergent Pack.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Convergent Pack.md
@@ -1,5 +1,8 @@
---
+name: Convergent Pack
category: Spell
+artist: Paul Takahashi
+rarity: Divergent
cost: 4
description: "[[Shift]] to [[Abundant Growth]]. For every two Timelines in the Timeline Stack, summon an attacking [[Wolf]] Confronting the weakest unconfronted enemy."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Focused Adaptation.md b/chrono.docs/Spell/[[Lifeblood]]/Focused Adaptation.md
index 90e5d34..4a60e85 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Focused Adaptation.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Focused Adaptation.md
@@ -1,5 +1,8 @@
---
+name: Focused Adaptation
category: Spell
+artist: Bi Pi
+rarity: Rare
cost: 4
description: "Give an ally \"The next time I would be destroyed, instead heal me to full and heal your Core the same amount\" this round."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Mulch.md b/chrono.docs/Spell/[[Lifeblood]]/Mulch.md
index cee597f..cc40896 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Mulch.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Mulch.md
@@ -1,5 +1,8 @@
---
+name: Mulch
category: Spell
+artist: Donnie Obina
+rarity: Common
cost: 2
description: "Destroy an ally to [[Sprout]] equal to its Strength."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Paradox Stimulator.md b/chrono.docs/Spell/[[Lifeblood]]/Paradox Stimulator.md
index af9acaa..be20e0c 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Paradox Stimulator.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Paradox Stimulator.md
@@ -1,5 +1,8 @@
---
+name: Paradox Stimulator
category: Spell
+artist: Bi Pi
+rarity: Common
cost: 1
description: "[[Sprout]] 1. [[Paradox]]: Instead, [[Sprout]] 3."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Rumpus.md b/chrono.docs/Spell/[[Lifeblood]]/Rumpus.md
index 36238d4..565dfc3 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Rumpus.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Rumpus.md
@@ -1,5 +1,8 @@
---
+name: Rumpus
category: Spell
+artist: Bi Pi
+rarity: Rare
cost: 3
description: "Create a 1 cost [[Transient]] [[Throwdown]] in hand for each ally."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Scent the Prey.md b/chrono.docs/Spell/[[Lifeblood]]/Scent the Prey.md
index daa3a4b..5173dab 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Scent the Prey.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Scent the Prey.md
@@ -1,5 +1,8 @@
---
+name: Scent the Prey
category: Spell
+artist: Julien Fenoglio
+rarity: Rare
cost: 3
description: "Choose an ally. Give all enemies with less Strength Exposed this round. [[Shift]] to either [[Abundant Growth]] or [[Deadly Fauna]]."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Strength of the Grove.md b/chrono.docs/Spell/[[Lifeblood]]/Strength of the Grove.md
index ab39914..186a660 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Strength of the Grove.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Strength of the Grove.md
@@ -1,5 +1,8 @@
---
+name: Strength of the Grove
category: Spell
+artist: Paul Takahashi
+rarity: Common
cost: 4
description: "[[Sprout]] 1. Give an ally +1/+1 this round for each other ally."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Symbiosis.md b/chrono.docs/Spell/[[Lifeblood]]/Symbiosis.md
index 2e6c979..131786e 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Symbiosis.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Symbiosis.md
@@ -1,5 +1,8 @@
---
+name: Symbiosis
category: Spell
+artist: Red Dragon Artwork
+rarity: Divergent
cost: 6
description: "Grant two Agents each other's stats and keywords."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Throwdown.md b/chrono.docs/Spell/[[Lifeblood]]/Throwdown.md
index ab191ab..f739f69 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Throwdown.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Throwdown.md
@@ -1,5 +1,8 @@
---
+name: Throwdown
category: Spell
+artist: Julien Fenoglio
+rarity: Common
cost: 2
description: "An ally and an enemy [[Strike]] each other."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Uninhibited Expansion.md b/chrono.docs/Spell/[[Lifeblood]]/Uninhibited Expansion.md
index 736ee53..cb772a9 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Uninhibited Expansion.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Uninhibited Expansion.md
@@ -1,5 +1,8 @@
---
+name: Uninhibited Expansion
category: Spell
+artist: Simon Carr
+rarity: Common
cost: 5
description: "[[Sprout]] 6."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Lifeblood]]/Unstoppable Growth.md b/chrono.docs/Spell/[[Lifeblood]]/Unstoppable Growth.md
index e492f6d..38d32cd 100644
--- a/chrono.docs/Spell/[[Lifeblood]]/Unstoppable Growth.md
+++ b/chrono.docs/Spell/[[Lifeblood]]/Unstoppable Growth.md
@@ -1,5 +1,8 @@
---
+name: Unstoppable Growth
category: Spell
+artist: Julien Fenoglio
+rarity: Lost
cost: 4
description: "An Agent destroys its allies and gains their Strength and Durability."
faction: "[[Lifeblood]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Backhand.md b/chrono.docs/Spell/[[Phasetide]]/Backhand.md
index 7ffa39b..fc1f45e 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Backhand.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Backhand.md
@@ -1,5 +1,8 @@
---
+name: Backhand
category: Spell
+artist: Julien Fenoglio
+rarity: Common
cost: 2
description: "Destroy an Agent with 2 or less Strength or Durability."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Balanced Blade.md b/chrono.docs/Spell/[[Phasetide]]/Balanced Blade.md
index 7d9bc8b..60543f2 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Balanced Blade.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Balanced Blade.md
@@ -1,5 +1,8 @@
---
+name: Balanced Blade
category: Spell
+artist: Jeffrey Viloria
+rarity: Rare
cost: 3
description: "The next time an ally Strikes an enemy this round, first grant it Strength equal to its target's Durability."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Blessed Soup.md b/chrono.docs/Spell/[[Phasetide]]/Blessed Soup.md
index 083734e..a854666 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Blessed Soup.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Blessed Soup.md
@@ -1,5 +1,8 @@
---
+name: Blessed Soup
category: Spell
+artist: Julien Fenoglio
+rarity: Common
cost: 2
description: "[[Heal]] an Agent or Core 2. [[Draw]] 1."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/By the Numbers.md b/chrono.docs/Spell/[[Phasetide]]/By the Numbers.md
index a72974e..7f5e837 100644
--- a/chrono.docs/Spell/[[Phasetide]]/By the Numbers.md
+++ b/chrono.docs/Spell/[[Phasetide]]/By the Numbers.md
@@ -1,5 +1,8 @@
---
+name: By the Numbers
category: Spell
+artist: Bi Pi
+rarity: Common
cost: 2
description: "Reveal the top card of both decks. Create a copy of the card with the higher cost in hand, then shuffle both cards into their respective decks. In a tie, create a copy of both card..."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Chronal Quarantine.md b/chrono.docs/Spell/[[Phasetide]]/Chronal Quarantine.md
index 2cb710b..4cfe89c 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Chronal Quarantine.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Chronal Quarantine.md
@@ -1,5 +1,8 @@
---
+name: Chronal Quarantine
category: Spell
+artist: Bi Pi
+rarity: Lost
cost: 7
description: "[[Phase]] enemies. [[Phase]] allies. If [[The One True Timeline]] is active, allies [[Phase]] in."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Chronicle of the One.md b/chrono.docs/Spell/[[Phasetide]]/Chronicle of the One.md
index fc4e48e..488040a 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Chronicle of the One.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Chronicle of the One.md
@@ -1,5 +1,8 @@
---
+name: Chronicle of the One
category: Spell
+artist: Julien Fenoglio
+rarity: Lost
description: Create a [[Transient]] [[Out of Line]], [[The Firm Hand]], or [[Prayer of Rescue]] in hand.
cost: 1
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Curb the Anomalies.md b/chrono.docs/Spell/[[Phasetide]]/Curb the Anomalies.md
index eda9feb..c6ab8ec 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Curb the Anomalies.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Curb the Anomalies.md
@@ -1,5 +1,8 @@
---
+name: Curb the Anomalies
category: Spell
+artist: Jeffrey Viloria
+rarity: Divergent
cost: 6
description: "I cost 1 less if you see [[The One True Timeline]]. [[Mute]] all Agents this round. [[Shift]] to [[The One True Timeline]]."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Invigorating Balm.md b/chrono.docs/Spell/[[Phasetide]]/Invigorating Balm.md
index 4caaf22..4fdeb79 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Invigorating Balm.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Invigorating Balm.md
@@ -1,5 +1,8 @@
---
+name: Invigorating Balm
category: Spell
+artist: Bi Pi
+rarity: Common
cost: 1
description: "[[Heal]] an ally 1. Give it +1/+1 this round."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Out of Line.md b/chrono.docs/Spell/[[Phasetide]]/Out of Line.md
index e5a892d..eddbd48 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Out of Line.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Out of Line.md
@@ -1,5 +1,8 @@
---
+name: Out of Line
category: Spell
+artist: Arthur Rosa
+rarity: Common
cost: 6
description: Two Agents [[Phase]]. If they have the same name, instead destroy them.
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Paradox Flow.md b/chrono.docs/Spell/[[Phasetide]]/Paradox Flow.md
index 4fdec46..451e3a3 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Paradox Flow.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Paradox Flow.md
@@ -1,5 +1,8 @@
---
+name: Paradox Flow
category: Spell
+artist: Arthur Rosa
+rarity: Rare
cost: 3
description: "[[Shift]] to [[The One True Timeline]]. Fully [[Heal]] all allies. [[Paradox]]: Give all enemies Exposed this round."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Prayer of Rescue.md b/chrono.docs/Spell/[[Phasetide]]/Prayer of Rescue.md
index 307c36e..710f263 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Prayer of Rescue.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Prayer of Rescue.md
@@ -1,5 +1,8 @@
---
+name: Prayer of Rescue
category: Spell
+artist: Bi Pi
+rarity: Common
cost: 1
description: "[[Rewind]] an ally."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Rescind Authorization.md b/chrono.docs/Spell/[[Phasetide]]/Rescind Authorization.md
index 461de97..122ebcc 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Rescind Authorization.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Rescind Authorization.md
@@ -1,5 +1,8 @@
---
+name: Rescind Authorization
category: Spell
+artist: TheLastEmber
+rarity: Rare
cost: 4
description: "[[Rewind]] an Agent. [[Sacrifice]] 4: Instead, [[Rewind]] an ally and an enemy."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Set in Stone.md b/chrono.docs/Spell/[[Phasetide]]/Set in Stone.md
index 790e753..4017e6a 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Set in Stone.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Set in Stone.md
@@ -1,5 +1,8 @@
---
+name: Set in Stone
category: Spell
+artist: Bi Pi
+rarity: Common
cost: 4
description: "I cost 1 less if you see [[The One True Timeline]]. An Agent [[Phase|Phases]]. [[Draw]] 1."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Snap Back.md b/chrono.docs/Spell/[[Phasetide]]/Snap Back.md
index 2e2b546..71974cd 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Snap Back.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Snap Back.md
@@ -1,5 +1,8 @@
---
+name: Snap Back
category: Spell
+artist: Simon Carr
+rarity: Rare
cost: 2
description: "Return an Action from your Graveyard to your hand and grant it \"If I would be put into a Graveyard, instead [[Erase]] me\", or an Agent [[Phase|Phases]] in."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/The Firm Hand.md b/chrono.docs/Spell/[[Phasetide]]/The Firm Hand.md
index b068f0c..e03ed67 100644
--- a/chrono.docs/Spell/[[Phasetide]]/The Firm Hand.md
+++ b/chrono.docs/Spell/[[Phasetide]]/The Firm Hand.md
@@ -1,5 +1,8 @@
---
+name: The Firm Hand
category: Spell
+artist: TheLastEmber
+rarity: Common
cost: 2
description: "[[Shift]] to [[The One True Timeline]]. [[Draw]] 1."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Phasetide]]/Tidal Wave.md b/chrono.docs/Spell/[[Phasetide]]/Tidal Wave.md
index 684f427..35f5ab5 100644
--- a/chrono.docs/Spell/[[Phasetide]]/Tidal Wave.md
+++ b/chrono.docs/Spell/[[Phasetide]]/Tidal Wave.md
@@ -1,5 +1,8 @@
---
+name: Tidal Wave
category: Spell
+artist: TheLastEmber
+rarity: Lost
cost: 5
description: "[[Surge]]. If you have more Core Durability than your opponent, allies [[Flourish]] twice."
faction: "[[Phasetide]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Appeal to the Scrolls.md b/chrono.docs/Spell/[[Silence]]/Appeal to the Scrolls.md
index 2a646d1..abe36ce 100644
--- a/chrono.docs/Spell/[[Silence]]/Appeal to the Scrolls.md
+++ b/chrono.docs/Spell/[[Silence]]/Appeal to the Scrolls.md
@@ -1,5 +1,8 @@
---
+name: Appeal to the Scrolls
category: Spell
+artist: Nimesh N.
+rarity: Common
cost: 5
description: "If you have 1 or less Agents, I cost 2 less. [[Draw]] 2 Actions."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Bury the Evidence.md b/chrono.docs/Spell/[[Silence]]/Bury the Evidence.md
index c590a53..263461d 100644
--- a/chrono.docs/Spell/[[Silence]]/Bury the Evidence.md
+++ b/chrono.docs/Spell/[[Silence]]/Bury the Evidence.md
@@ -1,5 +1,8 @@
---
+name: Bury the Evidence
category: Spell
+artist: Alec Aldeva
+rarity: Rare
cost: 3
description: "An enemy Decays twice, or an ally Decays twice to [[Draw]] 2."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Cascading Serenity.md b/chrono.docs/Spell/[[Silence]]/Cascading Serenity.md
index 90c8206..194703c 100644
--- a/chrono.docs/Spell/[[Silence]]/Cascading Serenity.md
+++ b/chrono.docs/Spell/[[Silence]]/Cascading Serenity.md
@@ -1,5 +1,8 @@
---
+name: Cascading Serenity
category: Spell
+artist: Rhuan Gon
+rarity: Common
cost: 3
description: "Destroy an Agent with cost 2 or less. Create a [[Return to Stillness]] in hand."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Gnosis.md b/chrono.docs/Spell/[[Silence]]/Gnosis.md
index 6782015..44ff899 100644
--- a/chrono.docs/Spell/[[Silence]]/Gnosis.md
+++ b/chrono.docs/Spell/[[Silence]]/Gnosis.md
@@ -1,5 +1,8 @@
---
+name: Gnosis
category: Spell
+artist: Paul Takahashi
+rarity: Lost
cost: 2
description: "[[Draw]] 2. You may return any of those cards to the bottom of your deck. [[Sacrifice]] 2 for each card kept."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Hush Now.md b/chrono.docs/Spell/[[Silence]]/Hush Now.md
index 565cd2d..f0a6f93 100644
--- a/chrono.docs/Spell/[[Silence]]/Hush Now.md
+++ b/chrono.docs/Spell/[[Silence]]/Hush Now.md
@@ -1,5 +1,8 @@
---
+name: Hush Now
category: Spell
+artist: Zed Edge
+rarity: Common
cost: 6
description: "Destroy an Agent."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Mind Over Matter.md b/chrono.docs/Spell/[[Silence]]/Mind Over Matter.md
index 3c97d81..b3e21e8 100644
--- a/chrono.docs/Spell/[[Silence]]/Mind Over Matter.md
+++ b/chrono.docs/Spell/[[Silence]]/Mind Over Matter.md
@@ -1,5 +1,8 @@
---
+name: Mind Over Matter
category: Spell
+artist: Bi Pi
+rarity: Rare
cost: 3
description: "If [[Voiceless Sky]] is active, I am Immediate Speed. [[Deplete]] an Agent. [[Refresh]] an Agent."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Muffle.md b/chrono.docs/Spell/[[Silence]]/Muffle.md
index 78eb3e5..737cedb 100644
--- a/chrono.docs/Spell/[[Silence]]/Muffle.md
+++ b/chrono.docs/Spell/[[Silence]]/Muffle.md
@@ -1,5 +1,8 @@
---
+name: Muffle
category: Spell
+artist: Paul Takahashi
+rarity: Common
cost: 4
description: "[[Mute]] an Agent this round or [[Deplete]] an ally to [[Mute]] two Agents this round."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Not so Fast.md b/chrono.docs/Spell/[[Silence]]/Not so Fast.md
index d6db0a9..564924e 100644
--- a/chrono.docs/Spell/[[Silence]]/Not so Fast.md
+++ b/chrono.docs/Spell/[[Silence]]/Not so Fast.md
@@ -1,5 +1,8 @@
---
+name: Not so Fast
category: Spell
+artist: Paul Takahashi
+rarity: Rare
cost: 3
description: "Revive the strongest ally that was destroyed this round."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Paradox Plague.md b/chrono.docs/Spell/[[Silence]]/Paradox Plague.md
index 598e886..c3bf866 100644
--- a/chrono.docs/Spell/[[Silence]]/Paradox Plague.md
+++ b/chrono.docs/Spell/[[Silence]]/Paradox Plague.md
@@ -1,5 +1,8 @@
---
+name: Paradox Plague
category: Spell
+artist: Artby.dre
+rarity: Divergent
cost: 5
description: "An Agent Decays once for every Timeline in the Timeline Stack. [[Paradox]]: Instead, enemies [[Decay]] once for every Timeline in the Timeline Stack."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Pressure Spike.md b/chrono.docs/Spell/[[Silence]]/Pressure Spike.md
index 90a3704..56775ba 100644
--- a/chrono.docs/Spell/[[Silence]]/Pressure Spike.md
+++ b/chrono.docs/Spell/[[Silence]]/Pressure Spike.md
@@ -1,5 +1,8 @@
---
+name: Pressure Spike
category: Spell
+artist: Paul Takahashi
+rarity: Common
cost: 2
description: "Deal 1 to an Agent. Increase it by 1 for each ally it has."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Quiet Repose.md b/chrono.docs/Spell/[[Silence]]/Quiet Repose.md
index 32030dd..1a007fc 100644
--- a/chrono.docs/Spell/[[Silence]]/Quiet Repose.md
+++ b/chrono.docs/Spell/[[Silence]]/Quiet Repose.md
@@ -1,5 +1,8 @@
---
+name: Quiet Repose
category: Spell
+artist: Paul Takahashi
+rarity: Divergent
cost: 8
description: "Destroy all Agents. You may not play Agents for the rest of the round."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Return to Stillness.md b/chrono.docs/Spell/[[Silence]]/Return to Stillness.md
index 713133a..abe5bd3 100644
--- a/chrono.docs/Spell/[[Silence]]/Return to Stillness.md
+++ b/chrono.docs/Spell/[[Silence]]/Return to Stillness.md
@@ -1,5 +1,8 @@
---
+name: Return to Stillness
category: Spell
+artist: Paul Takahashi
+rarity: Common
cost: 1
description: "An Agent [[Deplete|Depletes]]. [[Shift]] to [[Voiceless Sky]]."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Spirit's Lament.md b/chrono.docs/Spell/[[Silence]]/Spirit's Lament.md
index 7c183b4..cc123fc 100644
--- a/chrono.docs/Spell/[[Silence]]/Spirit's Lament.md
+++ b/chrono.docs/Spell/[[Silence]]/Spirit's Lament.md
@@ -1,5 +1,8 @@
---
+name: Spirit's Lament
category: Spell
+artist: Paul Takahashi
+rarity: Lost
cost: 11
description: "Revive an ally. Grant it the combined stats and positive keywords of all other Agents in Graveyards."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Silence]]/Spread the Sickness.md b/chrono.docs/Spell/[[Silence]]/Spread the Sickness.md
index fcddb9b..2d760ef 100644
--- a/chrono.docs/Spell/[[Silence]]/Spread the Sickness.md
+++ b/chrono.docs/Spell/[[Silence]]/Spread the Sickness.md
@@ -1,5 +1,8 @@
---
+name: Spread the Sickness
category: Spell
+artist: Artby.dre
+rarity: Rare
cost: 5
description: "When an Agent is destroyed this round, Agents [[Decay]]. Agents [[Decay]]."
faction: "[[Silence]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Aggressive Recycling.md b/chrono.docs/Spell/[[Singularity]]/Aggressive Recycling.md
index 22eadf0..c05a670 100644
--- a/chrono.docs/Spell/[[Singularity]]/Aggressive Recycling.md
+++ b/chrono.docs/Spell/[[Singularity]]/Aggressive Recycling.md
@@ -1,5 +1,8 @@
---
+name: Aggressive Recycling
category: Spell
+artist: TheLastEmber
+rarity: Rare
cost: 2
description: "Discard 2 to play. [[Draw]] 2. [[Sacrifice]] 3: Instead, Discard 3 to play. [[Draw]] 3."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Built to Burn.md b/chrono.docs/Spell/[[Singularity]]/Built to Burn.md
index a94f228..0cb6f4a 100644
--- a/chrono.docs/Spell/[[Singularity]]/Built to Burn.md
+++ b/chrono.docs/Spell/[[Singularity]]/Built to Burn.md
@@ -1,5 +1,8 @@
---
+name: Built to Burn
category: Spell
+artist: Donnie Obina
+rarity: Common
cost: 5
description: "Summon a Temporary exact copy of an ally."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Chronal Scan.md b/chrono.docs/Spell/[[Singularity]]/Chronal Scan.md
index 97c47dd..2a1f3e5 100644
--- a/chrono.docs/Spell/[[Singularity]]/Chronal Scan.md
+++ b/chrono.docs/Spell/[[Singularity]]/Chronal Scan.md
@@ -1,5 +1,8 @@
---
+name: Chronal Scan
category: Spell
+artist: Bi Pi
+rarity: Divergent
cost: 3
description: "Discard 1 to play. Create a [[Transient]] copy in hand of an ally now and at next Round Start."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Conscientious Overwrite.md b/chrono.docs/Spell/[[Singularity]]/Conscientious Overwrite.md
index 399a38f..d97aeba 100644
--- a/chrono.docs/Spell/[[Singularity]]/Conscientious Overwrite.md
+++ b/chrono.docs/Spell/[[Singularity]]/Conscientious Overwrite.md
@@ -1,5 +1,8 @@
---
+name: Conscientious Overwrite
category: Spell
+artist: Donnie Obina
+rarity: Common
cost: 2
description: "Deal 2 to an Agent. Create a [[Scouter Round]] in hand."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Frontline Fellowship.md b/chrono.docs/Spell/[[Singularity]]/Frontline Fellowship.md
index 1a8e96b..de32a93 100644
--- a/chrono.docs/Spell/[[Singularity]]/Frontline Fellowship.md
+++ b/chrono.docs/Spell/[[Singularity]]/Frontline Fellowship.md
@@ -1,5 +1,8 @@
---
+name: Frontline Fellowship
category: Spell
+artist: Bi Pi
+rarity: Rare
cost: 4
description: "Disarm the strongest ally to Disarm the two strongest enemies."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Headbanging.md b/chrono.docs/Spell/[[Singularity]]/Headbanging.md
index 3ad8044..b2165e7 100644
--- a/chrono.docs/Spell/[[Singularity]]/Headbanging.md
+++ b/chrono.docs/Spell/[[Singularity]]/Headbanging.md
@@ -1,5 +1,8 @@
---
+name: Headbanging
category: Spell
+artist: Zed Edge
+rarity: Common
cost: 1
description: "Discard 1 to play. Deal 2 to an Agent or Core."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Overclock.md b/chrono.docs/Spell/[[Singularity]]/Overclock.md
index 7cc9859..1624f4f 100644
--- a/chrono.docs/Spell/[[Singularity]]/Overclock.md
+++ b/chrono.docs/Spell/[[Singularity]]/Overclock.md
@@ -1,5 +1,8 @@
---
+name: Overclock
category: Spell
+artist: Julien Fenoglio
+rarity: Divergent
cost: 4
description: "Discard 1 to play. Double an ally's Strength and Durability and grant it Temporary."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Paradox Analysis.md b/chrono.docs/Spell/[[Singularity]]/Paradox Analysis.md
index d5244ff..097436c 100644
--- a/chrono.docs/Spell/[[Singularity]]/Paradox Analysis.md
+++ b/chrono.docs/Spell/[[Singularity]]/Paradox Analysis.md
@@ -1,5 +1,8 @@
---
+name: Paradox Analysis
category: Spell
+artist: TheLastEmber
+rarity: Rare
cost: 5
description: "[[Draw]] 2. [[Paradox]]: Instead, [[Draw]] 3."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Pocket Dimension.md b/chrono.docs/Spell/[[Singularity]]/Pocket Dimension.md
index 551d20c..fd85c67 100644
--- a/chrono.docs/Spell/[[Singularity]]/Pocket Dimension.md
+++ b/chrono.docs/Spell/[[Singularity]]/Pocket Dimension.md
@@ -1,5 +1,8 @@
---
+name: Pocket Dimension
category: Spell
+artist: Bi Pi
+rarity: Common
cost: 3
description: "Discard up to 3 to play. Summon that many Pocket Scouts. When I am discarded create a [[Scouter Round]] in hand."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Rapid Iteration.md b/chrono.docs/Spell/[[Singularity]]/Rapid Iteration.md
index e7b0213..4365948 100644
--- a/chrono.docs/Spell/[[Singularity]]/Rapid Iteration.md
+++ b/chrono.docs/Spell/[[Singularity]]/Rapid Iteration.md
@@ -1,5 +1,8 @@
---
+name: Rapid Iteration
category: Spell
+artist: Donnie Obina
+rarity: Common
cost: 2
description: "Discard 1 to play. Deal 4 to an Agent."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Scouter Round.md b/chrono.docs/Spell/[[Singularity]]/Scouter Round.md
index 4498c35..ff877af 100644
--- a/chrono.docs/Spell/[[Singularity]]/Scouter Round.md
+++ b/chrono.docs/Spell/[[Singularity]]/Scouter Round.md
@@ -1,5 +1,8 @@
---
+name: Scouter Round
category: Spell
+artist: um_predo
+rarity: Common
cost: 1
description: "[[Play]] or Discard: Summon a [[Pocket Scout]]."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Stability Control.md b/chrono.docs/Spell/[[Singularity]]/Stability Control.md
index f83b8c0..1ca11ec 100644
--- a/chrono.docs/Spell/[[Singularity]]/Stability Control.md
+++ b/chrono.docs/Spell/[[Singularity]]/Stability Control.md
@@ -1,5 +1,8 @@
---
+name: Stability Control
category: Spell
+artist: Arthur Rosa
+rarity: Common
cost: 6
description: "An Agent loses Temporary, a card in your hand loses [[Transient]], and an Agent gains Temporary. [[Paradox]]: I cost 3."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Timestop.md b/chrono.docs/Spell/[[Singularity]]/Timestop.md
index c617ba8..eba6f7b 100644
--- a/chrono.docs/Spell/[[Singularity]]/Timestop.md
+++ b/chrono.docs/Spell/[[Singularity]]/Timestop.md
@@ -1,5 +1,8 @@
---
+name: Timestop
category: Spell
+artist: Julien Fenoglio
+rarity: Divergent
cost: 4
description: "Clear the Chain."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Timewarped Discombobulator.md b/chrono.docs/Spell/[[Singularity]]/Timewarped Discombobulator.md
index 19ede46..6961fa6 100644
--- a/chrono.docs/Spell/[[Singularity]]/Timewarped Discombobulator.md
+++ b/chrono.docs/Spell/[[Singularity]]/Timewarped Discombobulator.md
@@ -1,5 +1,8 @@
---
+name: Timewarped Discombobulator
category: Spell
+artist: Rhuan Gon
+rarity: Lost
cost: 5
description: "Deal 1 to an Agent. Summon a random 1 Cost Agent. While I'm in hand, increase both by 1 when you [[Shift]]. (Max 10)"
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/Wake-Up Prod.md b/chrono.docs/Spell/[[Singularity]]/Wake-Up Prod.md
index 2e9a668..ad45f7c 100644
--- a/chrono.docs/Spell/[[Singularity]]/Wake-Up Prod.md
+++ b/chrono.docs/Spell/[[Singularity]]/Wake-Up Prod.md
@@ -1,5 +1,8 @@
---
+name: Wake-Up Prod
category: Spell
+artist: Julien Fenoglio
+rarity: Common
cost: 2
description: "Deal 1 to an Agent or Core. [[Draw]] 1."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/We Have Cookies.md b/chrono.docs/Spell/[[Singularity]]/We Have Cookies.md
index 71f0f80..72bd16a 100644
--- a/chrono.docs/Spell/[[Singularity]]/We Have Cookies.md
+++ b/chrono.docs/Spell/[[Singularity]]/We Have Cookies.md
@@ -1,5 +1,8 @@
---
+name: We Have Cookies
category: Spell
+artist: um_predo
+rarity: Lost
cost: 9
description: "Take control of an enemy with a cost equal to or less than the number of Timelines in the Timeline Stack."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Singularity]]/What Could Be.md b/chrono.docs/Spell/[[Singularity]]/What Could Be.md
index 6555019..920754a 100644
--- a/chrono.docs/Spell/[[Singularity]]/What Could Be.md
+++ b/chrono.docs/Spell/[[Singularity]]/What Could Be.md
@@ -1,5 +1,8 @@
---
+name: What Could Be
category: Spell
+artist: Rhuan Gon
+rarity: Divergent
cost: 7
description: "Choose an ally. Disarm all other Agents."
faction: "[[Singularity]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/BREAK AND SHATTER!.md b/chrono.docs/Spell/[[Splintergleam]]/BREAK AND SHATTER!.md
index 98b30db..8e55327 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/BREAK AND SHATTER!.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/BREAK AND SHATTER!.md
@@ -1,5 +1,8 @@
---
+name: BREAK AND SHATTER!
category: Spell
+artist: Donnie Obina
+rarity: Divergent
cost: 6
description: "[[Surge]]. Give each ally +1/+1 for each point of Durability it is missing and [[Overpower]] this round."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Bathe in Flames.md b/chrono.docs/Spell/[[Splintergleam]]/Bathe in Flames.md
index 685d051..3e8c6ff 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Bathe in Flames.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Bathe in Flames.md
@@ -1,5 +1,8 @@
---
+name: Bathe in Flames
category: Spell
+artist: um_predo
+rarity: Common
cost: 2
description: "Deal 2 to an ally to deal 2 to an Agent. [[Shift]] to Volcanic Rivers."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Bloodbolt.md b/chrono.docs/Spell/[[Splintergleam]]/Bloodbolt.md
index 6b3df6e..d46fb11 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Bloodbolt.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Bloodbolt.md
@@ -1,5 +1,8 @@
---
+name: Bloodbolt
category: Spell
+artist: Rhuan Gon
+rarity: Common
cost: 3
description: "Deal 2 to an Agent or Core. Breakdown 15: Instead, deal 3."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Bloodlust.md b/chrono.docs/Spell/[[Splintergleam]]/Bloodlust.md
index f0b0017..0649a8b 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Bloodlust.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Bloodlust.md
@@ -1,5 +1,8 @@
---
+name: Bloodlust
category: Spell
+artist: Julien Fenoglio
+rarity: Common
cost: 2
description: "An ally Strikes a damaged Agent. Create a [[Transient]] [[Fueled by Pain]] in hand."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Channel Vigor.md b/chrono.docs/Spell/[[Splintergleam]]/Channel Vigor.md
index 637621d..3469ce2 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Channel Vigor.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Channel Vigor.md
@@ -1,5 +1,8 @@
---
+name: Channel Vigor
category: Spell
+artist: Julien Fenoglio
+rarity: Common
cost: 2
description: "Deal 1 to an ally to give another ally +3/+1 this round."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Circle of Strife.md b/chrono.docs/Spell/[[Splintergleam]]/Circle of Strife.md
index f740f88..073844d 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Circle of Strife.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Circle of Strife.md
@@ -1,5 +1,8 @@
---
+name: Circle of Strife
category: Spell
+artist: Julien Fenoglio
+rarity: Rare
cost: 2
description: "Deal 1 to an Agent. Create a [[Transient]] [[Bloodlust]] in hand."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Fueled by Pain.md b/chrono.docs/Spell/[[Splintergleam]]/Fueled by Pain.md
index 89b1d5f..b3a939c 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Fueled by Pain.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Fueled by Pain.md
@@ -1,5 +1,8 @@
---
+name: Fueled by Pain
category: Spell
+artist: Julien Fenoglio
+rarity: Common
cost: 2
description: "A damaged ally Strikes an Agent. Create a [[Transient]] [[Circle of Strife]] in hand."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Go for the Heart.md b/chrono.docs/Spell/[[Splintergleam]]/Go for the Heart.md
index 69a7245..11dfb59 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Go for the Heart.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Go for the Heart.md
@@ -1,5 +1,8 @@
---
+name: Go for the Heart
category: Spell
+artist: Donnie Obina
+rarity: Divergent
cost: 5
description: "Deal 3 to the enemy Core. Breakdown 10: Instead, deal 4. Breakdown 1: Instead, deal 5."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Ironblood Elixir.md b/chrono.docs/Spell/[[Splintergleam]]/Ironblood Elixir.md
index 676d0ac..ca2da85 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Ironblood Elixir.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Ironblood Elixir.md
@@ -1,5 +1,8 @@
---
+name: Ironblood Elixir
category: Spell
+artist: Julien Fenoglio
+rarity: Rare
cost: 3
description: "Grant an ally +1/+2 and Fervor."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Kintsu-Kai.md b/chrono.docs/Spell/[[Splintergleam]]/Kintsu-Kai.md
index 197e9c5..ec9a1cd 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Kintsu-Kai.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Kintsu-Kai.md
@@ -1,5 +1,8 @@
---
+name: Kintsu-Kai
category: Spell
+artist: TheLastEmber
+rarity: Common
cost: 2
description: "Any amount of allies Bleed 1. Grant Bleed to a single enemy that many times."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Magmatic Teachings.md b/chrono.docs/Spell/[[Splintergleam]]/Magmatic Teachings.md
index b8233cb..363bb1e 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Magmatic Teachings.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Magmatic Teachings.md
@@ -1,5 +1,8 @@
---
+name: Magmatic Teachings
category: Spell
+artist: Rhuan Gon
+rarity: Lost
cost: 3
description: "An [[Immortalized]] ally strikes an enemy. If that enemy is destroyed, [[Immortalize]] your weakest non-Immoralized ally."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Paradox Cacophony.md b/chrono.docs/Spell/[[Splintergleam]]/Paradox Cacophony.md
index 3ed715d..9db3ade 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Paradox Cacophony.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Paradox Cacophony.md
@@ -1,5 +1,8 @@
---
+name: Paradox Cacophony
category: Spell
+artist: TheLastEmber
+rarity: Rare
cost: 2
description: "[[Shift]] to Torment. [[Paradox]]: Trigger Bleed."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Rebuild.md b/chrono.docs/Spell/[[Splintergleam]]/Rebuild.md
index 7956f86..514dd28 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Rebuild.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Rebuild.md
@@ -1,5 +1,8 @@
---
+name: Rebuild
category: Spell
+artist: Donnie Obina
+rarity: Common
cost: 1
description: "Deal 1 to an Agent or Core. If an Agent survives this damage, it [[Flourish|Flourishes]]."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Rippling Resplendence.md b/chrono.docs/Spell/[[Splintergleam]]/Rippling Resplendence.md
index 4705cc6..df6d064 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Rippling Resplendence.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Rippling Resplendence.md
@@ -1,5 +1,8 @@
---
+name: Rippling Resplendence
category: Spell
+artist: Arthur Rosa
+rarity: Lost
cost: 5
description: "Grant allies Fervor. Deal 1 to all Agents. Breakdown 15: Deal 1 to all Agents."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Splintergleam]]/Sanguine Resurgence.md b/chrono.docs/Spell/[[Splintergleam]]/Sanguine Resurgence.md
index 283a10d..3949d9b 100644
--- a/chrono.docs/Spell/[[Splintergleam]]/Sanguine Resurgence.md
+++ b/chrono.docs/Spell/[[Splintergleam]]/Sanguine Resurgence.md
@@ -1,5 +1,8 @@
---
+name: Sanguine Resurgence
category: Spell
+artist: Rhuan Gon
+rarity: Rare
cost: 5
description: "Your Bleed effects gain Siphon this round. Two Agents Bleed 3."
faction: "[[Splintergleam]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Army of the Sun.md b/chrono.docs/Spell/[[Sungrace]]/Army of the Sun.md
index 0597d45..521be5b 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Army of the Sun.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Army of the Sun.md
@@ -1,5 +1,8 @@
---
+name: Army of the Sun
category: Spell
+artist: TheLastEmber
+rarity: Divergent
cost: 13
description: "Summon the Strongest Agent in your deck now and at each Round Start."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Chaos Control.md b/chrono.docs/Spell/[[Sungrace]]/Chaos Control.md
index 2b8a05a..d355fc1 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Chaos Control.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Chaos Control.md
@@ -1,5 +1,8 @@
---
+name: Chaos Control
category: Spell
+artist: Paul Takahashi
+rarity: Common
cost: 3
description: "Give an ally +0/+3 to give an enemy -3/-0 this round."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Entropy's End.md b/chrono.docs/Spell/[[Sungrace]]/Entropy's End.md
index f56559c..7ad088f 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Entropy's End.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Entropy's End.md
@@ -1,5 +1,8 @@
---
+name: Entropy's End
category: Spell
+artist: Julien Fenoglio
+rarity: Lost
cost: 7
description: "Revive an Agent."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Novathermal Mining.md b/chrono.docs/Spell/[[Sungrace]]/Novathermal Mining.md
index 7da277e..c7c4e12 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Novathermal Mining.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Novathermal Mining.md
@@ -1,5 +1,8 @@
---
+name: Novathermal Mining
category: Spell
+artist: Rhuan Gon
+rarity: Common
cost: 5
description: "Gain an empty Energy Crystal. [[Sacrifice]] 3: Gain 4 Reserve Energy."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Paradox Capacitor.md b/chrono.docs/Spell/[[Sungrace]]/Paradox Capacitor.md
index c7923f8..960dcb5 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Paradox Capacitor.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Paradox Capacitor.md
@@ -1,5 +1,8 @@
---
+name: Paradox Capacitor
category: Spell
+artist: Arthur Rosa
+rarity: Divergent
cost: 4
description: "Gain 1 empty Energy Crystal. [[Paradox]]: Instead, gain 2 empty Energy Crystals."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Radiant Channeling.md b/chrono.docs/Spell/[[Sungrace]]/Radiant Channeling.md
index 585a4c6..abbb81e 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Radiant Channeling.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Radiant Channeling.md
@@ -1,5 +1,8 @@
---
+name: Radiant Channeling
category: Spell
+artist: Rhuan Gon
+rarity: Rare
cost: 5
description: "Deal 0 to an Agent. Increase it by 2 and refill 1 Reserve Energy for each Reserve Energy spent to play this. [[Shift]] to Star Siphon."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Soothing Glow.md b/chrono.docs/Spell/[[Sungrace]]/Soothing Glow.md
index a9f3a40..38df25f 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Soothing Glow.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Soothing Glow.md
@@ -1,5 +1,8 @@
---
+name: Soothing Glow
category: Spell
+artist: Donnie Obina
+rarity: Common
cost: 2
description: "An ally [[Flourish|Flourishes]]. [[Heal]] your Core 2."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Sunshock.md b/chrono.docs/Spell/[[Sungrace]]/Sunshock.md
index 452d26b..e83f006 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Sunshock.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Sunshock.md
@@ -1,5 +1,8 @@
---
+name: Sunshock
category: Spell
+artist: Paul Takahashi
+rarity: Common
cost: 2
description: "Deal 2 to an Agent or Core."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Supernova.md b/chrono.docs/Spell/[[Sungrace]]/Supernova.md
index 9881556..701031b 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Supernova.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Supernova.md
@@ -1,5 +1,8 @@
---
+name: Supernova
category: Spell
+artist: Donnie Obina
+rarity: Rare
cost: 5
description: "Deal 0 to an Agent. Increase it by 2 and refill 2 Energy Crystals for each time you've Overflowed this game."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Throw into the Sun.md b/chrono.docs/Spell/[[Sungrace]]/Throw into the Sun.md
index c290fab..6380e71 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Throw into the Sun.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Throw into the Sun.md
@@ -1,5 +1,8 @@
---
+name: Throw into the Sun
category: Spell
+artist: Rhuan Gon
+rarity: Common
cost: 6
description: "[[Erase]] any card in play."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Spell/[[Sungrace]]/Unlocked Potential.md b/chrono.docs/Spell/[[Sungrace]]/Unlocked Potential.md
index 42e7c5c..6695fe3 100644
--- a/chrono.docs/Spell/[[Sungrace]]/Unlocked Potential.md
+++ b/chrono.docs/Spell/[[Sungrace]]/Unlocked Potential.md
@@ -1,5 +1,8 @@
---
+name: Unlocked Potential
category: Spell
+artist: Artby.dre
+rarity: Common
cost: 8
description: "Grant an ally +9/+4."
faction: "[[Sungrace]]"
diff --git a/chrono.docs/Token/[[Lifeblood]]/Seedling.md b/chrono.docs/Token/[[Lifeblood]]/Seedling.md
index ae8a9fc..28b1287 100644
--- a/chrono.docs/Token/[[Lifeblood]]/Seedling.md
+++ b/chrono.docs/Token/[[Lifeblood]]/Seedling.md
@@ -1,5 +1,8 @@
---
+name: Seedling
category: Token
+artist: Paul Takahashi
+rarity: Common
cost: 1
attack: 1
health: 1
diff --git a/chrono.docs/Token/[[Lifeblood]]/Wolf.md b/chrono.docs/Token/[[Lifeblood]]/Wolf.md
index 20f1060..4194b87 100644
--- a/chrono.docs/Token/[[Lifeblood]]/Wolf.md
+++ b/chrono.docs/Token/[[Lifeblood]]/Wolf.md
@@ -1,5 +1,8 @@
---
+name: Wolf
category: Token
+artist: Arthur Rosa
+rarity: Common
cost: 2
attack: 2
health: 1
diff --git a/chrono.docs/Token/[[Singularity]]/Pocket Scout.md b/chrono.docs/Token/[[Singularity]]/Pocket Scout.md
index c3b40f3..a9ea8da 100644
--- a/chrono.docs/Token/[[Singularity]]/Pocket Scout.md
+++ b/chrono.docs/Token/[[Singularity]]/Pocket Scout.md
@@ -1,5 +1,8 @@
---
+name: Pocket Scout
category: Token
+artist: um_predo
+rarity: Common
cost: 1
attack: 1
health: 1