@page "/" Slop Game Reference - Chrono CCG
Collectible Card Game

Slop Game Reference - Chrono CCG

AI generated website for reference notes on playing Chrono CCG.

@agentsCount Agents
@spellsCount Spells
@tokensCount Tokens
@visibleDecks Decks
@factionCount Factions
@totalCount Total Cards

Explore Cards

Browse the full gallery of @totalCount cards. Filter by faction, cost, or category, and dive into detailed stats, archetypes, and immortalize chains.

Browse Gallery

View Agents

All @agentsCount agents in a sortable data grid with filtering, paging, and detailed stats at a glance.

View Agents

Browse Decks

Check out @visibleDecks curated deck lists. See key cards, divers, and full card breakdowns with interactive previews.

Browse Decks
@code { private int totalCount; private int agentsCount; private int spellsCount; private int tokensCount; private int visibleDecks; private int factionCount; protected override void OnInitialized() { var cards = CardDatabase.Cards; totalCount = cards.Count; agentsCount = cards.Count(c => c.IsAgent); spellsCount = cards.Count(c => c.IsSpell); tokensCount = cards.Count(c => c.IsToken); visibleDecks = DeckDatabase.Decks.Count(d => d.IsVisible); factionCount = cards.Where(c => c.Faction != null).Select(c => c.Faction).Distinct().Count(); } }