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: "bw1-PIKA", localId: "PIKA", // Card informations name: { fr: "Pikachu", }, hp: 60, type: [ Type.LIGHTNING, ], image: { low: { fr: "https://assets.tcgdex.net/fr/bw/bw1/PIKA/low", }, high: { fr: "https://assets.tcgdex.net/fr/bw/bw1/PIKA/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.LIGHTNING ], name: { fr: "Énergisant", }, text: { fr: "Attachez une carte Énergie Lightning de votre pile de défausse à ce Pokémon.", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { fr: "Tonnerre", }, text: { fr: "Défaussez toutes les Énergies attachées à ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Noir & Blanc", code: "bw1" } } export default card