import { DominionCard, TYPE_ACTION } from "./types.ts";

export const sampleCard: DominionCard = {
	orientation: "card",
	title: "Title",
	description: "Hello, world.",
	types: [TYPE_ACTION],
	image: "",
	artist: "",
	author: "",
	version: "",
	price: "$",
	preview: "",
};