import { Card } from '../../../interfaces' import Set from '../BW Black Star Promos' const card: Card = { name: { en: "Lucario", fr: "Lucario", }, illustrator: "Masakazu Fukuda", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 448, ], hp: 100, types: [ "Fighting", ], evolveFrom: { en: "Riolu", fr: "Riolu", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Intuition", }, effect: { en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may draw 2 cards.", }, }, ], attacks: [ { cost: [ "Fighting", "Colorless", "Colorless", ], name: { en: "Fast Punch", fr: "{Ability] Intuition", }, effect: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez piocher 2 cartes.", }, damage: 60, }, { cost: [ "Fighting", "Colorless", "Colorless", ], name: { fr: "Poing Rapide", }, effect: { fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: "60+", }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card