1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 20:36:15 +00:00
Duncan 2b6d06184d
fix: Add SV08 Surging Sparks card variants (#592)
* fix: Add SV08 Surging Sparks card variants

* fix: Fix validate by adding 'abbreviation' to Set interface
2024-12-01 23:26:45 +01:00

37 lines
970 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Surging Sparks"
const card: Card = {
set: Set,
name: {
en: "Lively Stadium",
fr: "Stade en Liesse",
es: "Estadio Animado",
it: "Stadio Gremito",
pt: "Estádio Animado",
de: "Belebtes Stadion"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Each Basic Pokémon in play (both yours and your opponent's) gets +30 HP.",
fr: "Chaque Pokémon de base en jeu (les vôtres et ceux de votre adversaire) reçoit +30 PV.",
es: "Cada Pokémon Básico en juego (tanto tuyos como de tu rival) obtiene 30 PS más.",
it: "Ciascun Pokémon Base in gioco, sia tuo che del tuo avversario, ha 30 PS in più.",
pt: "Cada Pokémon Básico em jogo (seus e do seu oponente) recebe 30 PS a mais.",
de: "Jedes Basis-Pokémon im Spiel (deine und die deines Gegners) erhält +30 KP."
},
trainerType: "Stadium",
regulationMark: "H",
variants: {
holo: false
}
}
export default card