1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

83 lines
1.5 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 '../Legend Maker'
const card: Card = {
name: {
en: "Girafarig",
fr: "Girafarig"
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
203,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Rear Sensor",
fr: "Détecteur arrière"
},
effect: {
en: "Each player's Active Basic Pokémon (excluding Pokémon-ex) can't use any Poké-Powers.",
fr: "Les Pokémon de base Actifs de chaque joueur (Pokémon-ex exclus) ne peuvent pas utiliser de Poké-Powers."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Foresight",
fr: "Prévoyance"
},
effect: {
en: "Look at the top 5 cards of either player's deck and put them back on top of that player's deck in any order you like.",
fr: "Regardez les 5 cartes du dessus du deck de n'importe quel joueur et replacez-les au dessus du deck dans l'ordre que vous voulez."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Disorder",
fr: "Désordre"
},
effect: {
en: "If the Defending Pokémon has any Special Energy cards attached to it, the Defending Pokémon is now Confused.",
fr: "Si le Pokémon Défenseur possède des cartes Énergie spéciale, le Pokémon Défenseur est maintenant Confus."
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card