mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-13 21:35:10 +00:00
65 lines
859 B
TypeScript
65 lines
859 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Scarlet & Violet"
|
||
|
||
const card: Card = {
|
||
dexId: [447],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Riolu",
|
||
fr: "Riolu",
|
||
es: "Riolu",
|
||
it: "Riolu",
|
||
pt: "Riolu",
|
||
de: "Riolu"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Fighting"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
en: "Jab",
|
||
fr: "Taquet",
|
||
es: "Puya",
|
||
it: "Stoccata",
|
||
pt: "Murro",
|
||
de: "Boxschlag"
|
||
},
|
||
|
||
damage: 10
|
||
}, {
|
||
cost: ["Fighting", "Colorless"],
|
||
|
||
name: {
|
||
en: "Low Kick",
|
||
fr: "Balayage",
|
||
es: "Patada Baja",
|
||
it: "Colpo Basso",
|
||
pt: "Rasteira",
|
||
de: "Fußkick"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G",
|
||
illustrator: "Naoyo Kimura",
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
variants: {
|
||
holo: false
|
||
}
|
||
}
|
||
|
||
export default card |