This commit is contained in:
Dylan Pizzo
2025-01-07 22:25:44 -08:00
parent 6827b966fd
commit 03fff8576e
4 changed files with 50 additions and 3 deletions

41
src/cards.ts Normal file
View File

@@ -0,0 +1,41 @@
import {
DominionCard,
TYPE_ACTION,
TYPE_DURATION,
TYPE_REACTION,
TYPE_TREASURE,
TYPE_VICTORY,
} from "./types.ts";
const expansionIcon = "";
const author = "Dylan";
export const cards: DominionCard[] = [
{
orientation: "card",
title: "Flask",
description:
"+2 Cards\n\nAt the start of your Clean-up phase, you may put a card from your hand onto your deck.",
types: [TYPE_TREASURE],
image: "",
artist: "",
author,
version: "0.1",
cost: "$6",
preview: "",
expansionIcon,
},
{
orientation: "card",
title: "Promising Land",
description: "Worth 1% per 3 cards you have that cost $4 or $5.",
types: [TYPE_VICTORY],
image: "",
artist: "",
author,
version: "",
cost: "$3",
preview: "",
expansionIcon,
},
];