mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 08:39:54 +00:00
* feat: ADd set datas Signed-off-by: Avior <git@avior.me> * feat: Add cards Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
54 lines
828 B
TypeScript
54 lines
828 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVP Black Star Promos"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Kingambit",
|
|
fr: "Scalpereur",
|
|
es: "Kingambit",
|
|
it: "Kingambit",
|
|
pt: "Kingambit",
|
|
de: "Gladimperio"
|
|
},
|
|
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
hp: 170,
|
|
types: ["Darkness"],
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
cost: ["Darkness"],
|
|
|
|
name: {
|
|
en: "Elbow Strike",
|
|
fr: "Coup de Coude",
|
|
es: "Codazo",
|
|
it: "Colpogomito",
|
|
pt: "Golpe de Cotovelo",
|
|
de: "Ellbogenstoß"
|
|
},
|
|
|
|
damage: 40
|
|
}, {
|
|
cost: ["Darkness", "Colorless"],
|
|
|
|
name: {
|
|
en: "Slicing Blade",
|
|
fr: "Lame Tranchante",
|
|
es: "Cuchilla Cortante",
|
|
it: "Affettalama",
|
|
pt: "Lâmina Fatiante",
|
|
de: "Schwertschneide"
|
|
},
|
|
|
|
damage: 100
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |