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: "bw11-80", localId: 80, // Card informations name: { en: "Lucario", }, hp: 100, type: [ Type.FIGHTING, ], dexId: 448, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/80/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/80/high", }, }, evolveFrom: { en: "Riolu", }, tags: [ Tag.STAGE1, ], illustrator: "MAHOU", abilities: [{ id: 751, type: AbilityType.TALENT, name: { en: "Reflexive Retaliation", }, text: { en: "If this Pokémon is your Active Pokémon and is damaged by an opponent's attack (even if this Pokémon is Knocked Out), put 2 damage counters on the Attacking Pokémon.", } }], attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Aura Sphere", }, 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: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card