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: "xy3-85", localId: 85, // Card informations name: { en: "Watchog", fr: "Miradar", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 505, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/85/low", fr: "https://assets.tcgdex.net/fr/xy/xy3/85/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/85/high", fr: "https://assets.tcgdex.net/fr/xy/xy3/85/high", }, }, evolveFrom: { en: "Patrat", fr: "Ratentif", }, tags: [ Tag.STAGE1, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Held-Item Inspection", fr: "Inspection des Bagages", }, text: { en: "Your opponent reveals his or her hand. Choose an Item card you find there. Your opponent shuffles that card into his or her deck.", fr: "Votre adversaire montre sa main. Choisissez une carte Objet que vous y trouvez. Votre adversaire mélange la carte choisie avec son deck.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Thorough Crunch", fr: "Mâchouille Impitoyable", }, text: { en: "Flip 2 coins. For each heads, discard an Energy attached to your opponent's Active Pokémon.", fr: "Lancez 2 pièces. Pour chaque côté face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card