1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-10 02:57:51 +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

60 lines
825 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
dexId: [624],
set: Set,
name: {
en: "Pawniard",
fr: "Scalpion",
es: "Pawniard",
it: "Pawniard",
pt: "Pawniard",
de: "Gladiantri"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10
}, {
cost: ["Darkness", "Colorless"],
name: {
en: "Pierce",
fr: "Transpercement",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 20
}],
retreat: 1,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card