import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Galarian Yamask", }, illustrator: "Akira Komayama", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Reckless Charge", }, effect: { en: "This Pokémon also does 30 damage to itself.", }, damage: 50, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card