import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Galarian Corsola", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Psychic", ], name: { en: "Cursed Drop", }, effect: { en: "Put 3 damage counters on your opponent’s Pokémon in any way you like.", }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 2, } export default card