import { Card } from '../../../interfaces' import Set from '../Legends Awakened' const card: Card = { name: { en: "Yanma", fr: "Yanma", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 193, ], hp: 70, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "U-turn", fr: "Demi-Tour", }, effect: { en: "Switch Yanma with 1 of your Benched Pokémon.", fr: "Échangez Yanma avec 1 des Pokémon de votre Banc.", }, damage: 10, }, { cost: [ "Grass", "Grass", ], name: { en: "Agility", fr: "Hâte", }, effect: { en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Yanma during your opponent's next turn.", fr: "Lancez une pièce. Si c'est face, prévenez tous les effets d'une attaque, dégâts inclus, infligés à Yanma lors du prochain tour de votre adversaire.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "+20" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card