import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Riolu", }, illustrator: "Naoyo Kimura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 447, ], hp: 70, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Punch", }, damage: 10, }, { cost: [ "Fighting", "Colorless", ], name: { en: "Quick Attack", }, effect: { en: "Flip a coin. If heads, this attack does 20 more damage.", }, damage: 10, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 1 } export default card