1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Add Surging Sparks (#576)

This commit is contained in:
2024-11-12 01:16:52 +01:00
committed by GitHub
parent 14ed8ee912
commit 45f7db66d7
253 changed files with 14223 additions and 0 deletions

View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../Surging Sparks"
const card: Card = {
set: Set,
name: {
en: "Turtonator",
fr: "Boumata",
es: "Turtonator",
it: "Turtonator",
pt: "Turtonator",
de: "Tortunator"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Dragon"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
en: "Fully Singe",
fr: "Complètement Roussi",
es: "Quemadura Total",
it: "Scottata Totale",
pt: "Chamuscada Total",
de: "Vollversengung"
},
effect: {
en: "Discard an Energy from your opponent's Active Pokémon ex.",
fr: "Défaussez une Énergie du Pokémon-ex Actif de votre adversaire.",
es: "Descarta 1 Energía del Pokémon ex Activo de tu rival.",
it: "Scarta un'Energia dal Pokémon-ex attivo del tuo avversario.",
pt: "Descarte uma Energia do Pokémon ex Ativo do seu oponente.",
de: "Lege 1 Energie vom Aktiven Pokémon-ex deines Gegners auf seinen Ablagestapel."
}
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
en: "Steaming Stomp",
fr: "Piétinement Fumant",
es: "Pisotón Humeante",
it: "Pestata Incandescente",
pt: "Pisoteada Fumegante",
de: "Dampfstampfer"
},
damage: 100
}],
retreat: 3,
regulationMark: "H"
}
export default card