1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

53 lines
698 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP trainer Kit (Lucario)'
const card: Card = {
dexId: [447],
set: Set,
name: {
en: "Riolu"
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 60,
types: [
"Fighting",
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Wild Kick"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing."
},
damage: "30"
}
],
weaknesses: [
{
type: "Psychic",
value: "10+"
}
],
description: {
en: "The aura that emanates from its body intensifies to alert others if it is afraid or sad."
},
retreat: 1
}
export default card