import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "bw11-46", localId: 46, // Card informations name: { en: "Zapdos", }, hp: 120, type: [ Type.LIGHTNING, ], dexId: 145, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/46/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/46/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Random Spark", }, text: { en: "This attack does 50 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Thundering Hurricane", }, text: { en: "Flip 4 coins. This attack does 50 damage times the number of heads.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card