1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

81 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 = {
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 lun 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
}
}
export default card