1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 19:19:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../Triumphant'
const card: Card = {
name: {
en: "Celebi",
fr: "Celebi",
},
illustrator: "Hideaki Hakozaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
251,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Forest Breath",
fr: "Souffle forestier",
},
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 can't 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 à l'un de vos Pokémon. Ce Poké-Power ne peut pas être utilisé si Celebi est affecté par un État Spécial.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Psychic",
"Colorless",
],
name: {
en: "Time Circle",
fr: "Cycle temporel",
},
effect: {
en: "During your opponent's next turn, prevent all damage done to Celebi by attacks from your opponent's 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.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card