draw types
This commit is contained in:
@ -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: "",
|
||||
};
|
||||
|
Reference in New Issue
Block a user