import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "basep-23", localId: 23, // Card informations name: { en: "Zapdos", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 145, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/23/low", }, high: { en: "https://assets.tcgdex.net/en/base/basep/23/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Toshinao Aoki", attacks: [{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.LIGHTNING ], name: { en: "Lightning Burn", }, text: { en: "Flip a coin. If heads, and if your opponent has any Benched Pokémon, choose 1 of them. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) If tails, Zapdos does 30 damage to itself.", }, damage: 30 }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Wizards Black Star Promos", code: "basep" } } export default card