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: "dp5-28", localId: 28, // Card informations name: { en: "Plusle", fr: "Posipi", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 311, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp5/28/low", fr: "https://assets.tcgdex.net/fr/dp/dp5/28/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp5/28/high", fr: "https://assets.tcgdex.net/fr/dp/dp5/28/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Suwama Chiaki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", fr: "Appel à la famille", }, text: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", fr: "Choisissez dans votre deck un Pokémon de base et placez-le sur votre Banc. Ensuite, mélangez votre deck.", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "(-) Boost", fr: "Boost (-)", }, text: { en: "If Minun is on your Bench, this attack does 20 damage plus 20 more damage.", fr: "Si Negapi se trouve sur votre Banc, cette attaque inflige 20 dégâts plus 20 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Majestic Dawn", code: "dp5" } } export default card