2025-01-06 23:01:01 -05:00
|
|
|
import {
|
|
|
|
DominionCard,
|
|
|
|
TYPE_ACTION,
|
2025-01-07 22:00:02 -08:00
|
|
|
TYPE_DURATION,
|
2025-01-06 23:01:01 -05:00
|
|
|
TYPE_REACTION,
|
|
|
|
TYPE_TREASURE,
|
2025-01-07 08:10:47 -08:00
|
|
|
TYPE_VICTORY,
|
2025-01-06 23:01:01 -05:00
|
|
|
} from "./types.ts";
|
2023-12-27 11:37:37 -08:00
|
|
|
|
2025-01-07 08:10:47 -08:00
|
|
|
export const sampleCards: DominionCard[] = [
|
|
|
|
{
|
|
|
|
orientation: "card",
|
|
|
|
title: "Title",
|
|
|
|
description:
|
|
|
|
"+1 Action\n\nReveal the top card of your deck. If it's an Action card, +1 Action. If it has ^ in its cost, +1 Card.",
|
2025-01-07 22:00:02 -08:00
|
|
|
types: [TYPE_ACTION, TYPE_DURATION, TYPE_REACTION],
|
2025-01-07 08:10:47 -08:00
|
|
|
image: "https://wiki.dominionstrategy.com/images/7/76/AdventurerArt.jpg",
|
|
|
|
artist: "Dall-E",
|
|
|
|
author: "John Doe",
|
|
|
|
version: "",
|
|
|
|
cost: "@8",
|
|
|
|
preview: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
orientation: "card",
|
|
|
|
title: "Market",
|
|
|
|
description: "+1 Card\n+1 Action\n+1 Buy\n+$1",
|
|
|
|
types: [TYPE_ACTION],
|
|
|
|
image: "",
|
|
|
|
artist: "Leonardo DaVinci",
|
|
|
|
author: "Jane Smith",
|
|
|
|
version: "",
|
|
|
|
cost: "$4",
|
|
|
|
preview: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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: "",
|
|
|
|
cost: "$6",
|
|
|
|
preview: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
orientation: "card",
|
2025-01-07 08:20:42 -08:00
|
|
|
title: "VP Card",
|
2025-01-07 20:02:50 -08:00
|
|
|
description: "+1#\n\n\n-\n\n\n2%",
|
2025-01-07 08:10:47 -08:00
|
|
|
types: [TYPE_VICTORY],
|
|
|
|
image: "",
|
|
|
|
artist: "",
|
|
|
|
author: "",
|
|
|
|
version: "",
|
|
|
|
cost: "$6",
|
|
|
|
preview: "",
|
|
|
|
},
|
2025-01-07 20:18:42 -08:00
|
|
|
{
|
|
|
|
orientation: "card",
|
|
|
|
title: "Nobles",
|
|
|
|
description: "Choose one: +3 Cards, or +2 Actions.\n\n\n-\n\n\n2%",
|
|
|
|
types: [TYPE_ACTION, TYPE_VICTORY],
|
|
|
|
image: "",
|
|
|
|
artist: "",
|
|
|
|
author: "",
|
|
|
|
version: "",
|
|
|
|
cost: "$6",
|
|
|
|
preview: "",
|
|
|
|
},
|
2025-01-07 08:10:47 -08:00
|
|
|
];
|