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: "basep-25", localId: 25, // Card informations name: { en: "Flying Pikachu", }, hp: 40, type: [ Type.LIGHTNING, ], dexId: 25, image: { low: { en: "https://assets.tcgdex.net/en/base/basep/25/low", }, high: { en: "https://assets.tcgdex.net/en/base/basep/25/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 73, name: "Toshinao Aoki" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Thundershock", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fly", }, text: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Flying Pikachu; if tails, this attack does nothing (not even damage).", }, 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