import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Riolu", fr: "Riolu", }, illustrator: "Saya Tsuruta", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 447, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Punch", fr: "Koud’Poing", }, damage: 10, }, { cost: [ "Fighting", "Fighting", ], name: { en: "Low Kick", fr: "Balayage", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1, } export default card