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/002.ts
Normal file
50
data/Scarlet & Violet/Surging Sparks/002.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Exeggcute",
|
||||
fr: "Noeunoeuf",
|
||||
es: "Exeggcute",
|
||||
it: "Exeggcute",
|
||||
pt: "Exeggcute",
|
||||
de: "Owei"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Absorb",
|
||||
fr: "Vole-Vie",
|
||||
es: "Absorber",
|
||||
it: "Assorbimento",
|
||||
pt: "Absorção",
|
||||
de: "Absorber"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Heal 10 damage from this Pokémon.",
|
||||
fr: "Soignez 10 dégâts de ce Pokémon.",
|
||||
es: "Cura 10 puntos de daño a este Pokémon.",
|
||||
it: "Cura questo Pokémon da 10 danni.",
|
||||
pt: "Cure 10 pontos de dano deste Pokémon.",
|
||||
de: "Heile 10 Schadenspunkte bei diesem Pokémon."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user