1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
Florian Bouillon b6fbcc1b77
fix: add EX French translations (#169)
* fix: Add for some sets

Signed-off-by: Avior <github@avior.me>

* Added Sets titles

Signed-off-by: Avior <github@avior.me>

* fix: Finished last EX sets

Signed-off-by: Avior <github@avior.me>

* Change Discord Link text
2021-11-15 16:24:10 +01:00

67 lines
1.4 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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Celebi Star",
fr: "Celebi"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
251,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Time Travel",
fr: "Voyage temporel"
},
effect: {
en: "If Celebi Star would be Knocked Out by damage from an opponent's attack, you may flip a coin. If heads, Celebi Star is not Knocked Out, discard all cards attached to Celebi Star, and put Celebi Star on the bottom of your deck.",
fr: "Si les dégâts d'une attaque de votre adversaire mettent Celebi K.O, vous pouvez lancer une pièce. Si c'est face, Celebi n'est pas mis K.O. Défaussez toutes les cartes attachées à Celebi et placez-le au dessous de votre deck."
},
},
],
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Leaf Shade",
fr: "Ombre-feuille"
},
effect: {
en: "Count the amount of Energy attached to Celebi Star. Put that many damage counters on 1 of your opponent's Pokémon.",
fr: "Comptabilisez le nombre d'Énergies attachées à Celebi . Placez autant de marqueurs de dégât sur 1 des Pokémon de votre adversaire."
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card