draw types

This commit is contained in:
Dylan Pizzo
2025-01-06 23:01:01 -05:00
parent 9cef34b976
commit b0249f8baf
4 changed files with 72 additions and 8 deletions

View File

@ -1,10 +1,16 @@
import { DominionCard, TYPE_ACTION } from "./types.ts";
import {
DominionCard,
TYPE_ACTION,
TYPE_ATTACK,
TYPE_REACTION,
TYPE_TREASURE,
} from "./types.ts";
export const sampleCard1: DominionCard = {
orientation: "card",
title: "Title",
description: "Hello, world.",
types: [TYPE_ACTION],
types: [TYPE_ACTION, TYPE_REACTION],
image: "",
artist: "",
author: "",
@ -25,3 +31,16 @@ export const sampleCard2: DominionCard = {
cost: "$4",
preview: "",
};
export const sampleCard3: DominionCard = {
orientation: "card",
title: "Silver",
description: "$2",
types: [TYPE_TREASURE],
image: "",
artist: "",
author: "",
version: "",
cost: "$3",
preview: "",
};