mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-19 02:39:18 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
63
data/Scarlet & Violet/Surging Sparks/115.ts
Normal file
63
data/Scarlet & Violet/Surging Sparks/115.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Glimmora",
|
||||
fr: "Floréclat",
|
||||
es: "Glimmora",
|
||||
it: "Glimmora",
|
||||
pt: "Glimmora",
|
||||
de: "Lumiflora"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Corrosive Shards",
|
||||
fr: "Éclats Corrosifs",
|
||||
es: "Esquirlas Corrosivas",
|
||||
it: "Schegge Corrosive",
|
||||
pt: "Estilhaços Corrosivos",
|
||||
de: "Korrosionssplitter"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned. During your opponent's next turn, Energy cards can't be attached from your opponent's hand to that Pokémon.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Pendant le prochain tour de votre adversaire, aucune carte Énergie ne peut être attachée de la main de votre adversaire à ce Pokémon-là.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Durante el próximo turno de tu rival, no se pueden unir cartas de Energía de la mano de tu rival a ese Pokémon.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Durante il prossimo turno del tuo avversario, nessuna carta Energia può essere assegnata dalla mano del tuo avversario a quel Pokémon.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Durante o próximo turno do seu oponente, cartas de Energia não poderão ser ligadas da mão do seu oponente àquele Pokémon.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Während des nächsten Zuges deines Gegners können keine Energiekarten aus der Hand deines Gegners an jenes Pokémon angelegt werden."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rock Throw",
|
||||
fr: "Jet-Pierres",
|
||||
es: "Lanzarrocas",
|
||||
it: "Sassata",
|
||||
pt: "Lançamento de Rocha",
|
||||
de: "Steinwurf"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user