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-105", localId: 105, // Card informations name: { en: "Whismur", fr: "Chuchmur", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 293, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw8/105/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/105/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw8/105/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw8/105/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Shout", fr: "Braillement", }, text: { en: "Flip a coin. If heads, discard a random card from your opponent's hand.", fr: "Lancez une pièce. Si c'est face, défaussez au hasard une carte de la main de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hyper Voice", fr: "Mégaphone", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Plasma Storm", code: "bw8" } } export default card