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