mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +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>
63 lines
1.1 KiB
TypeScript
63 lines
1.1 KiB
TypeScript
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 |