mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 20:36:15 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
38 lines
987 B
TypeScript
38 lines
987 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Miracle Headset",
|
|
fr: "Casque Miracle",
|
|
es: "Auriculares Milagrosos",
|
|
it: "Cuffie Prodigiose",
|
|
pt: "Fone de Ouvido Milagroso",
|
|
de: "Wunder-Headset"
|
|
},
|
|
|
|
rarity: "ACE SPEC Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Put up to 2 Supporter cards from your discard pile into your hand.",
|
|
fr: "Ajoutez jusqu'à 2 cartes Supporter de votre pile de défausse à votre main.",
|
|
es: "Pon hasta 2 cartas de Partidario de tu pila de descartes en tu mano.",
|
|
it: "Prendi fino a due carte Aiuto dalla tua pila degli scarti e aggiungile alle carte che hai in mano.",
|
|
pt: "Coloque até 2 cartas de Apoiador da sua pilha de descarte na sua mão.",
|
|
de: "Nimm bis zu 2 Unterstützerkarten aus deinem Ablagestapel auf deine Hand."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|