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: "swsh1-103", localId: 103, // Card informations name: { en: "Claydol", fr: "Kaorine", }, hp: 120, type: [ Type.FIGHTING, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/103/low.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/103/low.png", } }, evolveFrom: { en: "Baltoy", fr: "Balbuto", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Tomokazu Komiya" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Psybeam", fr: "Rafale Psy", }, text: { en: "Your opponent’s Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Explosion", fr: "Explosion", }, text: { en: "This Pokémon also does 120 damage to itself.", fr: "Ce Pokémon s’inflige aussi 120 dégâts.", }, damage: 200 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card