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: "bw4-71", localId: 71, // Card informations name: { en: "Nuzleaf", fr: "Pifeuil", }, hp: 80, type: [ Type.DARKNESS, ], dexId: 274, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw4/71/low", fr: "https://assets.tcgdex.net/fr/bw/bw4/71/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw4/71/high", fr: "https://assets.tcgdex.net/fr/bw/bw4/71/high", }, }, evolveFrom: { en: "Seedot", fr: "Grainipiot", }, tags: [ Tag.STAGE1, ], illustrator: "Naoyo Kimura", attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Surprise Punch", fr: "Raclée Surprise", }, text: { en: "Move an Energy attached to the Defending Pokémon to 1 of your opponent's Benched Pokémon.", fr: "Déplacez une Énergie attachée au Pokémon Défenseur vers 1 des Pokémon de Banc de votre adversaire.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Next Destinies", code: "bw4" } } export default card