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

88 lines
1.7 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 '../Delta Species'
const card: Card = {
name: {
en: "Flareon ex",
fr: "Pyroli ex"
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
136,
],
hp: 110,
types: [
"Fire",
],
evolveFrom: {
en: "Eevee",
},
suffix: "EX",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Evolutionary Flame",
fr: "Flamme évolutive"
},
effect: {
en: "Once during your turn, when you play Flareon ex from your hand to evolve 1 of your Pokémon, you may choose 1 of the Defending Pokémon. That Pokémon is now Burned and Confused.",
fr: "Une seule fois lors de votre tour, lorsque vous jouez Pyroli ex de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez choisir 1 des Pokémon Défenseurs. Ce Pokémon est maintenant Brûlé et Confus."
},
},
],
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flame Screen",
fr: "Mur de feu"
},
effect: {
en: "During your opponent's next turn, any damage done to Flareon ex by attacks is reduced by 20 (after applying Weakness and Resistance).",
fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés à Pyroli ex par des attaques sont réduits de 20 (après application de la Faiblesse et de la Résistance)."
},
damage: 30,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Heat Tackle",
fr: "Charge énergétique"
},
effect: {
en: "Flareon ex does 10 damage to itself.",
fr: "Pyroli ex s'inflige 10 dégâts."
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card