1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

64 lines
790 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 6'
const card: Card = {
name: {
en: "Riolu",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
447,
],
hp: 60,
types: [
"Fighting",
],
stage: "Basic",
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,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card