import { Card } from '../../../interfaces' import Set from '../Phantom Forces' const card: Card = { name: { en: "Yanma", fr: "Yanma", }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 193, ], hp: 70, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Air Slash", fr: "Lame d'Air", }, effect: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card