mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-01 00:09:19 +00:00
65 lines
882 B
TypeScript
65 lines
882 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Scarlet & Violet"
|
||
|
||
const card: Card = {
|
||
dexId: [624],
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Pawniard",
|
||
fr: "Scalpion",
|
||
es: "Pawniard",
|
||
it: "Pawniard",
|
||
pt: "Pawniard",
|
||
de: "Gladiantri"
|
||
},
|
||
|
||
rarity: "Common",
|
||
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",
|
||
illustrator: "sowsow",
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
variants: {
|
||
holo: false
|
||
}
|
||
}
|
||
|
||
export default card |