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

74 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 '../Power Keepers'
const card: Card = {
name: {
en: "Absol ex",
fr: "Absol ex"
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
359,
],
hp: 100,
types: [
"Darkness",
],
suffix: "EX",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Cursed Eyes",
fr: "Yeux maléfiques"
},
effect: {
en: "Once during your turn, when you put Absol ex from your hand onto your Bench, you may move 3 damage counters from 1 of your opponent's Pokémon to another of his or her Pokémon.",
fr: "Une seule fois lors de votre tour, lorsque vous placez Absol ex de votre main sur votre Banc, vous pouvez déplacer 3 marqueurs de dégât d'1 des Pokémon de votre adversaire sur 1 autre de ses Pokémon."
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Psychic Pulse",
fr: "Vibration psy"
},
effect: {
en: "Does 10 damage to each of your opponent's Benched Pokémon that has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire possèdant des marqueurs de dégât. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
}
export default card