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
37 lines
997 B
TypeScript
37 lines
997 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Surging Sparks"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Gravity Mountain",
|
|
fr: "Montagne Gravité",
|
|
es: "Montaña Gravedad",
|
|
it: "Monte Gravità",
|
|
pt: "Montanha da Gravidade",
|
|
de: "Erdanziehungsberg"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Each Stage 2 Pokémon in play (both yours and your opponent's) gets -30 HP.",
|
|
fr: "Chaque Pokémon de Niveau 2 en jeu (les vôtres et ceux de votre adversaire) perd -30 PV.",
|
|
es: "Cada Pokémon de Fase 2 en juego (tanto tuyos como de tu rival) tiene 30 PS menos.",
|
|
it: "Ciascun Pokémon di Fase 2 in gioco, sia tuo che del tuo avversario, ha 30 PS in meno.",
|
|
pt: "Cada Pokémon Estágio 2 em jogo (seus e do seu oponente) recebe 30 PS a menos.",
|
|
de: "Jedes Phase-2-Pokémon im Spiel (deine und die deines Gegners) erhält -30 KP."
|
|
},
|
|
|
|
trainerType: "Stadium",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|