mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
73 lines
1.1 KiB
TypeScript
73 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bisharp",
|
|
fr: "Scalproie",
|
|
es: "Bisharp",
|
|
it: "Bisharp",
|
|
pt: "Bisharp",
|
|
de: "Caesurio"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Metal"],
|
|
|
|
evolveFrom: {
|
|
en: "Pawniard",
|
|
fr: "Scalpion",
|
|
es: "Pawniard",
|
|
it: "Pawniard",
|
|
pt: "Pawniard",
|
|
de: "Gladiantri"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Spike Draw",
|
|
fr: "Pique-Pioche",
|
|
es: "Robo Pico",
|
|
it: "Battipesca",
|
|
pt: "Comprada Espinhosa",
|
|
de: "Stachelzug"
|
|
},
|
|
|
|
effect: {
|
|
en: "Draw 2 cards.",
|
|
fr: "Piochez 2 cartes.",
|
|
es: "Roba 2 cartas.",
|
|
it: "Pesca due carte.",
|
|
pt: "Compre 2 cartas.",
|
|
de: "Ziehe 2 Karten."
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Metal", "Colorless"],
|
|
|
|
name: {
|
|
en: "Power Edge",
|
|
fr: "Lame Puissante",
|
|
es: "Filo Poderoso",
|
|
it: "Colpotente",
|
|
pt: "Gume Poderoso",
|
|
de: "Kraftklinge"
|
|
},
|
|
|
|
damage: 70
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F"
|
|
}
|
|
|
|
export default card |