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: "bw1-79", localId: 79, // Card informations name: { en: "Watchog", fr: "Miradar", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 505, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw1/79/low", fr: "https://assets.tcgdex.net/fr/bw/bw1/79/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/79/high", fr: "https://assets.tcgdex.net/fr/bw/bw1/79/high", }, }, evolveFrom: { en: "Patrat", fr: "Ratentif", }, tags: [ Tag.STAGE1, ], illustrator: "match", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Confuse Ray", fr: "Onde Folie", }, text: { en: "The Defending Pokémon is now Confused.", fr: "Le Pokémon Défenseur est maintenant Confus.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Fang", fr: "Croc de Mort", }, text: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c’est pile, cette attaque ne fait rien.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Black & White", code: "bw1" } } export default card