1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

39 lines
540 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Ralts",
fr: "Tarsal",
es: "Ralts",
it: "Ralts",
pt: "Ralts"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
en: "Psyshot",
fr: "Piqûre Psy",
es: "Disparo Psi",
it: "Psicosparo",
pt: "Tiro Psíquico"
},
damage: 30
}],
retreat: 1,
regulationMark: "G"
}
export default card