mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
73
data/Sword & Shield/Crown Zenith/093.ts
Normal file
73
data/Sword & Shield/Crown Zenith/093.ts
Normal file
@ -0,0 +1,73 @@
|
||||
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
|
Reference in New Issue
Block a user