mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
50
data/Scarlet & Violet/Surging Sparks/053.ts
Normal file
50
data/Scarlet & Violet/Surging Sparks/053.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cetoddle",
|
||||
fr: "Piétacé",
|
||||
es: "Cetoddle",
|
||||
it: "Cetoddle",
|
||||
pt: "Cetoddle",
|
||||
de: "Flaniwal"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Draining Fin",
|
||||
fr: "Aileron Siphon",
|
||||
es: "Aleta Drenaje",
|
||||
it: "Assorbipinna",
|
||||
pt: "Barbatana Drenante",
|
||||
de: "Diebesflosse"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 20 damage from this Pokémon.",
|
||||
fr: "Soignez 20 dégâts de ce Pokémon.",
|
||||
es: "Cura 20 puntos de daño a este Pokémon.",
|
||||
it: "Cura questo Pokémon da 20 danni.",
|
||||
pt: "Cure 20 pontos de dano deste Pokémon.",
|
||||
de: "Heile 20 Schadenspunkte bei diesem Pokémon."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user