import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Zekrom-EX", }, illustrator: "Shizurow", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 644, ], hp: 180, types: [ "Lightning", ], suffix: "EX", attacks: [ { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Glinting Claw", }, effect: { en: "Flip a coin. If heads, this attack does 30 more damage.", }, damage: 50, }, { cost: [ "Lightning", "Lightning", "Colorless", "Colorless", ], name: { en: "Strong Volt", }, effect: { en: "Discard 2 Energy attached to this Pokémon.", }, damage: 150, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3 } export default card