mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
61
data/Scarlet & Violet/Surging Sparks/006.ts
Normal file
61
data/Scarlet & Violet/Surging Sparks/006.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Spewpa",
|
||||
fr: "Pérégrain",
|
||||
es: "Spewpa",
|
||||
it: "Spewpa",
|
||||
pt: "Spewpa",
|
||||
de: "Puponcho"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Wander About",
|
||||
fr: "Vagabondage",
|
||||
es: "Deambular",
|
||||
it: "Gironzolare",
|
||||
pt: "Zanzar",
|
||||
de: "Umherwandern"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc.",
|
||||
es: "Cambia este Pokémon por uno de tus Pokémon en Banca.",
|
||||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
|
||||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
es: "Placaje",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
de: "Tackle"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user