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: "pop6-15", localId: 15, // Card informations name: { en: "Piplup", }, hp: 60, type: [ Type.WATER, ], dexId: 393, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop6/15/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop6/15/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Atsuko Nishida", attacks: [{ name: { en: "Peck", }, damage: 10 },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Water Splash", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "+10" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "POP Series 6", code: "pop6" } } export default card