import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Morpeko", }, illustrator: "Kouki Saitou", rarity: "Uncommon", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Torment", }, effect: { en: "Choose 1 of your opponent’s Active Pokémon’s attacks. During your opponent's next turn, that Pokémon can’t use that attack.", }, damage: 20, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Spark", }, effect: { en: "This attack also does 20 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", }, damage: 50, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], retreat: 1, } export default card