mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
* fix: Add SV08 Surging Sparks card variants * fix: Fix validate by adding 'abbreviation' to Set interface
66 lines
1.1 KiB
TypeScript
66 lines
1.1 KiB
TypeScript
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",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card
|