import { Card } from '../../../interfaces' import Set from '../Unleashed' const card: Card = { name: { en: "Riolu", fr: "Riolu", }, illustrator: "Kouki Saitou", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 447, ], hp: 60, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Kick", fr: "Koud’pied", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Double Chop", fr: "Double coup", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: "20×", }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, description: { en: "They communicate with one another using their auras. They are able to run all through the night." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card