import { Card } from '../../../interfaces' import Set from '../Yellow A Alternate' const card: Card = { name: { en: "Riolu", fr: "Riolu", }, illustrator: "Misa Tsutsui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 447, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Detect", fr: "Détection", }, effect: { en: "Flip a coin. If heads, prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn.", fr: "Lancez une pièce. Si c’est face, évitez tous les effets d’attaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire.", }, }, { cost: [ "Fighting", ], name: { en: "Jab", fr: "Taquet", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card