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: "bw1-67", localId: 67, // Card informations name: { en: "Liepard", fr: "Léopardus", }, hp: 80, type: [ Type.DARKNESS, ], dexId: 510, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw1/67/low", fr: "https://assets.tcgdex.net/fr/bw/bw1/67/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/67/high", fr: "https://assets.tcgdex.net/fr/bw/bw1/67/high", }, }, evolveFrom: { en: "Purrloin", fr: "Chacripan", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Taunt", fr: "Provoc", }, text: { en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon.", fr: "Échangez le Pokémon Défenseur avec 1 des Pokémon de Banc de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Sucker Punch", fr: "Coup Bas", }, text: { en: "If this Pokémon has any Darkness Energy attached to it, this attack does 30 more damage.", fr: "Si de l'Énergie Darkness est attachée à ce Pokémon, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Black & White", code: "bw1" } } export default card