1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-27 14:29:18 +00:00
Files
cards-database/data/Scarlet & Violet/SVP Black Star Promos/111.ts

42 lines
603 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Pawniard",
fr: "Scalpion",
es: "Pawniard",
it: "Pawniard",
pt: "Pawniard",
de: "Gladiantri"
},
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
en: "Pierce",
fr: "Transpercement",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 10
}],
retreat: 1,
regulationMark: "H",
illustrator: "matazo"
}
export default card