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: "pop6-4", localId: 4, // Card informations name: { en: "Pachirisu", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 417, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop6/4/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop6/4/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Minor Errand-Running", }, text: { en: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, },{ cost: [ Type.LIGHTNING ], name: { en: "Thunder Jolt", }, text: { en: "Flip a coin. If tails, Pachirisu does 10 damage to itself.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "+20" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "POP Series 6", code: "pop6" } } export default card