import { Card } from '../../../interfaces' import Set from '../Fates Collide' const card: Card = { name: { en: "Lucario", fr: "Lucario", }, illustrator: "Shin Nagasawa", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 448, ], hp: 110, types: [ "Fighting", ], evolveFrom: { en: "Riolu", fr: "Riolu", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", ], name: { en: "Beatdown", fr: "Dérouillée", }, damage: 40, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Magnum Kick", fr: "Coup d'Pied Magnum", }, damage: 70, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card