1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

86 lines
2.1 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 '../Chilling Reign'
const card: Card = {
dexId: [251],
set: Set,
name: {
fr: "Celebi V",
en: "Celebi V",
es: "Celebi V",
it: "Celebi V",
pt: "Celebi V",
de: "Celebi V"
},
illustrator: "PLANETA Tsuji",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 190,
types: ["Grass"],
attacks: [{
name: {
fr: "Foliole Dansante",
en: "Leaflet Dance",
es: "Danza de los Folíolos",
it: "Danza di Foglioline",
pt: "Dança das Folhinhas",
de: "Blättchenreigen"
},
effect: {
fr: "Attachez le nombre de cartes Énergie Grass voulues de votre main à vos Pokémon comme il vous plaît.",
en: "Attach any number of Grass Energy cards from your hand to your Pokémon in any way you like.",
es: "Une cualquier cantidad de cartas de Energía Grass de tu mano a tus Pokémon de la manera que desees.",
it: "Assegna ai tuoi Pokémon un numero qualsiasi di carte Energia Grass dalla tua mano nel modo che preferisci.",
pt: "Ligue qualquer número de cartas de Energia Grass da sua mão aos seus Pokémon como desejar.",
de: "Lege beliebig viele Grass-Energiekarten aus deiner Hand beliebig an deine Pokémon an."
},
cost: ["Grass"]
}, {
name: {
fr: "Retour de Frappe",
en: "Slash Back",
es: "Tajo Cambiante",
it: "Sferzata Inversa",
pt: "Contra-arranhar",
de: "Rückschnitt"
},
effect: {
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc.",
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
es: "Cambia este Pokémon por 1 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."
},
damage: 60,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
stage: "Basic",
suffix: "V"
}
export default card