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:
63
data/Scarlet & Violet/Surging Sparks/028.ts
Normal file
63
data/Scarlet & Violet/Surging Sparks/028.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Centiskorch",
|
||||
fr: "Scolocendre",
|
||||
es: "Centiskorch",
|
||||
it: "Centiskorch",
|
||||
pt: "Centiskorch",
|
||||
de: "Infernopod"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Billowing Heat Wave",
|
||||
fr: "Volutes Canicule",
|
||||
es: "Onda Ígnea Sinuosa",
|
||||
it: "Ondacalda Fluttuante",
|
||||
pt: "Mormaço Envolvente",
|
||||
de: "Wabernde Hitzewelle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 30 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Cette attaque inflige aussi 30 dégâts à chacun de vos Pokémon de Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
es: "Este ataque también hace 30 puntos de daño a cada uno de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||||
it: "Questo attacco infligge anche 30 danni a ciascuno dei Pokémon nella tua panchina. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||||
pt: "Este ataque também causa 30 pontos de dano a cada um dos seus Pokémon no Banco. (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)",
|
||||
de: "Diese Attacke fügt auch jedem Pokémon auf deiner Bank 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Heat Blast",
|
||||
fr: "Explosion de Chaleur",
|
||||
es: "Explosión de Calor",
|
||||
it: "Caldobomba",
|
||||
pt: "Raio de Calor",
|
||||
de: "Hitzestoß"
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user