mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +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:
63
data/Scarlet & Violet/SVP Black Star Promos/014.ts
Normal file
63
data/Scarlet & Violet/SVP Black Star Promos/014.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Koraidon",
|
||||
fr: "Koraidon",
|
||||
es: "Koraidon",
|
||||
it: "Koraidon",
|
||||
pt: "Koraidon",
|
||||
de: "Koraidon"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Claw Slash",
|
||||
fr: "Tranch'Griffe",
|
||||
es: "Cuchillada Garra",
|
||||
it: "Lacerartiglio",
|
||||
pt: "Golpe de Garra",
|
||||
de: "Klauenschlitzer"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rampaging Fang",
|
||||
fr: "Croc Furieux",
|
||||
es: "Colmillo Furioso",
|
||||
it: "Zanna Infuriata",
|
||||
pt: "Canino Feroz",
|
||||
de: "Tobende Fänge"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard 3 Energy from this Pokémon.",
|
||||
fr: "Défaussez 3 Énergies de ce Pokémon.",
|
||||
es: "Descarta 3 Energías de este Pokémon.",
|
||||
it: "Scarta tre Energie da questo Pokémon.",
|
||||
pt: "Descarte 3 Energias deste Pokémon.",
|
||||
de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 190
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user