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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/112/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/112/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/112/high.png", }, }, evolveFrom: { en: "Patrat", fr: "Ratentif", }, tags: [ Tag.STAGE1, ], illustrator: { id: 4, name: "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