1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

89 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 = {
dexId: [708],
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