import type { CardDefinition, ContentComponentProps } from '$lib/cards/types'; import type { Component } from 'svelte'; import DinoGameCard from './DinoGameCard.svelte'; export const DinoGameCardDefinition = { type: 'dino-game', contentComponent: DinoGameCard as unknown as Component, allowSetColor: true, createNew: (card) => { card.w = 4; card.h = 2; card.mobileW = 8; card.mobileH = 4; card.cardData = {}; }, canHaveLabel: true, keywords: ['chrome', 'dinosaur', 'runner', 'fun'], groups: ['Games'], name: 'Dino Game', icon: `` } as CardDefinition & { type: 'dino-game' };