1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

88 lines
1.6 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
},
stage: "Basic",
description: {
en: "After a lost child perished in the forest, their spirit possessed a tree stump, causing the spirit's rebirth as this Pokémon."
}
}
export default card