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: "dp2-94", localId: 94, // Card informations name: { en: "Pikachu", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 25, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp2/94/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/94/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Sumiyoshi Kizuki", abilities: [{ id: 143, type: AbilityType.POKEPOWER, name: { en: "Electro Recycle", }, text: { en: "Once during your turn (before your attack), if Pichu is anywhere under Pikachu, you may search your discard pile for a Lightning Energy card, show it to your opponent, and put it into your hand. This power can't be used if Pikachu is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "BikaBika", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Mysterious Treasures", code: "dp2" } } export default card