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

80 lines
1.3 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 '../Sandstorm'
const card: Card = {
name: {
en: "Gardevoir ex",
fr: "Gardevoir ex"
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
282,
],
hp: 150,
types: [
"Psychic",
],
evolveFrom: {
en: "Kirlia",
},
suffix: "EX",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Feedback",
fr: "Réaction"
},
effect: {
en: "Count the number of cards in your opponent's hand. Put that many damage counters on the Defending Pokémon.",
fr: "Comptez le nombre de cartes dans la main de votre adversaire. Placez sur le Pokémon Défenseur autant de marqueurs de dégât qu'il y a de cartes."
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Psystorm",
fr: "Tempête Psy"
},
effect: {
en: "Does 10 damage times the total amount of Energy attached to all Pokemon in play.",
fr: "Inflige 10 dégâts multipliés par le nombre de cartes Énergie attachées à tous les Pokémon en jeu."
},
damage: "10×",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
{
type: "Psychic",
value: "×2"
},
],
}
export default card