import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/sm/sm5/33/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/33/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm5/33/high.png", }, }, evolveFrom: { en: "Piplup", fr: "Tiplouf", }, tags: [ Tag.STAGE1, ], illustrator: { id: 3, name: "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