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-64", localId: 64, // Card informations name: { en: "Claydol", fr: "Kaorine", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 344, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/64/low", fr: "https://assets.tcgdex.net/fr/bw/bw6/64/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/64/high", fr: "https://assets.tcgdex.net/fr/bw/bw6/64/high", }, }, evolveFrom: { en: "Baltoy", fr: "Balbuto", }, tags: [ Tag.STAGE1, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Rapid Spin", fr: "Tour Rapide", }, text: { en: "Switch this Pokémon with 1 of your Benched Pokémon. Then, your opponent switches the Defending Pokémon with 1 of his or her Benched Pok��mon.", fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc. Ensuite, votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rock Smash", fr: "Éclate-Roc", }, text: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 60 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card