From 573595c4335be980e43444fb26d6b90f7b577c55 Mon Sep 17 00:00:00 2001 From: Peter Lord Date: Wed, 29 Jul 2026 20:36:05 -0700 Subject: [PATCH] Keep card categories out of the Colors filter and complete the rarity list --- frontend/app/cards/CardsClient.tsx | 7 ++++--- frontend/app/cards/browse/[slug]/BrowseDetail.tsx | 2 -- frontend/app/cards/page.tsx | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/frontend/app/cards/CardsClient.tsx b/frontend/app/cards/CardsClient.tsx index 1877a235..5febcc52 100644 --- a/frontend/app/cards/CardsClient.tsx +++ b/frontend/app/cards/CardsClient.tsx @@ -28,9 +28,6 @@ const colorOptions = [ { label: "Necrobinder", value: "necrobinder" }, { label: "Regent", value: "regent" }, { label: "Colorless", value: "colorless" }, - { label: "Event", value: "event" }, - { label: "Token", value: "token" }, - { label: "Curse", value: "curse" }, ]; const typeOptions = [ @@ -48,7 +45,11 @@ const rarityOptions = [ { label: "Uncommon", value: "Uncommon" }, { label: "Rare", value: "Rare" }, { label: "Ancient", value: "Ancient" }, + { label: "Event", value: "Event" }, + { label: "Status", value: "Status" }, + { label: "Curse", value: "Curse" }, { label: "Token", value: "Token" }, + { label: "Quest", value: "Quest" }, ]; const costOptions = [ diff --git a/frontend/app/cards/browse/[slug]/BrowseDetail.tsx b/frontend/app/cards/browse/[slug]/BrowseDetail.tsx index ab050f9a..ed2ba791 100644 --- a/frontend/app/cards/browse/[slug]/BrowseDetail.tsx +++ b/frontend/app/cards/browse/[slug]/BrowseDetail.tsx @@ -21,8 +21,6 @@ const colorOptions = [ { label: "Necrobinder", value: "necrobinder" }, { label: "Regent", value: "regent" }, { label: "Colorless", value: "colorless" }, - { label: "Token", value: "token" }, - { label: "Curse", value: "curse" }, ]; const typeOptions = [ diff --git a/frontend/app/cards/page.tsx b/frontend/app/cards/page.tsx index 5dbf6480..096bd00f 100644 --- a/frontend/app/cards/page.tsx +++ b/frontend/app/cards/page.tsx @@ -129,7 +129,7 @@ export default async function CardsPage() { { question: t("What are the card rarities in sts2?", lang), answer: - "Cards come in four rarities, Common, Uncommon, Rare, and Boss, plus Starter cards in each character's opening deck. Rarity affects merchant pricing, card-reward drop odds, and tier-list balance: Boss cards can swing a run, while Common pickability matters more in long campaigns.", + "Draftable cards come in Common, Uncommon, and Rare, alongside the Basic cards in each character's opening deck and the star-cost Ancient cards. Event, Status, Curse, Token, and Quest cards round out the special categories. Rarity affects merchant pricing, card-reward drop odds, and tier-list balance: Ancient cards can swing a run, while Common pickability matters more in long campaigns.", }, { question: t("Where does the card data come from?", lang),