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-33", localId: 33, // Card informations name: { en: "Prinplup", fr: "Prinplouf", }, hp: 90, type: [ Type.WATER, ], dexId: 394, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm5/33/low", fr: "https://assets.tcgdex.net/fr/sm/sm5/33/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/33/high", fr: "https://assets.tcgdex.net/fr/sm/sm5/33/high", }, }, evolveFrom: { en: "Piplup", fr: "Tiplouf", }, tags: [ Tag.STAGE1, ], illustrator: "Mizue", attacks: [{ cost: [ Type.WATER ], name: { en: "Bubble Beam", fr: "Bulles d’O", }, 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é.", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Wave Splash", fr: "Grosse Vague", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Ultra Prism", code: "sm5" } } export default card