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

93 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: "Jolteon ex",
fr: "Voltali ex"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
135,
],
hp: 100,
types: [
"Lightning",
],
evolveFrom: {
en: "Eevee",
},
suffix: "EX",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Evolutionary Thunder",
fr: "Tonnerre évolutif"
},
effect: {
en: "Once during your turn, when you play Jolteon ex from your hand to evolve 1 of your Pokémon, you may put 1 damage counter on each of your opponent's Pokémon.",
fr: "Une seule fois lors de votre tour, lorsque vous jouez Voltali ex de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez placer 1 marqueur de dégât sur chacun des Pokémon de votre adversaire."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Second Bite",
fr: "Point douloureux"
},
effect: {
en: "Does 20 damage plus 10 more damage for each damage counter on the Defending Pokémon.",
fr: "Inflige 20 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur le Pokémon Défenseur."
},
damage: "20+",
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunder Blast",
fr: "Grondement de tonnerre"
},
effect: {
en: "Discard a Lightning Energy card attached to Jolteon ex.",
fr: "Défaussez une carte Énergie attachée à Voltali ex."
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card