import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Zapdos", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 145, ], hp: 90, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Lightning", "Lightning", "Colorless", ], name: { en: "Thunder", }, effect: { en: "Flip a coin. If tails, Zapdos does 30 damage to itself.", }, damage: 60, }, { cost: [ "Lightning", "Lightning", "Lightning", "Lightning", ], name: { en: "Thunderbolt", }, effect: { en: "Discard all Energy cards attached to Zapdos in order to use this attack.", }, damage: 100, }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card