import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Galarian Sirfetch'd", }, illustrator: "You Iribi", rarity: "Rare", category: "Pokemon", set: Set, evolveFrom: { en: "Galarian Farfetch'd", }, attacks: [ { cost: [ "Fighting", ], name: { en: "Pierce", }, damage: 40, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Meteor Assault", }, effect: { en: "This Pokémon can't use Meteor Assault again until it leaves the Active Spot.", }, damage: 180, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card