import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Lucario", fr: "Lucario", }, illustrator: "Naoki Saito", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 448, ], hp: 100, types: [ "Fighting", ], evolveFrom: { en: "Riolu", fr: "Riolu", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Reflexive Retaliation", fr: "Contre-Offensive", }, effect: { 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.", fr: "Si ce Pokémon est votre Pokémon Actif et qu'il subit les dégâts d'une attaque de votre adversaire (même si ce Pokémon est mis K.O.), placez 2 marqueurs de dégâts sur le Pokémon Attaquant.", }, }, ], attacks: [ { cost: [ "Fighting", "Fighting", ], name: { en: "Aura Sphere", fr: "Aurasphère", }, effect: { en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card