import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Black Kyurem-EX", }, illustrator: "Eske Yoshinob", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 646, ], hp: 180, types: [ "Dragon", ], suffix: "EX", attacks: [ { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Dragon Fang", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 60, }, { cost: [ "Water", "Lightning", "Lightning", "Colorless", ], name: { en: "Freeze Shock", }, effect: { en: "This Pokémon can't attack during your next turn.", }, damage: 150, }, ], weaknesses: [ { type: "Dragon", value: "×2" }, ], retreat: 3 } export default card