import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Galarian Yamask", fr: "Tutafeh de Galar" }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Reckless Charge", fr: "Attaque Imprudente" }, effect: { en: "This Pokémon also does 30 damage to itself.", fr: "Ce Pokémon s’inflige aussi 30 dégâts." }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, hp: 70, types: ["Fighting"] } export default card