import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/23/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm10/23/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm10/23/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 45, name: "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