import { Card } from '../../../interfaces' import Set from '../XY Black Star Promos' const card: Card = { name: { en: "Zekrom", fr: "Zekrom", }, illustrator: "Naoki Saito", rarity: "None", category: "Pokemon", set: Set, dexId: [ 644, ], hp: 120, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Slash", fr: "Tranche", }, damage: 20, }, { cost: [ "Lightning", "Lightning", "Colorless", "Colorless", ], name: { en: "Voltage Storm", }, effect: { en: "This attack does 10 damage to each of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", }, damage: 90, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 2, } export default card