mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 04:17:49 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Megaton Blower",
|
|
fr: "Souffleur Titanesque",
|
|
es: "Ventilador Megatón",
|
|
it: "Ventilatore Megatonico",
|
|
pt: "Ventilador Megaton",
|
|
de: "Megatonnengebläse"
|
|
},
|
|
|
|
rarity: "ACE SPEC Rare",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Discard all Pokémon Tools and Special Energy from all of your opponent's Pokémon, and discard a Stadium in play.",
|
|
fr: "Défaussez tous les Outils Pokémon et toutes les Énergies spéciales de tous les Pokémon de votre adversaire, puis défaussez un Stade en jeu.",
|
|
es: "Descarta todas las Herramientas Pokémon y Energías Especiales de todos los Pokémon de tu rival, y descarta 1 Estadio en juego.",
|
|
it: "Scarta tutte le carte Oggetto Pokémon e le Energie speciali dai Pokémon del tuo avversario e una carta Stadio in gioco.",
|
|
pt: "Descarte todas as Ferramentas Pokémon e Energias Especiais de todos os Pokémon do seu oponente, e descarte um Estádio em jogo.",
|
|
de: "Lege alle Pokémon-Ausrüstungen und Spezial-Energien von allen Pokémon deines Gegners auf seinen Ablagestapel und lege 1 Stadionkarte im Spiel auf den Ablagestapel."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card
|