import { Card } from '../../../interfaces' import Set from '../Neo Discovery' const card: Card = { name: { en: "Yanma", }, illustrator: "Atsuko Nishida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 193, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Shockwave", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage to each of your opponent's Pokémon. Don't apply Weakness and Resistance. Then, if your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon.", }, }, { cost: [ "Grass", "Grass", "Grass", ], name: { en: "Swift", }, effect: { en: "This attack's damage isn't affected by Weakness, Resistance, Pokémon Powers, or any other effects on the Defending Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card