From 54a405b4b96fde0949db872a24d88f602ff1bae4 Mon Sep 17 00:00:00 2001 From: Dylan Pizzo Date: Sat, 11 Jan 2025 09:49:23 -0800 Subject: [PATCH] add some cards --- src/cards.ts | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/src/cards.ts b/src/cards.ts index ebdf0a3..628db64 100644 --- a/src/cards.ts +++ b/src/cards.ts @@ -1,7 +1,6 @@ import { DominionCard, TYPE_ACTION, - TYPE_CURSE, TYPE_DURATION, TYPE_NIGHT, TYPE_TREASURE, @@ -264,7 +263,7 @@ export const cards: DominionCard[] = [ orientation: "card", title: "Scraps", description: - "If it's your Action phase, trash up to 4 cards from your hand.\n\nIf it's your Buy phase, +$1 per 10 cards in the trash (round down).", + "If it's your Action phase, trash up to 3 cards from your hand.\n\nIf it's your Buy phase, +$1 per 10 cards in the trash (round down).", types: [TYPE_ACTION, TYPE_TREASURE], image: "", artist: "", @@ -274,4 +273,32 @@ export const cards: DominionCard[] = [ preview: "", expansionIcon, }, + { + orientation: "card", + title: "Slogger", + description: + "+1 Card\n+1 Action\n\nReveal the top 5 cards of your deck. Put the Victory cards into your hand, and put the rest back on top in any order.", + types: [TYPE_ACTION], + image: "", + artist: "", + author, + version: "0.1", + cost: "$4", + preview: "", + expansionIcon, + }, + { + orientation: "card", + title: "Vase", + description: + "$2\nReturn this to its pile.\n\n-\n\nWhen you gain this, gain another Vase (that doesn't come with another).", + types: [TYPE_TREASURE], + image: "", + artist: "", + author, + version: "0.1", + cost: "$3", + preview: "", + expansionIcon, + }, ];