mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
feat: Add Scarlet & Violet Promos (#607)
* 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>
This commit is contained in:
54
data/Scarlet & Violet/SVP Black Star Promos/113.ts
Normal file
54
data/Scarlet & Violet/SVP Black Star Promos/113.ts
Normal file
@ -0,0 +1,54 @@
|
||||
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
|
Reference in New Issue
Block a user