mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-14 04:46:14 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Precious Trolley",
|
|
fr: "Chariot Précieux",
|
|
es: "Carrito Valioso",
|
|
it: "Carrello Pregiato",
|
|
pt: "Carrinho Precioso",
|
|
de: "Edler Rollwagen"
|
|
},
|
|
|
|
rarity: "ACE SPEC Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Search your deck for any number of Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck le nombre voulu de Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja cualquier cantidad de Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo un numero qualsiasi di Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por qualquer número de Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach beliebig vielen Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|