mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
61
data/Scarlet & Violet/Surging Sparks/135.ts
Normal file
61
data/Scarlet & Violet/Surging Sparks/135.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dialga",
|
||||
fr: "Dialga",
|
||||
es: "Dialga",
|
||||
it: "Dialga",
|
||||
pt: "Dialga",
|
||||
de: "Dialga"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Dragon"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Time Manipulation",
|
||||
fr: "Manipulation Temporelle",
|
||||
es: "Manipulación Temporal",
|
||||
it: "Manipolazione Temporale",
|
||||
pt: "Manipulação do Tempo",
|
||||
de: "Zeitmanipulation"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for 2 cards, shuffle your deck, then put those cards on top of it in any order.",
|
||||
fr: "Cherchez 2 cartes dans votre deck. Mélangez votre deck, puis placez ces cartes sur le dessus de votre deck dans l'ordre de votre choix.",
|
||||
es: "Busca en tu baraja 2 cartas, baraja las cartas de tu baraja y, luego, pon esas cartas en la parte superior de tu baraja en el orden que quieras.",
|
||||
it: "Cerca nel tuo mazzo due carte, rimischia le carte del tuo mazzo, poi metti quelle carte in cima al mazzo nell'ordine che preferisci.",
|
||||
pt: "Procure por 2 cartas no seu baralho, embaralhe o seu baralho e, em seguida, coloque aquelas cartas como as cartas de cima do seu baralho em qualquer ordem.",
|
||||
de: "Durchsuche dein Deck nach 2 Karten, mische dein Deck und lege jene Karten anschließend in beliebiger Reihenfolge auf dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Buster Tail",
|
||||
fr: "Queue Destructrice",
|
||||
es: "Cola Destructora",
|
||||
it: "Coda Distruttrice",
|
||||
pt: "Cauda Aniquiladora",
|
||||
de: "Zertrümmernder Schweif"
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user