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: "pop1-9", localId: 9, // Card informations name: { en: "Pupitar", }, hp: 70, type: [ Type.FIGHTING, ], dexId: 247, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop1/9/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop1/9/high", }, }, evolveFrom: { en: "Larvitar", }, tags: [ Tag.STAGE1, ], illustrator: "Hisao Nakamura", attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Rock Smash", }, text: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "POP Series 1", code: "pop1" } } export default card