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

47 lines
678 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
dexId: [459],
set: Set,
name: {
en: "Snover",
fr: "Blizzi",
es: "Snover",
it: "Snover",
pt: "Snover",
de: "Shnebedeck"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 90,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
en: "Corkscrew Punch",
fr: "Poing Tire-Bouchon",
es: "Puño Tirabuzón",
it: "Pugno Rotante",
pt: "Soco Saca-rolha",
de: "Korkenzieherhieb"
},
damage: 30
}],
retreat: 3,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card