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: "pop8-16", localId: 16, // Card informations name: { en: "Riolu", }, hp: 50, type: [ Type.FIGHTING, ], dexId: 447, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop8/16/low", }, high: { en: "https://assets.tcgdex.net/en/pop/pop8/16/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", abilities: [{ id: 32, type: AbilityType.POKEBODY, name: { en: "Inner Focus", }, text: { en: "Riolu can't be Paralyzed.", } }], attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Quick Attack", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "POP Series 8", code: "pop8" } } export default card