import { Card } from '../../../interfaces' import Set from '../Steam Siege' const card: Card = { name: { en: "Yanma", fr: "Yanma", }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 193, ], hp: 70, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Scout", fr: "Espionnage", }, effect: { en: "Your opponent reveals his or her hand.", fr: "Votre adversaire montre sa main.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Speed Dive", fr: "Plongée Rapide", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card