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: "bw8-112", localId: 112, // Card informations name: { en: "Watchog", fr: "Miradar", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 505, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw8/112/low", fr: "https://assets.tcgdex.net/fr/bw/bw8/112/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/112/high", fr: "https://assets.tcgdex.net/fr/bw/bw8/112/high", }, }, evolveFrom: { en: "Patrat", fr: "Ratentif", }, tags: [ Tag.STAGE1, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Fast Swipe", fr: "Fauchage Éclair", }, text: { en: "Discard a random card from your opponent's hand.", fr: "Défaussez au hasard une carte de la main de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Biting Fang", fr: "Croc Mordant", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Plasma Storm", code: "bw8" } } export default card