1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +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

46 lines
645 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
dexId: [547],
set: Set,
name: {
en: "Whimsicott",
fr: "Farfaduvet",
es: "Whimsicott",
it: "Whimsicott",
pt: "Whimsicott",
de: "Elfun"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
stage: "Stage1",
attacks: [{
cost: ["Psychic"],
name: {
en: "Fairy Wind",
fr: "Vent Féérique",
es: "Viento Feérico",
it: "Vento di Fata",
pt: "Vento de Fada",
de: "Feenbrise"
},
damage: 50
}],
retreat: 0,
regulationMark: "G",
variants: {
holo: false
}
}
export default card