add vp symbols

This commit is contained in:
Dylan Pizzo
2025-01-07 08:10:47 -08:00
parent 6213eda240
commit 3adf3bf76d
4 changed files with 94 additions and 154 deletions

View File

@ -3,45 +3,58 @@ import {
TYPE_ACTION,
TYPE_REACTION,
TYPE_TREASURE,
TYPE_VICTORY,
} from "./types.ts";
export const sampleCard1: DominionCard = {
orientation: "card",
title: "Title",
description:
"+1 Action\n\nReveal the top card of your deck. If it's an Action card, +1 Action.",
types: [TYPE_ACTION, TYPE_REACTION],
image: "https://wiki.dominionstrategy.com/images/7/76/AdventurerArt.jpg",
artist: "Dall-E",
author: "John Doe",
version: "",
cost: "@8",
preview: "",
};
export const sampleCard2: DominionCard = {
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: "",
};
export const sampleCard3: 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: "",
cost: "$6",
preview: "",
};
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.",
types: [TYPE_ACTION, TYPE_REACTION],
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",
title: "Flask",
description: "+1 #\n\n-\n\n2 %",
types: [TYPE_VICTORY],
image: "",
artist: "",
author: "",
version: "",
cost: "$6",
preview: "",
},
];