1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

82 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Phantump",
fr: "Brocélôme",
es: "Phantump",
it: "Phantump",
pt: "Phantump",
de: "Paragoni"
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dark Guidance",
fr: "Conseiller Obscur",
es: "Guía Siniestra",
it: "Guida Oscura",
pt: "Diretriz Obscura",
de: "Dunkles Geleit"
},
effect: {
en: "Put a Basic Pokémon from your discard pile onto your Bench.",
fr: "Placez un Pokémon de base de votre pile de défausse sur votre Banc.",
es: "Pon 1 Pokémon Básico de tu pila de descartes en tu Banca.",
it: "Prendi un Pokémon Base dalla tua pila degli scarti e mettilo in panchina.",
pt: "Coloque 1 Pokémon Básico da sua pilha de descarte no seu Banco.",
de: "Lege 1 Basis-Pokémon aus deinem Ablagestapel auf deine Bank."
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Seed Bomb",
fr: "Canon Graine",
es: "Bomba Germen",
it: "Semebomba",
pt: "Bomba de Sementes",
de: "Samenbomben"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
hp: 60,
types: ["Grass"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card