1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00

85 lines
2.1 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 '../Triumphant'
const card: Card = {
name: {
en: "Celebi",
fr: "Celebi",
de: "Celebi"
},
illustrator: "Hideaki Hakozaki",
rarity: "Rare PRIME",
category: "Pokemon",
set: Set,
dexId: [
251,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Forest Breath",
fr: "Souffle forestier",
de: "Waldatem"
},
effect: {
en: "Once during your turn (before your attack), if Celebi is your Active Pokémon, you may attach a Grass Energy card from your hand to 1 of your Pokémon. This power cant be used if Celebi is affected by a Special Condition.",
fr: "Une fois pendant votre tour (avant votre attaque), si Celebi est votre Pokémon Actif, vous pouvez attacher une carte Énergie Grass de votre main à lun de vos Pokémon. Ce Poké-Power ne peut pas être utilisé si Celebi est affecté par un État Spécial.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du, wenn Celebi dein Aktives Pokémon ist, 1 -Energiekarte von deiner Hand an 1 deiner Pokémon anlegen. Diese Poké-Power kann nicht benutzt werden, wenn Celebi von einem Speziellen Zustand betroffen ist."
},
},
],
attacks: [
{
cost: [
"Grass",
"Psychic",
"Colorless",
],
name: {
en: "Time Circle",
fr: "Cycle temporel",
de: "Zeitkreis"
},
effect: {
en: "During your opponents next turn, prevent all damage done to Celebi by attacks from your opponents Stage 1 or Stage 2 Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, prévenez tous les dégâts infligés à Celebi par le Pokémon de niveau 1 ou 2 de votre adversaire.",
de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der Celebi durch Angriffe von gegnerischen Pokémon der Phase 1 und Phase 2 zugefügt würde."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card