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: "sm5-49", localId: 49, // Card informations name: { en: "Pachirisu", fr: "Pachirisu", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 417, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm5/49/low", fr: "https://assets.tcgdex.net/fr/sm/sm5/49/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/49/high", fr: "https://assets.tcgdex.net/fr/sm/sm5/49/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "OOYAMA", attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Snuggly Generator", fr: "Générateur Douillet", }, text: { en: "For each of your Benched Pokémon that has the Nuzzle attack, search your deck for a Lightning Energy card and attach it to that Pokémon. Then, shuffle your deck.", fr: "Pour chacun de vos Pokémon de Banc ayant l’attaque Frotte-Frimousse, cherchez une carte Énergie Lightning dans votre deck et attachez-la au Pokémon. Mélangez ensuite votre deck.", }, },{ cost: [ Type.LIGHTNING ], name: { en: "Nuzzle", fr: "Frotte-Frimousse", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Ultra Prism", code: "sm5" } } export default card