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: "pop9-9", localId: 9, // Card informations name: { en: "Lopunny", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 428, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop9/9/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop9/9/high", }, }, evolveFrom: { en: "Bastiodon", }, tags: [ Tag.BASIC, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Jump Kick", }, text: { en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Jazzed", }, text: { en: "If Lopunny evolved from Buneary during this turn, remove all damage counters from Lopunny.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "POP Series 9", code: "pop9" } } export default card