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: "bw6-63", localId: 63, // Card informations name: { en: "Baltoy", fr: "Balbuto", }, hp: 60, type: [ Type.FIGHTING, ], dexId: 343, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/63/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/63/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/63/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/63/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Shigenori Negishi", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Spinning Attack", fr: "Attaque Tournante", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Reverse Spin", fr: "Vrille Renversante", }, text: { en: "Your opponent shuffles his or her hand into his or her deck and draws 4 cards.", fr: "Votre adversaire mélange sa main avec son deck et pioche 4 cartes.", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card