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: "pop9-10", localId: 10, // Card informations name: { en: "Pachirisu", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 417, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop9/10/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop9/10/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Thunder Wave", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10 },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Poison Gulp", }, text: { en: "If you have Croagunk in play, this attack does 20 damage plus 20 more damage and the Defending Pokémon is now Poisoned.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "POP Series 9", code: "pop9" } } export default card