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: "bw5-28", localId: 28, // Card informations name: { en: "Prinplup", }, hp: 80, type: [ Type.WATER, ], dexId: 394, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/28/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/28/high", }, }, evolveFrom: { en: "Piplup", }, tags: [ Tag.STAGE1, ], illustrator: "Suwama Chiaki", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Razor Wing", }, damage: 20 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Attack", }, text: { en: "Flip 3 coins. This attack does 30 damage times the number of heads.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card