import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "sm10-23", localId: 23, // Card informations name: { en: "Darumaka", fr: "Darumarond", }, hp: 80, type: [ Type.FIRE, ], dexId: 554, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm10/23/low", fr: "https://assets.tcgdex.net/fr/sm/sm10/23/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/23/high", fr: "https://assets.tcgdex.net/fr/sm/sm10/23/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Yuka Morii", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Flame Charge", fr: "Nitrocharge", }, text: { en: "Search your deck for a Fire Energy card and attach it to this Pokémon. Then, shuffle your deck.", fr: "Cherchez une carte Énergie Fire dans votre deck et attachez-la à ce Pokémon. Mélangez ensuite votre deck.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Flop", fr: "Flop", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Unbroken Bonds", code: "sm10" } } export default card