mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
37 lines
803 B
TypeScript
37 lines
803 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Dragon Elixir",
|
|
fr: "Élixir de Dragon",
|
|
es: "Elixir Dragón",
|
|
it: "Elisir del Drago",
|
|
pt: "Elixir do Dragão",
|
|
de: "Drachenelixier"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Heal 60 damage from your Active Dragon Pokémon.",
|
|
fr: "Soignez 60 dégâts de votre Pokémon Dragon Actif.",
|
|
es: "Cura 60 puntos de daño a tu Pokémon Dragon Activo.",
|
|
it: "Cura il tuo Pokémon attivo Dragon da 60 danni.",
|
|
pt: "Cure 60 pontos de dano do seu Pokémon Dragon Ativo.",
|
|
de: "Heile 60 Schadenspunkte bei deinem Aktiven Dragon-Pokémon."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|