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: "dp5-71", localId: 71, // Card informations name: { en: "Piplup", fr: "Tiplouf", }, hp: 60, type: [ Type.WATER, ], dexId: 393, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp5/71/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/71/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp5/71/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp5/71/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 44, name: "Kent Kanetsuna" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Water Splash", fr: "Éclaboussure", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Headbutt", fr: "Coup d'boule", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "+10" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Majestic Dawn", code: "dp5" } } export default card