mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09: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:
63
data/Scarlet & Violet/SVP Black Star Promos/010.ts
Normal file
63
data/Scarlet & Violet/SVP Black Star Promos/010.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: "Espathra",
|
||||
fr: "Cléopsytra",
|
||||
es: "Espathra",
|
||||
it: "Espathra",
|
||||
pt: "Espathra",
|
||||
de: "Psiopatra"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Aurora Gain",
|
||||
fr: "Puissance Boréale",
|
||||
es: "Ganar Aurora",
|
||||
it: "Prendiaurora",
|
||||
pt: "Aurora",
|
||||
de: "Aurora-Verstärkung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
fr: "Soignez 30 dégâts de ce Pokémon.",
|
||||
es: "Cura 30 puntos de daño a este Pokémon.",
|
||||
it: "Cura questo Pokémon da 30 danni.",
|
||||
pt: "Cure 30 pontos de dano deste Pokémon.",
|
||||
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Super Psy Bolt",
|
||||
fr: "Super Psy",
|
||||
es: "Superrayo Psi",
|
||||
it: "Superpsico",
|
||||
pt: "Super-raio Psíquico",
|
||||
de: "Super-Psischlag"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user