1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00
TCGdex [Bot] 5b32edb5bf
editor: fix Paldean Fates variants (#514)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:49 +02:00

52 lines
992 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
dexId: [173],
set: Set,
name: {
en: "Cleffa",
fr: "Mélo",
es: "Cleffa",
it: "Cleffa",
pt: "Cleffa",
de: "Pii"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
stage: "Basic",
attacks: [{
name: {
en: "Grasping Draw",
fr: "Pioche Happante",
es: "Robo Avaricioso",
it: "Pesca Smaniosa",
pt: "Compra Gananciosa",
de: "Beherzt zugreifen"
},
effect: {
en: "Draw cards until you have 7 cards in your hand.",
fr: "Piochez des cartes jusqu'à en avoir 7 en main.",
es: "Roba cartas hasta que tengas 7 cartas en tu mano.",
it: "Pesca fino ad avere sette carte in mano.",
pt: "Compre cartas até ter 7 cartas na sua mão.",
de: "Ziehe so lange Karten, bis du 7 Karten auf deiner Hand hast."
}
}],
retreat: 0,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card