1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00
Duncan 2b6d06184d
fix: Add SV08 Surging Sparks card variants (#592)
* fix: Add SV08 Surging Sparks card variants

* fix: Fix validate by adding 'abbreviation' to Set interface
2024-12-01 23:26:45 +01:00

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