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: "xy8-67", localId: 67, // Card informations name: { en: "Wobbuffet", fr: "Qulbutoké", }, hp: 100, type: [ Type.PSYCHIC, ], dexId: 202, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/67/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/67/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/67/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/67/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 48, name: "Akira Komayama" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Mirror Barrier", fr: "Bouclier Miroir", }, text: { en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, évitez tous les dégâts infligés à ce Pokémon par des attaques pendant le prochain tour de votre adversaire.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Rolling Tackle", fr: "Roulé-Boulé", }, damage: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card