mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
50
data/Scarlet & Violet/Surging Sparks/125.ts
Normal file
50
data/Scarlet & Violet/Surging Sparks/125.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Registeel",
|
||||
fr: "Registeel",
|
||||
es: "Registeel",
|
||||
it: "Registeel",
|
||||
pt: "Registeel",
|
||||
de: "Registeel"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Raging Hammer",
|
||||
fr: "Marteau Rageur",
|
||||
es: "Martillo Furioso",
|
||||
it: "Martelfuria",
|
||||
pt: "Martelo Feroz",
|
||||
de: "Wuthammer"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts sur ce Pokémon.",
|
||||
es: "Este ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.",
|
||||
it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.",
|
||||
pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.",
|
||||
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "60+"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user