import { Card } from '../../../interfaces' import Set from '../Dragons Exalted' const card: Card = { name: { en: "Yanma", fr: "Yanma", es: "Yanma", it: "Yanma", pt: "Yanma", de: "Yanma" }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 193, ], hp: 70, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Whirlwind", fr: "Cyclone", }, effect: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.", fr: "Votre adversaire échange le Pokémon Défenseur avec 1 de ses Pokémon de Banc.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card