1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 14:59:19 +00:00
Files
cards-database/data/Scarlet & Violet/SVP Black Star Promos/112.ts

42 lines
586 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Bisharp",
fr: "Scalproie",
es: "Bisharp",
it: "Bisharp",
pt: "Bisharp",
de: "Caesurio"
},
rarity: "None",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
stage: "Stage1",
attacks: [{
cost: ["Darkness"],
name: {
en: "Cut",
fr: "Coupe",
es: "Corte",
it: "Taglio",
pt: "Cortar",
de: "Zerschneider"
},
damage: 30
}],
retreat: 1,
regulationMark: "H",
illustrator: "AKIRA EGAWA"
}
export default card